mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
29 lines
583 B
Ruby
29 lines
583 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/pif'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class Pifs < Fog::Collection
|
|
model Fog::Compute::XenServer::PIF
|
|
|
|
def initialize(attributes)
|
|
super
|
|
end
|
|
|
|
def all(options = {})
|
|
data = service.get_records 'PIF'
|
|
load(data)
|
|
end
|
|
|
|
def get( ref )
|
|
if ref && obj = service.get_record( ref, 'PIF' )
|
|
new(obj)
|
|
end
|
|
rescue Fog::XenServer::NotFound
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|