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/crash_dumps.rb
2013-12-11 23:56:05 -02:00

25 lines
562 B
Ruby

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