- 0.60.0 (latest)
- 0.59.0
- 0.58.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.49.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.10.4
- 0.8.10
public class CatalogServiceClient implements BackgroundResource
Service Description: Service for ingesting catalog information of the customer's website.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
CatalogItem catalogItem = CatalogItem.newBuilder().build();
CatalogItem response = catalogServiceClient.createCatalogItem(parent, catalogItem);
}
Note: close() needs to be called on the CatalogServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of CatalogServiceSettings 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
CatalogServiceSettings catalogServiceSettings =
CatalogServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
CatalogServiceClient catalogServiceClient = CatalogServiceClient.create(catalogServiceSettings);
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
CatalogServiceSettings catalogServiceSettings =
CatalogServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
CatalogServiceClient catalogServiceClient = CatalogServiceClient.create(catalogServiceSettings);
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
CatalogServiceSettings catalogServiceSettings =
CatalogServiceSettings.newBuilder()
.setTransportChannelProvider(
CatalogServiceSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
CatalogServiceClient catalogServiceClient = CatalogServiceClient.create(catalogServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceStatic Methods
create()
public static final CatalogServiceClient create()
Constructs an instance of CatalogServiceClient with default settings.
Type | Description |
CatalogServiceClient |
Type | Description |
IOException |
create(CatalogServiceSettings settings)
public static final CatalogServiceClient create(CatalogServiceSettings settings)
Constructs an instance of CatalogServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Name | Description |
settings | CatalogServiceSettings |
Type | Description |
CatalogServiceClient |
Type | Description |
IOException |
create(CatalogServiceStub stub)
public static final CatalogServiceClient create(CatalogServiceStub stub)
Constructs an instance of CatalogServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(CatalogServiceSettings).
Name | Description |
stub | CatalogServiceStub |
Type | Description |
CatalogServiceClient |
Constructors
CatalogServiceClient(CatalogServiceSettings settings)
protected CatalogServiceClient(CatalogServiceSettings settings)
Constructs an instance of CatalogServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
Name | Description |
settings | CatalogServiceSettings |
CatalogServiceClient(CatalogServiceStub stub)
protected CatalogServiceClient(CatalogServiceStub stub)
Name | Description |
stub | CatalogServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Name | Description |
duration | long |
unit | TimeUnit |
Type | Description |
boolean |
Type | Description |
InterruptedException |
close()
public final void close()
createCatalogItem(CatalogName parent, CatalogItem catalogItem)
public final CatalogItem createCatalogItem(CatalogName parent, CatalogItem catalogItem)
Creates a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
CatalogItem catalogItem = CatalogItem.newBuilder().build();
CatalogItem response = catalogServiceClient.createCatalogItem(parent, catalogItem);
}
Name | Description |
parent | CatalogName Required. The parent catalog resource name, such as
|
catalogItem | CatalogItem Required. The catalog item to create. |
Type | Description |
CatalogItem |
createCatalogItem(CreateCatalogItemRequest request)
public final CatalogItem createCatalogItem(CreateCatalogItemRequest request)
Creates a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CreateCatalogItemRequest request =
CreateCatalogItemRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setCatalogItem(CatalogItem.newBuilder().build())
.build();
CatalogItem response = catalogServiceClient.createCatalogItem(request);
}
Name | Description |
request | CreateCatalogItemRequest The request object containing all of the parameters for the API call. |
Type | Description |
CatalogItem |
createCatalogItem(String parent, CatalogItem catalogItem)
public final CatalogItem createCatalogItem(String parent, CatalogItem catalogItem)
Creates a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString();
CatalogItem catalogItem = CatalogItem.newBuilder().build();
CatalogItem response = catalogServiceClient.createCatalogItem(parent, catalogItem);
}
Name | Description |
parent | String Required. The parent catalog resource name, such as
|
catalogItem | CatalogItem Required. The catalog item to create. |
Type | Description |
CatalogItem |
createCatalogItemCallable()
public final UnaryCallable<CreateCatalogItemRequest,CatalogItem> createCatalogItemCallable()
Creates a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CreateCatalogItemRequest request =
CreateCatalogItemRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setCatalogItem(CatalogItem.newBuilder().build())
.build();
ApiFuture<CatalogItem> future =
catalogServiceClient.createCatalogItemCallable().futureCall(request);
// Do something.
CatalogItem response = future.get();
}
Type | Description |
UnaryCallable<CreateCatalogItemRequest,CatalogItem> |
deleteCatalogItem(CatalogItemPathName name)
public final void deleteCatalogItem(CatalogItemPathName name)
Deletes a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogItemPathName name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]");
catalogServiceClient.deleteCatalogItem(name);
}
Name | Description |
name | CatalogItemPathName Required. Full resource name of catalog item, such as
|
deleteCatalogItem(DeleteCatalogItemRequest request)
public final void deleteCatalogItem(DeleteCatalogItemRequest request)
Deletes a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
DeleteCatalogItemRequest request =
DeleteCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.build();
catalogServiceClient.deleteCatalogItem(request);
}
Name | Description |
request | DeleteCatalogItemRequest The request object containing all of the parameters for the API call. |
deleteCatalogItem(String name)
public final void deleteCatalogItem(String name)
Deletes a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString();
catalogServiceClient.deleteCatalogItem(name);
}
Name | Description |
name | String Required. Full resource name of catalog item, such as
|
deleteCatalogItemCallable()
public final UnaryCallable<DeleteCatalogItemRequest,Empty> deleteCatalogItemCallable()
Deletes a catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
DeleteCatalogItemRequest request =
DeleteCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.build();
ApiFuture<Empty> future =
catalogServiceClient.deleteCatalogItemCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteCatalogItemRequest,Empty> |
getCatalogItem(CatalogItemPathName name)
public final CatalogItem getCatalogItem(CatalogItemPathName name)
Gets a specific catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogItemPathName name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]");
CatalogItem response = catalogServiceClient.getCatalogItem(name);
}
Name | Description |
name | CatalogItemPathName Required. Full resource name of catalog item, such as
|
Type | Description |
CatalogItem |
getCatalogItem(GetCatalogItemRequest request)
public final CatalogItem getCatalogItem(GetCatalogItemRequest request)
Gets a specific catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
GetCatalogItemRequest request =
GetCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.build();
CatalogItem response = catalogServiceClient.getCatalogItem(request);
}
Name | Description |
request | GetCatalogItemRequest The request object containing all of the parameters for the API call. |
Type | Description |
CatalogItem |
getCatalogItem(String name)
public final CatalogItem getCatalogItem(String name)
Gets a specific catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString();
CatalogItem response = catalogServiceClient.getCatalogItem(name);
}
Name | Description |
name | String Required. Full resource name of catalog item, such as
|
Type | Description |
CatalogItem |
getCatalogItemCallable()
public final UnaryCallable<GetCatalogItemRequest,CatalogItem> getCatalogItemCallable()
Gets a specific catalog item.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
GetCatalogItemRequest request =
GetCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.build();
ApiFuture<CatalogItem> future =
catalogServiceClient.getCatalogItemCallable().futureCall(request);
// Do something.
CatalogItem response = future.get();
}
Type | Description |
UnaryCallable<GetCatalogItemRequest,CatalogItem> |
getHttpJsonOperationsClient()
public final OperationsClient getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Type | Description |
OperationsClient |
getOperationsClient()
public final OperationsClient getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Type | Description |
OperationsClient |
getSettings()
public final CatalogServiceSettings getSettings()
Type | Description |
CatalogServiceSettings |
getStub()
public CatalogServiceStub getStub()
Type | Description |
CatalogServiceStub |
importCatalogItemsAsync(CatalogName parent, String requestId, InputConfig inputConfig, ImportErrorsConfig errorsConfig)
public final OperationFuture<ImportCatalogItemsResponse,ImportMetadata> importCatalogItemsAsync(CatalogName parent, String requestId, InputConfig inputConfig, ImportErrorsConfig errorsConfig)
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
String requestId = "requestId693933066";
InputConfig inputConfig = InputConfig.newBuilder().build();
ImportErrorsConfig errorsConfig = ImportErrorsConfig.newBuilder().build();
ImportCatalogItemsResponse response =
catalogServiceClient
.importCatalogItemsAsync(parent, requestId, inputConfig, errorsConfig)
.get();
}
Name | Description |
parent | CatalogName Required. |
requestId | String Optional. Unique identifier provided by client, within the ancestor dataset scope. Ensures idempotency and used for request deduplication. Server-generated if unspecified. Up to 128 characters long. This is returned as google.longrunning.Operation.name in the response. |
inputConfig | InputConfig Required. The desired input location of the data. |
errorsConfig | ImportErrorsConfig Optional. The desired location of errors incurred during the Import. |
Type | Description |
OperationFuture<ImportCatalogItemsResponse,ImportMetadata> |
importCatalogItemsAsync(ImportCatalogItemsRequest request)
public final OperationFuture<ImportCatalogItemsResponse,ImportMetadata> importCatalogItemsAsync(ImportCatalogItemsRequest request)
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ImportCatalogItemsRequest request =
ImportCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setRequestId("requestId693933066")
.setInputConfig(InputConfig.newBuilder().build())
.setErrorsConfig(ImportErrorsConfig.newBuilder().build())
.build();
ImportCatalogItemsResponse response =
catalogServiceClient.importCatalogItemsAsync(request).get();
}
Name | Description |
request | ImportCatalogItemsRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<ImportCatalogItemsResponse,ImportMetadata> |
importCatalogItemsAsync(String parent, String requestId, InputConfig inputConfig, ImportErrorsConfig errorsConfig)
public final OperationFuture<ImportCatalogItemsResponse,ImportMetadata> importCatalogItemsAsync(String parent, String requestId, InputConfig inputConfig, ImportErrorsConfig errorsConfig)
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString();
String requestId = "requestId693933066";
InputConfig inputConfig = InputConfig.newBuilder().build();
ImportErrorsConfig errorsConfig = ImportErrorsConfig.newBuilder().build();
ImportCatalogItemsResponse response =
catalogServiceClient
.importCatalogItemsAsync(parent, requestId, inputConfig, errorsConfig)
.get();
}
Name | Description |
parent | String Required. |
requestId | String Optional. Unique identifier provided by client, within the ancestor dataset scope. Ensures idempotency and used for request deduplication. Server-generated if unspecified. Up to 128 characters long. This is returned as google.longrunning.Operation.name in the response. |
inputConfig | InputConfig Required. The desired input location of the data. |
errorsConfig | ImportErrorsConfig Optional. The desired location of errors incurred during the Import. |
Type | Description |
OperationFuture<ImportCatalogItemsResponse,ImportMetadata> |
importCatalogItemsCallable()
public final UnaryCallable<ImportCatalogItemsRequest,Operation> importCatalogItemsCallable()
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ImportCatalogItemsRequest request =
ImportCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setRequestId("requestId693933066")
.setInputConfig(InputConfig.newBuilder().build())
.setErrorsConfig(ImportErrorsConfig.newBuilder().build())
.build();
ApiFuture<Operation> future =
catalogServiceClient.importCatalogItemsCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Type | Description |
UnaryCallable<ImportCatalogItemsRequest,Operation> |
importCatalogItemsOperationCallable()
public final OperationCallable<ImportCatalogItemsRequest,ImportCatalogItemsResponse,ImportMetadata> importCatalogItemsOperationCallable()
Bulk import of multiple catalog items. Request processing may be synchronous. No partial updating supported. Non-existing items will be created.
Operation.response is of type ImportResponse. Note that it is possible for a subset of the items to be successfully updated.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ImportCatalogItemsRequest request =
ImportCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setRequestId("requestId693933066")
.setInputConfig(InputConfig.newBuilder().build())
.setErrorsConfig(ImportErrorsConfig.newBuilder().build())
.build();
OperationFuture<ImportCatalogItemsResponse, ImportMetadata> future =
catalogServiceClient.importCatalogItemsOperationCallable().futureCall(request);
// Do something.
ImportCatalogItemsResponse response = future.get();
}
Type | Description |
OperationCallable<ImportCatalogItemsRequest,ImportCatalogItemsResponse,ImportMetadata> |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listCatalogItems(CatalogName parent, String filter)
public final CatalogServiceClient.ListCatalogItemsPagedResponse listCatalogItems(CatalogName parent, String filter)
Gets a list of catalog items.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogName parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]");
String filter = "filter-1274492040";
for (CatalogItem element :
catalogServiceClient.listCatalogItems(parent, filter).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | CatalogName Required. The parent catalog resource name, such as
|
filter | String Optional. A filter to apply on the list results. |
Type | Description |
CatalogServiceClient.ListCatalogItemsPagedResponse |
listCatalogItems(ListCatalogItemsRequest request)
public final CatalogServiceClient.ListCatalogItemsPagedResponse listCatalogItems(ListCatalogItemsRequest request)
Gets a list of catalog items.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ListCatalogItemsRequest request =
ListCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
for (CatalogItem element : catalogServiceClient.listCatalogItems(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListCatalogItemsRequest The request object containing all of the parameters for the API call. |
Type | Description |
CatalogServiceClient.ListCatalogItemsPagedResponse |
listCatalogItems(String parent, String filter)
public final CatalogServiceClient.ListCatalogItemsPagedResponse listCatalogItems(String parent, String filter)
Gets a list of catalog items.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String parent = CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString();
String filter = "filter-1274492040";
for (CatalogItem element :
catalogServiceClient.listCatalogItems(parent, filter).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. The parent catalog resource name, such as
|
filter | String Optional. A filter to apply on the list results. |
Type | Description |
CatalogServiceClient.ListCatalogItemsPagedResponse |
listCatalogItemsCallable()
public final UnaryCallable<ListCatalogItemsRequest,ListCatalogItemsResponse> listCatalogItemsCallable()
Gets a list of catalog items.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ListCatalogItemsRequest request =
ListCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
while (true) {
ListCatalogItemsResponse response =
catalogServiceClient.listCatalogItemsCallable().call(request);
for (CatalogItem element : response.getCatalogItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListCatalogItemsRequest,ListCatalogItemsResponse> |
listCatalogItemsPagedCallable()
public final UnaryCallable<ListCatalogItemsRequest,CatalogServiceClient.ListCatalogItemsPagedResponse> listCatalogItemsPagedCallable()
Gets a list of catalog items.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
ListCatalogItemsRequest request =
ListCatalogItemsRequest.newBuilder()
.setParent(CatalogName.of("[PROJECT]", "[LOCATION]", "[CATALOG]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.build();
ApiFuture<CatalogItem> future =
catalogServiceClient.listCatalogItemsPagedCallable().futureCall(request);
// Do something.
for (CatalogItem element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<ListCatalogItemsRequest,ListCatalogItemsPagedResponse> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateCatalogItem(CatalogItemPathName name, CatalogItem catalogItem, FieldMask updateMask)
public final CatalogItem updateCatalogItem(CatalogItemPathName name, CatalogItem catalogItem, FieldMask updateMask)
Updates a catalog item. Partial updating is supported. Non-existing items will be created.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
CatalogItemPathName name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]");
CatalogItem catalogItem = CatalogItem.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CatalogItem response = catalogServiceClient.updateCatalogItem(name, catalogItem, updateMask);
}
Name | Description |
name | CatalogItemPathName Required. Full resource name of catalog item, such as "projects/*/locations/global/catalogs/default_catalog/catalogItems/some_catalog_item_id". |
catalogItem | CatalogItem Required. The catalog item to update/create. The 'catalog_item_id' field has to match that in the 'name'. |
updateMask | FieldMask Optional. Indicates which fields in the provided 'item' to update. If not set, will by default update all fields. |
Type | Description |
CatalogItem |
updateCatalogItem(UpdateCatalogItemRequest request)
public final CatalogItem updateCatalogItem(UpdateCatalogItemRequest request)
Updates a catalog item. Partial updating is supported. Non-existing items will be created.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
UpdateCatalogItemRequest request =
UpdateCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.setCatalogItem(CatalogItem.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
CatalogItem response = catalogServiceClient.updateCatalogItem(request);
}
Name | Description |
request | UpdateCatalogItemRequest The request object containing all of the parameters for the API call. |
Type | Description |
CatalogItem |
updateCatalogItem(String name, CatalogItem catalogItem, FieldMask updateMask)
public final CatalogItem updateCatalogItem(String name, CatalogItem catalogItem, FieldMask updateMask)
Updates a catalog item. Partial updating is supported. Non-existing items will be created.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
String name =
CatalogItemPathName.of("[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString();
CatalogItem catalogItem = CatalogItem.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CatalogItem response = catalogServiceClient.updateCatalogItem(name, catalogItem, updateMask);
}
Name | Description |
name | String Required. Full resource name of catalog item, such as "projects/*/locations/global/catalogs/default_catalog/catalogItems/some_catalog_item_id". |
catalogItem | CatalogItem Required. The catalog item to update/create. The 'catalog_item_id' field has to match that in the 'name'. |
updateMask | FieldMask Optional. Indicates which fields in the provided 'item' to update. If not set, will by default update all fields. |
Type | Description |
CatalogItem |
updateCatalogItemCallable()
public final UnaryCallable<UpdateCatalogItemRequest,CatalogItem> updateCatalogItemCallable()
Updates a catalog item. Partial updating is supported. Non-existing items will be created.
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 (CatalogServiceClient catalogServiceClient = CatalogServiceClient.create()) {
UpdateCatalogItemRequest request =
UpdateCatalogItemRequest.newBuilder()
.setName(
CatalogItemPathName.of(
"[PROJECT]", "[LOCATION]", "[CATALOG]", "[CATALOG_ITEM_PATH]")
.toString())
.setCatalogItem(CatalogItem.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<CatalogItem> future =
catalogServiceClient.updateCatalogItemCallable().futureCall(request);
// Do something.
CatalogItem response = future.get();
}
Type | Description |
UnaryCallable<UpdateCatalogItemRequest,CatalogItem> |