Class: Fog::Compute::Ovirt::Volumes
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::Ovirt::Volumes
- Defined in:
- lib/fog/ovirt/models/compute/volumes.rb
Instance Attribute Summary collapse
-
#vm ⇒ Object
Returns the value of attribute vm.
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Attribute Details
#vm ⇒ Object
Returns the value of attribute vm.
12 13 14 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 12 def vm @vm end |
Instance Method Details
#all(filters = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 14 def all(filters = {}) requires :vm if vm.is_a? Fog::Compute::Ovirt::Server load connection.list_vm_volumes(vm.id) elsif vm.is_a? Fog::Compute::Ovirt::Template load connection.list_template_volumes(vm.id) else raise 'volumes should have vm or template' end end |
#get(id) ⇒ Object
25 26 27 |
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 25 def get(id) new connection.get_volume(id) end |