mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
574 B
Ruby
25 lines
574 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/pool_patch'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class PoolPatchs < Fog::Collection
|
|
model Fog::Compute::XenServer::PoolPatch
|
|
|
|
def all(options={})
|
|
data = service.get_records 'pool_patch'
|
|
load(data)
|
|
end
|
|
|
|
def get( pool_patch_ref )
|
|
if pool_patch_ref && pool_patch = service.get_record( pool_patch_ref, 'pool_patch' )
|
|
new(pool_patch)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|