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