use of com.google.cloud.vision.v1.Product in project java-retail by googleapis.
the class RemoveTestResources method deleteAllProducts.
public static void deleteAllProducts() throws IOException {
System.out.println("Deleting products in process, please wait...");
try (ProductServiceClient productServiceClient = ProductServiceClient.create()) {
ListProductsRequest listRequest = ListProductsRequest.newBuilder().setParent(DEFAULT_CATALOG).build();
ListProductsPagedResponse products = productServiceClient.listProducts(listRequest);
int deleteCount = 0;
for (Product product : products.iterateAll()) {
DeleteProductRequest deleteRequest = DeleteProductRequest.newBuilder().setName(product.getName()).build();
try {
productServiceClient.deleteProduct(deleteRequest);
deleteCount++;
} catch (PermissionDeniedException e) {
System.out.println("Ignore PermissionDenied in case the product does not exist " + "at time of deletion.");
}
}
System.out.printf("%s products were deleted from %s%n", deleteCount, DEFAULT_CATALOG);
}
}
use of com.google.cloud.vision.v1.Product in project java-retail by googleapis.
the class UpdateProduct method updateProduct.
// call the Retail API to update product
public static void updateProduct(Product originalProduct, String defaultBranchName) throws IOException {
Product updatedProduct = ProductServiceClient.create().updateProduct(getUpdateProductRequest(generateProductForUpdate(originalProduct.getId(), defaultBranchName)));
System.out.printf("Updated product: %s%n", updatedProduct);
}
use of com.google.cloud.vision.v1.Product in project java-retail by googleapis.
the class SetupCleanup method getProduct.
public static Product getProduct(String productName) throws IOException {
Product product = Product.newBuilder().build();
GetProductRequest getProductRequest = GetProductRequest.newBuilder().setName(productName).build();
try {
product = ProductServiceClient.create().getProduct(getProductRequest);
System.out.println("Get product response: " + product);
return product;
} catch (NotFoundException e) {
System.out.printf("Product %s not found", productName);
return product;
}
}
use of com.google.cloud.vision.v1.Product in project java-retail by googleapis.
the class SetupCleanup method createProduct.
public static Product createProduct(String productId) throws IOException {
CreateProductRequest createProductRequest = CreateProductRequest.newBuilder().setProduct(generateProduct()).setProductId(productId).setParent(DEFAULT_BRANCH_NAME).build();
System.out.printf("Create product request: %s%n", createProductRequest);
Product createdProduct = ProductServiceClient.create().createProduct(createProductRequest);
System.out.printf("Created product: %s%n", createdProduct);
return createdProduct;
}
use of com.google.cloud.vision.v1.Product in project java-retail by googleapis.
the class CreateProduct method createProduct.
// call the Retail API to create product
public static Product createProduct(String productId, String defaultBranchName) throws IOException {
CreateProductRequest createProductRequest = CreateProductRequest.newBuilder().setProduct(generateProduct()).setProductId(productId).setParent(defaultBranchName).build();
System.out.printf("Create product request: %s%n", createProductRequest);
Product createdProduct = ProductServiceClient.create().createProduct(createProductRequest);
System.out.printf("Created product: %s%n", createdProduct);
return createdProduct;
}
Aggregations