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.
32227 32228 32229 |
# File 'lib/ovirtsdk4/services.rb', line 32227 def disk_service(id) VmCheckpointDiskService.new(self, id) end |
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks in checkpoint.
32216 32217 32218 |
# File 'lib/ovirtsdk4/services.rb', line 32216 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 |
# File 'lib/ovirtsdk4/services.rb', line 32238 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 |