Method: OvirtSDK4::AffinityLabelHostService#service

Defined in:
lib/ovirtsdk4/services.rb

#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.

Raises:



1983
1984
1985
1986
1987
1988
# File 'lib/ovirtsdk4/services.rb', line 1983

def service(path)
  if path.nil? || path == ''
    return self
  end
  raise Error.new("The path \"#{path}\" doesn't correspond to any service")
end