Class: Fog::Compute::XenServer::PoolPatchs
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::XenServer::PoolPatchs
- Defined in:
- lib/fog/xenserver/models/compute/pool_patchs.rb
Instance Method Summary collapse
Instance Method Details
#all(options = {}) ⇒ Object
10 11 12 13 |
# File 'lib/fog/xenserver/models/compute/pool_patchs.rb', line 10 def all(={}) data = service.get_records 'pool_patch' load(data) end |
#get(pool_patch_ref) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/fog/xenserver/models/compute/pool_patchs.rb', line 15 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 |