Class DataStoreServiceClient (0.37.0)

GitHub RepositoryProduct Reference

Service Description: Service for managing DataStore configuration.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DataStoreName name =
       DataStoreName.ofProjectLocationDataStoreName("[PROJECT]", "[LOCATION]", "[DATA_STORE]");
   DataStore response = dataStoreServiceClient.getDataStore(name);
 }
 

Note: close() needs to be called on the DataStoreServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
MethodDescriptionMethod Variants

CreateDataStore

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • createDataStoreAsync(CreateDataStoreRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • createDataStoreAsync(CollectionName parent, DataStore dataStore, String dataStoreId)

  • createDataStoreAsync(String parent, DataStore dataStore, String dataStoreId)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • createDataStoreOperationCallable()

  • createDataStoreCallable()

GetDataStore

Gets a DataStore.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getDataStore(GetDataStoreRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getDataStore(DataStoreName name)

  • getDataStore(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getDataStoreCallable()

ListDataStores

Lists all the DataStores associated with the project.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listDataStores(ListDataStoresRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listDataStores(CollectionName parent)

  • listDataStores(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listDataStoresPagedCallable()

  • listDataStoresCallable()

DeleteDataStore

Deletes a DataStore.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteDataStoreAsync(DeleteDataStoreRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteDataStoreAsync(DataStoreName name)

  • deleteDataStoreAsync(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteDataStoreOperationCallable()

  • deleteDataStoreCallable()

UpdateDataStore

Updates a DataStore

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateDataStore(UpdateDataStoreRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • updateDataStore(DataStore dataStore, FieldMask updateMask)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateDataStoreCallable()

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 DataStoreServiceSettings 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
 DataStoreServiceSettings dataStoreServiceSettings =
     DataStoreServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 DataStoreServiceClient dataStoreServiceClient =
     DataStoreServiceClient.create(dataStoreServiceSettings);
 

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
 DataStoreServiceSettings dataStoreServiceSettings =
     DataStoreServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 DataStoreServiceClient dataStoreServiceClient =
     DataStoreServiceClient.create(dataStoreServiceSettings);
 

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
 DataStoreServiceSettings dataStoreServiceSettings =
     DataStoreServiceSettings.newHttpJsonBuilder().build();
 DataStoreServiceClient dataStoreServiceClient =
     DataStoreServiceClient.create(dataStoreServiceSettings);
 

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > DataStoreServiceClient

Static Methods

create()

public static final DataStoreServiceClient create()

Constructs an instance of DataStoreServiceClient with default settings.

Returns
TypeDescription
DataStoreServiceClient
Exceptions
TypeDescription
IOException

create(DataStoreServiceSettings settings)

public static final DataStoreServiceClient create(DataStoreServiceSettings settings)

Constructs an instance of DataStoreServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsDataStoreServiceSettings
Returns
TypeDescription
DataStoreServiceClient
Exceptions
TypeDescription
IOException

create(DataStoreServiceStub stub)

public static final DataStoreServiceClient create(DataStoreServiceStub stub)

Constructs an instance of DataStoreServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(DataStoreServiceSettings).

Parameter
NameDescription
stubDataStoreServiceStub
Returns
TypeDescription
DataStoreServiceClient

Constructors

DataStoreServiceClient(DataStoreServiceSettings settings)

protected DataStoreServiceClient(DataStoreServiceSettings settings)

Constructs an instance of DataStoreServiceClient, 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
NameDescription
settingsDataStoreServiceSettings

DataStoreServiceClient(DataStoreServiceStub stub)

protected DataStoreServiceClient(DataStoreServiceStub stub)
Parameter
NameDescription
stubDataStoreServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createDataStoreAsync(CollectionName parent, DataStore dataStore, String dataStoreId)

public final OperationFuture<DataStore,CreateDataStoreMetadata> createDataStoreAsync(CollectionName parent, DataStore dataStore, String dataStoreId)

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   CollectionName parent = CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]");
   DataStore dataStore = DataStore.newBuilder().build();
   String dataStoreId = "dataStoreId929489618";
   DataStore response =
       dataStoreServiceClient.createDataStoreAsync(parent, dataStore, dataStoreId).get();
 }
 
Parameters
NameDescription
parentCollectionName

Required. The parent resource name, such as projects/{project}/locations/{location}/collections/{collection}.

dataStoreDataStore

Required. The DataStore to create.

dataStoreIdString

Required. The ID to use for the DataStore, which will become the final component of the DataStore's resource name.

This field must conform to RFC-1034 standard with a length limit of 63 characters. Otherwise, an INVALID_ARGUMENT error is returned.

Returns
TypeDescription
OperationFuture<DataStore,CreateDataStoreMetadata>

createDataStoreAsync(CreateDataStoreRequest request)

public final OperationFuture<DataStore,CreateDataStoreMetadata> createDataStoreAsync(CreateDataStoreRequest request)

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   CreateDataStoreRequest request =
       CreateDataStoreRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setDataStore(DataStore.newBuilder().build())
           .setDataStoreId("dataStoreId929489618")
           .setCreateAdvancedSiteSearch(true)
           .build();
   DataStore response = dataStoreServiceClient.createDataStoreAsync(request).get();
 }
 
Parameter
NameDescription
requestCreateDataStoreRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<DataStore,CreateDataStoreMetadata>

createDataStoreAsync(String parent, DataStore dataStore, String dataStoreId)

public final OperationFuture<DataStore,CreateDataStoreMetadata> createDataStoreAsync(String parent, DataStore dataStore, String dataStoreId)

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   String parent = CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString();
   DataStore dataStore = DataStore.newBuilder().build();
   String dataStoreId = "dataStoreId929489618";
   DataStore response =
       dataStoreServiceClient.createDataStoreAsync(parent, dataStore, dataStoreId).get();
 }
 
Parameters
NameDescription
parentString

Required. The parent resource name, such as projects/{project}/locations/{location}/collections/{collection}.

dataStoreDataStore

Required. The DataStore to create.

dataStoreIdString

Required. The ID to use for the DataStore, which will become the final component of the DataStore's resource name.

This field must conform to RFC-1034 standard with a length limit of 63 characters. Otherwise, an INVALID_ARGUMENT error is returned.

Returns
TypeDescription
OperationFuture<DataStore,CreateDataStoreMetadata>

createDataStoreCallable()

public final UnaryCallable<CreateDataStoreRequest,Operation> createDataStoreCallable()

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   CreateDataStoreRequest request =
       CreateDataStoreRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setDataStore(DataStore.newBuilder().build())
           .setDataStoreId("dataStoreId929489618")
           .setCreateAdvancedSiteSearch(true)
           .build();
   ApiFuture<Operation> future =
       dataStoreServiceClient.createDataStoreCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateDataStoreRequest,Operation>

createDataStoreOperationCallable()

public final OperationCallable<CreateDataStoreRequest,DataStore,CreateDataStoreMetadata> createDataStoreOperationCallable()

Creates a DataStore.

DataStore is for storing Documents. To serve these documents for Search, or Recommendation use case, an Engine needs to be created separately.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   CreateDataStoreRequest request =
       CreateDataStoreRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setDataStore(DataStore.newBuilder().build())
           .setDataStoreId("dataStoreId929489618")
           .setCreateAdvancedSiteSearch(true)
           .build();
   OperationFuture<DataStore, CreateDataStoreMetadata> future =
       dataStoreServiceClient.createDataStoreOperationCallable().futureCall(request);
   // Do something.
   DataStore response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<CreateDataStoreRequest,DataStore,CreateDataStoreMetadata>

deleteDataStoreAsync(DataStoreName name)

public final OperationFuture<Empty,DeleteDataStoreMetadata> deleteDataStoreAsync(DataStoreName name)

Deletes a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DataStoreName name =
       DataStoreName.ofProjectLocationDataStoreName("[PROJECT]", "[LOCATION]", "[DATA_STORE]");
   dataStoreServiceClient.deleteDataStoreAsync(name).get();
 }
 
Parameter
NameDescription
nameDataStoreName

Required. Full resource name of DataStore, such as projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}.

If the caller does not have permission to delete the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned.

If the DataStore to delete does not exist, a NOT_FOUND error is returned.

Returns
TypeDescription
OperationFuture<Empty,DeleteDataStoreMetadata>

deleteDataStoreAsync(DeleteDataStoreRequest request)

public final OperationFuture<Empty,DeleteDataStoreMetadata> deleteDataStoreAsync(DeleteDataStoreRequest request)

Deletes a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DeleteDataStoreRequest request =
       DeleteDataStoreRequest.newBuilder()
           .setName(
               DataStoreName.ofProjectLocationDataStoreName(
                       "[PROJECT]", "[LOCATION]", "[DATA_STORE]")
                   .toString())
           .build();
   dataStoreServiceClient.deleteDataStoreAsync(request).get();
 }
 
Parameter
NameDescription
requestDeleteDataStoreRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
OperationFuture<Empty,DeleteDataStoreMetadata>

deleteDataStoreAsync(String name)

public final OperationFuture<Empty,DeleteDataStoreMetadata> deleteDataStoreAsync(String name)

Deletes a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   String name =
       DataStoreName.ofProjectLocationDataStoreName("[PROJECT]", "[LOCATION]", "[DATA_STORE]")
           .toString();
   dataStoreServiceClient.deleteDataStoreAsync(name).get();
 }
 
