Class: OvirtSDK4::SystemOptionsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#option_service(id) ⇒ SystemOptionService
Returns a reference to the service that provides values of specific configuration option.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#option_service(id) ⇒ SystemOptionService
Returns a reference to the service that provides values of specific configuration option.
24887 24888 24889 |
# File 'lib/ovirtsdk4/services.rb', line 24887 def option_service(id) SystemOptionService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 |
# File 'lib/ovirtsdk4/services.rb', line 24898 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return option_service(path) end return option_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |