class OvirtSDK4::DomainService

Public Class Methods

new(connection, path) click to toggle source

Creates a new implementation of the service.

@param connection [Connection] The connection to be used by this service.

@param path [String] The relative path of this service, for example `vms/123/disks`.

@api private

# File lib/ovirtsdk4/services.rb, line 5853
def initialize(connection, path)
  @connection = connection
  @path = path
end

Public Instance Methods

get(opts = {}) click to toggle source

Returns the representation of the object managed by this service.

@param opts [Hash] Additional options.

@return [Domain]

# File lib/ovirtsdk4/services.rb, line 5865
def get(opts = {})
  query = {}
  request = Request.new(:method => :GET, :path => @path, :query => query)
  response = @connection.send(request)
  case response.code
  when 200
    begin
      reader = XmlReader.new(response.body)
      return DomainReader.read_one(reader)
    ensure
      reader.close
    end
  else
    check_fault(response)
  end
end
groups_service() click to toggle source

Locates the `groups` service.

@return [DomainGroupsService] A reference to `groups` service.

# File lib/ovirtsdk4/services.rb, line 5886
def groups_service
  return DomainGroupsService.new(@connection, "#{@path}/groups")
end
service(path) click to toggle source

Locates the service corresponding to the given path.

@param path [String] The path of the service.

@return [Service] A reference to the service.

# File lib/ovirtsdk4/services.rb, line 5905
def service(path)
  if path.nil? || path == ''
    return self
  end
  if path == 'groups'
    return groups_service
  end
  if path.start_with?('groups/')
    return groups_service.service(path[7..-1])
  end
  if path == 'users'
    return users_service
  end
  if path.start_with?('users/')
    return users_service.service(path[6..-1])
  end
  raise Error.new("The path \"#{path}\" doesn't correspond to any service")
end
to_s() click to toggle source

Returns an string representation of this service.

@return [String]

# File lib/ovirtsdk4/services.rb, line 5929
def to_s
  return "#<#{DomainService}:#{@path}>"
end
users_service() click to toggle source

Locates the `users` service.

@return [DomainUsersService] A reference to `users` service.

# File lib/ovirtsdk4/services.rb, line 5894
def users_service
  return DomainUsersService.new(@connection, "#{@path}/users")
end