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.
25985 25986 25987 |
# File 'lib/ovirtsdk4/services.rb', line 25985 def option_service(id) SystemOptionService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 |
# File 'lib/ovirtsdk4/services.rb', line 25996 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 |