Class AgentsGrpc.AgentsImplBase (0.17.0)

public abstract static class AgentsGrpc.AgentsImplBase implements BindableService

Service for managing Agents.

Inheritance

java.lang.Object > AgentsGrpc.AgentsImplBase

Implements

io.grpc.BindableService

Constructors

AgentsImplBase()

public AgentsImplBase()

Methods

bindService()

public final ServerServiceDefinition bindService()
Returns
TypeDescription
io.grpc.ServerServiceDefinition

createAgent(CreateAgentRequest request, StreamObserver<Agent> responseObserver)

public void createAgent(CreateAgentRequest request, StreamObserver<Agent> responseObserver)

Creates an agent in the specified location. Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestCreateAgentRequest
responseObserverio.grpc.stub.StreamObserver<Agent>

deleteAgent(DeleteAgentRequest request, StreamObserver<Empty> responseObserver)

public void deleteAgent(DeleteAgentRequest request, StreamObserver<Empty> responseObserver)

Deletes the specified agent.

Parameters
NameDescription
requestDeleteAgentRequest
responseObserverio.grpc.stub.StreamObserver<Empty>

exportAgent(ExportAgentRequest request, StreamObserver<Operation> responseObserver)

public void exportAgent(ExportAgentRequest request, StreamObserver<Operation> responseObserver)

Exports the specified agent to a binary file. This method is a long-running operation. The returned Operation type has the following method-specific fields:

Parameters
NameDescription
requestExportAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

getAgent(GetAgentRequest request, StreamObserver<Agent> responseObserver)

public void getAgent(GetAgentRequest request, StreamObserver<Agent> responseObserver)

Retrieves the specified agent.

Parameters
NameDescription
requestGetAgentRequest
responseObserverio.grpc.stub.StreamObserver<Agent>

getAgentValidationResult(GetAgentValidationResultRequest request, StreamObserver<AgentValidationResult> responseObserver)

public void getAgentValidationResult(GetAgentValidationResultRequest request, StreamObserver<AgentValidationResult> responseObserver)

Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.

Parameters
NameDescription
requestGetAgentValidationResultRequest
responseObserverio.grpc.stub.StreamObserver<AgentValidationResult>

listAgents(ListAgentsRequest request, StreamObserver<ListAgentsResponse> responseObserver)

public void listAgents(ListAgentsRequest request, StreamObserver<ListAgentsResponse> responseObserver)

Returns the list of all agents in the specified location.

Parameters
NameDescription
requestListAgentsRequest
responseObserverio.grpc.stub.StreamObserver<ListAgentsResponse>

restoreAgent(RestoreAgentRequest request, StreamObserver<Operation> responseObserver)

public void restoreAgent(RestoreAgentRequest request, StreamObserver<Operation> responseObserver)

Restores the specified agent from a binary file. Replaces the current agent with a new one. Note that all existing resources in agent (e.g. intents, entity types, flows) will be removed. This method is a long-running operation. The returned Operation type has the following method-specific fields:

Parameters
NameDescription
requestRestoreAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

updateAgent(UpdateAgentRequest request, StreamObserver<Agent> responseObserver)

public void updateAgent(UpdateAgentRequest request, StreamObserver<Agent> responseObserver)

Updates the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestUpdateAgentRequest
responseObserverio.grpc.stub.StreamObserver<Agent>

validateAgent(ValidateAgentRequest request, StreamObserver<AgentValidationResult> responseObserver)

public void validateAgent(ValidateAgentRequest request, StreamObserver<AgentValidationResult> responseObserver)

Validates the specified agent and creates or updates validation results. The agent in draft version is validated. Please call this API after the training is completed to get the complete validation results.

Parameters
NameDescription
requestValidateAgentRequest
responseObserverio.grpc.stub.StreamObserver<AgentValidationResult>