@BetaApi @Generated(value="by gapic-generator-java") public class ProductSearchClient extends Object implements BackgroundResource
- The API has a collection of [ProductSet][google.cloud.vision.v1p4beta1.ProductSet] resources, named `projects/*/locations/*/productSets/*`, which acts as a way to put different products into groups to limit identification.
In parallel,
- The API has a collection of [Product][google.cloud.vision.v1p4beta1.Product] resources, named `projects/*/locations/*/products/*`
- Each [Product][google.cloud.vision.v1p4beta1.Product] has a collection of [ReferenceImage][google.cloud.vision.v1p4beta1.ReferenceImage] resources, named `projects/*/locations/*/products/*/referenceImages/*`
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
ProductSet productSet = ProductSet.newBuilder().build();
String productSetId = "productSetId1003042158";
ProductSet response = productSearchClient.createProductSet(parent, productSet, productSetId);
}
Note: close() needs to be called on the ProductSearchClient 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:
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 ProductSearchSettings 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
ProductSearchSettings productSearchSettings =
ProductSearchSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ProductSearchClient productSearchClient = ProductSearchClient.create(productSearchSettings);
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
ProductSearchSettings productSearchSettings =
ProductSearchSettings.newBuilder().setEndpoint(myEndpoint).build();
ProductSearchClient productSearchClient = ProductSearchClient.create(productSearchSettings);
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
ProductSearchSettings productSearchSettings =
ProductSearchSettings.newBuilder()
.setTransportChannelProvider(
ProductSearchSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
ProductSearchClient productSearchClient = ProductSearchClient.create(productSearchSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Modifier and Type | Class and Description |
---|---|
static class |
ProductSearchClient.ListProductSetsFixedSizeCollection |
static class |
ProductSearchClient.ListProductSetsPage |
static class |
ProductSearchClient.ListProductSetsPagedResponse |
static class |
ProductSearchClient.ListProductsFixedSizeCollection |
static class |
ProductSearchClient.ListProductsInProductSetFixedSizeCollection |
static class |
ProductSearchClient.ListProductsInProductSetPage |
static class |
ProductSearchClient.ListProductsInProductSetPagedResponse |
static class |
ProductSearchClient.ListProductsPage |
static class |
ProductSearchClient.ListProductsPagedResponse |
static class |
ProductSearchClient.ListReferenceImagesFixedSizeCollection |
static class |
ProductSearchClient.ListReferenceImagesPage |
static class |
ProductSearchClient.ListReferenceImagesPagedResponse |
Modifier | Constructor and Description |
---|---|
protected |
ProductSearchClient(ProductSearchSettings settings)
Constructs an instance of ProductSearchClient, using the given settings.
|
protected |
ProductSearchClient(ProductSearchStub stub) |
Modifier and Type | Method and Description |
---|---|
void |
addProductToProductSet(AddProductToProductSetRequest request)
Adds a Product to the specified ProductSet.
|
void |
addProductToProductSet(ProductSetName name,
ProductName product)
Adds a Product to the specified ProductSet.
|
void |
addProductToProductSet(ProductSetName name,
String product)
Adds a Product to the specified ProductSet.
|
void |
addProductToProductSet(String name,
ProductName product)
Adds a Product to the specified ProductSet.
|
void |
addProductToProductSet(String name,
String product)
Adds a Product to the specified ProductSet.
|
UnaryCallable<AddProductToProductSetRequest,Empty> |
addProductToProductSetCallable()
Adds a Product to the specified ProductSet.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static ProductSearchClient |
create()
Constructs an instance of ProductSearchClient with default settings.
|
static ProductSearchClient |
create(ProductSearchSettings settings)
Constructs an instance of ProductSearchClient, using the given settings.
|
static ProductSearchClient |
create(ProductSearchStub stub)
Constructs an instance of ProductSearchClient, using the given stub for making calls.
|
Product |
createProduct(CreateProductRequest request)
Creates and returns a new product resource.
|
Product |
createProduct(LocationName parent,
Product product,
String productId)
Creates and returns a new product resource.
|
Product |
createProduct(String parent,
Product product,
String productId)
Creates and returns a new product resource.
|
UnaryCallable<CreateProductRequest,Product> |
createProductCallable()
Creates and returns a new product resource.
|
ProductSet |
createProductSet(CreateProductSetRequest request)
Creates and returns a new ProductSet resource.
|
ProductSet |
createProductSet(LocationName parent,
ProductSet productSet,
String productSetId)
Creates and returns a new ProductSet resource.
|
ProductSet |
createProductSet(String parent,
ProductSet productSet,
String productSetId)
Creates and returns a new ProductSet resource.
|
UnaryCallable<CreateProductSetRequest,ProductSet> |
createProductSetCallable()
Creates and returns a new ProductSet resource.
|
ReferenceImage |
createReferenceImage(CreateReferenceImageRequest request)
Creates and returns a new ReferenceImage resource.
|
ReferenceImage |
createReferenceImage(ProductName parent,
ReferenceImage referenceImage,
String referenceImageId)
Creates and returns a new ReferenceImage resource.
|
ReferenceImage |
createReferenceImage(String parent,
ReferenceImage referenceImage,
String referenceImageId)
Creates and returns a new ReferenceImage resource.
|
UnaryCallable<CreateReferenceImageRequest,ReferenceImage> |
createReferenceImageCallable()
Creates and returns a new ReferenceImage resource.
|
void |
deleteProduct(DeleteProductRequest request)
Permanently deletes a product and its reference images.
|
void |
deleteProduct(ProductName name)
Permanently deletes a product and its reference images.
|
void |
deleteProduct(String name)
Permanently deletes a product and its reference images.
|
UnaryCallable<DeleteProductRequest,Empty> |
deleteProductCallable()
Permanently deletes a product and its reference images.
|
void |
deleteProductSet(DeleteProductSetRequest request)
Permanently deletes a ProductSet.
|
void |
deleteProductSet(ProductSetName name)
Permanently deletes a ProductSet.
|
void |
deleteProductSet(String name)
Permanently deletes a ProductSet.
|
UnaryCallable<DeleteProductSetRequest,Empty> |
deleteProductSetCallable()
Permanently deletes a ProductSet.
|
void |
deleteReferenceImage(DeleteReferenceImageRequest request)
Permanently deletes a reference image.
|
void |
deleteReferenceImage(ReferenceImageName name)
Permanently deletes a reference image.
|
void |
deleteReferenceImage(String name)
Permanently deletes a reference image.
|
UnaryCallable<DeleteReferenceImageRequest,Empty> |
deleteReferenceImageCallable()
Permanently deletes a reference image.
|
OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
Product |
getProduct(GetProductRequest request)
Gets information associated with a Product.
|
Product |
getProduct(ProductName name)
Gets information associated with a Product.
|
Product |
getProduct(String name)
Gets information associated with a Product.
|
UnaryCallable<GetProductRequest,Product> |
getProductCallable()
Gets information associated with a Product.
|
ProductSet |
getProductSet(GetProductSetRequest request)
Gets information associated with a ProductSet.
|
ProductSet |
getProductSet(ProductSetName name)
Gets information associated with a ProductSet.
|
ProductSet |
getProductSet(String name)
Gets information associated with a ProductSet.
|
UnaryCallable<GetProductSetRequest,ProductSet> |
getProductSetCallable()
Gets information associated with a ProductSet.
|
ReferenceImage |
getReferenceImage(GetReferenceImageRequest request)
Gets information associated with a ReferenceImage.
|
ReferenceImage |
getReferenceImage(ReferenceImageName name)
Gets information associated with a ReferenceImage.
|
ReferenceImage |
getReferenceImage(String name)
Gets information associated with a ReferenceImage.
|
UnaryCallable<GetReferenceImageRequest,ReferenceImage> |
getReferenceImageCallable()
Gets information associated with a ReferenceImage.
|
ProductSearchSettings |
getSettings() |
ProductSearchStub |
getStub() |
OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> |
importProductSetsAsync(ImportProductSetsRequest request)
Asynchronous API that imports a list of reference images to specified product sets based on a
list of image information.
|
OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> |
importProductSetsAsync(LocationName parent,
ImportProductSetsInputConfig inputConfig)
Asynchronous API that imports a list of reference images to specified product sets based on a
list of image information.
|
OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> |
importProductSetsAsync(String parent,
ImportProductSetsInputConfig inputConfig)
Asynchronous API that imports a list of reference images to specified product sets based on a
list of image information.
|
UnaryCallable<ImportProductSetsRequest,Operation> |
importProductSetsCallable()
Asynchronous API that imports a list of reference images to specified product sets based on a
list of image information.
|
OperationCallable<ImportProductSetsRequest,ImportProductSetsResponse,BatchOperationMetadata> |
importProductSetsOperationCallable()
Asynchronous API that imports a list of reference images to specified product sets based on a
list of image information.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
ProductSearchClient.ListProductsPagedResponse |
listProducts(ListProductsRequest request)
Lists products in an unspecified order.
|
ProductSearchClient.ListProductsPagedResponse |
listProducts(LocationName parent)
Lists products in an unspecified order.
|
ProductSearchClient.ListProductsPagedResponse |
listProducts(String parent)
Lists products in an unspecified order.
|
UnaryCallable<ListProductsRequest,ListProductsResponse> |
listProductsCallable()
Lists products in an unspecified order.
|
ProductSearchClient.ListProductSetsPagedResponse |
listProductSets(ListProductSetsRequest request)
Lists ProductSets in an unspecified order.
|
ProductSearchClient.ListProductSetsPagedResponse |
listProductSets(LocationName parent)
Lists ProductSets in an unspecified order.
|
ProductSearchClient.ListProductSetsPagedResponse |
listProductSets(String parent)
Lists ProductSets in an unspecified order.
|
UnaryCallable<ListProductSetsRequest,ListProductSetsResponse> |
listProductSetsCallable()
Lists ProductSets in an unspecified order.
|
UnaryCallable<ListProductSetsRequest,ProductSearchClient.ListProductSetsPagedResponse> |
listProductSetsPagedCallable()
Lists ProductSets in an unspecified order.
|
ProductSearchClient.ListProductsInProductSetPagedResponse |
listProductsInProductSet(ListProductsInProductSetRequest request)
Lists the Products in a ProductSet, in an unspecified order.
|
ProductSearchClient.ListProductsInProductSetPagedResponse |
listProductsInProductSet(ProductSetName name)
Lists the Products in a ProductSet, in an unspecified order.
|
ProductSearchClient.ListProductsInProductSetPagedResponse |
listProductsInProductSet(String name)
Lists the Products in a ProductSet, in an unspecified order.
|
UnaryCallable<ListProductsInProductSetRequest,ListProductsInProductSetResponse> |
listProductsInProductSetCallable()
Lists the Products in a ProductSet, in an unspecified order.
|
UnaryCallable<ListProductsInProductSetRequest,ProductSearchClient.ListProductsInProductSetPagedResponse> |
listProductsInProductSetPagedCallable()
Lists the Products in a ProductSet, in an unspecified order.
|
UnaryCallable<ListProductsRequest,ProductSearchClient.ListProductsPagedResponse> |
listProductsPagedCallable()
Lists products in an unspecified order.
|
ProductSearchClient.ListReferenceImagesPagedResponse |
listReferenceImages(ListReferenceImagesRequest request)
Lists reference images.
|
ProductSearchClient.ListReferenceImagesPagedResponse |
listReferenceImages(ProductName parent)
Lists reference images.
|
ProductSearchClient.ListReferenceImagesPagedResponse |
listReferenceImages(String parent)
Lists reference images.
|
UnaryCallable<ListReferenceImagesRequest,ListReferenceImagesResponse> |
listReferenceImagesCallable()
Lists reference images.
|
UnaryCallable<ListReferenceImagesRequest,ProductSearchClient.ListReferenceImagesPagedResponse> |
listReferenceImagesPagedCallable()
Lists reference images.
|
OperationFuture<Empty,BatchOperationMetadata> |
purgeProductsAsync(LocationName parent)
Asynchronous API to delete all Products in a ProductSet or all Products that are in no
ProductSet.
|
OperationFuture<Empty,BatchOperationMetadata> |
purgeProductsAsync(PurgeProductsRequest request)
Asynchronous API to delete all Products in a ProductSet or all Products that are in no
ProductSet.
|
OperationFuture<Empty,BatchOperationMetadata> |
purgeProductsAsync(String parent)
Asynchronous API to delete all Products in a ProductSet or all Products that are in no
ProductSet.
|
UnaryCallable<PurgeProductsRequest,Operation> |
purgeProductsCallable()
Asynchronous API to delete all Products in a ProductSet or all Products that are in no
ProductSet.
|
OperationCallable<PurgeProductsRequest,Empty,BatchOperationMetadata> |
purgeProductsOperationCallable()
Asynchronous API to delete all Products in a ProductSet or all Products that are in no
ProductSet.
|
void |
removeProductFromProductSet(ProductSetName name,
ProductName product)
Removes a Product from the specified ProductSet.
|
void |
removeProductFromProductSet(ProductSetName name,
String product)
Removes a Product from the specified ProductSet.
|
void |
removeProductFromProductSet(RemoveProductFromProductSetRequest request)
Removes a Product from the specified ProductSet.
|
void |
removeProductFromProductSet(String name,
ProductName product)
Removes a Product from the specified ProductSet.
|
void |
removeProductFromProductSet(String name,
String product)
Removes a Product from the specified ProductSet.
|
UnaryCallable<RemoveProductFromProductSetRequest,Empty> |
removeProductFromProductSetCallable()
Removes a Product from the specified ProductSet.
|
void |
shutdown() |
void |
shutdownNow() |
Product |
updateProduct(Product product,
FieldMask updateMask)
Makes changes to a Product resource.
|
Product |
updateProduct(UpdateProductRequest request)
Makes changes to a Product resource.
|
UnaryCallable<UpdateProductRequest,Product> |
updateProductCallable()
Makes changes to a Product resource.
|
ProductSet |
updateProductSet(ProductSet productSet,
FieldMask updateMask)
Makes changes to a ProductSet resource.
|
ProductSet |
updateProductSet(UpdateProductSetRequest request)
Makes changes to a ProductSet resource.
|
UnaryCallable<UpdateProductSetRequest,ProductSet> |
updateProductSetCallable()
Makes changes to a ProductSet resource.
|
protected ProductSearchClient(ProductSearchSettings settings) throws IOException
IOException
protected ProductSearchClient(ProductSearchStub stub)
public static final ProductSearchClient create() throws IOException
IOException
public static final ProductSearchClient create(ProductSearchSettings settings) throws IOException
IOException
public static final ProductSearchClient create(ProductSearchStub stub)
public final ProductSearchSettings getSettings()
public ProductSearchStub getStub()
public final OperationsClient getOperationsClient()
@BetaApi public final OperationsClient getHttpJsonOperationsClient()
public final ProductSet createProductSet(LocationName parent, ProductSet productSet, String productSetId)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
ProductSet productSet = ProductSet.newBuilder().build();
String productSetId = "productSetId1003042158";
ProductSet response = productSearchClient.createProductSet(parent, productSet, productSetId);
}
parent
- Required. The project in which the ProductSet should be created.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
productSet
- Required. The ProductSet to create.productSetId
- A user-supplied resource id for this ProductSet. If set, the server will
attempt to use this value as the resource id. If it is already in use, an error is returned
with code ALREADY_EXISTS. Must be at most 128 characters long. It cannot contain the
character `/`.ApiException
- if the remote call failspublic final ProductSet createProductSet(String parent, ProductSet productSet, String productSetId)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
ProductSet productSet = ProductSet.newBuilder().build();
String productSetId = "productSetId1003042158";
ProductSet response = productSearchClient.createProductSet(parent, productSet, productSetId);
}
parent
- Required. The project in which the ProductSet should be created.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
productSet
- Required. The ProductSet to create.productSetId
- A user-supplied resource id for this ProductSet. If set, the server will
attempt to use this value as the resource id. If it is already in use, an error is returned
with code ALREADY_EXISTS. Must be at most 128 characters long. It cannot contain the
character `/`.ApiException
- if the remote call failspublic final ProductSet createProductSet(CreateProductSetRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateProductSetRequest request =
CreateProductSetRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setProductSet(ProductSet.newBuilder().build())
.setProductSetId("productSetId1003042158")
.build();
ProductSet response = productSearchClient.createProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateProductSetRequest,ProductSet> createProductSetCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateProductSetRequest request =
CreateProductSetRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setProductSet(ProductSet.newBuilder().build())
.setProductSetId("productSetId1003042158")
.build();
ApiFuture<ProductSet> future =
productSearchClient.createProductSetCallable().futureCall(request);
// Do something.
ProductSet response = future.get();
}
public final ProductSearchClient.ListProductSetsPagedResponse listProductSets(LocationName parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (ProductSet element : productSearchClient.listProductSets(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The project from which ProductSets should be listed.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductSetsPagedResponse listProductSets(String parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (ProductSet element : productSearchClient.listProductSets(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The project from which ProductSets should be listed.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductSetsPagedResponse listProductSets(ListProductSetsRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductSetsRequest request =
ListProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (ProductSet element : productSearchClient.listProductSets(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListProductSetsRequest,ProductSearchClient.ListProductSetsPagedResponse> listProductSetsPagedCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductSetsRequest request =
ListProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<ProductSet> future =
productSearchClient.listProductSetsPagedCallable().futureCall(request);
// Do something.
for (ProductSet element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListProductSetsRequest,ListProductSetsResponse> listProductSetsCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductSetsRequest request =
ListProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListProductSetsResponse response =
productSearchClient.listProductSetsCallable().call(request);
for (ProductSet element : response.getProductSetsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final ProductSet getProductSet(ProductSetName name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
ProductSet response = productSearchClient.getProductSet(name);
}
name
- Required. Resource name of the ProductSet to get.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final ProductSet getProductSet(String name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
ProductSet response = productSearchClient.getProductSet(name);
}
name
- Required. Resource name of the ProductSet to get.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final ProductSet getProductSet(GetProductSetRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetProductSetRequest request =
GetProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.build();
ProductSet response = productSearchClient.getProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetProductSetRequest,ProductSet> getProductSetCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetProductSetRequest request =
GetProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.build();
ApiFuture<ProductSet> future =
productSearchClient.getProductSetCallable().futureCall(request);
// Do something.
ProductSet response = future.get();
}
public final ProductSet updateProductSet(ProductSet productSet, FieldMask updateMask)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSet productSet = ProductSet.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
ProductSet response = productSearchClient.updateProductSet(productSet, updateMask);
}
productSet
- Required. The ProductSet resource which replaces the one on the server.updateMask
- The [FieldMask][google.protobuf.FieldMask] that specifies which fields to
update. If update_mask isn't specified, all mutable fields are to be updated. Valid mask
path is `display_name`.ApiException
- if the remote call failspublic final ProductSet updateProductSet(UpdateProductSetRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
UpdateProductSetRequest request =
UpdateProductSetRequest.newBuilder()
.setProductSet(ProductSet.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ProductSet response = productSearchClient.updateProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<UpdateProductSetRequest,ProductSet> updateProductSetCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
UpdateProductSetRequest request =
UpdateProductSetRequest.newBuilder()
.setProductSet(ProductSet.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<ProductSet> future =
productSearchClient.updateProductSetCallable().futureCall(request);
// Do something.
ProductSet response = future.get();
}
public final void deleteProductSet(ProductSetName name)
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
productSearchClient.deleteProductSet(name);
}
name
- Required. Resource name of the ProductSet to delete.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final void deleteProductSet(String name)
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
productSearchClient.deleteProductSet(name);
}
name
- Required. Resource name of the ProductSet to delete.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final void deleteProductSet(DeleteProductSetRequest request)
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteProductSetRequest request =
DeleteProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.build();
productSearchClient.deleteProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteProductSetRequest,Empty> deleteProductSetCallable()
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteProductSetRequest request =
DeleteProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.build();
ApiFuture<Empty> future = productSearchClient.deleteProductSetCallable().futureCall(request);
// Do something.
future.get();
}
public final Product createProduct(LocationName parent, Product product, String productId)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Product product = Product.newBuilder().build();
String productId = "productId-1051830678";
Product response = productSearchClient.createProduct(parent, product, productId);
}
parent
- Required. The project in which the Product should be created.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
product
- Required. The product to create.productId
- A user-supplied resource id for this Product. If set, the server will attempt
to use this value as the resource id. If it is already in use, an error is returned with
code ALREADY_EXISTS. Must be at most 128 characters long. It cannot contain the character
`/`.ApiException
- if the remote call failspublic final Product createProduct(String parent, Product product, String productId)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Product product = Product.newBuilder().build();
String productId = "productId-1051830678";
Product response = productSearchClient.createProduct(parent, product, productId);
}
parent
- Required. The project in which the Product should be created.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
product
- Required. The product to create.productId
- A user-supplied resource id for this Product. If set, the server will attempt
to use this value as the resource id. If it is already in use, an error is returned with
code ALREADY_EXISTS. Must be at most 128 characters long. It cannot contain the character
`/`.ApiException
- if the remote call failspublic final Product createProduct(CreateProductRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateProductRequest request =
CreateProductRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setProduct(Product.newBuilder().build())
.setProductId("productId-1051830678")
.build();
Product response = productSearchClient.createProduct(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateProductRequest,Product> createProductCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateProductRequest request =
CreateProductRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setProduct(Product.newBuilder().build())
.setProductId("productId-1051830678")
.build();
ApiFuture<Product> future = productSearchClient.createProductCallable().futureCall(request);
// Do something.
Product response = future.get();
}
public final ProductSearchClient.ListProductsPagedResponse listProducts(LocationName parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Product element : productSearchClient.listProducts(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The project OR ProductSet from which Products should be listed.
Format: `projects/PROJECT_ID/locations/LOC_ID`
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductsPagedResponse listProducts(String parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Product element : productSearchClient.listProducts(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The project OR ProductSet from which Products should be listed.
Format: `projects/PROJECT_ID/locations/LOC_ID`
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductsPagedResponse listProducts(ListProductsRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsRequest request =
ListProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Product element : productSearchClient.listProducts(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListProductsRequest,ProductSearchClient.ListProductsPagedResponse> listProductsPagedCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsRequest request =
ListProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Product> future =
productSearchClient.listProductsPagedCallable().futureCall(request);
// Do something.
for (Product element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListProductsRequest,ListProductsResponse> listProductsCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsRequest request =
ListProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListProductsResponse response = productSearchClient.listProductsCallable().call(request);
for (Product element : response.getProductsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Product getProduct(ProductName name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductName name = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
Product response = productSearchClient.getProduct(name);
}
name
- Required. Resource name of the Product to get.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final Product getProduct(String name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
Product response = productSearchClient.getProduct(name);
}
name
- Required. Resource name of the Product to get.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final Product getProduct(GetProductRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetProductRequest request =
GetProductRequest.newBuilder()
.setName(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
Product response = productSearchClient.getProduct(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetProductRequest,Product> getProductCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetProductRequest request =
GetProductRequest.newBuilder()
.setName(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
ApiFuture<Product> future = productSearchClient.getProductCallable().futureCall(request);
// Do something.
Product response = future.get();
}
public final Product updateProduct(Product product, FieldMask updateMask)
If labels are updated, the change will not be reflected in queries until the next index time.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
Product product = Product.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Product response = productSearchClient.updateProduct(product, updateMask);
}
product
- Required. The Product resource which replaces the one on the server.
product.name is immutable.updateMask
- The [FieldMask][google.protobuf.FieldMask] that specifies which fields to
update. If update_mask isn't specified, all mutable fields are to be updated. Valid mask
paths include `product_labels`, `display_name`, and `description`.ApiException
- if the remote call failspublic final Product updateProduct(UpdateProductRequest request)
If labels are updated, the change will not be reflected in queries until the next index time.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
UpdateProductRequest request =
UpdateProductRequest.newBuilder()
.setProduct(Product.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Product response = productSearchClient.updateProduct(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<UpdateProductRequest,Product> updateProductCallable()
If labels are updated, the change will not be reflected in queries until the next index time.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
UpdateProductRequest request =
UpdateProductRequest.newBuilder()
.setProduct(Product.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Product> future = productSearchClient.updateProductCallable().futureCall(request);
// Do something.
Product response = future.get();
}
public final void deleteProduct(ProductName name)
Metadata of the product and all its images will be deleted right away, but search queries against ProductSets containing the product may still work until all related caches are refreshed.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductName name = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
productSearchClient.deleteProduct(name);
}
name
- Required. Resource name of product to delete.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void deleteProduct(String name)
Metadata of the product and all its images will be deleted right away, but search queries against ProductSets containing the product may still work until all related caches are refreshed.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
productSearchClient.deleteProduct(name);
}
name
- Required. Resource name of product to delete.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void deleteProduct(DeleteProductRequest request)
Metadata of the product and all its images will be deleted right away, but search queries against ProductSets containing the product may still work until all related caches are refreshed.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteProductRequest request =
DeleteProductRequest.newBuilder()
.setName(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
productSearchClient.deleteProduct(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteProductRequest,Empty> deleteProductCallable()
Metadata of the product and all its images will be deleted right away, but search queries against ProductSets containing the product may still work until all related caches are refreshed.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteProductRequest request =
DeleteProductRequest.newBuilder()
.setName(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
ApiFuture<Empty> future = productSearchClient.deleteProductCallable().futureCall(request);
// Do something.
future.get();
}
public final ReferenceImage createReferenceImage(ProductName parent, ReferenceImage referenceImage, String referenceImageId)
The `bounding_poly` field is optional. If `bounding_poly` is not specified, the system will try to detect regions of interest in the image that are compatible with the product_category on the parent product. If it is specified, detection is ALWAYS skipped. The system converts polygons into non-rotated rectangles.
Note that the pipeline will resize the image if the image resolution is too large to process (above 50MP).
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductName parent = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
ReferenceImage referenceImage = ReferenceImage.newBuilder().build();
String referenceImageId = "referenceImageId1224107531";
ReferenceImage response =
productSearchClient.createReferenceImage(parent, referenceImage, referenceImageId);
}
parent
- Required. Resource name of the product in which to create the reference image.
Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
referenceImage
- Required. The reference image to create. If an image ID is specified, it
is ignored.referenceImageId
- A user-supplied resource id for the ReferenceImage to be added. If set,
the server will attempt to use this value as the resource id. If it is already in use, an
error is returned with code ALREADY_EXISTS. Must be at most 128 characters long. It cannot
contain the character `/`.ApiException
- if the remote call failspublic final ReferenceImage createReferenceImage(String parent, ReferenceImage referenceImage, String referenceImageId)
The `bounding_poly` field is optional. If `bounding_poly` is not specified, the system will try to detect regions of interest in the image that are compatible with the product_category on the parent product. If it is specified, detection is ALWAYS skipped. The system converts polygons into non-rotated rectangles.
Note that the pipeline will resize the image if the image resolution is too large to process (above 50MP).
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
ReferenceImage referenceImage = ReferenceImage.newBuilder().build();
String referenceImageId = "referenceImageId1224107531";
ReferenceImage response =
productSearchClient.createReferenceImage(parent, referenceImage, referenceImageId);
}
parent
- Required. Resource name of the product in which to create the reference image.
Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
referenceImage
- Required. The reference image to create. If an image ID is specified, it
is ignored.referenceImageId
- A user-supplied resource id for the ReferenceImage to be added. If set,
the server will attempt to use this value as the resource id. If it is already in use, an
error is returned with code ALREADY_EXISTS. Must be at most 128 characters long. It cannot
contain the character `/`.ApiException
- if the remote call failspublic final ReferenceImage createReferenceImage(CreateReferenceImageRequest request)
The `bounding_poly` field is optional. If `bounding_poly` is not specified, the system will try to detect regions of interest in the image that are compatible with the product_category on the parent product. If it is specified, detection is ALWAYS skipped. The system converts polygons into non-rotated rectangles.
Note that the pipeline will resize the image if the image resolution is too large to process (above 50MP).
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateReferenceImageRequest request =
CreateReferenceImageRequest.newBuilder()
.setParent(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.setReferenceImage(ReferenceImage.newBuilder().build())
.setReferenceImageId("referenceImageId1224107531")
.build();
ReferenceImage response = productSearchClient.createReferenceImage(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateReferenceImageRequest,ReferenceImage> createReferenceImageCallable()
The `bounding_poly` field is optional. If `bounding_poly` is not specified, the system will try to detect regions of interest in the image that are compatible with the product_category on the parent product. If it is specified, detection is ALWAYS skipped. The system converts polygons into non-rotated rectangles.
Note that the pipeline will resize the image if the image resolution is too large to process (above 50MP).
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
CreateReferenceImageRequest request =
CreateReferenceImageRequest.newBuilder()
.setParent(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.setReferenceImage(ReferenceImage.newBuilder().build())
.setReferenceImageId("referenceImageId1224107531")
.build();
ApiFuture<ReferenceImage> future =
productSearchClient.createReferenceImageCallable().futureCall(request);
// Do something.
ReferenceImage response = future.get();
}
public final void deleteReferenceImage(ReferenceImageName name)
The image metadata will be deleted right away, but search queries against ProductSets containing the image may still work until all related caches are refreshed.
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ReferenceImageName name =
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]");
productSearchClient.deleteReferenceImage(name);
}
name
- Required. The resource name of the reference image to delete.
Format is:
`projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`
ApiException
- if the remote call failspublic final void deleteReferenceImage(String name)
The image metadata will be deleted right away, but search queries against ProductSets containing the image may still work until all related caches are refreshed.
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name =
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString();
productSearchClient.deleteReferenceImage(name);
}
name
- Required. The resource name of the reference image to delete.
Format is:
`projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`
ApiException
- if the remote call failspublic final void deleteReferenceImage(DeleteReferenceImageRequest request)
The image metadata will be deleted right away, but search queries against ProductSets containing the image may still work until all related caches are refreshed.
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteReferenceImageRequest request =
DeleteReferenceImageRequest.newBuilder()
.setName(
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString())
.build();
productSearchClient.deleteReferenceImage(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteReferenceImageRequest,Empty> deleteReferenceImageCallable()
The image metadata will be deleted right away, but search queries against ProductSets containing the image may still work until all related caches are refreshed.
The actual image files are not deleted from Google Cloud Storage.
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
DeleteReferenceImageRequest request =
DeleteReferenceImageRequest.newBuilder()
.setName(
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString())
.build();
ApiFuture<Empty> future =
productSearchClient.deleteReferenceImageCallable().futureCall(request);
// Do something.
future.get();
}
public final ProductSearchClient.ListReferenceImagesPagedResponse listReferenceImages(ProductName parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductName parent = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
for (ReferenceImage element : productSearchClient.listReferenceImages(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. Resource name of the product containing the reference images.
Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
ApiException
- if the remote call failspublic final ProductSearchClient.ListReferenceImagesPagedResponse listReferenceImages(String parent)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
for (ReferenceImage element : productSearchClient.listReferenceImages(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. Resource name of the product containing the reference images.
Format is `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
ApiException
- if the remote call failspublic final ProductSearchClient.ListReferenceImagesPagedResponse listReferenceImages(ListReferenceImagesRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListReferenceImagesRequest request =
ListReferenceImagesRequest.newBuilder()
.setParent(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (ReferenceImage element : productSearchClient.listReferenceImages(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListReferenceImagesRequest,ProductSearchClient.ListReferenceImagesPagedResponse> listReferenceImagesPagedCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListReferenceImagesRequest request =
ListReferenceImagesRequest.newBuilder()
.setParent(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<ReferenceImage> future =
productSearchClient.listReferenceImagesPagedCallable().futureCall(request);
// Do something.
for (ReferenceImage element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListReferenceImagesRequest,ListReferenceImagesResponse> listReferenceImagesCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListReferenceImagesRequest request =
ListReferenceImagesRequest.newBuilder()
.setParent(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListReferenceImagesResponse response =
productSearchClient.listReferenceImagesCallable().call(request);
for (ReferenceImage element : response.getReferenceImagesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final ReferenceImage getReferenceImage(ReferenceImageName name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ReferenceImageName name =
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]");
ReferenceImage response = productSearchClient.getReferenceImage(name);
}
name
- Required. The resource name of the ReferenceImage to get.
Format is:
`projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`.
ApiException
- if the remote call failspublic final ReferenceImage getReferenceImage(String name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name =
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString();
ReferenceImage response = productSearchClient.getReferenceImage(name);
}
name
- Required. The resource name of the ReferenceImage to get.
Format is:
`projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`.
ApiException
- if the remote call failspublic final ReferenceImage getReferenceImage(GetReferenceImageRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetReferenceImageRequest request =
GetReferenceImageRequest.newBuilder()
.setName(
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString())
.build();
ReferenceImage response = productSearchClient.getReferenceImage(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetReferenceImageRequest,ReferenceImage> getReferenceImageCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
GetReferenceImageRequest request =
GetReferenceImageRequest.newBuilder()
.setName(
ReferenceImageName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]", "[REFERENCE_IMAGE]")
.toString())
.build();
ApiFuture<ReferenceImage> future =
productSearchClient.getReferenceImageCallable().futureCall(request);
// Do something.
ReferenceImage response = future.get();
}
public final void addProductToProductSet(ProductSetName name, ProductName product)
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
ProductName product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
productSearchClient.addProductToProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be added to this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void addProductToProductSet(ProductSetName name, String product)
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
String product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
productSearchClient.addProductToProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be added to this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void addProductToProductSet(String name, ProductName product)
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
ProductName product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
productSearchClient.addProductToProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be added to this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void addProductToProductSet(String name, String product)
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
String product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
productSearchClient.addProductToProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be added to this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void addProductToProductSet(AddProductToProductSetRequest request)
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
AddProductToProductSetRequest request =
AddProductToProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setProduct(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
productSearchClient.addProductToProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<AddProductToProductSetRequest,Empty> addProductToProductSetCallable()
One Product can be added to at most 100 ProductSets.
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
AddProductToProductSetRequest request =
AddProductToProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setProduct(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
ApiFuture<Empty> future =
productSearchClient.addProductToProductSetCallable().futureCall(request);
// Do something.
future.get();
}
public final void removeProductFromProductSet(ProductSetName name, ProductName 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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
ProductName product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
productSearchClient.removeProductFromProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be removed from this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void removeProductFromProductSet(ProductSetName name, String 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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
String product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
productSearchClient.removeProductFromProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be removed from this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void removeProductFromProductSet(String name, ProductName 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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
ProductName product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]");
productSearchClient.removeProductFromProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be removed from this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void removeProductFromProductSet(String name, String 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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
String product = ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString();
productSearchClient.removeProductFromProductSet(name, product);
}
name
- Required. The resource name for the ProductSet to modify.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
product
- Required. The resource name for the Product to be removed from this ProductSet.
Format is: `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
ApiException
- if the remote call failspublic final void removeProductFromProductSet(RemoveProductFromProductSetRequest request)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
RemoveProductFromProductSetRequest request =
RemoveProductFromProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setProduct(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
productSearchClient.removeProductFromProductSet(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<RemoveProductFromProductSetRequest,Empty> removeProductFromProductSetCallable()
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
RemoveProductFromProductSetRequest request =
RemoveProductFromProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setProduct(ProductName.of("[PROJECT]", "[LOCATION]", "[PRODUCT]").toString())
.build();
ApiFuture<Empty> future =
productSearchClient.removeProductFromProductSetCallable().futureCall(request);
// Do something.
future.get();
}
public final ProductSearchClient.ListProductsInProductSetPagedResponse listProductsInProductSet(ProductSetName name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ProductSetName name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]");
for (Product element : productSearchClient.listProductsInProductSet(name).iterateAll()) {
// doThingsWith(element);
}
}
name
- Required. The ProductSet resource for which to retrieve Products.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductsInProductSetPagedResponse listProductsInProductSet(String name)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String name = ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString();
for (Product element : productSearchClient.listProductsInProductSet(name).iterateAll()) {
// doThingsWith(element);
}
}
name
- Required. The ProductSet resource for which to retrieve Products.
Format is: `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
ApiException
- if the remote call failspublic final ProductSearchClient.ListProductsInProductSetPagedResponse listProductsInProductSet(ListProductsInProductSetRequest request)
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsInProductSetRequest request =
ListProductsInProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Product element : productSearchClient.listProductsInProductSet(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListProductsInProductSetRequest,ProductSearchClient.ListProductsInProductSetPagedResponse> listProductsInProductSetPagedCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsInProductSetRequest request =
ListProductsInProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Product> future =
productSearchClient.listProductsInProductSetPagedCallable().futureCall(request);
// Do something.
for (Product element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListProductsInProductSetRequest,ListProductsInProductSetResponse> listProductsInProductSetCallable()
Possible errors:
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ListProductsInProductSetRequest request =
ListProductsInProductSetRequest.newBuilder()
.setName(ProductSetName.of("[PROJECT]", "[LOCATION]", "[PRODUCT_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListProductsInProductSetResponse response =
productSearchClient.listProductsInProductSetCallable().call(request);
for (Product element : response.getProductsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> importProductSetsAsync(LocationName parent, ImportProductSetsInputConfig inputConfig)
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress) `Operation.response` contains `ImportProductSetsResponse`. (results)
The input source of this method is a csv file on Google Cloud Storage. For the format of the csv file please see [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p4beta1.ImportProductSetsGcsSource.csv_file_uri].
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
ImportProductSetsInputConfig inputConfig = ImportProductSetsInputConfig.newBuilder().build();
ImportProductSetsResponse response =
productSearchClient.importProductSetsAsync(parent, inputConfig).get();
}
parent
- Required. The project in which the ProductSets should be imported.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
inputConfig
- Required. The input content for the list of requests.ApiException
- if the remote call failspublic final OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> importProductSetsAsync(String parent, ImportProductSetsInputConfig inputConfig)
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress) `Operation.response` contains `ImportProductSetsResponse`. (results)
The input source of this method is a csv file on Google Cloud Storage. For the format of the csv file please see [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p4beta1.ImportProductSetsGcsSource.csv_file_uri].
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
ImportProductSetsInputConfig inputConfig = ImportProductSetsInputConfig.newBuilder().build();
ImportProductSetsResponse response =
productSearchClient.importProductSetsAsync(parent, inputConfig).get();
}
parent
- Required. The project in which the ProductSets should be imported.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
inputConfig
- Required. The input content for the list of requests.ApiException
- if the remote call failspublic final OperationFuture<ImportProductSetsResponse,BatchOperationMetadata> importProductSetsAsync(ImportProductSetsRequest request)
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress) `Operation.response` contains `ImportProductSetsResponse`. (results)
The input source of this method is a csv file on Google Cloud Storage. For the format of the csv file please see [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p4beta1.ImportProductSetsGcsSource.csv_file_uri].
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ImportProductSetsRequest request =
ImportProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setInputConfig(ImportProductSetsInputConfig.newBuilder().build())
.build();
ImportProductSetsResponse response =
productSearchClient.importProductSetsAsync(request).get();
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final OperationCallable<ImportProductSetsRequest,ImportProductSetsResponse,BatchOperationMetadata> importProductSetsOperationCallable()
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress) `Operation.response` contains `ImportProductSetsResponse`. (results)
The input source of this method is a csv file on Google Cloud Storage. For the format of the csv file please see [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p4beta1.ImportProductSetsGcsSource.csv_file_uri].
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ImportProductSetsRequest request =
ImportProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setInputConfig(ImportProductSetsInputConfig.newBuilder().build())
.build();
OperationFuture<ImportProductSetsResponse, BatchOperationMetadata> future =
productSearchClient.importProductSetsOperationCallable().futureCall(request);
// Do something.
ImportProductSetsResponse response = future.get();
}
public final UnaryCallable<ImportProductSetsRequest,Operation> importProductSetsCallable()
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress) `Operation.response` contains `ImportProductSetsResponse`. (results)
The input source of this method is a csv file on Google Cloud Storage. For the format of the csv file please see [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p4beta1.ImportProductSetsGcsSource.csv_file_uri].
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
ImportProductSetsRequest request =
ImportProductSetsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setInputConfig(ImportProductSetsInputConfig.newBuilder().build())
.build();
ApiFuture<Operation> future =
productSearchClient.importProductSetsCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final OperationFuture<Empty,BatchOperationMetadata> purgeProductsAsync(LocationName parent)
If a Product is a member of the specified ProductSet in addition to other ProductSets, the Product will still be deleted.
It is recommended to not delete the specified ProductSet until after this operation has completed. It is also recommended to not add any of the Products involved in the batch delete to a new ProductSet while this operation is running because those Products may still end up deleted.
It's not possible to undo the PurgeProducts operation. Therefore, it is recommended to keep the csv files used in ImportProductSets (if that was how you originally built the Product Set) before starting PurgeProducts, in case you need to re-import the data after deletion.
If the plan is to purge all of the Products from a ProductSet and then re-use the empty ProductSet to re-import new Products into the empty ProductSet, you must wait until the PurgeProducts operation has finished for that ProductSet.
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
productSearchClient.purgeProductsAsync(parent).get();
}
parent
- Required. The project and location in which the Products should be deleted.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
ApiException
- if the remote call failspublic final OperationFuture<Empty,BatchOperationMetadata> purgeProductsAsync(String parent)
If a Product is a member of the specified ProductSet in addition to other ProductSets, the Product will still be deleted.
It is recommended to not delete the specified ProductSet until after this operation has completed. It is also recommended to not add any of the Products involved in the batch delete to a new ProductSet while this operation is running because those Products may still end up deleted.
It's not possible to undo the PurgeProducts operation. Therefore, it is recommended to keep the csv files used in ImportProductSets (if that was how you originally built the Product Set) before starting PurgeProducts, in case you need to re-import the data after deletion.
If the plan is to purge all of the Products from a ProductSet and then re-use the empty ProductSet to re-import new Products into the empty ProductSet, you must wait until the PurgeProducts operation has finished for that ProductSet.
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
productSearchClient.purgeProductsAsync(parent).get();
}
parent
- Required. The project and location in which the Products should be deleted.
Format is `projects/PROJECT_ID/locations/LOC_ID`.
ApiException
- if the remote call failspublic final OperationFuture<Empty,BatchOperationMetadata> purgeProductsAsync(PurgeProductsRequest request)
If a Product is a member of the specified ProductSet in addition to other ProductSets, the Product will still be deleted.
It is recommended to not delete the specified ProductSet until after this operation has completed. It is also recommended to not add any of the Products involved in the batch delete to a new ProductSet while this operation is running because those Products may still end up deleted.
It's not possible to undo the PurgeProducts operation. Therefore, it is recommended to keep the csv files used in ImportProductSets (if that was how you originally built the Product Set) before starting PurgeProducts, in case you need to re-import the data after deletion.
If the plan is to purge all of the Products from a ProductSet and then re-use the empty ProductSet to re-import new Products into the empty ProductSet, you must wait until the PurgeProducts operation has finished for that ProductSet.
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
PurgeProductsRequest request =
PurgeProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setForce(true)
.build();
productSearchClient.purgeProductsAsync(request).get();
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final OperationCallable<PurgeProductsRequest,Empty,BatchOperationMetadata> purgeProductsOperationCallable()
If a Product is a member of the specified ProductSet in addition to other ProductSets, the Product will still be deleted.
It is recommended to not delete the specified ProductSet until after this operation has completed. It is also recommended to not add any of the Products involved in the batch delete to a new ProductSet while this operation is running because those Products may still end up deleted.
It's not possible to undo the PurgeProducts operation. Therefore, it is recommended to keep the csv files used in ImportProductSets (if that was how you originally built the Product Set) before starting PurgeProducts, in case you need to re-import the data after deletion.
If the plan is to purge all of the Products from a ProductSet and then re-use the empty ProductSet to re-import new Products into the empty ProductSet, you must wait until the PurgeProducts operation has finished for that ProductSet.
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
PurgeProductsRequest request =
PurgeProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setForce(true)
.build();
OperationFuture<Empty, BatchOperationMetadata> future =
productSearchClient.purgeProductsOperationCallable().futureCall(request);
// Do something.
future.get();
}
public final UnaryCallable<PurgeProductsRequest,Operation> purgeProductsCallable()
If a Product is a member of the specified ProductSet in addition to other ProductSets, the Product will still be deleted.
It is recommended to not delete the specified ProductSet until after this operation has completed. It is also recommended to not add any of the Products involved in the batch delete to a new ProductSet while this operation is running because those Products may still end up deleted.
It's not possible to undo the PurgeProducts operation. Therefore, it is recommended to keep the csv files used in ImportProductSets (if that was how you originally built the Product Set) before starting PurgeProducts, in case you need to re-import the data after deletion.
If the plan is to purge all of the Products from a ProductSet and then re-use the empty ProductSet to re-import new Products into the empty ProductSet, you must wait until the PurgeProducts operation has finished for that ProductSet.
The [google.longrunning.Operation][google.longrunning.Operation] API can be used to keep track of the progress and results of the request. `Operation.metadata` contains `BatchOperationMetadata`. (progress)
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 (ProductSearchClient productSearchClient = ProductSearchClient.create()) {
PurgeProductsRequest request =
PurgeProductsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setForce(true)
.build();
ApiFuture<Operation> future = productSearchClient.purgeProductsCallable().futureCall(request);
// Do something.
future.get();
}
public final void close()
close
in interface AutoCloseable
public void shutdown()
shutdown
in interface BackgroundResource
public boolean isShutdown()
isShutdown
in interface BackgroundResource
public boolean isTerminated()
isTerminated
in interface BackgroundResource
public void shutdownNow()
shutdownNow
in interface BackgroundResource
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
awaitTermination
in interface BackgroundResource
InterruptedException
Copyright © 2022 Google LLC. All rights reserved.