Parameter
NameDescription
nameString

Required. Full resource name of DataStore, such as projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}.

If the caller does not have permission to delete the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned.

If the DataStore to delete does not exist, a NOT_FOUND error is returned.

Returns
TypeDescription
OperationFuture<Empty,DeleteDataStoreMetadata>

deleteDataStoreCallable()

public final UnaryCallable<DeleteDataStoreRequest,Operation> deleteDataStoreCallable()

Deletes a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DeleteDataStoreRequest request =
       DeleteDataStoreRequest.newBuilder()
           .setName(
               DataStoreName.ofProjectLocationDataStoreName(
                       "[PROJECT]", "[LOCATION]", "[DATA_STORE]")
                   .toString())
           .build();
   ApiFuture<Operation> future =
       dataStoreServiceClient.deleteDataStoreCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteDataStoreRequest,Operation>

deleteDataStoreOperationCallable()

public final OperationCallable<DeleteDataStoreRequest,Empty,DeleteDataStoreMetadata> deleteDataStoreOperationCallable()

Deletes a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DeleteDataStoreRequest request =
       DeleteDataStoreRequest.newBuilder()
           .setName(
               DataStoreName.ofProjectLocationDataStoreName(
                       "[PROJECT]", "[LOCATION]", "[DATA_STORE]")
                   .toString())
           .build();
   OperationFuture<Empty, DeleteDataStoreMetadata> future =
       dataStoreServiceClient.deleteDataStoreOperationCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
