Class: OvirtSDK4::VmCheckpointDiskService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ Disk
Retrieves the description of the disk.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ Disk
Retrieves the description of the disk.
32693 32694 32695 |
# File 'lib/ovirtsdk4/services.rb', line 32693 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32704 32705 32706 32707 32708 32709 |
# File 'lib/ovirtsdk4/services.rb', line 32704 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |