- 0.51.0 (latest)
- 0.50.0
- 0.49.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.10.0
- 0.9.0
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.5
GitHub Repository | Product 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().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of 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.
Static Methods
create()
public static final ConsumerProcurementServiceClient create()
Constructs an instance of ConsumerProcurementServiceClient with default settings.
Returns | |
---|---|
Type | Description |
ConsumerProcurementServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings | ConsumerProcurementServiceSettings |
Returns | |
---|---|
Type | Description |
ConsumerProcurementServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
stub | ConsumerProcurementServiceStub |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings | ConsumerProcurementServiceSettings |
ConsumerProcurementServiceClient(ConsumerProcurementServiceStub stub)
protected ConsumerProcurementServiceClient(ConsumerProcurementServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub | ConsumerProcurementServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration | long |
unit | TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
close()
public final void close()
getHttpJsonOperationsClient()
public final OperationsClient getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Returns | |
---|---|
Type | Description |
OperationsClient |
getOperationsClient()
public final OperationsClient getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
Returns | |
---|---|
Type | Description |
OperationsClient |
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 | |
---|---|
Name | Description |
request | GetOrderRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name | String Required. The name of the order to retrieve. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<GetOrderRequest,Order> |
getSettings()
public final ConsumerProcurementServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
ConsumerProcurementServiceSettings |
getStub()
public ConsumerProcurementServiceStub getStub()
Returns | |
---|---|
Type | Description |
ConsumerProcurementServiceStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | ListOrdersRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent | String Required. The parent resource to query for orders. This field has the form
|
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | PlaceOrderRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
OperationCallable<PlaceOrderRequest,Order,PlaceOrderMetadata> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()