| GitHub Repository | Product Reference | REST Documentation | RPC Documentation |
Service Description: DataProductService provides APIs for managing data products and the
underlying data assets.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProductName name = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]");
DataProduct response = dataProductServiceClient.getDataProduct(name);
}
Note: close() needs to be called on the DataProductServiceClient 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 |
|---|---|---|
CreateDataProduct |
Creates a data product. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteDataProduct |
Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset). |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetDataProduct |
Gets a data product. |
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.
|
ListDataProducts |
Lists data products for a given project. |
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.
|
UpdateDataProduct |
Updates a data product. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
CreateDataAsset |
Creates a data asset. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateDataAsset |
Updates a data asset. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteDataAsset |
Deletes a data asset. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetDataAsset |
Gets a data asset. |
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.
|
ListDataAssets |
Lists data assets for a given data product. |
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.This method can be called in two ways: * **List all public locations:** Use the path |
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.
|
SetIamPolicy |
Sets the access control policy on the specified resource. Replacesany existing policy. Can return |
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.
|
GetIamPolicy |
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set. |
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.
|
TestIamPermissions |
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
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 DataProductServiceSettings 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
DataProductServiceSettings dataProductServiceSettings =
DataProductServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
DataProductServiceClient dataProductServiceClient =
DataProductServiceClient.create(dataProductServiceSettings);
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
DataProductServiceSettings dataProductServiceSettings =
DataProductServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
DataProductServiceClient dataProductServiceClient =
DataProductServiceClient.create(dataProductServiceSettings);
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
DataProductServiceSettings dataProductServiceSettings =
DataProductServiceSettings.newHttpJsonBuilder().build();
DataProductServiceClient dataProductServiceClient =
DataProductServiceClient.create(dataProductServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final DataProductServiceClient create()Constructs an instance of DataProductServiceClient with default settings.
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(DataProductServiceSettings settings)
public static final DataProductServiceClient create(DataProductServiceSettings settings)Constructs an instance of DataProductServiceClient, 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 |
DataProductServiceSettings |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(DataProductServiceStub stub)
public static final DataProductServiceClient create(DataProductServiceStub stub)Constructs an instance of DataProductServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(DataProductServiceSettings).
| Parameter | |
|---|---|
| Name | Description |
stub |
DataProductServiceStub |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient |
|
Constructors
DataProductServiceClient(DataProductServiceSettings settings)
protected DataProductServiceClient(DataProductServiceSettings settings)Constructs an instance of DataProductServiceClient, 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 |
DataProductServiceSettings |
DataProductServiceClient(DataProductServiceStub stub)
protected DataProductServiceClient(DataProductServiceStub stub)| Parameter | |
|---|---|
| Name | Description |
stub |
DataProductServiceStub |
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()createDataAssetAsync(CreateDataAssetRequest request)
public final OperationFuture<DataAsset,OperationMetadata> createDataAssetAsync(CreateDataAssetRequest request)Creates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataAssetRequest request =
CreateDataAssetRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setDataAssetId("dataAssetId2108984609")
.setDataAsset(DataAsset.newBuilder().build())
.setValidateOnly(true)
.build();
DataAsset response = dataProductServiceClient.createDataAssetAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
CreateDataAssetRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataAsset,OperationMetadata> |
|
createDataAssetAsync(DataProductName parent, DataAsset dataAsset, String dataAssetId)
public final OperationFuture<DataAsset,OperationMetadata> createDataAssetAsync(DataProductName parent, DataAsset dataAsset, String dataAssetId)Creates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProductName parent = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]");
DataAsset dataAsset = DataAsset.newBuilder().build();
String dataAssetId = "dataAssetId2108984609";
DataAsset response =
dataProductServiceClient.createDataAssetAsync(parent, dataAsset, dataAssetId).get();
}
| Parameters | |
|---|---|
| Name | Description |
parent |
DataProductNameRequired. The parent resource where this data asset will be created. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
dataAsset |
DataAssetRequired. The data asset to create. |
dataAssetId |
StringOptional. The ID of the data asset to create. The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers
(0-9), or hyphens, with the first character a letter, the last a letter or a number, and a
63 character maximum. Characters outside of ASCII are not permitted. Valid format regex:
|
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataAsset,OperationMetadata> |
|
createDataAssetAsync(String parent, DataAsset dataAsset, String dataAssetId)
public final OperationFuture<DataAsset,OperationMetadata> createDataAssetAsync(String parent, DataAsset dataAsset, String dataAssetId)Creates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String parent = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString();
DataAsset dataAsset = DataAsset.newBuilder().build();
String dataAssetId = "dataAssetId2108984609";
DataAsset response =
dataProductServiceClient.createDataAssetAsync(parent, dataAsset, dataAssetId).get();
}
| Parameters | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource where this data asset will be created. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
dataAsset |
DataAssetRequired. The data asset to create. |
dataAssetId |
StringOptional. The ID of the data asset to create. The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers
(0-9), or hyphens, with the first character a letter, the last a letter or a number, and a
63 character maximum. Characters outside of ASCII are not permitted. Valid format regex:
|
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataAsset,OperationMetadata> |
|
createDataAssetCallable()
public final UnaryCallable<CreateDataAssetRequest,Operation> createDataAssetCallable()Creates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataAssetRequest request =
CreateDataAssetRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setDataAssetId("dataAssetId2108984609")
.setDataAsset(DataAsset.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.createDataAssetCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<CreateDataAssetRequest,Operation> |
|
createDataAssetOperationCallable()
public final OperationCallable<CreateDataAssetRequest,DataAsset,OperationMetadata> createDataAssetOperationCallable()Creates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataAssetRequest request =
CreateDataAssetRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setDataAssetId("dataAssetId2108984609")
.setDataAsset(DataAsset.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<DataAsset, OperationMetadata> future =
dataProductServiceClient.createDataAssetOperationCallable().futureCall(request);
// Do something.
DataAsset response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<CreateDataAssetRequest,DataAsset,OperationMetadata> |
|
createDataProductAsync(CreateDataProductRequest request)
public final OperationFuture<DataProduct,OperationMetadata> createDataProductAsync(CreateDataProductRequest request)Creates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataProductRequest request =
CreateDataProductRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setDataProductId("dataProductId1437828576")
.setDataProduct(DataProduct.newBuilder().build())
.setValidateOnly(true)
.build();
DataProduct response = dataProductServiceClient.createDataProductAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
CreateDataProductRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataProduct,OperationMetadata> |
|
createDataProductAsync(LocationName parent, DataProduct dataProduct, String dataProductId)
public final OperationFuture<DataProduct,OperationMetadata> createDataProductAsync(LocationName parent, DataProduct dataProduct, String dataProductId)Creates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
DataProduct dataProduct = DataProduct.newBuilder().build();
String dataProductId = "dataProductId1437828576";
DataProduct response =
dataProductServiceClient.createDataProductAsync(parent, dataProduct, dataProductId).get();
}
| Parameters | |
|---|---|
| Name | Description |
parent |
LocationNameRequired. The parent resource where this data product will be created. Format: projects/{project_id_or_number}/locations/{location_id} |
dataProduct |
DataProductRequired. The data product to create. |
dataProductId |
StringOptional. The ID of the data product to create. The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers
(0-9), or hyphens, with the first character a letter, the last a letter or a number, and a
63 character maximum. Characters outside of ASCII are not permitted. Valid format regex:
|
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataProduct,OperationMetadata> |
|
createDataProductAsync(String parent, DataProduct dataProduct, String dataProductId)
public final OperationFuture<DataProduct,OperationMetadata> createDataProductAsync(String parent, DataProduct dataProduct, String dataProductId)Creates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
DataProduct dataProduct = DataProduct.newBuilder().build();
String dataProductId = "dataProductId1437828576";
DataProduct response =
dataProductServiceClient.createDataProductAsync(parent, dataProduct, dataProductId).get();
}
| Parameters | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource where this data product will be created. Format: projects/{project_id_or_number}/locations/{location_id} |
dataProduct |
DataProductRequired. The data product to create. |
dataProductId |
StringOptional. The ID of the data product to create. The ID must conform to RFC-1034 and contain only lower-case letters (a-z), numbers
(0-9), or hyphens, with the first character a letter, the last a letter or a number, and a
63 character maximum. Characters outside of ASCII are not permitted. Valid format regex:
|
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataProduct,OperationMetadata> |
|
createDataProductCallable()
public final UnaryCallable<CreateDataProductRequest,Operation> createDataProductCallable()Creates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataProductRequest request =
CreateDataProductRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setDataProductId("dataProductId1437828576")
.setDataProduct(DataProduct.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.createDataProductCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<CreateDataProductRequest,Operation> |
|
createDataProductOperationCallable()
public final OperationCallable<CreateDataProductRequest,DataProduct,OperationMetadata> createDataProductOperationCallable()Creates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
CreateDataProductRequest request =
CreateDataProductRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setDataProductId("dataProductId1437828576")
.setDataProduct(DataProduct.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<DataProduct, OperationMetadata> future =
dataProductServiceClient.createDataProductOperationCallable().futureCall(request);
// Do something.
DataProduct response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<CreateDataProductRequest,DataProduct,OperationMetadata> |
|
deleteDataAssetAsync(DataAssetName name)
public final OperationFuture<Empty,OperationMetadata> deleteDataAssetAsync(DataAssetName name)Deletes a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataAssetName name =
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]");
dataProductServiceClient.deleteDataAssetAsync(name).get();
}
| Parameter | |
|---|---|
| Name | Description |
name |
DataAssetNameRequired. The name of the data asset to delete. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id}/dataAssets/{data_asset_id} |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataAssetAsync(DeleteDataAssetRequest request)
public final OperationFuture<Empty,OperationMetadata> deleteDataAssetAsync(DeleteDataAssetRequest request)Deletes a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataAssetRequest request =
DeleteDataAssetRequest.newBuilder()
.setName(
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]")
.toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
dataProductServiceClient.deleteDataAssetAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
DeleteDataAssetRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataAssetAsync(String name)
public final OperationFuture<Empty,OperationMetadata> deleteDataAssetAsync(String name)Deletes a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String name =
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]").toString();
dataProductServiceClient.deleteDataAssetAsync(name).get();
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the data asset to delete. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id}/dataAssets/{data_asset_id} |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataAssetCallable()
public final UnaryCallable<DeleteDataAssetRequest,Operation> deleteDataAssetCallable()Deletes a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataAssetRequest request =
DeleteDataAssetRequest.newBuilder()
.setName(
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]")
.toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.deleteDataAssetCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<DeleteDataAssetRequest,Operation> |
|
deleteDataAssetOperationCallable()
public final OperationCallable<DeleteDataAssetRequest,Empty,OperationMetadata> deleteDataAssetOperationCallable()Deletes a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataAssetRequest request =
DeleteDataAssetRequest.newBuilder()
.setName(
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]")
.toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
OperationFuture<Empty, OperationMetadata> future =
dataProductServiceClient.deleteDataAssetOperationCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<DeleteDataAssetRequest,Empty,OperationMetadata> |
|
deleteDataProductAsync(DataProductName name)
public final OperationFuture<Empty,OperationMetadata> deleteDataProductAsync(DataProductName name)Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset).
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProductName name = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]");
dataProductServiceClient.deleteDataProductAsync(name).get();
}
| Parameter | |
|---|---|
| Name | Description |
name |
DataProductNameRequired. The name of the data product to delete. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataProductAsync(DeleteDataProductRequest request)
public final OperationFuture<Empty,OperationMetadata> deleteDataProductAsync(DeleteDataProductRequest request)Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset).
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataProductRequest request =
DeleteDataProductRequest.newBuilder()
.setName(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
dataProductServiceClient.deleteDataProductAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
DeleteDataProductRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataProductAsync(String name)
public final OperationFuture<Empty,OperationMetadata> deleteDataProductAsync(String name)Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset).
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String name = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString();
dataProductServiceClient.deleteDataProductAsync(name).get();
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the data product to delete. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<Empty,OperationMetadata> |
|
deleteDataProductCallable()
public final UnaryCallable<DeleteDataProductRequest,Operation> deleteDataProductCallable()Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset).
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataProductRequest request =
DeleteDataProductRequest.newBuilder()
.setName(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.deleteDataProductCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<DeleteDataProductRequest,Operation> |
|
deleteDataProductOperationCallable()
public final OperationCallable<DeleteDataProductRequest,Empty,OperationMetadata> deleteDataProductOperationCallable()Deletes a data product. The deletion will fail if the data product is not empty (i.e. contains at least one data asset).
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DeleteDataProductRequest request =
DeleteDataProductRequest.newBuilder()
.setName(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setEtag("etag3123477")
.setValidateOnly(true)
.build();
OperationFuture<Empty, OperationMetadata> future =
dataProductServiceClient.deleteDataProductOperationCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<DeleteDataProductRequest,Empty,OperationMetadata> |
|
getDataAsset(DataAssetName name)
public final DataAsset getDataAsset(DataAssetName name)Gets a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataAssetName name =
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]");
DataAsset response = dataProductServiceClient.getDataAsset(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
DataAssetNameRequired. The name of the data asset to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id}/dataAssets/{data_asset_id} |
| Returns | |
|---|---|
| Type | Description |
DataAsset |
|
getDataAsset(GetDataAssetRequest request)
public final DataAsset getDataAsset(GetDataAssetRequest request)Gets a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetDataAssetRequest request =
GetDataAssetRequest.newBuilder()
.setName(
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]")
.toString())
.build();
DataAsset response = dataProductServiceClient.getDataAsset(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetDataAssetRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
DataAsset |
|
getDataAsset(String name)
public final DataAsset getDataAsset(String name)Gets a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String name =
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]").toString();
DataAsset response = dataProductServiceClient.getDataAsset(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the data asset to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id}/dataAssets/{data_asset_id} |
| Returns | |
|---|---|
| Type | Description |
DataAsset |
|
getDataAssetCallable()
public final UnaryCallable<GetDataAssetRequest,DataAsset> getDataAssetCallable()Gets a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetDataAssetRequest request =
GetDataAssetRequest.newBuilder()
.setName(
DataAssetName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]", "[DATA_ASSET]")
.toString())
.build();
ApiFuture<DataAsset> future =
dataProductServiceClient.getDataAssetCallable().futureCall(request);
// Do something.
DataAsset response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetDataAssetRequest,DataAsset> |
|
getDataProduct(DataProductName name)
public final DataProduct getDataProduct(DataProductName name)Gets a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProductName name = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]");
DataProduct response = dataProductServiceClient.getDataProduct(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
DataProductNameRequired. The name of the data product to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
DataProduct |
|
getDataProduct(GetDataProductRequest request)
public final DataProduct getDataProduct(GetDataProductRequest request)Gets a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetDataProductRequest request =
GetDataProductRequest.newBuilder()
.setName(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.build();
DataProduct response = dataProductServiceClient.getDataProduct(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetDataProductRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
DataProduct |
|
getDataProduct(String name)
public final DataProduct getDataProduct(String name)Gets a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String name = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString();
DataProduct response = dataProductServiceClient.getDataProduct(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the data product to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
DataProduct |
|
getDataProductCallable()
public final UnaryCallable<GetDataProductRequest,DataProduct> getDataProductCallable()Gets a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetDataProductRequest request =
GetDataProductRequest.newBuilder()
.setName(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.build();
ApiFuture<DataProduct> future =
dataProductServiceClient.getDataProductCallable().futureCall(request);
// Do something.
DataProduct response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetDataProductRequest,DataProduct> |
|
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 | |
|---|---|
| Type | Description |
OperationsClient |
|
getIamPolicy(GetIamPolicyRequest request)
public final Policy getIamPolicy(GetIamPolicyRequest request)Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = dataProductServiceClient.getIamPolicy(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.iam.v1.GetIamPolicyRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
com.google.iam.v1.Policy |
|
getIamPolicyCallable()
public final UnaryCallable<GetIamPolicyRequest,Policy> getIamPolicyCallable()Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future =
dataProductServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
|
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = dataProductServiceClient.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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future =
dataProductServiceClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
|
getOperationsClient()
public final OperationsClient getOperationsClient()Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
| Returns | |
|---|---|
| Type | Description |
OperationsClient |
|
getSettings()
public final DataProductServiceSettings getSettings()| Returns | |
|---|---|
| Type | Description |
DataProductServiceSettings |
|
getStub()
public DataProductServiceStub getStub()| Returns | |
|---|---|
| Type | Description |
DataProductServiceStub |
|
isShutdown()
public boolean isShutdown()| Returns | |
|---|---|
| Type | Description |
boolean |
|
isTerminated()
public boolean isTerminated()| Returns | |
|---|---|
| Type | Description |
boolean |
|
listDataAssets(DataProductName parent)
public final DataProductServiceClient.ListDataAssetsPagedResponse listDataAssets(DataProductName parent)Lists data assets for a given data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProductName parent = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]");
for (DataAsset element : dataProductServiceClient.listDataAssets(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
DataProductNameRequired. The parent, which has this collection of data assets. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataAssetsPagedResponse |
|
listDataAssets(ListDataAssetsRequest request)
public final DataProductServiceClient.ListDataAssetsPagedResponse listDataAssets(ListDataAssetsRequest request)Lists data assets for a given data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataAssetsRequest request =
ListDataAssetsRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (DataAsset element : dataProductServiceClient.listDataAssets(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListDataAssetsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataAssetsPagedResponse |
|
listDataAssets(String parent)
public final DataProductServiceClient.ListDataAssetsPagedResponse listDataAssets(String parent)Lists data assets for a given data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String parent = DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString();
for (DataAsset element : dataProductServiceClient.listDataAssets(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent, which has this collection of data assets. Format: projects/{project_id_or_number}/locations/{location_id}/dataProducts/{data_product_id} |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataAssetsPagedResponse |
|
listDataAssetsCallable()
public final UnaryCallable<ListDataAssetsRequest,ListDataAssetsResponse> listDataAssetsCallable()Lists data assets for a given data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataAssetsRequest request =
ListDataAssetsRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListDataAssetsResponse response =
dataProductServiceClient.listDataAssetsCallable().call(request);
for (DataAsset element : response.getDataAssetsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListDataAssetsRequest,ListDataAssetsResponse> |
|
listDataAssetsPagedCallable()
public final UnaryCallable<ListDataAssetsRequest,DataProductServiceClient.ListDataAssetsPagedResponse> listDataAssetsPagedCallable()Lists data assets for a given data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataAssetsRequest request =
ListDataAssetsRequest.newBuilder()
.setParent(DataProductName.of("[PROJECT]", "[LOCATION]", "[DATA_PRODUCT]").toString())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<DataAsset> future =
dataProductServiceClient.listDataAssetsPagedCallable().futureCall(request);
// Do something.
for (DataAsset element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListDataAssetsRequest,ListDataAssetsPagedResponse> |
|
listDataProducts(ListDataProductsRequest request)
public final DataProductServiceClient.ListDataProductsPagedResponse listDataProducts(ListDataProductsRequest request)Lists data products for a given 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataProductsRequest request =
ListDataProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
for (DataProduct element : dataProductServiceClient.listDataProducts(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListDataProductsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataProductsPagedResponse |
|
listDataProducts(LocationName parent)
public final DataProductServiceClient.ListDataProductsPagedResponse listDataProducts(LocationName parent)Lists data products for a given 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (DataProduct element : dataProductServiceClient.listDataProducts(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
LocationNameRequired. The parent, which has this collection of data products. Format: Supports listing across all locations with the wildcard |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataProductsPagedResponse |
|
listDataProducts(String parent)
public final DataProductServiceClient.ListDataProductsPagedResponse listDataProducts(String parent)Lists data products for a given 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (DataProduct element : dataProductServiceClient.listDataProducts(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent, which has this collection of data products. Format: Supports listing across all locations with the wildcard |
| Returns | |
|---|---|
| Type | Description |
DataProductServiceClient.ListDataProductsPagedResponse |
|
listDataProductsCallable()
public final UnaryCallable<ListDataProductsRequest,ListDataProductsResponse> listDataProductsCallable()Lists data products for a given 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataProductsRequest request =
ListDataProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListDataProductsResponse response =
dataProductServiceClient.listDataProductsCallable().call(request);
for (DataProduct element : response.getDataProductsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListDataProductsRequest,ListDataProductsResponse> |
|
listDataProductsPagedCallable()
public final UnaryCallable<ListDataProductsRequest,DataProductServiceClient.ListDataProductsPagedResponse> listDataProductsPagedCallable()Lists data products for a given 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListDataProductsRequest request =
ListDataProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<DataProduct> future =
dataProductServiceClient.listDataProductsPagedCallable().futureCall(request);
// Do something.
for (DataProduct element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListDataProductsRequest,ListDataProductsPagedResponse> |
|
listLocations(ListLocationsRequest request)
public final DataProductServiceClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request)Lists information about the supported locations for this service.This method can be called in two ways:
* **List all public locations:** Use the path GET /v1/locations.*
**List project-visible locations:** Use the pathGET
/v1/projects/{project_id}/locations. This may include publiclocations as well as private or
other locations specifically visibleto 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : dataProductServiceClient.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 |
DataProductServiceClient.ListLocationsPagedResponse |
|
listLocationsCallable()
public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()Lists information about the supported locations for this service.This method can be called in two ways:
* **List all public locations:** Use the path GET /v1/locations.*
**List project-visible locations:** Use the pathGET
/v1/projects/{project_id}/locations. This may include publiclocations as well as private or
other locations specifically visibleto 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response =
dataProductServiceClient.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,DataProductServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()Lists information about the supported locations for this service.This method can be called in two ways:
* **List all public locations:** Use the path GET /v1/locations.*
**List project-visible locations:** Use the pathGET
/v1/projects/{project_id}/locations. This may include publiclocations as well as private or
other locations specifically visibleto 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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future =
dataProductServiceClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse> |
|
setIamPolicy(SetIamPolicyRequest request)
public final Policy setIamPolicy(SetIamPolicyRequest request)Sets the access control policy on the specified resource. Replacesany existing policy.
Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIEDerrors.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = dataProductServiceClient.setIamPolicy(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.iam.v1.SetIamPolicyRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
com.google.iam.v1.Policy |
|
setIamPolicyCallable()
public final UnaryCallable<SetIamPolicyRequest,Policy> setIamPolicyCallable()Sets the access control policy on the specified resource. Replacesany existing policy.
Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIEDerrors.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future =
dataProductServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
|
shutdown()
public void shutdown()shutdownNow()
public void shutdownNow()testIamPermissions(TestIamPermissionsRequest request)
public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsRequest request)Returns permissions that a caller has on the specified resource. If theresource does not exist,
this will return an empty set ofpermissions, not a NOT_FOUND error.
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = dataProductServiceClient.testIamPermissions(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.iam.v1.TestIamPermissionsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
com.google.iam.v1.TestIamPermissionsResponse |
|
testIamPermissionsCallable()
public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()Returns permissions that a caller has on the specified resource. If theresource does not exist,
this will return an empty set ofpermissions, not a NOT_FOUND error.
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(AspectTypeName.of("[PROJECT]", "[LOCATION]", "[ASPECT_TYPE]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
dataProductServiceClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
|
updateDataAssetAsync(DataAsset dataAsset, FieldMask updateMask)
public final OperationFuture<DataAsset,OperationMetadata> updateDataAssetAsync(DataAsset dataAsset, FieldMask updateMask)Updates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataAsset dataAsset = DataAsset.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
DataAsset response =
dataProductServiceClient.updateDataAssetAsync(dataAsset, updateMask).get();
}
| Parameters | |
|---|---|
| Name | Description |
dataAsset |
DataAssetRequired. The data asset to update. The data asset's |
updateMask |
FieldMaskOptional. The list of fields to update. If this is empty or not set, then all the fields will be updated. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataAsset,OperationMetadata> |
|
updateDataAssetAsync(UpdateDataAssetRequest request)
public final OperationFuture<DataAsset,OperationMetadata> updateDataAssetAsync(UpdateDataAssetRequest request)Updates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataAssetRequest request =
UpdateDataAssetRequest.newBuilder()
.setDataAsset(DataAsset.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
DataAsset response = dataProductServiceClient.updateDataAssetAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateDataAssetRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataAsset,OperationMetadata> |
|
updateDataAssetCallable()
public final UnaryCallable<UpdateDataAssetRequest,Operation> updateDataAssetCallable()Updates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataAssetRequest request =
UpdateDataAssetRequest.newBuilder()
.setDataAsset(DataAsset.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.updateDataAssetCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateDataAssetRequest,Operation> |
|
updateDataAssetOperationCallable()
public final OperationCallable<UpdateDataAssetRequest,DataAsset,OperationMetadata> updateDataAssetOperationCallable()Updates a data asset.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataAssetRequest request =
UpdateDataAssetRequest.newBuilder()
.setDataAsset(DataAsset.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<DataAsset, OperationMetadata> future =
dataProductServiceClient.updateDataAssetOperationCallable().futureCall(request);
// Do something.
DataAsset response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<UpdateDataAssetRequest,DataAsset,OperationMetadata> |
|
updateDataProductAsync(DataProduct dataProduct, FieldMask updateMask)
public final OperationFuture<DataProduct,OperationMetadata> updateDataProductAsync(DataProduct dataProduct, FieldMask updateMask)Updates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
DataProduct dataProduct = DataProduct.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
DataProduct response =
dataProductServiceClient.updateDataProductAsync(dataProduct, updateMask).get();
}
| Parameters | |
|---|---|
| Name | Description |
dataProduct |
DataProductRequired. The data product to update. The data product's |
updateMask |
FieldMaskOptional. The list of fields to update. If this is empty or not set, then all the fields will be updated. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataProduct,OperationMetadata> |
|
updateDataProductAsync(UpdateDataProductRequest request)
public final OperationFuture<DataProduct,OperationMetadata> updateDataProductAsync(UpdateDataProductRequest request)Updates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataProductRequest request =
UpdateDataProductRequest.newBuilder()
.setDataProduct(DataProduct.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
DataProduct response = dataProductServiceClient.updateDataProductAsync(request).get();
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateDataProductRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
OperationFuture<DataProduct,OperationMetadata> |
|
updateDataProductCallable()
public final UnaryCallable<UpdateDataProductRequest,Operation> updateDataProductCallable()Updates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataProductRequest request =
UpdateDataProductRequest.newBuilder()
.setDataProduct(DataProduct.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
ApiFuture<Operation> future =
dataProductServiceClient.updateDataProductCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateDataProductRequest,Operation> |
|
updateDataProductOperationCallable()
public final OperationCallable<UpdateDataProductRequest,DataProduct,OperationMetadata> updateDataProductOperationCallable()Updates a data product.
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 (DataProductServiceClient dataProductServiceClient = DataProductServiceClient.create()) {
UpdateDataProductRequest request =
UpdateDataProductRequest.newBuilder()
.setDataProduct(DataProduct.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setValidateOnly(true)
.build();
OperationFuture<DataProduct, OperationMetadata> future =
dataProductServiceClient.updateDataProductOperationCallable().futureCall(request);
// Do something.
DataProduct response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
OperationCallable<UpdateDataProductRequest,DataProduct,OperationMetadata> |
|