Class: OvirtSDK4::VmReportedDevicesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<ReportedDevice>
Returns the list of reported devices of the virtual machine.
-
#reported_device_service(id) ⇒ VmReportedDeviceService
Locates the
reported_device
service. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<ReportedDevice>
Returns the list of reported devices of the virtual machine.
The order of the returned list of devices isn’t guaranteed.
32510 32511 32512 |
# File 'lib/ovirtsdk4/services.rb', line 32510 def list(opts = {}) internal_get(LIST, opts) end |
#reported_device_service(id) ⇒ VmReportedDeviceService
Locates the reported_device
service.
32521 32522 32523 |
# File 'lib/ovirtsdk4/services.rb', line 32521 def reported_device_service(id) VmReportedDeviceService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32532 32533 32534 32535 32536 32537 32538 32539 32540 32541 |
# File 'lib/ovirtsdk4/services.rb', line 32532 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return reported_device_service(path) end return reported_device_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |