Class: OvirtSDK4::VmDisksService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(disk, opts = {}) ⇒ Disk
Adds a new
disk
. -
#disk_service(id) ⇒ VmDiskService
Locates the
disk
service. -
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks of the virtual machine.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(disk, opts = {}) ⇒ Disk
Adds a new disk
.
32617 32618 32619 |
# File 'lib/ovirtsdk4/services.rb', line 32617 def add(disk, opts = {}) internal_add(disk, Disk, ADD, opts) end |
#disk_service(id) ⇒ VmDiskService
Locates the disk
service.
32662 32663 32664 |
# File 'lib/ovirtsdk4/services.rb', line 32662 def disk_service(id) VmDiskService.new(self, id) end |
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks of the virtual machine.
The order of the returned list of disks isn’t guaranteed.
32651 32652 32653 |
# File 'lib/ovirtsdk4/services.rb', line 32651 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32673 32674 32675 32676 32677 32678 32679 32680 32681 32682 |
# File 'lib/ovirtsdk4/services.rb', line 32673 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return disk_service(path) end return disk_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |