Class ConsumerProcurementServiceClient (0.39.0)

GitHub RepositoryProduct Reference

Service Description: ConsumerProcurementService allows customers to make purchases of products served by the Cloud Commerce platform.

When purchases are made, the ConsumerProcurementService programs the appropriate backends, including both Google's own infrastructure, as well as third-party systems, and to enable billing setup for charging for the procured item.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   String name = "name3373707";
   Order response = consumerProcurementServiceClient.getOrder(name);
 }
 

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

Methods
MethodDescriptionMethod Variants

PlaceOrder

Creates a new Order.

This API only supports GCP spend-based committed use discounts specified by GCP documentation.

The returned long-running operation is in-progress until the backend completes the creation of the resource. Once completed, the order is in OrderState.ORDER_STATE_ACTIVE. In case of failure, the order resource will be removed.

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

  • placeOrderAsync(PlaceOrderRequest request)

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

  • placeOrderOperationCallable()

  • placeOrderCallable()

GetOrder

Returns the requested Order resource.

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

  • getOrder(GetOrderRequest request)

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

  • getOrder(String name)

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

  • getOrderCallable()

ListOrders

Lists Order resources that the user has access to, within the scope of the parent resource.

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

  • listOrders(ListOrdersRequest request)

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

  • listOrders(String parent)

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

  • listOrdersPagedCallable()

  • listOrdersCallable()

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 ConsumerProcurementServiceSettings 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
 ConsumerProcurementServiceSettings consumerProcurementServiceSettings =
     ConsumerProcurementServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create(consumerProcurementServiceSettings);
 

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
 ConsumerProcurementServiceSettings consumerProcurementServiceSettings =
     ConsumerProcurementServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create(consumerProcurementServiceSettings);
 

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
 ConsumerProcurementServiceSettings consumerProcurementServiceSettings =
     ConsumerProcurementServiceSettings.newHttpJsonBuilder().build();
 ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create(consumerProcurementServiceSettings);
 

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

Inheritance

java.lang.Object > ConsumerProcurementServiceClient

Static Methods

create()

public static final ConsumerProcurementServiceClient create()

Constructs an instance of ConsumerProcurementServiceClient with default settings.

Returns
TypeDescription
ConsumerProcurementServiceClient
Exceptions
TypeDescription
IOException

create(ConsumerProcurementServiceSettings settings)

public static final ConsumerProcurementServiceClient create(ConsumerProcurementServiceSettings settings)

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

Parameter
NameDescription
settingsConsumerProcurementServiceSettings
Returns
TypeDescription
ConsumerProcurementServiceClient
Exceptions
TypeDescription
IOException

create(ConsumerProcurementServiceStub stub)

public static final ConsumerProcurementServiceClient create(ConsumerProcurementServiceStub stub)

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

Parameter
NameDescription
stubConsumerProcurementServiceStub
Returns
TypeDescription
ConsumerProcurementServiceClient

Constructors

ConsumerProcurementServiceClient(ConsumerProcurementServiceSettings settings)

protected ConsumerProcurementServiceClient(ConsumerProcurementServiceSettings settings)

Constructs an instance of ConsumerProcurementServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.

Parameter
NameDescription
settingsConsumerProcurementServiceSettings

ConsumerProcurementServiceClient(ConsumerProcurementServiceStub stub)

protected ConsumerProcurementServiceClient(ConsumerProcurementServiceStub stub)
Parameter
NameDescription
stubConsumerProcurementServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

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

close()

public final void close()

getHttpJsonOperationsClient()

public final OperationsClient getHttpJsonOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getOperationsClient()

public final OperationsClient getOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getOrder(GetOrderRequest request)

public final Order getOrder(GetOrderRequest request)

Returns the requested Order resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   GetOrderRequest request = GetOrderRequest.newBuilder().setName("name3373707").build();
   Order response = consumerProcurementServiceClient.getOrder(request);
 }
 
Parameter
NameDescription
requestGetOrderRequest

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

Returns
TypeDescription
Order

getOrder(String name)

public final Order getOrder(String name)

