# File lib/fog/xenserver/models/compute/host_crash_dumps.rb, line 10 def all(options={}) data = service.get_records 'host_crashdump' load(data) end
# File lib/fog/xenserver/models/compute/host_crash_dumps.rb, line 15 def get( host_crashdump_ref ) if host_crashdump_ref && host_crashdump = service.get_record( host_crashdump_ref, 'host_crashdump' ) new(host_crashdump) else nil end end