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