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.
18593 18594 18595 |
# File 'lib/ovirtsdk4/services.rb', line 18593 def list(opts = {}) internal_get(LIST, opts) end |
#operating_system_service(id) ⇒ OperatingSystemService
Locates the operating_system service.
18604 18605 18606 |
# File 'lib/ovirtsdk4/services.rb', line 18604 def (id) .new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 |
# File 'lib/ovirtsdk4/services.rb', line 18615 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 |