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`
25 lines
519 B
Ruby
25 lines
519 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/vif'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class Vifs < Fog::Collection
|
|
model Fog::Compute::XenServer::VIF
|
|
|
|
def all(options = {})
|
|
data = service.get_records 'VIF'
|
|
load(data)
|
|
end
|
|
|
|
def get( ref )
|
|
if ref && obj = service.get_record( ref, 'VIF' )
|
|
new(obj)
|
|
end
|
|
rescue Fog::XenServer::NotFound
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|