mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
575 B
Ruby
26 lines
575 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/xenserver/models/compute/host_patch'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class XenServer
|
||
|
class HostPatches < Fog::Collection
|
||
|
model Fog::Compute::XenServer::HostPatch
|
||
|
|
||
|
def all(options={})
|
||
|
data = service.get_records 'host_patch'
|
||
|
load(data)
|
||
|
end
|
||
|
|
||
|
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
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|