OperationCallable<DeleteDataStoreRequest,Empty,DeleteDataStoreMetadata>

getDataStore(DataStoreName name)

public final DataStore getDataStore(DataStoreName name)

Gets a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DataStoreName name =
       DataStoreName.ofProjectLocationDataStoreName("[PROJECT]", "[LOCATION]", "[DATA_STORE]");
   DataStore response = dataStoreServiceClient.getDataStore(name);
 }
 
Parameter
NameDescription
nameDataStoreName

Required. Full resource name of DataStore, such as projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}.

If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned.

If the requested DataStore does not exist, a NOT_FOUND error is returned.

Returns
TypeDescription
DataStore

getDataStore(GetDataStoreRequest request)

public final DataStore getDataStore(GetDataStoreRequest request)

Gets a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   GetDataStoreRequest request =
       GetDataStoreRequest.newBuilder()
           .setName(
               DataStoreName.ofProjectLocationDataStoreName(
                       "[PROJECT]", "[LOCATION]", "[DATA_STORE]")
                   .toString())
           .build();
   DataStore response = dataStoreServiceClient.getDataStore(request);
 }
 
Parameter
NameDescription
requestGetDataStoreRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
DataStore

getDataStore(String name)

public final DataStore getDataStore(String name)

Gets a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   String name =
       DataStoreName.ofProjectLocationDataStoreName("[PROJECT]", "[LOCATION]", "[DATA_STORE]")
           .toString();
   DataStore response = dataStoreServiceClient.getDataStore(name);
 }
 
Parameter
NameDescription
nameString

Required. Full resource name of DataStore, such as projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}.

If the caller does not have permission to access the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned.

If the requested DataStore does not exist, a NOT_FOUND error is returned.

Returns
TypeDescription
DataStore

getDataStoreCallable()

public final UnaryCallable<GetDataStoreRequest,DataStore> getDataStoreCallable()

Gets a DataStore.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   GetDataStoreRequest request =
       GetDataStoreRequest.newBuilder()
           .setName(
               DataStoreName.ofProjectLocationDataStoreName(
                       "[PROJECT]", "[LOCATION]", "[DATA_STORE]")
                   .toString())
           .build();
   ApiFuture<DataStore> future =
       dataStoreServiceClient.getDataStoreCallable().futureCall(request);
   // Do something.
   DataStore response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetDataStoreRequest,DataStore>

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.

Returns
TypeDescription
OperationsClient

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.

Returns
TypeDescription
OperationsClient

getSettings()

public final DataStoreServiceSettings getSettings()
Returns
TypeDescription
DataStoreServiceSettings

