Class: OvirtSDK4::OperatingSystemsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<OperatingSystemInfo>
Returns the list of types of operating system available in the system.
-
#operating_system_service(id) ⇒ OperatingSystemService
Locates the
operating_systemservice. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<OperatingSystemInfo>
Returns the list of types of operating system available in the system.
The order of the returned list of operating systems isn’t guaranteed.
17452 17453 17454 |
# File 'lib/ovirtsdk4/services.rb', line 17452 def list(opts = {}) internal_get(LIST, opts) end |
#operating_system_service(id) ⇒ OperatingSystemService
Locates the operating_system service.
17463 17464 17465 |
# File 'lib/ovirtsdk4/services.rb', line 17463 def (id) .new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 |
# File 'lib/ovirtsdk4/services.rb', line 17474 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return (path) end return (path[0..(index - 1)]).service(path[(index +1)..-1]) end |