Returns the requested Order resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   String name = "name3373707";
   Order response = consumerProcurementServiceClient.getOrder(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the order to retrieve.

Returns
TypeDescription
Order

getOrderCallable()

public final UnaryCallable<GetOrderRequest,Order> getOrderCallable()

Returns the requested Order resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   GetOrderRequest request = GetOrderRequest.newBuilder().setName("name3373707").build();
   ApiFuture<Order> future =
       consumerProcurementServiceClient.getOrderCallable().futureCall(request);
   // Do something.
   Order response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetOrderRequest,Order>

getSettings()

public final ConsumerProcurementServiceSettings getSettings()
Returns
TypeDescription
ConsumerProcurementServiceSettings

getStub()

public ConsumerProcurementServiceStub getStub()
Returns
TypeDescription
ConsumerProcurementServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listOrders(ListOrdersRequest request)

public final ConsumerProcurementServiceClient.ListOrdersPagedResponse listOrders(ListOrdersRequest request)

Lists Order resources that the user has access to, within the scope of the parent resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   ListOrdersRequest request =
       ListOrdersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (Order element : consumerProcurementServiceClient.listOrders(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListOrdersRequest

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

Returns
TypeDescription
ConsumerProcurementServiceClient.ListOrdersPagedResponse

listOrders(String parent)

public final ConsumerProcurementServiceClient.ListOrdersPagedResponse listOrders(String parent)

Lists Order resources that the user has access to, within the scope of the parent resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   String parent = "parent-995424086";
   for (Order element : consumerProcurementServiceClient.listOrders(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The parent resource to query for orders. This field has the form billingAccounts/{billing-account-id}.

Returns
TypeDescription
ConsumerProcurementServiceClient.ListOrdersPagedResponse

listOrdersCallable()

public final UnaryCallable<ListOrdersRequest,ListOrdersResponse> listOrdersCallable()

Lists Order resources that the user has access to, within the scope of the parent resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   ListOrdersRequest request =
       ListOrdersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListOrdersResponse response =
         consumerProcurementServiceClient.listOrdersCallable().call(request);
     for (Order element : response.getOrdersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListOrdersRequest,ListOrdersResponse>

listOrdersPagedCallable()

public final UnaryCallable<ListOrdersRequest,ConsumerProcurementServiceClient.ListOrdersPagedResponse> listOrdersPagedCallable()

Lists Order resources that the user has access to, within the scope of the parent resource.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   ListOrdersRequest request =
       ListOrdersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<Order> future =
       consumerProcurementServiceClient.listOrdersPagedCallable().futureCall(request);
   // Do something.
   for (Order element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListOrdersRequest,ListOrdersPagedResponse>

placeOrderAsync(PlaceOrderRequest request)

public final OperationFuture<Order,PlaceOrderMetadata> placeOrderAsync(PlaceOrderRequest request)

Creates a new Order.

This API only supports GCP spend-based committed use discounts specified by GCP documentation.

The returned long-running operation is in-progress until the backend completes the creation of the resource. Once completed, the order is in OrderState.ORDER_STATE_ACTIVE. In case of failure, the order resource will be removed.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   PlaceOrderRequest request =
       PlaceOrderRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setDisplayName("displayName1714148973")
           .addAllLineItemInfo(new ArrayList<LineItemInfo>())
           .setRequestId("requestId693933066")
           .build();
   Order response = consumerProcurementServiceClient.placeOrderAsync(request).get();
 }
 
Parameter
NameDescription
requestPlaceOrderRequest

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

Returns
TypeDescription
OperationFuture<Order,PlaceOrderMetadata>

placeOrderCallable()

public final UnaryCallable<PlaceOrderRequest,Operation> placeOrderCallable()

Creates a new Order.

This API only supports GCP spend-based committed use discounts specified by GCP documentation.

The returned long-running operation is in-progress until the backend completes the creation of the resource. Once completed, the order is in OrderState.ORDER_STATE_ACTIVE. In case of failure, the order resource will be removed.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   PlaceOrderRequest request =
       PlaceOrderRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setDisplayName("displayName1714148973")
           .addAllLineItemInfo(new ArrayList<LineItemInfo>())
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       consumerProcurementServiceClient.placeOrderCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<PlaceOrderRequest,Operation>

placeOrderOperationCallable()

public final OperationCallable<PlaceOrderRequest,Order,PlaceOrderMetadata> placeOrderOperationCallable()

Creates a new Order.

This API only supports GCP spend-based committed use discounts specified by GCP documentation.

The returned long-running operation is in-progress until the backend completes the creation of the resource. Once completed, the order is in OrderState.ORDER_STATE_ACTIVE. In case of failure, the order resource will be removed.

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 (ConsumerProcurementServiceClient consumerProcurementServiceClient =
     ConsumerProcurementServiceClient.create()) {
   PlaceOrderRequest request =
       PlaceOrderRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setDisplayName("displayName1714148973")
           .addAllLineItemInfo(new ArrayList<LineItemInfo>())
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Order, PlaceOrderMetadata> future =
       consumerProcurementServiceClient.placeOrderOperationCallable().futureCall(request);
   // Do something.
   Order response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<PlaceOrderRequest,Order,PlaceOrderMetadata>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()