1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/xenserver/models/compute/bonds.rb
2013-12-11 23:56:05 -02:00

25 lines
516 B
Ruby

require 'fog/core/collection'
require 'fog/xenserver/models/compute/bond'
module Fog
module Compute
class XenServer
class Bonds < Fog::Collection
model Fog::Compute::XenServer::Bond
def all(options={})
data = service.get_records 'Bond'
load(data)
end
def get( bond_ref )
if bond_ref && bond = service.get_record( bond_ref, 'Bond' )
new(bond)
else
nil
end
end
end
end
end
end