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
diskservice. -
#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.
32704 32705 32706 |
# File 'lib/ovirtsdk4/services.rb', line 32704 def add(disk, opts = {}) internal_add(disk, Disk, ADD, opts) end |
#disk_service(id) ⇒ VmDiskService
Locates the disk service.
32749 32750 32751 |
# File 'lib/ovirtsdk4/services.rb', line 32749 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.
32738 32739 32740 |
# File 'lib/ovirtsdk4/services.rb', line 32738 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32760 32761 32762 32763 32764 32765 32766 32767 32768 32769 |
# File 'lib/ovirtsdk4/services.rb', line 32760 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 |