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.
25087 25088 25089 |
# File 'lib/ovirtsdk4/services.rb', line 25087 def option_service(id) SystemOptionService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 |
# File 'lib/ovirtsdk4/services.rb', line 25098 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 |