getStub()

public DataStoreServiceStub getStub()
Returns
TypeDescription
DataStoreServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listDataStores(CollectionName parent)

public final DataStoreServiceClient.ListDataStoresPagedResponse listDataStores(CollectionName parent)

Lists all the DataStores associated with the project.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   CollectionName parent = CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]");
   for (DataStore element : dataStoreServiceClient.listDataStores(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentCollectionName

Required. The parent branch resource name, such as projects/{project}/locations/{location}/collections/{collection_id}.

If the caller does not have permission to list DataStores under this location, regardless of whether or not this data store exists, a PERMISSION_DENIED error is returned.

Returns
TypeDescription
DataStoreServiceClient.ListDataStoresPagedResponse

listDataStores(ListDataStoresRequest request)

public final DataStoreServiceClient.ListDataStoresPagedResponse listDataStores(ListDataStoresRequest request)

Lists all the DataStores associated with the project.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   ListDataStoresRequest request =
       ListDataStoresRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (DataStore element : dataStoreServiceClient.listDataStores(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListDataStoresRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
DataStoreServiceClient.ListDataStoresPagedResponse

listDataStores(String parent)

public final DataStoreServiceClient.ListDataStoresPagedResponse listDataStores(String parent)

Lists all the DataStores associated with the project.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   String parent = CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString();
   for (DataStore element : dataStoreServiceClient.listDataStores(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The parent branch resource name, such as projects/{project}/locations/{location}/collections/{collection_id}.

If the caller does not have permission to list DataStores under this location, regardless of whether or not this data store exists, a PERMISSION_DENIED error is returned.

Returns
TypeDescription
DataStoreServiceClient.ListDataStoresPagedResponse

listDataStoresCallable()

public final UnaryCallable<ListDataStoresRequest,ListDataStoresResponse> listDataStoresCallable()

Lists all the DataStores associated with the project.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   ListDataStoresRequest request =
       ListDataStoresRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListDataStoresResponse response =
         dataStoreServiceClient.listDataStoresCallable().call(request);
     for (DataStore element : response.getDataStoresList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListDataStoresRequest,ListDataStoresResponse>

listDataStoresPagedCallable()

public final UnaryCallable<ListDataStoresRequest,DataStoreServiceClient.ListDataStoresPagedResponse> listDataStoresPagedCallable()

Lists all the DataStores associated with the project.

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   ListDataStoresRequest request =
       ListDataStoresRequest.newBuilder()
           .setParent(CollectionName.of("[PROJECT]", "[LOCATION]", "[COLLECTION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<DataStore> future =
       dataStoreServiceClient.listDataStoresPagedCallable().futureCall(request);
   // Do something.
   for (DataStore element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListDataStoresRequest,ListDataStoresPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateDataStore(DataStore dataStore, FieldMask updateMask)

public final DataStore updateDataStore(DataStore dataStore, FieldMask updateMask)

Updates a DataStore

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   DataStore dataStore = DataStore.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   DataStore response = dataStoreServiceClient.updateDataStore(dataStore, updateMask);
 }
 
Parameters
NameDescription
dataStoreDataStore

Required. The DataStore to update.

If the caller does not have permission to update the DataStore, regardless of whether or not it exists, a PERMISSION_DENIED error is returned.

If the DataStore to update does not exist, a NOT_FOUND error is returned.

updateMaskFieldMask

Indicates which fields in the provided DataStore to update.

If an unsupported or unknown field is provided, an INVALID_ARGUMENT error is returned.

Returns
TypeDescription
DataStore

updateDataStore(UpdateDataStoreRequest request)

public final DataStore updateDataStore(UpdateDataStoreRequest request)

Updates a DataStore

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   UpdateDataStoreRequest request =
       UpdateDataStoreRequest.newBuilder()
           .setDataStore(DataStore.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   DataStore response = dataStoreServiceClient.updateDataStore(request);
 }
 
Parameter
NameDescription
requestUpdateDataStoreRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
DataStore

updateDataStoreCallable()

public final UnaryCallable<UpdateDataStoreRequest,DataStore> updateDataStoreCallable()

Updates a DataStore

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 (DataStoreServiceClient dataStoreServiceClient = DataStoreServiceClient.create()) {
   UpdateDataStoreRequest request =
       UpdateDataStoreRequest.newBuilder()
           .setDataStore(DataStore.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<DataStore> future =
       dataStoreServiceClient.updateDataStoreCallable().futureCall(request);
   // Do something.
   DataStore response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateDataStoreRequest,DataStore>