Class: Fog::Ovirt::Compute::Volumes
- Inherits:
-
Collection
- Object
- Collection
- Fog::Ovirt::Compute::Volumes
- Defined in:
- lib/fog/ovirt/models/compute/volumes.rb
Instance Attribute Summary collapse
-
#vm ⇒ Object
Returns the value of attribute vm.
Instance Method Summary collapse
Instance Attribute Details
#vm ⇒ Object
Returns the value of attribute vm.
10 11 12 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 10 def vm @vm end |
Instance Method Details
#all(_filters = {}) ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 12 def all(_filters = {}) if vm.is_a? Fog::Ovirt::Compute::Server load service.list_vm_volumes(vm.id) elsif vm.is_a? Fog::Ovirt::Compute::Template load service.list_template_volumes(vm.id) else load service.list_volumes end end |
#get(id) ⇒ Object
22 23 24 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 22 def get(id) new service.get_volume(id) end |