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_deviceservice. -
#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.
34735 34736 34737 |
# File 'lib/ovirtsdk4/services.rb', line 34735 def list(opts = {}) internal_get(LIST, opts) end |
#reported_device_service(id) ⇒ VmReportedDeviceService
Locates the reported_device service.
34746 34747 34748 |
# File 'lib/ovirtsdk4/services.rb', line 34746 def reported_device_service(id) VmReportedDeviceService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
34757 34758 34759 34760 34761 34762 34763 34764 34765 34766 |
# File 'lib/ovirtsdk4/services.rb', line 34757 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 |