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 6995 def initialize(connection, path) @connection = connection @path = path end
Gets the authentication domain information.
Usage:
.… GET /ovirt-engine/api/domains/5678 .…
Will return the domain information:
<domain href=“/ovirt-engine/api/domains/5678” id=“5678”>
<name>internal-authz</name> <link href="/ovirt-engine/api/domains/5678/users" rel="users"/> <link href="/ovirt-engine/api/domains/5678/groups" rel="groups"/> <link href="/ovirt-engine/api/domains/5678/users?search={query}" rel="users/search"/> <link href="/ovirt-engine/api/domains/5678/groups?search={query}" rel="groups/search"/>
</domain>
@param opts [Hash] Additional options.
@return [Domain]
# File lib/ovirtsdk4/services.rb, line 7026 def get(opts = {}) query = {} request = HttpRequest.new(method: :GET, url: @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
Reference to a service to manage domain groups.
@return [DomainGroupsService] A reference to `groups` service.
# File lib/ovirtsdk4/services.rb, line 7048 def groups_service DomainGroupsService.new(@connection, "#{@path}/groups") end
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 7068 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
Returns an string representation of this service.
@return [String]
# File lib/ovirtsdk4/services.rb, line 7092 def to_s "#<#{DomainService}:#{@path}>" end
Reference to a service to manage domain users.
@return [DomainUsersService] A reference to `users` service.
# File lib/ovirtsdk4/services.rb, line 7057 def users_service DomainUsersService.new(@connection, "#{@path}/users") end