- 4.58.0 (latest)
- 4.57.0
- 4.55.0
- 4.54.0
- 4.53.0
- 4.52.0
- 4.51.0
- 4.50.0
- 4.49.0
- 4.48.0
- 4.47.0
- 4.46.0
- 4.45.0
- 4.43.0
- 4.42.0
- 4.41.0
- 4.40.0
- 4.39.0
- 4.38.0
- 4.37.0
- 4.36.0
- 4.35.0
- 4.34.0
- 4.33.0
- 4.30.0
- 4.29.0
- 4.28.0
- 4.27.0
- 4.26.0
- 4.25.0
- 4.24.0
- 4.23.0
- 4.22.0
- 4.21.0
- 4.20.0
- 4.19.0
- 4.18.0
- 4.17.0
- 4.15.0
- 4.14.0
- 4.13.0
- 4.12.0
- 4.11.0
- 4.10.0
- 4.9.1
- 4.8.6
- 4.7.5
- 4.6.0
- 4.5.11
- 4.4.0
- 4.3.1
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:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Agent response = agentsClient.getAgent(parent);
}
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:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
AgentsSettings agentsSettings =
AgentsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
AgentsClient agentsClient = AgentsClient.create(agentsSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(myEndpoint).build();
AgentsClient agentsClient = AgentsClient.create(agentsSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
AgentsSettings agentsSettings = AgentsSettings.newHttpJsonBuilder().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()
deleteAgent(DeleteAgentRequest request)
public final void deleteAgent(DeleteAgentRequest request)
Deletes the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
DeleteAgentRequest request =
DeleteAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build();
agentsClient.deleteAgent(request);
}
Name | Description |
request | DeleteAgentRequest The request object containing all of the parameters for the API call. |
deleteAgent(LocationName parent)
public final void deleteAgent(LocationName parent)
Deletes the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
agentsClient.deleteAgent(parent);
}
Name | Description |
parent | LocationName Required. The project that the agent to delete is associated with. Format:
|
deleteAgent(ProjectName parent)
public final void deleteAgent(ProjectName parent)
Deletes the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
agentsClient.deleteAgent(parent);
}
Name | Description |
parent | ProjectName Required. The project that the agent to delete is associated with. Format:
|
deleteAgent(String parent)
public final void deleteAgent(String parent)
Deletes the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
agentsClient.deleteAgent(parent);
}
Name | Description |
parent | String Required. The project that the agent to delete is associated with. Format:
|
deleteAgentCallable()
public final UnaryCallable<DeleteAgentRequest,Empty> deleteAgentCallable()
Deletes the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
DeleteAgentRequest request =
DeleteAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").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 ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").toString()) .setAgentUri("agentUri1469149223") .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> |
exportAgentAsync(LocationName parent)
public final OperationFuture<ExportAgentResponse,Struct> exportAgentAsync(LocationName parent)
Exports the specified agent to a ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); ExportAgentResponse response = agentsClient.exportAgentAsync(parent).get(); }
Name | Description |
parent | LocationName Required. The project that the agent to export is associated with. Format:
|
Type | Description |
OperationFuture<ExportAgentResponse,Struct> |
exportAgentAsync(ProjectName parent)
public final OperationFuture<ExportAgentResponse,Struct> exportAgentAsync(ProjectName parent)
Exports the specified agent to a ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ProjectName parent = ProjectName.of("[PROJECT]"); ExportAgentResponse response = agentsClient.exportAgentAsync(parent).get(); }
Name | Description |
parent | ProjectName Required. The project that the agent to export is associated with. Format:
|
Type | Description |
OperationFuture<ExportAgentResponse,Struct> |
exportAgentAsync(String parent)
public final OperationFuture<ExportAgentResponse,Struct> exportAgentAsync(String parent)
Exports the specified agent to a ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { String parent = ProjectName.of("[PROJECT]").toString(); ExportAgentResponse response = agentsClient.exportAgentAsync(parent).get(); }
Name | Description |
parent | String Required. The project that the agent to export is associated with. Format:
|
Type | Description |
OperationFuture<ExportAgentResponse,Struct> |
exportAgentCallable()
public final UnaryCallable<ExportAgentRequest,Operation> exportAgentCallable()
Exports the specified agent to a ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").toString()) .setAgentUri("agentUri1469149223") .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 ZIP 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:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ExportAgentRequest request = ExportAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").toString()) .setAgentUri("agentUri1469149223") .build(); OperationFuture<ExportAgentResponse, Struct> future = agentsClient.exportAgentOperationCallable().futureCall(request); // Do something. ExportAgentResponse response = future.get(); }
Type | Description |
OperationCallable<ExportAgentRequest,ExportAgentResponse,Struct> |
getAgent(GetAgentRequest request)
public final Agent getAgent(GetAgentRequest request)
Retrieves the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentRequest request =
GetAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").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(LocationName parent)
public final Agent getAgent(LocationName parent)
Retrieves the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Agent response = agentsClient.getAgent(parent);
}
Name | Description |
parent | LocationName Required. The project that the agent to fetch is associated with. Format:
|
Type | Description |
Agent |
getAgent(ProjectName parent)
public final Agent getAgent(ProjectName parent)
Retrieves the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Agent response = agentsClient.getAgent(parent);
}
Name | Description |
parent | ProjectName Required. The project that the agent to fetch is associated with. Format:
|
Type | Description |
Agent |
getAgent(String parent)
public final Agent getAgent(String parent)
Retrieves the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
Agent response = agentsClient.getAgent(parent);
}
Name | Description |
parent | String Required. The project that the agent to fetch is associated with. Format:
|
Type | Description |
Agent |
getAgentCallable()
public final UnaryCallable<GetAgentRequest,Agent> getAgentCallable()
Retrieves the specified agent.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetAgentRequest request =
GetAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build();
ApiFuture<Agent> future = agentsClient.getAgentCallable().futureCall(request);
// Do something.
Agent response = future.get();
}
Type | Description |
UnaryCallable<GetAgentRequest,Agent> |
getHttpJsonOperationsClient()
public final OperationsClient getHttpJsonOperationsClient()
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 |
getLocation(GetLocationRequest request)
public final Location getLocation(GetLocationRequest request)
Gets information about a location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = agentsClient.getLocation(request);
}
Name | Description |
request | com.google.cloud.location.GetLocationRequest The request object containing all of the parameters for the API call. |
Type | Description |
com.google.cloud.location.Location |
getLocationCallable()
public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()
Gets information about a location.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = agentsClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
Type | Description |
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
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 |
getValidationResult(GetValidationResultRequest request)
public final ValidationResult getValidationResult(GetValidationResultRequest request)
Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetValidationResultRequest request =
GetValidationResultRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
ValidationResult response = agentsClient.getValidationResult(request);
}
Name | Description |
request | GetValidationResultRequest The request object containing all of the parameters for the API call. |
Type | Description |
ValidationResult |
getValidationResultCallable()
public final UnaryCallable<GetValidationResultRequest,ValidationResult> getValidationResultCallable()
Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
GetValidationResultRequest request =
GetValidationResultRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setLanguageCode("languageCode-2092349083")
.build();
ApiFuture<ValidationResult> future =
agentsClient.getValidationResultCallable().futureCall(request);
// Do something.
ValidationResult response = future.get();
}
Type | Description |
UnaryCallable<GetValidationResultRequest,ValidationResult> |
importAgentAsync(ImportAgentRequest request)
public final OperationFuture<Empty,Struct> importAgentAsync(ImportAgentRequest request)
Imports the specified agent from a ZIP file.
Uploads new intents and entity types without deleting the existing ones. Intents and entity types with the same name are replaced with the new versions from ImportAgentRequest. After the import, the imported draft agent will be trained automatically (unless disabled in agent settings). However, once the import is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when importing is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ImportAgentRequest request = ImportAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); agentsClient.importAgentAsync(request).get(); }
Name | Description |
request | ImportAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,Struct> |
importAgentCallable()
public final UnaryCallable<ImportAgentRequest,Operation> importAgentCallable()
Imports the specified agent from a ZIP file.
Uploads new intents and entity types without deleting the existing ones. Intents and entity types with the same name are replaced with the new versions from ImportAgentRequest. After the import, the imported draft agent will be trained automatically (unless disabled in agent settings). However, once the import is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when importing is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ImportAgentRequest request = ImportAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); ApiFuture<Operation> future = agentsClient.importAgentCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
UnaryCallable<ImportAgentRequest,Operation> |
importAgentOperationCallable()
public final OperationCallable<ImportAgentRequest,Empty,Struct> importAgentOperationCallable()
Imports the specified agent from a ZIP file.
Uploads new intents and entity types without deleting the existing ones. Intents and entity types with the same name are replaced with the new versions from ImportAgentRequest. After the import, the imported draft agent will be trained automatically (unless disabled in agent settings). However, once the import is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when importing is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ImportAgentRequest request = ImportAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); OperationFuture<Empty, Struct> future = agentsClient.importAgentOperationCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
OperationCallable<ImportAgentRequest,Empty,Struct> |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listLocations(ListLocationsRequest request)
public final AgentsClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request)
Lists information about the supported locations for this service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : agentsClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | com.google.cloud.location.ListLocationsRequest The request object containing all of the parameters for the API call. |
Type | Description |
AgentsClient.ListLocationsPagedResponse |
listLocationsCallable()
public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()
Lists information about the supported locations for this service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response = agentsClient.listLocationsCallable().call(request);
for (Location element : response.getLocationsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
listLocationsPagedCallable()
public final UnaryCallable<ListLocationsRequest,AgentsClient.ListLocationsPagedResponse> listLocationsPagedCallable()
Lists information about the supported locations for this service.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future = agentsClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse> |
restoreAgentAsync(RestoreAgentRequest request)
public final OperationFuture<Empty,Struct> restoreAgentAsync(RestoreAgentRequest request)
Restores the specified agent from a ZIP file.
Replaces the current agent version with a new one. All the intents and entity types in the older version are deleted. After the restore, the restored draft agent will be trained automatically (unless disabled in agent settings). However, once the restore is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when restoring is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").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 ZIP file.
Replaces the current agent version with a new one. All the intents and entity types in the older version are deleted. After the restore, the restored draft agent will be trained automatically (unless disabled in agent settings). However, once the restore is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when restoring is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").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 ZIP file.
Replaces the current agent version with a new one. All the intents and entity types in the older version are deleted. After the restore, the restored draft agent will be trained automatically (unless disabled in agent settings). However, once the restore is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly.
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 messageThe operation only tracks when restoring is complete, not when it is done training.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { RestoreAgentRequest request = RestoreAgentRequest.newBuilder() .setParent(ProjectName.of("[PROJECT]").toString()) .build(); OperationFuture<Empty, Struct> future = agentsClient.restoreAgentOperationCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
OperationCallable<RestoreAgentRequest,Empty,Struct> |
searchAgents(LocationName parent)
public final AgentsClient.SearchAgentsPagedResponse searchAgents(LocationName parent)
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Agent element : agentsClient.searchAgents(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | LocationName Required. The project to list agents from. Format: |
Type | Description |
AgentsClient.SearchAgentsPagedResponse |
searchAgents(ProjectName parent)
public final AgentsClient.SearchAgentsPagedResponse searchAgents(ProjectName parent)
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
for (Agent element : agentsClient.searchAgents(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | ProjectName Required. The project to list agents from. Format: |
Type | Description |
AgentsClient.SearchAgentsPagedResponse |
searchAgents(SearchAgentsRequest request)
public final AgentsClient.SearchAgentsPagedResponse searchAgents(SearchAgentsRequest request)
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
SearchAgentsRequest request =
SearchAgentsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Agent element : agentsClient.searchAgents(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | SearchAgentsRequest The request object containing all of the parameters for the API call. |
Type | Description |
AgentsClient.SearchAgentsPagedResponse |
searchAgents(String parent)
public final AgentsClient.SearchAgentsPagedResponse searchAgents(String parent)
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
for (Agent element : agentsClient.searchAgents(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. The project to list agents from. Format: |
Type | Description |
AgentsClient.SearchAgentsPagedResponse |
searchAgentsCallable()
public final UnaryCallable<SearchAgentsRequest,SearchAgentsResponse> searchAgentsCallable()
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
SearchAgentsRequest request =
SearchAgentsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
SearchAgentsResponse response = agentsClient.searchAgentsCallable().call(request);
for (Agent element : response.getAgentsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<SearchAgentsRequest,SearchAgentsResponse> |
searchAgentsPagedCallable()
public final UnaryCallable<SearchAgentsRequest,AgentsClient.SearchAgentsPagedResponse> searchAgentsPagedCallable()
Returns the list of agents.
Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
SearchAgentsRequest request =
SearchAgentsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Agent> future = agentsClient.searchAgentsPagedCallable().futureCall(request);
// Do something.
for (Agent element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<SearchAgentsRequest,SearchAgentsPagedResponse> |
setAgent(Agent agent)
public final Agent setAgent(Agent agent)
Creates/updates the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
Agent agent = Agent.newBuilder().build();
Agent response = agentsClient.setAgent(agent);
}
Name | Description |
agent | Agent Required. The agent to update. |
Type | Description |
Agent |
setAgent(SetAgentRequest request)
public final Agent setAgent(SetAgentRequest request)
Creates/updates the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
SetAgentRequest request =
SetAgentRequest.newBuilder()
.setAgent(Agent.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Agent response = agentsClient.setAgent(request);
}
Name | Description |
request | SetAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
Agent |
setAgentCallable()
public final UnaryCallable<SetAgentRequest,Agent> setAgentCallable()
Creates/updates the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AgentsClient agentsClient = AgentsClient.create()) {
SetAgentRequest request =
SetAgentRequest.newBuilder()
.setAgent(Agent.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Agent> future = agentsClient.setAgentCallable().futureCall(request);
// Do something.
Agent response = future.get();
}
Type | Description |
UnaryCallable<SetAgentRequest,Agent> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
trainAgentAsync(LocationName parent)
public final OperationFuture<Empty,Struct> trainAgentAsync(LocationName parent)
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); agentsClient.trainAgentAsync(parent).get(); }
Name | Description |
parent | LocationName Required. The project that the agent to train is associated with. Format:
|
Type | Description |
OperationFuture<Empty,Struct> |
trainAgentAsync(ProjectName parent)
public final OperationFuture<Empty,Struct> trainAgentAsync(ProjectName parent)
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { ProjectName parent = ProjectName.of("[PROJECT]"); agentsClient.trainAgentAsync(parent).get(); }
Name | Description |
parent | ProjectName Required. The project that the agent to train is associated with. Format:
|
Type | Description |
OperationFuture<Empty,Struct> |
trainAgentAsync(TrainAgentRequest request)
public final OperationFuture<Empty,Struct> trainAgentAsync(TrainAgentRequest request)
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { TrainAgentRequest request = TrainAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); agentsClient.trainAgentAsync(request).get(); }
Name | Description |
request | TrainAgentRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,Struct> |
trainAgentAsync(String parent)
public final OperationFuture<Empty,Struct> trainAgentAsync(String parent)
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { String parent = ProjectName.of("[PROJECT]").toString(); agentsClient.trainAgentAsync(parent).get(); }
Name | Description |
parent | String Required. The project that the agent to train is associated with. Format:
|
Type | Description |
OperationFuture<Empty,Struct> |
trainAgentCallable()
public final UnaryCallable<TrainAgentRequest,Operation> trainAgentCallable()
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { TrainAgentRequest request = TrainAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); ApiFuture<Operation> future = agentsClient.trainAgentCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
UnaryCallable<TrainAgentRequest,Operation> |
trainAgentOperationCallable()
public final OperationCallable<TrainAgentRequest,Empty,Struct> trainAgentOperationCallable()
Trains the specified agent.
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 an agent prior to sending it queries. See the training documentation.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (AgentsClient agentsClient = AgentsClient.create()) { TrainAgentRequest request = TrainAgentRequest.newBuilder().setParent(ProjectName.of("[PROJECT]").toString()).build(); OperationFuture<Empty, Struct> future = agentsClient.trainAgentOperationCallable().futureCall(request); // Do something. future.get(); }
Type | Description |
OperationCallable<TrainAgentRequest,Empty,Struct> |