mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
599 B
Ruby
33 lines
599 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/vbd'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
|
|
class Vbds < Fog::Collection
|
|
|
|
model Fog::Compute::XenServer::VBD
|
|
|
|
def initialize(attributes)
|
|
super
|
|
end
|
|
|
|
def all(options = {})
|
|
data = service.get_records 'VBD'
|
|
load(data)
|
|
end
|
|
|
|
def get( vbd_ref )
|
|
if vbd_ref && vbd = service.get_record( vbd_ref, 'VBD' )
|
|
new(vbd)
|
|
end
|
|
rescue Fog::XenServer::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|