- 0.63.0 (latest)
- 0.62.0
- 0.60.0
- 0.59.0
- 0.58.0
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.7
- 0.13.1
- 0.12.1
- 0.11.5
public class AgentsClient implements BackgroundResource
Service Description: Service for managing Agents.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
try (AgentsClient agentsClient = AgentsClient.create()) {
AgentName name = AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]");
Agent response = agentsClient.getAgent(name);
}
Note: close() needs to be called on the AgentsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of AgentsSettings to create(). For example:
To customize credentials:
AgentsSettings agentsSettings =
AgentsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
AgentsClient agentsClient = AgentsClient.create(agentsSettings);
To customize the endpoint:
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(myEndpoint).build();
AgentsClient agentsClient = AgentsClient.create(agentsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceStatic Methods
create()
public static final AgentsClient create()
Constructs an instance of AgentsClient with default settings.
Type | Description |
AgentsClient |
Type | Description |
IOException |
create(AgentsSettings settings)
public static final AgentsClient create(AgentsSettings settings)
Constructs an instance of AgentsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Name | Description |
settings | AgentsSettings |
Type | Description |
AgentsClient |
Type | Description |
IOException |
create(AgentsStub stub)
public static final AgentsClient create(AgentsStub stub)
Constructs an instance of AgentsClient, using the given stub for making calls. This is for advanced usage - prefer using create(AgentsSettings).
Name | Description |
stub | AgentsStub |
Type | Description |
AgentsClient |
Constructors
AgentsClient(AgentsSettings settings)
protected AgentsClient(AgentsSettings settings)
Constructs an instance of AgentsClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
Name | Description |
settings | AgentsSettings |
AgentsClient(AgentsStub stub)
protected AgentsClient(AgentsStub stub)
Name | Description |
stub | AgentsStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Name | Description |
duration | long |
unit | TimeUnit |
Type | Description |
boolean |
Type | Description |
InterruptedException |
close()
public final void close()
createAgent(CreateAgentRequest request)
public final Agent createAgent(CreateAgentRequest request)
Creates an agent in the specified location.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
CreateAgentRequest request =
CreateAgentRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setAgent(Agent.newBuilder().build())
.build();
Agent response = agentsClient.createAgent(request);
}
Name | Description |
request | CreateAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
Agent |
createAgent(LocationName parent, Agent agent)
public final Agent createAgent(LocationName parent, Agent agent)
Creates an agent in the specified location.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Agent agent = Agent.newBuilder().build();
Agent response = agentsClient.createAgent(parent, agent);
}
Name | Description |
parent | LocationName Required. The location to create a agent for. Format: |
agent | Agent Required. The agent to create. |
Type | Description |
Agent |
createAgent(String parent, Agent agent)
public final Agent createAgent(String parent, Agent agent)
Creates an agent in the specified location.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Agent agent = Agent.newBuilder().build();
Agent response = agentsClient.createAgent(parent, agent);
}
Name | Description |
parent | String Required. The location to create a agent for. Format: |
agent | Agent Required. The agent to create. |
Type | Description |
Agent |
createAgentCallable()
public final UnaryCallable<CreateAgentRequest,Agent> createAgentCallable()
Creates an agent in the specified location.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
CreateAgentRequest request =
CreateAgentRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setAgent(Agent.newBuilder().build())
.build();
ApiFuture<Agent> future = agentsClient.createAgentCallable().futureCall(request);
// Do something.
Agent response = future.get();
}
Type | Description |
UnaryCallable<CreateAgentRequest,Agent> |
deleteAgent(AgentName name)
public final void deleteAgent(AgentName name)
Deletes the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
AgentName name = AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]");
agentsClient.deleteAgent(name);
}
Name | Description |
name | AgentName Required. The name of the agent to delete. Format: |
deleteAgent(DeleteAgentRequest request)
public final void deleteAgent(DeleteAgentRequest request)
Deletes the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
DeleteAgentRequest request =
DeleteAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.build();
agentsClient.deleteAgent(request);
}
Name | Description |
request | DeleteAgentRequest The request object containing all of the parameters for the API call. |
deleteAgent(String name)
public final void deleteAgent(String name)
Deletes the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
String name = AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString();
agentsClient.deleteAgent(name);
}
Name | Description |
name | String Required. The name of the agent to delete. Format: |
deleteAgentCallable()
public final UnaryCallable<DeleteAgentRequest,Empty> deleteAgentCallable()
Deletes the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
DeleteAgentRequest request =
DeleteAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.build();
ApiFuture<Empty> future = agentsClient.deleteAgentCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteAgentRequest,Empty> |
exportAgentAsync(ExportAgentRequest request)
public final OperationFuture<ExportAgentResponse,Struct> exportAgentAsync(ExportAgentRequest request)
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:
- metadata
: An empty Struct
message
response
: ExportAgentResponseSample code:
try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .setAgentUri("agentUri1469149223") .setEnvironment( EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]") .toString()) .build(); ExportAgentResponse response = agentsClient.exportAgentAsync(request).get(); }
Name | Description |
request | ExportAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<ExportAgentResponse,Struct> |
exportAgentCallable()
public final UnaryCallable<ExportAgentRequest,Operation> exportAgentCallable()
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:
- metadata
: An empty Struct
message
response
: ExportAgentResponseSample code:
try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .setAgentUri("agentUri1469149223") .setEnvironment( EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]") .toString()) .build(); ApiFuture<Operation> future = agentsClient.exportAgentCallable().futureCall(request); // Do something. Operation response = future.get(); }
Type | Description |
UnaryCallable<ExportAgentRequest,Operation> |
exportAgentOperationCallable()
public final OperationCallable<ExportAgentRequest,ExportAgentResponse,Struct> exportAgentOperationCallable()
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:
- metadata
: An empty Struct
message
response
: ExportAgentResponseSample code:
try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .setAgentUri("agentUri1469149223") .setEnvironment( EnvironmentName.of("[PROJECT]", "[LOCATION]", "[AGENT]", "[ENVIRONMENT]") .toString()) .build(); OperationFuture
Type | Description |
OperationCallable<ExportAgentRequest,ExportAgentResponse,Struct> |
getAgent(AgentName name)
public final Agent getAgent(AgentName name)
Retrieves the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
AgentName name = AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]");
Agent response = agentsClient.getAgent(name);
}
Name | Description |
name | AgentName Required. The name of the agent. Format: |
Type | Description |
Agent |
getAgent(GetAgentRequest request)
public final Agent getAgent(GetAgentRequest request)
Retrieves the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentRequest request =
GetAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.build();
Agent response = agentsClient.getAgent(request);
}
Name | Description |
request | GetAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
Agent |
getAgent(String name)
public final Agent getAgent(String name)
Retrieves the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
String name = AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString();
Agent response = agentsClient.getAgent(name);
}
Name | Description |
name | String Required. The name of the agent. Format: |
Type | Description |
Agent |
getAgentCallable()
public final UnaryCallable<GetAgentRequest,Agent> getAgentCallable()
Retrieves the specified agent.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentRequest request =
GetAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.build();
ApiFuture<Agent> future = agentsClient.getAgentCallable().futureCall(request);
// Do something.
Agent response = future.get();
}
Type | Description |
UnaryCallable<GetAgentRequest,Agent> |
getAgentValidationResult(AgentValidationResultName name)
public final AgentValidationResult getAgentValidationResult(AgentValidationResultName name)
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
AgentValidationResultName name =
AgentValidationResultName.of("[PROJECT]", "[LOCATION]", "[AGENT]");
AgentValidationResult response = agentsClient.getAgentValidationResult(name);
}
Name | Description |
name | AgentValidationResultName Required. The agent name. Format: |
Type | Description |
AgentValidationResult |
getAgentValidationResult(GetAgentValidationResultRequest request)
public final AgentValidationResult getAgentValidationResult(GetAgentValidationResultRequest request)
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentValidationResultRequest request =
GetAgentValidationResultRequest.newBuilder()
.setName(
AgentValidationResultName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
AgentValidationResult response = agentsClient.getAgentValidationResult(request);
}
Name | Description |
request | GetAgentValidationResultRequest The request object containing all of the parameters for the API call. |
Type | Description |
AgentValidationResult |
getAgentValidationResult(String name)
public final AgentValidationResult getAgentValidationResult(String name)
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
String name = AgentValidationResultName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString();
AgentValidationResult response = agentsClient.getAgentValidationResult(name);
}
Name | Description |
name | String Required. The agent name. Format: |
Type | Description |
AgentValidationResult |
getAgentValidationResultCallable()
public final UnaryCallable<GetAgentValidationResultRequest,AgentValidationResult> getAgentValidationResultCallable()
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentValidationResultRequest request =
GetAgentValidationResultRequest.newBuilder()
.setName(
AgentValidationResultName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
ApiFuture
Type | Description |
UnaryCallable<GetAgentValidationResultRequest,AgentValidationResult> |
getOperationsClient()
public final OperationsClient getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Type | Description |
OperationsClient |
getSettings()
public final AgentsSettings getSettings()
Type | Description |
AgentsSettings |
getStub()
public AgentsStub getStub()
Type | Description |
AgentsStub |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listAgents(ListAgentsRequest request)
public final AgentsClient.ListAgentsPagedResponse listAgents(ListAgentsRequest request)
Returns the list of all agents in the specified location.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
ListAgentsRequest request =
ListAgentsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Agent element : agentsClient.listAgents(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListAgentsRequest The request object containing all of the parameters for the API call. |
Type | Description |
AgentsClient.ListAgentsPagedResponse |
listAgents(LocationName parent)
public final AgentsClient.ListAgentsPagedResponse listAgents(LocationName parent)
Returns the list of all agents in the specified location.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Agent element : agentsClient.listAgents(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | LocationName Required. The location to list all agents for. Format: |
Type | Description |
AgentsClient.ListAgentsPagedResponse |
listAgents(String parent)
public final AgentsClient.ListAgentsPagedResponse listAgents(String parent)
Returns the list of all agents in the specified location.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Agent element : agentsClient.listAgents(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. The location to list all agents for. Format: |
Type | Description |
AgentsClient.ListAgentsPagedResponse |
listAgentsCallable()
public final UnaryCallable<ListAgentsRequest,ListAgentsResponse> listAgentsCallable()
Returns the list of all agents in the specified location.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
ListAgentsRequest request =
ListAgentsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListAgentsResponse response = agentsClient.listAgentsCallable().call(request);
for (Agent element : response.getResponsesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListAgentsRequest,ListAgentsResponse> |
listAgentsPagedCallable()
public final UnaryCallable<ListAgentsRequest,AgentsClient.ListAgentsPagedResponse> listAgentsPagedCallable()
Returns the list of all agents in the specified location.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
ListAgentsRequest request =
ListAgentsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Agent> future = agentsClient.listAgentsPagedCallable().futureCall(request);
// Do something.
for (Agent element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<ListAgentsRequest,ListAgentsPagedResponse> |
restoreAgentAsync(RestoreAgentRequest request)
public final OperationFuture<Empty,Struct> restoreAgentAsync(RestoreAgentRequest request)
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:
- metadata
: An empty Struct
message
response
: An Empty messageNote: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .build(); agentsClient.restoreAgentAsync(request).get(); }
Name | Description |
request | RestoreAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,Struct> |
restoreAgentCallable()
public final UnaryCallable<RestoreAgentRequest,Operation> restoreAgentCallable()
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:
- metadata
: An empty Struct
message
response
: An Empty messageNote: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .build(); ApiFuture<Operation> future = agentsClient.restoreAgentCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
UnaryCallable<RestoreAgentRequest,Operation> |
restoreAgentOperationCallable()
public final OperationCallable<RestoreAgentRequest,Empty,Struct> restoreAgentOperationCallable()
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:
- metadata
: An empty Struct
message
response
: An Empty messageNote: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString()) .build(); OperationFuture
Type | Description |
OperationCallable<RestoreAgentRequest,Empty,Struct> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateAgent(Agent agent, FieldMask updateMask)
public final Agent updateAgent(Agent agent, FieldMask updateMask)
Updates the specified agent.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
Agent agent = Agent.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Agent response = agentsClient.updateAgent(agent, updateMask);
}
Name | Description |
agent | Agent Required. The agent to update. |
updateMask | FieldMask The mask to control which fields get updated. If the mask is not present, all fields will be updated. |
Type | Description |
Agent |
updateAgent(UpdateAgentRequest request)
public final Agent updateAgent(UpdateAgentRequest request)
Updates the specified agent.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
UpdateAgentRequest request =
UpdateAgentRequest.newBuilder()
.setAgent(Agent.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Agent response = agentsClient.updateAgent(request);
}
Name | Description |
request | UpdateAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
Agent |
updateAgentCallable()
public final UnaryCallable<UpdateAgentRequest,Agent> updateAgentCallable()
Updates the specified agent.
Note: You should always train flows prior to sending them queries. See the training documentation.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
UpdateAgentRequest request =
UpdateAgentRequest.newBuilder()
.setAgent(Agent.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Agent> future = agentsClient.updateAgentCallable().futureCall(request);
// Do something.
Agent response = future.get();
}
Type | Description |
UnaryCallable<UpdateAgentRequest,Agent> |
validateAgent(ValidateAgentRequest request)
public final AgentValidationResult validateAgent(ValidateAgentRequest request)
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.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
ValidateAgentRequest request =
ValidateAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
AgentValidationResult response = agentsClient.validateAgent(request);
}
Name | Description |
request | ValidateAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
AgentValidationResult |
validateAgentCallable()
public final UnaryCallable<ValidateAgentRequest,AgentValidationResult> validateAgentCallable()
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.
Sample code:
try (AgentsClient agentsClient = AgentsClient.create()) {
ValidateAgentRequest request =
ValidateAgentRequest.newBuilder()
.setName(AgentName.of("[PROJECT]", "[LOCATION]", "[AGENT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
ApiFuture
Type | Description |
UnaryCallable<ValidateAgentRequest,AgentValidationResult> |