class Fog::Compute::XenServer::HostPatchs

Public Instance Methods

all(options={}) click to toggle source
# File lib/fog/xenserver/models/compute/host_patchs.rb, line 10
def all(options={})
  data = service.get_records 'host_patch'
  load(data)
end
get( host_patch_ref ) click to toggle source
# File lib/fog/xenserver/models/compute/host_patchs.rb, line 15
def get( host_patch_ref )
  if host_patch_ref && host_patch = service.get_record( host_patch_ref, 'host_patch' )
    new(host_patch)
  else
    nil
  end
end