- 3.52.0 (latest)
- 3.50.0
- 3.49.0
- 3.48.0
- 3.47.0
- 3.46.0
- 3.45.0
- 3.44.0
- 3.43.0
- 3.42.0
- 3.41.0
- 3.40.0
- 3.38.0
- 3.37.0
- 3.36.0
- 3.35.0
- 3.34.0
- 3.33.0
- 3.32.0
- 3.31.0
- 3.30.0
- 3.29.0
- 3.28.0
- 3.25.0
- 3.24.0
- 3.23.0
- 3.22.0
- 3.21.0
- 3.20.0
- 3.19.0
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.11.0
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.2
- 3.3.0
- 3.2.0
- 3.0.0
- 2.9.8
- 2.8.9
- 2.7.4
- 2.5.3
- 2.4.0
public class IndexEndpointServiceClient implements BackgroundResource
Service Description: A service for managing Vertex AI's IndexEndpoints.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
IndexEndpoint response = indexEndpointServiceClient.getIndexEndpoint(name);
}
Note: close() needs to be called on the IndexEndpointServiceClient 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 IndexEndpointServiceSettings to create(). For example:
To customize credentials:
IndexEndpointServiceSettings indexEndpointServiceSettings =
IndexEndpointServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create(indexEndpointServiceSettings);
To customize the endpoint:
IndexEndpointServiceSettings indexEndpointServiceSettings =
IndexEndpointServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create(indexEndpointServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceStatic Methods
create()
public static final IndexEndpointServiceClient create()
Constructs an instance of IndexEndpointServiceClient with default settings.
Type | Description |
IndexEndpointServiceClient |
Type | Description |
IOException |
create(IndexEndpointServiceSettings settings)
public static final IndexEndpointServiceClient create(IndexEndpointServiceSettings settings)
Constructs an instance of IndexEndpointServiceClient, 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 | IndexEndpointServiceSettings |
Type | Description |
IndexEndpointServiceClient |
Type | Description |
IOException |
create(IndexEndpointServiceStub stub)
public static final IndexEndpointServiceClient create(IndexEndpointServiceStub stub)
Constructs an instance of IndexEndpointServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(IndexEndpointServiceSettings).
Name | Description |
stub | IndexEndpointServiceStub |
Type | Description |
IndexEndpointServiceClient |
Constructors
IndexEndpointServiceClient(IndexEndpointServiceSettings settings)
protected IndexEndpointServiceClient(IndexEndpointServiceSettings settings)
Constructs an instance of IndexEndpointServiceClient, 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 | IndexEndpointServiceSettings |
IndexEndpointServiceClient(IndexEndpointServiceStub stub)
protected IndexEndpointServiceClient(IndexEndpointServiceStub stub)
Name | Description |
stub | IndexEndpointServiceStub |
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()
createIndexEndpointAsync(CreateIndexEndpointRequest request)
public final OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> createIndexEndpointAsync(CreateIndexEndpointRequest request)
Creates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
CreateIndexEndpointRequest request =
CreateIndexEndpointRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setIndexEndpoint(IndexEndpoint.newBuilder().build())
.build();
IndexEndpoint response = indexEndpointServiceClient.createIndexEndpointAsync(request).get();
}
Name | Description |
request | CreateIndexEndpointRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> |
createIndexEndpointAsync(LocationName parent, IndexEndpoint indexEndpoint)
public final OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> createIndexEndpointAsync(LocationName parent, IndexEndpoint indexEndpoint)
Creates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
IndexEndpoint indexEndpoint = IndexEndpoint.newBuilder().build();
IndexEndpoint response =
indexEndpointServiceClient.createIndexEndpointAsync(parent, indexEndpoint).get();
}
Name | Description |
parent | LocationName Required. The resource name of the Location to create the IndexEndpoint in.
Format: |
indexEndpoint | IndexEndpoint Required. The IndexEndpoint to create. |
Type | Description |
OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> |
createIndexEndpointAsync(String parent, IndexEndpoint indexEndpoint)
public final OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> createIndexEndpointAsync(String parent, IndexEndpoint indexEndpoint)
Creates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
IndexEndpoint indexEndpoint = IndexEndpoint.newBuilder().build();
IndexEndpoint response =
indexEndpointServiceClient.createIndexEndpointAsync(parent, indexEndpoint).get();
}
Name | Description |
parent | String Required. The resource name of the Location to create the IndexEndpoint in.
Format: |
indexEndpoint | IndexEndpoint Required. The IndexEndpoint to create. |
Type | Description |
OperationFuture<IndexEndpoint,CreateIndexEndpointOperationMetadata> |
createIndexEndpointCallable()
public final UnaryCallable<CreateIndexEndpointRequest,Operation> createIndexEndpointCallable()
Creates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
CreateIndexEndpointRequest request =
CreateIndexEndpointRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setIndexEndpoint(IndexEndpoint.newBuilder().build())
.build();
ApiFuture<Operation> future =
indexEndpointServiceClient.createIndexEndpointCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<CreateIndexEndpointRequest,Operation> |
createIndexEndpointOperationCallable()
public final OperationCallable<CreateIndexEndpointRequest,IndexEndpoint,CreateIndexEndpointOperationMetadata> createIndexEndpointOperationCallable()
Creates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
CreateIndexEndpointRequest request =
CreateIndexEndpointRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setIndexEndpoint(IndexEndpoint.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<CreateIndexEndpointRequest,IndexEndpoint,CreateIndexEndpointOperationMetadata> |
deleteIndexEndpointAsync(DeleteIndexEndpointRequest request)
public final OperationFuture<Empty,DeleteOperationMetadata> deleteIndexEndpointAsync(DeleteIndexEndpointRequest request)
Deletes an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeleteIndexEndpointRequest request =
DeleteIndexEndpointRequest.newBuilder()
.setName(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.build();
indexEndpointServiceClient.deleteIndexEndpointAsync(request).get();
}
Name | Description |
request | DeleteIndexEndpointRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Empty,DeleteOperationMetadata> |
deleteIndexEndpointAsync(IndexEndpointName name)
public final OperationFuture<Empty,DeleteOperationMetadata> deleteIndexEndpointAsync(IndexEndpointName name)
Deletes an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
indexEndpointServiceClient.deleteIndexEndpointAsync(name).get();
}
Name | Description |
name | IndexEndpointName Required. The name of the IndexEndpoint resource to be deleted. Format:
|
Type | Description |
OperationFuture<Empty,DeleteOperationMetadata> |
deleteIndexEndpointAsync(String name)
public final OperationFuture<Empty,DeleteOperationMetadata> deleteIndexEndpointAsync(String name)
Deletes an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString();
indexEndpointServiceClient.deleteIndexEndpointAsync(name).get();
}
Name | Description |
name | String Required. The name of the IndexEndpoint resource to be deleted. Format:
|
Type | Description |
OperationFuture<Empty,DeleteOperationMetadata> |
deleteIndexEndpointCallable()
public final UnaryCallable<DeleteIndexEndpointRequest,Operation> deleteIndexEndpointCallable()
Deletes an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeleteIndexEndpointRequest request =
DeleteIndexEndpointRequest.newBuilder()
.setName(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.build();
ApiFuture<Operation> future =
indexEndpointServiceClient.deleteIndexEndpointCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteIndexEndpointRequest,Operation> |
deleteIndexEndpointOperationCallable()
public final OperationCallable<DeleteIndexEndpointRequest,Empty,DeleteOperationMetadata> deleteIndexEndpointOperationCallable()
Deletes an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeleteIndexEndpointRequest request =
DeleteIndexEndpointRequest.newBuilder()
.setName(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.build();
OperationFuture
Type | Description |
OperationCallable<DeleteIndexEndpointRequest,Empty,DeleteOperationMetadata> |
deployIndexAsync(DeployIndexRequest request)
public final OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> deployIndexAsync(DeployIndexRequest request)
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeployIndexRequest request =
DeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
DeployIndexResponse response = indexEndpointServiceClient.deployIndexAsync(request).get();
}
Name | Description |
request | DeployIndexRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> |
deployIndexAsync(IndexEndpointName indexEndpoint, DeployedIndex deployedIndex)
public final OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> deployIndexAsync(IndexEndpointName indexEndpoint, DeployedIndex deployedIndex)
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
DeployedIndex deployedIndex = DeployedIndex.newBuilder().build();
DeployIndexResponse response =
indexEndpointServiceClient.deployIndexAsync(indexEndpoint, deployedIndex).get();
}
Name | Description |
indexEndpoint | IndexEndpointName Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format: |
deployedIndex | DeployedIndex Required. The DeployedIndex to be created within the IndexEndpoint. |
Type | Description |
OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> |
deployIndexAsync(String indexEndpoint, DeployedIndex deployedIndex)
public final OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> deployIndexAsync(String indexEndpoint, DeployedIndex deployedIndex)
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString();
DeployedIndex deployedIndex = DeployedIndex.newBuilder().build();
DeployIndexResponse response =
indexEndpointServiceClient.deployIndexAsync(indexEndpoint, deployedIndex).get();
}
Name | Description |
indexEndpoint | String Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format: |
deployedIndex | DeployedIndex Required. The DeployedIndex to be created within the IndexEndpoint. |
Type | Description |
OperationFuture<DeployIndexResponse,DeployIndexOperationMetadata> |
deployIndexCallable()
public final UnaryCallable<DeployIndexRequest,Operation> deployIndexCallable()
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeployIndexRequest request =
DeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
ApiFuture<Operation> future =
indexEndpointServiceClient.deployIndexCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<DeployIndexRequest,Operation> |
deployIndexOperationCallable()
public final OperationCallable<DeployIndexRequest,DeployIndexResponse,DeployIndexOperationMetadata> deployIndexOperationCallable()
Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
DeployIndexRequest request =
DeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<DeployIndexRequest,DeployIndexResponse,DeployIndexOperationMetadata> |
getIndexEndpoint(GetIndexEndpointRequest request)
public final IndexEndpoint getIndexEndpoint(GetIndexEndpointRequest request)
Gets an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
GetIndexEndpointRequest request =
GetIndexEndpointRequest.newBuilder()
.setName(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.build();
IndexEndpoint response = indexEndpointServiceClient.getIndexEndpoint(request);
}
Name | Description |
request | GetIndexEndpointRequest The request object containing all of the parameters for the API call. |
Type | Description |
IndexEndpoint |
getIndexEndpoint(IndexEndpointName name)
public final IndexEndpoint getIndexEndpoint(IndexEndpointName name)
Gets an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
IndexEndpoint response = indexEndpointServiceClient.getIndexEndpoint(name);
}
Name | Description |
name | IndexEndpointName Required. The name of the IndexEndpoint resource. Format:
|
Type | Description |
IndexEndpoint |
getIndexEndpoint(String name)
public final IndexEndpoint getIndexEndpoint(String name)
Gets an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString();
IndexEndpoint response = indexEndpointServiceClient.getIndexEndpoint(name);
}
Name | Description |
name | String Required. The name of the IndexEndpoint resource. Format:
|
Type | Description |
IndexEndpoint |
getIndexEndpointCallable()
public final UnaryCallable<GetIndexEndpointRequest,IndexEndpoint> getIndexEndpointCallable()
Gets an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
GetIndexEndpointRequest request =
GetIndexEndpointRequest.newBuilder()
.setName(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.build();
ApiFuture
Type | Description |
UnaryCallable<GetIndexEndpointRequest,IndexEndpoint> |
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 IndexEndpointServiceSettings getSettings()
Type | Description |
IndexEndpointServiceSettings |
getStub()
public IndexEndpointServiceStub getStub()
Type | Description |
IndexEndpointServiceStub |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listIndexEndpoints(ListIndexEndpointsRequest request)
public final IndexEndpointServiceClient.ListIndexEndpointsPagedResponse listIndexEndpoints(ListIndexEndpointsRequest request)
Lists IndexEndpoints in a Location.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
ListIndexEndpointsRequest request =
ListIndexEndpointsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setReadMask(FieldMask.newBuilder().build())
.build();
for (IndexEndpoint element :
indexEndpointServiceClient.listIndexEndpoints(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListIndexEndpointsRequest The request object containing all of the parameters for the API call. |
Type | Description |
IndexEndpointServiceClient.ListIndexEndpointsPagedResponse |
listIndexEndpoints(LocationName parent)
public final IndexEndpointServiceClient.ListIndexEndpointsPagedResponse listIndexEndpoints(LocationName parent)
Lists IndexEndpoints in a Location.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (IndexEndpoint element :
indexEndpointServiceClient.listIndexEndpoints(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | LocationName Required. The resource name of the Location from which to list the
IndexEndpoints. Format: |
Type | Description |
IndexEndpointServiceClient.ListIndexEndpointsPagedResponse |
listIndexEndpoints(String parent)
public final IndexEndpointServiceClient.ListIndexEndpointsPagedResponse listIndexEndpoints(String parent)
Lists IndexEndpoints in a Location.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (IndexEndpoint element :
indexEndpointServiceClient.listIndexEndpoints(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. The resource name of the Location from which to list the
IndexEndpoints. Format: |
Type | Description |
IndexEndpointServiceClient.ListIndexEndpointsPagedResponse |
listIndexEndpointsCallable()
public final UnaryCallable<ListIndexEndpointsRequest,ListIndexEndpointsResponse> listIndexEndpointsCallable()
Lists IndexEndpoints in a Location.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
ListIndexEndpointsRequest request =
ListIndexEndpointsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setReadMask(FieldMask.newBuilder().build())
.build();
while (true) {
ListIndexEndpointsResponse response =
indexEndpointServiceClient.listIndexEndpointsCallable().call(request);
for (IndexEndpoint element : response.getResponsesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListIndexEndpointsRequest,ListIndexEndpointsResponse> |
listIndexEndpointsPagedCallable()
public final UnaryCallable<ListIndexEndpointsRequest,IndexEndpointServiceClient.ListIndexEndpointsPagedResponse> listIndexEndpointsPagedCallable()
Lists IndexEndpoints in a Location.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
ListIndexEndpointsRequest request =
ListIndexEndpointsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setReadMask(FieldMask.newBuilder().build())
.build();
ApiFuture
Type | Description |
UnaryCallable<ListIndexEndpointsRequest,ListIndexEndpointsPagedResponse> |
mutateDeployedIndexAsync(IndexEndpointName indexEndpoint, DeployedIndex deployedIndex)
public final OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> mutateDeployedIndexAsync(IndexEndpointName indexEndpoint, DeployedIndex deployedIndex)
Update an existing DeployedIndex under an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
DeployedIndex deployedIndex = DeployedIndex.newBuilder().build();
MutateDeployedIndexResponse response =
indexEndpointServiceClient.mutateDeployedIndexAsync(indexEndpoint, deployedIndex).get();
}
Name | Description |
indexEndpoint | IndexEndpointName Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format: |
deployedIndex | DeployedIndex Required. The DeployedIndex to be updated within the IndexEndpoint. Currently, the updatable fields are DeployedIndex and DeployedIndex |
Type | Description |
OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> |
mutateDeployedIndexAsync(MutateDeployedIndexRequest request)
public final OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> mutateDeployedIndexAsync(MutateDeployedIndexRequest request)
Update an existing DeployedIndex under an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
MutateDeployedIndexRequest request =
MutateDeployedIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
MutateDeployedIndexResponse response =
indexEndpointServiceClient.mutateDeployedIndexAsync(request).get();
}
Name | Description |
request | MutateDeployedIndexRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> |
mutateDeployedIndexAsync(String indexEndpoint, DeployedIndex deployedIndex)
public final OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> mutateDeployedIndexAsync(String indexEndpoint, DeployedIndex deployedIndex)
Update an existing DeployedIndex under an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString();
DeployedIndex deployedIndex = DeployedIndex.newBuilder().build();
MutateDeployedIndexResponse response =
indexEndpointServiceClient.mutateDeployedIndexAsync(indexEndpoint, deployedIndex).get();
}
Name | Description |
indexEndpoint | String Required. The name of the IndexEndpoint resource into which to deploy an
Index. Format: |
deployedIndex | DeployedIndex Required. The DeployedIndex to be updated within the IndexEndpoint. Currently, the updatable fields are DeployedIndex and DeployedIndex |
Type | Description |
OperationFuture<MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> |
mutateDeployedIndexCallable()
public final UnaryCallable<MutateDeployedIndexRequest,Operation> mutateDeployedIndexCallable()
Update an existing DeployedIndex under an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
MutateDeployedIndexRequest request =
MutateDeployedIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
ApiFuture<Operation> future =
indexEndpointServiceClient.mutateDeployedIndexCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<MutateDeployedIndexRequest,Operation> |
mutateDeployedIndexOperationCallable()
public final OperationCallable<MutateDeployedIndexRequest,MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> mutateDeployedIndexOperationCallable()
Update an existing DeployedIndex under an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
MutateDeployedIndexRequest request =
MutateDeployedIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndex(DeployedIndex.newBuilder().build())
.build();
OperationFuture
Type | Description |
OperationCallable<MutateDeployedIndexRequest,MutateDeployedIndexResponse,MutateDeployedIndexOperationMetadata> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
undeployIndexAsync(IndexEndpointName indexEndpoint, String deployedIndexId)
public final OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> undeployIndexAsync(IndexEndpointName indexEndpoint, String deployedIndexId)
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
String deployedIndexId = "deployedIndexId-1101212953";
UndeployIndexResponse response =
indexEndpointServiceClient.undeployIndexAsync(indexEndpoint, deployedIndexId).get();
}
Name | Description |
indexEndpoint | IndexEndpointName Required. The name of the IndexEndpoint resource from which to undeploy an
Index. Format: |
deployedIndexId | String Required. The ID of the DeployedIndex to be undeployed from the IndexEndpoint. |
Type | Description |
OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> |
undeployIndexAsync(UndeployIndexRequest request)
public final OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> undeployIndexAsync(UndeployIndexRequest request)
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
UndeployIndexRequest request =
UndeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndexId("deployedIndexId-1101212953")
.build();
UndeployIndexResponse response = indexEndpointServiceClient.undeployIndexAsync(request).get();
}
Name | Description |
request | UndeployIndexRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> |
undeployIndexAsync(String indexEndpoint, String deployedIndexId)
public final OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> undeployIndexAsync(String indexEndpoint, String deployedIndexId)
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
String indexEndpoint =
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString();
String deployedIndexId = "deployedIndexId-1101212953";
UndeployIndexResponse response =
indexEndpointServiceClient.undeployIndexAsync(indexEndpoint, deployedIndexId).get();
}
Name | Description |
indexEndpoint | String Required. The name of the IndexEndpoint resource from which to undeploy an
Index. Format: |
deployedIndexId | String Required. The ID of the DeployedIndex to be undeployed from the IndexEndpoint. |
Type | Description |
OperationFuture<UndeployIndexResponse,UndeployIndexOperationMetadata> |
undeployIndexCallable()
public final UnaryCallable<UndeployIndexRequest,Operation> undeployIndexCallable()
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
UndeployIndexRequest request =
UndeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndexId("deployedIndexId-1101212953")
.build();
ApiFuture<Operation> future =
indexEndpointServiceClient.undeployIndexCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<UndeployIndexRequest,Operation> |
undeployIndexOperationCallable()
public final OperationCallable<UndeployIndexRequest,UndeployIndexResponse,UndeployIndexOperationMetadata> undeployIndexOperationCallable()
Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
UndeployIndexRequest request =
UndeployIndexRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndexId("deployedIndexId-1101212953")
.build();
OperationFuture
Type | Description |
OperationCallable<UndeployIndexRequest,UndeployIndexResponse,UndeployIndexOperationMetadata> |
updateIndexEndpoint(IndexEndpoint indexEndpoint, FieldMask updateMask)
public final IndexEndpoint updateIndexEndpoint(IndexEndpoint indexEndpoint, FieldMask updateMask)
Updates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpoint indexEndpoint = IndexEndpoint.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
IndexEndpoint response =
indexEndpointServiceClient.updateIndexEndpoint(indexEndpoint, updateMask);
}
Name | Description |
indexEndpoint | IndexEndpoint Required. The IndexEndpoint which replaces the resource on the server. |
updateMask | FieldMask Required. The update mask applies to the resource. See google.protobuf.FieldMask. |
Type | Description |
IndexEndpoint |
updateIndexEndpoint(UpdateIndexEndpointRequest request)
public final IndexEndpoint updateIndexEndpoint(UpdateIndexEndpointRequest request)
Updates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
UpdateIndexEndpointRequest request =
UpdateIndexEndpointRequest.newBuilder()
.setIndexEndpoint(IndexEndpoint.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
IndexEndpoint response = indexEndpointServiceClient.updateIndexEndpoint(request);
}
Name | Description |
request | UpdateIndexEndpointRequest The request object containing all of the parameters for the API call. |
Type | Description |
IndexEndpoint |
updateIndexEndpointCallable()
public final UnaryCallable<UpdateIndexEndpointRequest,IndexEndpoint> updateIndexEndpointCallable()
Updates an IndexEndpoint.
Sample code:
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
UpdateIndexEndpointRequest request =
UpdateIndexEndpointRequest.newBuilder()
.setIndexEndpoint(IndexEndpoint.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture
Type | Description |
UnaryCallable<UpdateIndexEndpointRequest,IndexEndpoint> |