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.
29749 29750 29751 |
# File 'lib/ovirtsdk4/services.rb', line 29749 def add(disk, opts = {}) internal_add(disk, Disk, ADD, opts) end |
#disk_service(id) ⇒ VmDiskService
Locates the disk service.
29794 29795 29796 |
# File 'lib/ovirtsdk4/services.rb', line 29794 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.
29783 29784 29785 |
# File 'lib/ovirtsdk4/services.rb', line 29783 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 |
# File 'lib/ovirtsdk4/services.rb', line 29805 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 |