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
.
30093 30094 30095 |
# File 'lib/ovirtsdk4/services.rb', line 30093 def add(disk, opts = {}) internal_add(disk, Disk, ADD, opts) end |
#disk_service(id) ⇒ VmDiskService
Locates the disk
service.
30138 30139 30140 |
# File 'lib/ovirtsdk4/services.rb', line 30138 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.
30127 30128 30129 |
# File 'lib/ovirtsdk4/services.rb', line 30127 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 |
# File 'lib/ovirtsdk4/services.rb', line 30149 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 |