Class: Fog::Compute::Ovirt::Volumes

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/ovirt/models/compute/volumes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#vmObject

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

rubocop:disable Metrics/AbcSize



13
14
15
16
17
18
19
20
21
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 13

def all(_filters = {})
  if vm.is_a? Fog::Compute::Ovirt::Server
    load service.list_vm_volumes(vm.id)
  elsif vm.is_a? Fog::Compute::Ovirt::Template
    load service.list_template_volumes(vm.id)
  else
    load service.list_volumes
  end
end

#get(id) ⇒ Object

rubocop:enable Metrics/AbcSize



24
25
26
# File 'lib/fog/ovirt/models/compute/volumes.rb', line 24

def get(id)
  new service.get_volume(id)
end