Class: OvirtSDK4::VmCheckpointDisksService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#disk_service(id) ⇒ VmCheckpointDiskService
A reference to the service that manages a specific disk.
-
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks in checkpoint.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#disk_service(id) ⇒ VmCheckpointDiskService
A reference to the service that manages a specific disk.
32309 32310 32311 |
# File 'lib/ovirtsdk4/services.rb', line 32309 def disk_service(id) VmCheckpointDiskService.new(self, id) end |
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks in checkpoint.
32298 32299 32300 |
# File 'lib/ovirtsdk4/services.rb', line 32298 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 |
# File 'lib/ovirtsdk4/services.rb', line 32320 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 |