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 6246 def initialize(connection, path) @connection = connection @path = path end
Returns the representation of the object managed by this service.
@param opts [Hash] Additional options.
@return [Domain]
# File lib/ovirtsdk4/services.rb, line 6258 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
Locates the `groups` service.
@return [DomainGroupsService] A reference to `groups` service.
# File lib/ovirtsdk4/services.rb, line 6279 def groups_service return 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 6298 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 6322 def to_s return "#<#{DomainService}:#{@path}>" end
Locates the `users` service.
@return [DomainUsersService] A reference to `users` service.
# File lib/ovirtsdk4/services.rb, line 6287 def users_service return DomainUsersService.new(@connection, "#{@path}/users") end