Class: OvirtSDK4::SystemOptionsService

Inherits:
Service
  • Object
show all
Defined in:
lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb

Instance Method Summary collapse

Methods inherited from Service

#inspect, #to_s

Instance Method Details

#option_service(id) ⇒ SystemOptionService

Returns a reference to the service that provides values of specific configuration option.

Parameters:

  • id (String)

    The identifier of the option.

Returns:



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.

Parameters:

  • path (String)

    The path of the service.

Returns:

  • (Service)

    A reference to the service.



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