Sha256: 74770dd30fe21d734359cfd9cbaa8e1ce1126ffdba450ff11c29f3bc72f79cf1
Contents?: true
Size: 615 Bytes
Versions: 46
Compression:
Stored size: 615 Bytes
Contents
require 'fog/core/collection' require 'fog/xenserver/models/compute/host_crash_dump' module Fog module Compute class XenServer class HostCrashDumps < Fog::Collection model Fog::Compute::XenServer::HostCrashDump def all(options={}) data = service.get_records 'host_crashdump' load(data) end 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 end end end end
Version data entries
46 entries across 46 versions & 6 rubygems