- 4.87.0 (latest)
- 4.86.0
- 4.84.0
- 4.82.0
- 4.81.0
- 4.80.0
- 4.79.0
- 4.78.0
- 4.76.0
- 4.74.0
- 4.73.0
- 4.70.0
- 4.69.0
- 4.68.0
- 4.66.0
- 4.65.0
- 4.64.0
- 4.63.0
- 4.62.0
- 4.61.0
- 4.60.0
- 4.59.0
- 4.58.0
- 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
| GitHub Repository | Product Reference |
Service Description: Tool Service for LLM powered Agent Assist. Tools can be used to interact with remote APIs (e.g. fetching orders) to retrieve additional information as input to LLM.
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 (ToolsClient toolsClient = ToolsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Tool tool = Tool.newBuilder().build();
String toolId = "toolId-868061997";
Tool response = toolsClient.createTool(parent, tool, toolId);
}
Note: close() needs to be called on the ToolsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
| Method | Description | Method Variants |
|---|---|---|
CreateTool |
Creates a tool. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetTool |
Retrieves a tool. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListTools |
Lists tools. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteTool |
Deletes a tool. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateTool |
Updates a tool. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListLocations |
Lists information about the supported locations for this service. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetLocation |
Gets information about a location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return 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 ToolsSettings 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
ToolsSettings toolsSettings =
ToolsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ToolsClient toolsClient = ToolsClient.create(toolsSettings);
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
ToolsSettings toolsSettings = ToolsSettings.newBuilder().setEndpoint(myEndpoint).build();
ToolsClient toolsClient = ToolsClient.create(toolsSettings);
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
ToolsSettings toolsSettings = ToolsSettings.newHttpJsonBuilder().build();
ToolsClient toolsClient = ToolsClient.create(toolsSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ToolsClient create()Constructs an instance of ToolsClient with default settings.
| Returns | |
|---|---|
| Type | Description |
ToolsClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ToolsSettings settings)
public static final ToolsClient create(ToolsSettings settings)Constructs an instance of ToolsClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
| Parameter | |
|---|---|
| Name | Description |
settings |
ToolsSettings |
| Returns | |
|---|---|
| Type | Description |
ToolsClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ToolsStub stub)
public static final ToolsClient create(ToolsStub stub)Constructs an instance of ToolsClient, using the given stub for making calls. This is for advanced usage - prefer using create(ToolsSettings).
| Parameter | |
|---|---|
| Name | Description |
stub |
ToolsStub |
| Returns | |
|---|---|
| Type | Description |
ToolsClient |
|
Constructors
ToolsClient(ToolsSettings settings)
protected ToolsClient(ToolsSettings settings)Constructs an instance of ToolsClient, 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.
| Parameter | |
|---|---|
| Name | Description |
settings |
ToolsSettings |
ToolsClient(ToolsStub stub)
protected ToolsClient(ToolsStub stub)| Parameter | |
|---|---|
| Name | Description |
stub |
ToolsStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)| Parameters | |
|---|---|
| Name | Description |
duration |
long |
unit |
TimeUnit |
| Returns | |
|---|---|
| Type | Description |
boolean |
|
| Exceptions | |
|---|---|
| Type | Description |
InterruptedException |
|
close()
public final void close()createTool(CreateToolRequest request)
public final Tool createTool(CreateToolRequest request)Creates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
CreateToolRequest request =
CreateToolRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setTool(Tool.newBuilder().build())
.setToolId("toolId-868061997")
.build();
Tool response = toolsClient.createTool(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
CreateToolRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
createTool(LocationName parent, Tool tool, String toolId)
public final Tool createTool(LocationName parent, Tool tool, String toolId)Creates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Tool tool = Tool.newBuilder().build();
String toolId = "toolId-868061997";
Tool response = toolsClient.createTool(parent, tool, toolId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
LocationNameRequired. The project/location to create tool for. Format: |
tool |
ToolRequired. The tool to create. |
toolId |
StringOptional. The ID to use for the tool, which will become the final component of the tool's resource name. The tool ID must be compliant with the regression formula |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
createTool(String parent, Tool tool, String toolId)
public final Tool createTool(String parent, Tool tool, String toolId)Creates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Tool tool = Tool.newBuilder().build();
String toolId = "toolId-868061997";
Tool response = toolsClient.createTool(parent, tool, toolId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
StringRequired. The project/location to create tool for. Format: |
tool |
ToolRequired. The tool to create. |
toolId |
StringOptional. The ID to use for the tool, which will become the final component of the tool's resource name. The tool ID must be compliant with the regression formula |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
createToolCallable()
public final UnaryCallable<CreateToolRequest,Tool> createToolCallable()Creates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
CreateToolRequest request =
CreateToolRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setTool(Tool.newBuilder().build())
.setToolId("toolId-868061997")
.build();
ApiFuture<Tool> future = toolsClient.createToolCallable().futureCall(request);
// Do something.
Tool response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<CreateToolRequest,Tool> |
|
deleteTool(DeleteToolRequest request)
public final void deleteTool(DeleteToolRequest request)Deletes a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
DeleteToolRequest request =
DeleteToolRequest.newBuilder()
.setName(ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString())
.build();
toolsClient.deleteTool(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
DeleteToolRequestThe request object containing all of the parameters for the API call. |
deleteTool(ToolName name)
public final void deleteTool(ToolName name)Deletes a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
ToolName name = ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]");
toolsClient.deleteTool(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
ToolNameRequired. The tool resource name to delete. Format: |
deleteTool(String name)
public final void deleteTool(String name)Deletes a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
String name = ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString();
toolsClient.deleteTool(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The tool resource name to delete. Format: |
deleteToolCallable()
public final UnaryCallable<DeleteToolRequest,Empty> deleteToolCallable()Deletes a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
DeleteToolRequest request =
DeleteToolRequest.newBuilder()
.setName(ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString())
.build();
ApiFuture<Empty> future = toolsClient.deleteToolCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<DeleteToolRequest,Empty> |
|
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 (ToolsClient toolsClient = ToolsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = toolsClient.getLocation(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.cloud.location.GetLocationRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| 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 (ToolsClient toolsClient = ToolsClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = toolsClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
|
getSettings()
public final ToolsSettings getSettings()| Returns | |
|---|---|
| Type | Description |
ToolsSettings |
|
getStub()
public ToolsStub getStub()| Returns | |
|---|---|
| Type | Description |
ToolsStub |
|
getTool(GetToolRequest request)
public final Tool getTool(GetToolRequest request)Retrieves a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
GetToolRequest request =
GetToolRequest.newBuilder()
.setName(ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString())
.build();
Tool response = toolsClient.getTool(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetToolRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
getTool(ToolName name)
public final Tool getTool(ToolName name)Retrieves a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
ToolName name = ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]");
Tool response = toolsClient.getTool(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
ToolNameRequired. The tool resource name to retrieve. Format: |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
getTool(String name)
public final Tool getTool(String name)Retrieves a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
String name = ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString();
Tool response = toolsClient.getTool(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The tool resource name to retrieve. Format: |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
getToolCallable()
public final UnaryCallable<GetToolRequest,Tool> getToolCallable()Retrieves a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
GetToolRequest request =
GetToolRequest.newBuilder()
.setName(ToolName.of("[PROJECT]", "[LOCATION]", "[TOOL]").toString())
.build();
ApiFuture<Tool> future = toolsClient.getToolCallable().futureCall(request);
// Do something.
Tool response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetToolRequest,Tool> |
|
isShutdown()
public boolean isShutdown()| Returns | |
|---|---|
| Type | Description |
boolean |
|
isTerminated()
public boolean isTerminated()| Returns | |
|---|---|
| Type | Description |
boolean |
|
listLocations(ListLocationsRequest request)
public final ToolsClient.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 (ToolsClient toolsClient = ToolsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : toolsClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.cloud.location.ListLocationsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ToolsClient.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 (ToolsClient toolsClient = ToolsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response = toolsClient.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;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
|
listLocationsPagedCallable()
public final UnaryCallable<ListLocationsRequest,ToolsClient.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 (ToolsClient toolsClient = ToolsClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future = toolsClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse> |
|
listTools(ListToolsRequest request)
public final ToolsClient.ListToolsPagedResponse listTools(ListToolsRequest request)Lists tools.
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 (ToolsClient toolsClient = ToolsClient.create()) {
ListToolsRequest request =
ListToolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Tool element : toolsClient.listTools(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListToolsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ToolsClient.ListToolsPagedResponse |
|
listTools(LocationName parent)
public final ToolsClient.ListToolsPagedResponse listTools(LocationName parent)Lists tools.
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 (ToolsClient toolsClient = ToolsClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Tool element : toolsClient.listTools(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
LocationNameRequired. The project/location to list tools for. Format: |
| Returns | |
|---|---|
| Type | Description |
ToolsClient.ListToolsPagedResponse |
|
listTools(String parent)
public final ToolsClient.ListToolsPagedResponse listTools(String parent)Lists tools.
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 (ToolsClient toolsClient = ToolsClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Tool element : toolsClient.listTools(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The project/location to list tools for. Format: |
| Returns | |
|---|---|
| Type | Description |
ToolsClient.ListToolsPagedResponse |
|
listToolsCallable()
public final UnaryCallable<ListToolsRequest,ListToolsResponse> listToolsCallable()Lists tools.
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 (ToolsClient toolsClient = ToolsClient.create()) {
ListToolsRequest request =
ListToolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListToolsResponse response = toolsClient.listToolsCallable().call(request);
for (Tool element : response.getToolsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListToolsRequest,ListToolsResponse> |
|
listToolsPagedCallable()
public final UnaryCallable<ListToolsRequest,ToolsClient.ListToolsPagedResponse> listToolsPagedCallable()Lists tools.
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 (ToolsClient toolsClient = ToolsClient.create()) {
ListToolsRequest request =
ListToolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Tool> future = toolsClient.listToolsPagedCallable().futureCall(request);
// Do something.
for (Tool element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListToolsRequest,ListToolsPagedResponse> |
|
shutdown()
public void shutdown()shutdownNow()
public void shutdownNow()updateTool(Tool tool, FieldMask updateMask)
public final Tool updateTool(Tool tool, FieldMask updateMask)Updates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
Tool tool = Tool.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Tool response = toolsClient.updateTool(tool, updateMask);
}
| Parameters | |
|---|---|
| Name | Description |
tool |
ToolRequired. The tool to update. The name field of tool is to identify the tool to update. |
updateMask |
FieldMaskOptional. The list of fields to update. |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
updateTool(UpdateToolRequest request)
public final Tool updateTool(UpdateToolRequest request)Updates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
UpdateToolRequest request =
UpdateToolRequest.newBuilder()
.setTool(Tool.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Tool response = toolsClient.updateTool(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateToolRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Tool |
|
updateToolCallable()
public final UnaryCallable<UpdateToolRequest,Tool> updateToolCallable()Updates a tool.
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 (ToolsClient toolsClient = ToolsClient.create()) {
UpdateToolRequest request =
UpdateToolRequest.newBuilder()
.setTool(Tool.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Tool> future = toolsClient.updateToolCallable().futureCall(request);
// Do something.
Tool response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateToolRequest,Tool> |
|