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_system
service. -
#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.
17530 17531 17532 |
# File 'lib/ovirtsdk4/services.rb', line 17530 def list(opts = {}) internal_get(LIST, opts) end |
#operating_system_service(id) ⇒ OperatingSystemService
Locates the operating_system
service.
17541 17542 17543 |
# File 'lib/ovirtsdk4/services.rb', line 17541 def (id) OperatingSystemService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 |
# File 'lib/ovirtsdk4/services.rb', line 17552 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 |