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.
26326 26327 26328 |
# File 'lib/ovirtsdk4/services.rb', line 26326 def option_service(id) SystemOptionService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 |
# File 'lib/ovirtsdk4/services.rb', line 26337 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 |