Class CloudChannelServiceClient (3.7.2)

public class CloudChannelServiceClient implements BackgroundResource

Service Description: CloudChannelService lets Google cloud resellers and distributors manage their customers, channel partners, entitlements, and reports.

Using this service: 1. Resellers and distributors can manage a customer entity. 2. Distributors can register an authorized reseller in their channel and provide them with delegated admin access. 3. Resellers and distributors can manage customer entitlements.

CloudChannelService exposes the following resources: - Customers: An entity\u2014usually an enterprise\u2014managed by a reseller or distributor.

- Entitlements: An entity that provides a customer with the means to use a service. Entitlements are created or updated as a result of a successful fulfillment.

- ChannelPartnerLinks: An entity that identifies links between distributors and their indirect resellers in a channel.

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 for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerName name = CustomerName.of("[ACCOUNT]", "[CUSTOMER]");
   Customer response = cloudChannelServiceClient.getCustomer(name);
 }
 

Note: close() needs to be called on the CloudChannelServiceClient 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:

  1. 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.
  2. 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.
  3. 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 CloudChannelServiceSettings to create(). For example:

To customize credentials:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 CloudChannelServiceSettings cloudChannelServiceSettings =
     CloudChannelServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 CloudChannelServiceClient cloudChannelServiceClient =
     CloudChannelServiceClient.create(cloudChannelServiceSettings);
 

To customize the endpoint:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 CloudChannelServiceSettings cloudChannelServiceSettings =
     CloudChannelServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 CloudChannelServiceClient cloudChannelServiceClient =
     CloudChannelServiceClient.create(cloudChannelServiceSettings);
 

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 CloudChannelServiceSettings cloudChannelServiceSettings =
     CloudChannelServiceSettings.newBuilder()
         .setTransportChannelProvider(
             CloudChannelServiceSettings.defaultHttpJsonTransportProviderBuilder().build())
         .build();
 CloudChannelServiceClient cloudChannelServiceClient =
     CloudChannelServiceClient.create(cloudChannelServiceSettings);
 

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

Inheritance

java.lang.Object > CloudChannelServiceClient

Implements

BackgroundResource

Static Methods

create()

public static final CloudChannelServiceClient create()

Constructs an instance of CloudChannelServiceClient with default settings.

Returns
TypeDescription
CloudChannelServiceClient
Exceptions
TypeDescription
IOException

create(CloudChannelServiceSettings settings)

public static final CloudChannelServiceClient create(CloudChannelServiceSettings settings)

Constructs an instance of CloudChannelServiceClient, 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
settingsCloudChannelServiceSettings
Returns
TypeDescription
CloudChannelServiceClient
Exceptions
TypeDescription
IOException

create(CloudChannelServiceStub stub)

public static final CloudChannelServiceClient create(CloudChannelServiceStub stub)

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

Parameter
NameDescription
stubCloudChannelServiceStub
Returns
TypeDescription
CloudChannelServiceClient

Constructors

CloudChannelServiceClient(CloudChannelServiceSettings settings)

protected CloudChannelServiceClient(CloudChannelServiceSettings settings)

Constructs an instance of CloudChannelServiceClient, 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
settingsCloudChannelServiceSettings

CloudChannelServiceClient(CloudChannelServiceStub stub)

protected CloudChannelServiceClient(CloudChannelServiceStub stub)
Parameter
NameDescription
stubCloudChannelServiceStub

Methods

activateEntitlementAsync(ActivateEntitlementRequest request)

public final OperationFuture<Entitlement,OperationMetadata> activateEntitlementAsync(ActivateEntitlementRequest request)

Activates a previously suspended entitlement. Entitlements suspended for pending ToS acceptance can't be activated using this method.

An entitlement activation is a long-running operation and it updates the state of the customer entitlement.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • SUSPENSION_NOT_RESELLER_INITIATED: Can only activate reseller-initiated suspensions and entitlements that have accepted the TOS.
  • NOT_SUSPENDED: Can only activate suspended entitlements not in an ACTIVE state.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ActivateEntitlementRequest request =
       ActivateEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.activateEntitlementAsync(request).get();
 }
 
Parameter
NameDescription
requestActivateEntitlementRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

activateEntitlementCallable()

public final UnaryCallable<ActivateEntitlementRequest,Operation> activateEntitlementCallable()

Activates a previously suspended entitlement. Entitlements suspended for pending ToS acceptance can't be activated using this method.

An entitlement activation is a long-running operation and it updates the state of the customer entitlement.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • SUSPENSION_NOT_RESELLER_INITIATED: Can only activate reseller-initiated suspensions and entitlements that have accepted the TOS.
  • NOT_SUSPENDED: Can only activate suspended entitlements not in an ACTIVE state.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ActivateEntitlementRequest request =
       ActivateEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.activateEntitlementCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ActivateEntitlementRequest,Operation>

activateEntitlementOperationCallable()

public final OperationCallable<ActivateEntitlementRequest,Entitlement,OperationMetadata> activateEntitlementOperationCallable()

Activates a previously suspended entitlement. Entitlements suspended for pending ToS acceptance can't be activated using this method.

An entitlement activation is a long-running operation and it updates the state of the customer entitlement.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • SUSPENSION_NOT_RESELLER_INITIATED: Can only activate reseller-initiated suspensions and entitlements that have accepted the TOS.
  • NOT_SUSPENDED: Can only activate suspended entitlements not in an ACTIVE state.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ActivateEntitlementRequest request =
       ActivateEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.activateEntitlementOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ActivateEntitlementRequest,Entitlement,OperationMetadata>

awaitTermination(long duration, TimeUnit unit)

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

cancelEntitlementAsync(CancelEntitlementRequest request)

public final OperationFuture<Empty,OperationMetadata> cancelEntitlementAsync(CancelEntitlementRequest request)

Cancels a previously fulfilled entitlement.

An entitlement cancellation is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • FAILED_PRECONDITION: There are Google Cloud projects linked to the Google Cloud entitlement's Cloud Billing subaccount.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • DELETION_TYPE_NOT_ALLOWED: Cancel is only allowed for Google Workspace add-ons, or entitlements for Google Cloud's development platform.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CancelEntitlementRequest request =
       CancelEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   cloudChannelServiceClient.cancelEntitlementAsync(request).get();
 }
 
Parameter
NameDescription
requestCancelEntitlementRequest

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

Returns
TypeDescription
OperationFuture<Empty,OperationMetadata>

cancelEntitlementCallable()

public final UnaryCallable<CancelEntitlementRequest,Operation> cancelEntitlementCallable()

Cancels a previously fulfilled entitlement.

An entitlement cancellation is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • FAILED_PRECONDITION: There are Google Cloud projects linked to the Google Cloud entitlement's Cloud Billing subaccount.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • DELETION_TYPE_NOT_ALLOWED: Cancel is only allowed for Google Workspace add-ons, or entitlements for Google Cloud's development platform.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CancelEntitlementRequest request =
       CancelEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.cancelEntitlementCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CancelEntitlementRequest,Operation>

cancelEntitlementOperationCallable()

public final OperationCallable<CancelEntitlementRequest,Empty,OperationMetadata> cancelEntitlementOperationCallable()

Cancels a previously fulfilled entitlement.

An entitlement cancellation is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • FAILED_PRECONDITION: There are Google Cloud projects linked to the Google Cloud entitlement's Cloud Billing subaccount.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • DELETION_TYPE_NOT_ALLOWED: Cancel is only allowed for Google Workspace add-ons, or entitlements for Google Cloud's development platform.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CancelEntitlementRequest request =
       CancelEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Empty, OperationMetadata> future =
       cloudChannelServiceClient.cancelEntitlementOperationCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
OperationCallable<CancelEntitlementRequest,Empty,OperationMetadata>

changeOfferAsync(ChangeOfferRequest request)

public final OperationFuture<Entitlement,OperationMetadata> changeOfferAsync(ChangeOfferRequest request)

Updates the Offer for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Offer or Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeOfferRequest request =
       ChangeOfferRequest.newBuilder()
           .setName("name3373707")
           .setOffer(OfferName.of("[ACCOUNT]", "[OFFER]").toString())
           .addAllParameters(new ArrayList<Parameter>())
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.changeOfferAsync(request).get();
 }
 
Parameter
NameDescription
requestChangeOfferRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

changeOfferCallable()

public final UnaryCallable<ChangeOfferRequest,Operation> changeOfferCallable()

Updates the Offer for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Offer or Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeOfferRequest request =
       ChangeOfferRequest.newBuilder()
           .setName("name3373707")
           .setOffer(OfferName.of("[ACCOUNT]", "[OFFER]").toString())
           .addAllParameters(new ArrayList<Parameter>())
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.changeOfferCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ChangeOfferRequest,Operation>

changeOfferOperationCallable()

public final OperationCallable<ChangeOfferRequest,Entitlement,OperationMetadata> changeOfferOperationCallable()

Updates the Offer for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Offer or Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeOfferRequest request =
       ChangeOfferRequest.newBuilder()
           .setName("name3373707")
           .setOffer(OfferName.of("[ACCOUNT]", "[OFFER]").toString())
           .addAllParameters(new ArrayList<Parameter>())
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.changeOfferOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ChangeOfferRequest,Entitlement,OperationMetadata>

changeParametersAsync(ChangeParametersRequest request)

public final OperationFuture<Entitlement,OperationMetadata> changeParametersAsync(ChangeParametersRequest request)

Change parameters of the entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid. For example, the number of seats being changed is greater than the allowed number of max seats, or decreasing seats for a commitment based plan.
  • NOT_FOUND: Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeParametersRequest request =
       ChangeParametersRequest.newBuilder()
           .setName("name3373707")
           .addAllParameters(new ArrayList<Parameter>())
           .setRequestId("requestId693933066")
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .build();
   Entitlement response = cloudChannelServiceClient.changeParametersAsync(request).get();
 }
 
Parameter
NameDescription
requestChangeParametersRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

changeParametersCallable()

public final UnaryCallable<ChangeParametersRequest,Operation> changeParametersCallable()

Change parameters of the entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid. For example, the number of seats being changed is greater than the allowed number of max seats, or decreasing seats for a commitment based plan.
  • NOT_FOUND: Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeParametersRequest request =
       ChangeParametersRequest.newBuilder()
           .setName("name3373707")
           .addAllParameters(new ArrayList<Parameter>())
           .setRequestId("requestId693933066")
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.changeParametersCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ChangeParametersRequest,Operation>

changeParametersOperationCallable()

public final OperationCallable<ChangeParametersRequest,Entitlement,OperationMetadata> changeParametersOperationCallable()

Change parameters of the entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid. For example, the number of seats being changed is greater than the allowed number of max seats, or decreasing seats for a commitment based plan.
  • NOT_FOUND: Entitlement resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeParametersRequest request =
       ChangeParametersRequest.newBuilder()
           .setName("name3373707")
           .addAllParameters(new ArrayList<Parameter>())
           .setRequestId("requestId693933066")
           .setPurchaseOrderId("purchaseOrderId2029917384")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.changeParametersOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ChangeParametersRequest,Entitlement,OperationMetadata>

changeRenewalSettingsAsync(ChangeRenewalSettingsRequest request)

public final OperationFuture<Entitlement,OperationMetadata> changeRenewalSettingsAsync(ChangeRenewalSettingsRequest request)

Updates the renewal settings for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_COMMITMENT_PLAN: Renewal Settings are only applicable for a commitment plan. Can't enable or disable renewals for non-commitment plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeRenewalSettingsRequest request =
       ChangeRenewalSettingsRequest.newBuilder()
           .setName("name3373707")
           .setRenewalSettings(RenewalSettings.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.changeRenewalSettingsAsync(request).get();
 }
 
Parameter
NameDescription
requestChangeRenewalSettingsRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

changeRenewalSettingsCallable()

public final UnaryCallable<ChangeRenewalSettingsRequest,Operation> changeRenewalSettingsCallable()

Updates the renewal settings for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_COMMITMENT_PLAN: Renewal Settings are only applicable for a commitment plan. Can't enable or disable renewals for non-commitment plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeRenewalSettingsRequest request =
       ChangeRenewalSettingsRequest.newBuilder()
           .setName("name3373707")
           .setRenewalSettings(RenewalSettings.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.changeRenewalSettingsCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ChangeRenewalSettingsRequest,Operation>

changeRenewalSettingsOperationCallable()

public final OperationCallable<ChangeRenewalSettingsRequest,Entitlement,OperationMetadata> changeRenewalSettingsOperationCallable()

Updates the renewal settings for an existing customer entitlement.

An entitlement update is a long-running operation and it updates the entitlement as a result of fulfillment.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_COMMITMENT_PLAN: Renewal Settings are only applicable for a commitment plan. Can't enable or disable renewals for non-commitment plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChangeRenewalSettingsRequest request =
       ChangeRenewalSettingsRequest.newBuilder()
           .setName("name3373707")
           .setRenewalSettings(RenewalSettings.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.changeRenewalSettingsOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ChangeRenewalSettingsRequest,Entitlement,OperationMetadata>

checkCloudIdentityAccountsExist(CheckCloudIdentityAccountsExistRequest request)

public final CheckCloudIdentityAccountsExistResponse checkCloudIdentityAccountsExist(CheckCloudIdentityAccountsExistRequest request)

Confirms the existence of Cloud Identity accounts based on the domain and if the Cloud Identity accounts are owned by the reseller.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • INVALID_VALUE: Invalid domain value in the request.

Return value: A list of CloudIdentityCustomerAccount resources for the domain (may be empty)

Note: in the v1alpha1 version of the API, a NOT_FOUND error returns if no CloudIdentityCustomerAccount resources match the domain.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CheckCloudIdentityAccountsExistRequest request =
       CheckCloudIdentityAccountsExistRequest.newBuilder()
           .setParent("parent-995424086")
           .setDomain("domain-1326197564")
           .build();
   CheckCloudIdentityAccountsExistResponse response =
       cloudChannelServiceClient.checkCloudIdentityAccountsExist(request);
 }
 
Parameter
NameDescription
requestCheckCloudIdentityAccountsExistRequest

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

Returns
TypeDescription
CheckCloudIdentityAccountsExistResponse

checkCloudIdentityAccountsExistCallable()

public final UnaryCallable<CheckCloudIdentityAccountsExistRequest,CheckCloudIdentityAccountsExistResponse> checkCloudIdentityAccountsExistCallable()

Confirms the existence of Cloud Identity accounts based on the domain and if the Cloud Identity accounts are owned by the reseller.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • INVALID_VALUE: Invalid domain value in the request.

Return value: A list of CloudIdentityCustomerAccount resources for the domain (may be empty)

Note: in the v1alpha1 version of the API, a NOT_FOUND error returns if no CloudIdentityCustomerAccount resources match the domain.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CheckCloudIdentityAccountsExistRequest request =
       CheckCloudIdentityAccountsExistRequest.newBuilder()
           .setParent("parent-995424086")
           .setDomain("domain-1326197564")
           .build();
   ApiFuture<CheckCloudIdentityAccountsExistResponse> future =
       cloudChannelServiceClient.checkCloudIdentityAccountsExistCallable().futureCall(request);
   // Do something.
   CheckCloudIdentityAccountsExistResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CheckCloudIdentityAccountsExistRequest,CheckCloudIdentityAccountsExistResponse>

close()

public final void close()
public final ChannelPartnerLink createChannelPartnerLink(CreateChannelPartnerLinkRequest request)

Initiates a channel partner link between a distributor and a reseller, or between resellers in an n-tier reseller channel. Invited partners need to follow the invite_link_uri provided in the response to accept. After accepting the invitation, a link is set up between the two parties. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • ALREADY_EXISTS: The ChannelPartnerLink sent in the request already exists.
  • NOT_FOUND: No Cloud Identity customer exists for provided domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The new ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateChannelPartnerLinkRequest request =
       CreateChannelPartnerLinkRequest.newBuilder()
           .setParent("parent-995424086")
           .setChannelPartnerLink(ChannelPartnerLink.newBuilder().build())
           .build();
   ChannelPartnerLink response = cloudChannelServiceClient.createChannelPartnerLink(request);
 }
 
Parameter
NameDescription
requestCreateChannelPartnerLinkRequest

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

Returns
TypeDescription
ChannelPartnerLink

createChannelPartnerLinkCallable()

public final UnaryCallable<CreateChannelPartnerLinkRequest,ChannelPartnerLink> createChannelPartnerLinkCallable()

Initiates a channel partner link between a distributor and a reseller, or between resellers in an n-tier reseller channel. Invited partners need to follow the invite_link_uri provided in the response to accept. After accepting the invitation, a link is set up between the two parties. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • ALREADY_EXISTS: The ChannelPartnerLink sent in the request already exists.
  • NOT_FOUND: No Cloud Identity customer exists for provided domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The new ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateChannelPartnerLinkRequest request =
       CreateChannelPartnerLinkRequest.newBuilder()
           .setParent("parent-995424086")
           .setChannelPartnerLink(ChannelPartnerLink.newBuilder().build())
           .build();
   ApiFuture<ChannelPartnerLink> future =
       cloudChannelServiceClient.createChannelPartnerLinkCallable().futureCall(request);
   // Do something.
   ChannelPartnerLink response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateChannelPartnerLinkRequest,ChannelPartnerLink>

createChannelPartnerRepricingConfig(ChannelPartnerLinkName parent, ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

public final ChannelPartnerRepricingConfig createChannelPartnerRepricingConfig(ChannelPartnerLinkName parent, ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

Creates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any ChannelPartner or RepricingConfig.effective_invoice_month.
  • The contained ChannelPartnerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChannelPartnerLinkName parent =
       ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]");
   ChannelPartnerRepricingConfig channelPartnerRepricingConfig =
       ChannelPartnerRepricingConfig.newBuilder().build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.createChannelPartnerRepricingConfig(
           parent, channelPartnerRepricingConfig);
 }
 
Parameters
NameDescription
parentChannelPartnerLinkName

Required. The resource name of the ChannelPartner that will receive the repricing config. Parent uses the format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}

channelPartnerRepricingConfigChannelPartnerRepricingConfig

Required. The ChannelPartnerRepricingConfig object to update.

Returns
TypeDescription
ChannelPartnerRepricingConfig

createChannelPartnerRepricingConfig(CreateChannelPartnerRepricingConfigRequest request)

public final ChannelPartnerRepricingConfig createChannelPartnerRepricingConfig(CreateChannelPartnerRepricingConfigRequest request)

Creates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any ChannelPartner or RepricingConfig.effective_invoice_month.
  • The contained ChannelPartnerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateChannelPartnerRepricingConfigRequest request =
       CreateChannelPartnerRepricingConfigRequest.newBuilder()
           .setParent(
               ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString())
           .setChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig.newBuilder().build())
           .build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.createChannelPartnerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestCreateChannelPartnerRepricingConfigRequest

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

Returns
TypeDescription
ChannelPartnerRepricingConfig

createChannelPartnerRepricingConfig(String parent, ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

public final ChannelPartnerRepricingConfig createChannelPartnerRepricingConfig(String parent, ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

Creates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any ChannelPartner or RepricingConfig.effective_invoice_month.
  • The contained ChannelPartnerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String parent = ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString();
   ChannelPartnerRepricingConfig channelPartnerRepricingConfig =
       ChannelPartnerRepricingConfig.newBuilder().build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.createChannelPartnerRepricingConfig(
           parent, channelPartnerRepricingConfig);
 }
 
Parameters
NameDescription
parentString

Required. The resource name of the ChannelPartner that will receive the repricing config. Parent uses the format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}

channelPartnerRepricingConfigChannelPartnerRepricingConfig

Required. The ChannelPartnerRepricingConfig object to update.

Returns
TypeDescription
ChannelPartnerRepricingConfig

createChannelPartnerRepricingConfigCallable()

public final UnaryCallable<CreateChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig> createChannelPartnerRepricingConfigCallable()

Creates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any ChannelPartner or RepricingConfig.effective_invoice_month.
  • The contained ChannelPartnerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateChannelPartnerRepricingConfigRequest request =
       CreateChannelPartnerRepricingConfigRequest.newBuilder()
           .setParent(
               ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString())
           .setChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig.newBuilder().build())
           .build();
   ApiFuture<ChannelPartnerRepricingConfig> future =
       cloudChannelServiceClient
           .createChannelPartnerRepricingConfigCallable()
           .futureCall(request);
   // Do something.
   ChannelPartnerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig>

createCustomer(CreateCustomerRequest request)

public final Customer createCustomer(CreateCustomerRequest request)

Creates a new Customer resource under the reseller or distributor account.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * Domain field value doesn't match the primary email domain.

Return value: The newly created Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateCustomerRequest request =
       CreateCustomerRequest.newBuilder()
           .setParent("parent-995424086")
           .setCustomer(Customer.newBuilder().build())
           .build();
   Customer response = cloudChannelServiceClient.createCustomer(request);
 }
 
Parameter
NameDescription
requestCreateCustomerRequest

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

Returns
TypeDescription
Customer

createCustomerCallable()

public final UnaryCallable<CreateCustomerRequest,Customer> createCustomerCallable()

Creates a new Customer resource under the reseller or distributor account.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * Domain field value doesn't match the primary email domain.

Return value: The newly created Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateCustomerRequest request =
       CreateCustomerRequest.newBuilder()
           .setParent("parent-995424086")
           .setCustomer(Customer.newBuilder().build())
           .build();
   ApiFuture<Customer> future =
       cloudChannelServiceClient.createCustomerCallable().futureCall(request);
   // Do something.
   Customer response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateCustomerRequest,Customer>

createCustomerRepricingConfig(CreateCustomerRepricingConfigRequest request)

public final CustomerRepricingConfig createCustomerRepricingConfig(CreateCustomerRepricingConfigRequest request)

Creates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any RepricingConfig.EntitlementGranularity.entitlement or RepricingConfig.effective_invoice_month.
  • The contained CustomerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a RepricingConfig.EntitlementGranularity.entitlement.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateCustomerRepricingConfigRequest request =
       CreateCustomerRepricingConfigRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setCustomerRepricingConfig(CustomerRepricingConfig.newBuilder().build())
           .build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.createCustomerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestCreateCustomerRepricingConfigRequest

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

Returns
TypeDescription
CustomerRepricingConfig

createCustomerRepricingConfig(CustomerName parent, CustomerRepricingConfig customerRepricingConfig)

public final CustomerRepricingConfig createCustomerRepricingConfig(CustomerName parent, CustomerRepricingConfig customerRepricingConfig)

Creates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any RepricingConfig.EntitlementGranularity.entitlement or RepricingConfig.effective_invoice_month.
  • The contained CustomerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a RepricingConfig.EntitlementGranularity.entitlement.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerName parent = CustomerName.of("[ACCOUNT]", "[CUSTOMER]");
   CustomerRepricingConfig customerRepricingConfig =
       CustomerRepricingConfig.newBuilder().build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.createCustomerRepricingConfig(parent, customerRepricingConfig);
 }
 
Parameters
NameDescription
parentCustomerName

Required. The resource name of the customer that will receive this repricing config. Parent uses the format: accounts/{account_id}/customers/{customer_id}

customerRepricingConfigCustomerRepricingConfig

Required. The CustomerRepricingConfig object to update.

Returns
TypeDescription
CustomerRepricingConfig

createCustomerRepricingConfig(String parent, CustomerRepricingConfig customerRepricingConfig)

public final CustomerRepricingConfig createCustomerRepricingConfig(String parent, CustomerRepricingConfig customerRepricingConfig)

Creates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any RepricingConfig.EntitlementGranularity.entitlement or RepricingConfig.effective_invoice_month.
  • The contained CustomerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a RepricingConfig.EntitlementGranularity.entitlement.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String parent = CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString();
   CustomerRepricingConfig customerRepricingConfig =
       CustomerRepricingConfig.newBuilder().build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.createCustomerRepricingConfig(parent, customerRepricingConfig);
 }
 
Parameters
NameDescription
parentString

Required. The resource name of the customer that will receive this repricing config. Parent uses the format: accounts/{account_id}/customers/{customer_id}

customerRepricingConfigCustomerRepricingConfig

Required. The CustomerRepricingConfig object to update.

Returns
TypeDescription
CustomerRepricingConfig

createCustomerRepricingConfigCallable()

public final UnaryCallable<CreateCustomerRepricingConfigRequest,CustomerRepricingConfig> createCustomerRepricingConfigCallable()

Creates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. You can only create configs if the RepricingConfig.effective_invoice_month is a future month. If needed, you can create a config for the current month, with some restrictions.

When creating a config for a future month, make sure there are no existing configs for that RepricingConfig.effective_invoice_month.

The following restrictions are for creating configs in the current month.

  • This functionality is reserved for recovering from an erroneous config, and should not be used for regular business cases.
  • The new config will not modify exports used with other configs. Changes to the config may be immediate, but may take up to 24 hours.
  • There is a limit of ten configs for any RepricingConfig.EntitlementGranularity.entitlement or RepricingConfig.effective_invoice_month.
  • The contained CustomerRepricingConfig.repricing_config vaule must be different from the value used in the current config for a RepricingConfig.EntitlementGranularity.entitlement.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateCustomerRepricingConfigRequest request =
       CreateCustomerRepricingConfigRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setCustomerRepricingConfig(CustomerRepricingConfig.newBuilder().build())
           .build();
   ApiFuture<CustomerRepricingConfig> future =
       cloudChannelServiceClient.createCustomerRepricingConfigCallable().futureCall(request);
   // Do something.
   CustomerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateCustomerRepricingConfigRequest,CustomerRepricingConfig>

createEntitlementAsync(CreateEntitlementRequest request)

public final OperationFuture<Entitlement,OperationMetadata> createEntitlementAsync(CreateEntitlementRequest request)

Creates an entitlement for a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * There is already a customer entitlement for a SKU from the same product family.
  • INVALID_VALUE: Make sure the OfferId is valid. If it is, contact Google Channel support for further troubleshooting.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: * The SKU was already purchased for the customer. * The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The domain required for purchasing a SKU has not been verified. * A pre-requisite SKU required to purchase an Add-On SKU is missing. For example, Google Workspace Business Starter is required to purchase Vault or Drive. * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateEntitlementRequest request =
       CreateEntitlementRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setEntitlement(Entitlement.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.createEntitlementAsync(request).get();
 }
 
Parameter
NameDescription
requestCreateEntitlementRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

createEntitlementCallable()

public final UnaryCallable<CreateEntitlementRequest,Operation> createEntitlementCallable()

Creates an entitlement for a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * There is already a customer entitlement for a SKU from the same product family.
  • INVALID_VALUE: Make sure the OfferId is valid. If it is, contact Google Channel support for further troubleshooting.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: * The SKU was already purchased for the customer. * The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The domain required for purchasing a SKU has not been verified. * A pre-requisite SKU required to purchase an Add-On SKU is missing. For example, Google Workspace Business Starter is required to purchase Vault or Drive. * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateEntitlementRequest request =
       CreateEntitlementRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setEntitlement(Entitlement.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.createEntitlementCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateEntitlementRequest,Operation>

createEntitlementOperationCallable()

public final OperationCallable<CreateEntitlementRequest,Entitlement,OperationMetadata> createEntitlementOperationCallable()

Creates an entitlement for a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * There is already a customer entitlement for a SKU from the same product family.
  • INVALID_VALUE: Make sure the OfferId is valid. If it is, contact Google Channel support for further troubleshooting.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: * The SKU was already purchased for the customer. * The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The domain required for purchasing a SKU has not been verified. * A pre-requisite SKU required to purchase an Add-On SKU is missing. For example, Google Workspace Business Starter is required to purchase Vault or Drive. * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CreateEntitlementRequest request =
       CreateEntitlementRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setEntitlement(Entitlement.newBuilder().build())
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.createEntitlementOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<CreateEntitlementRequest,Entitlement,OperationMetadata>

deleteChannelPartnerRepricingConfig(ChannelPartnerRepricingConfigName name)

public final void deleteChannelPartnerRepricingConfig(ChannelPartnerRepricingConfigName name)

Deletes the given ChannelPartnerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The ChannelPartnerRepricingConfig is active or in the past.
  • NOT_FOUND: No ChannelPartnerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChannelPartnerRepricingConfigName name =
       ChannelPartnerRepricingConfigName.of(
           "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]");
   cloudChannelServiceClient.deleteChannelPartnerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameChannelPartnerRepricingConfigName

Required. The resource name of the channel partner repricing config rule to delete.

deleteChannelPartnerRepricingConfig(DeleteChannelPartnerRepricingConfigRequest request)

public final void deleteChannelPartnerRepricingConfig(DeleteChannelPartnerRepricingConfigRequest request)

Deletes the given ChannelPartnerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The ChannelPartnerRepricingConfig is active or in the past.
  • NOT_FOUND: No ChannelPartnerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteChannelPartnerRepricingConfigRequest request =
       DeleteChannelPartnerRepricingConfigRequest.newBuilder()
           .setName(
               ChannelPartnerRepricingConfigName.of(
                       "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
                   .toString())
           .build();
   cloudChannelServiceClient.deleteChannelPartnerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestDeleteChannelPartnerRepricingConfigRequest

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

deleteChannelPartnerRepricingConfig(String name)

public final void deleteChannelPartnerRepricingConfig(String name)

Deletes the given ChannelPartnerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The ChannelPartnerRepricingConfig is active or in the past.
  • NOT_FOUND: No ChannelPartnerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name =
       ChannelPartnerRepricingConfigName.of(
               "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
           .toString();
   cloudChannelServiceClient.deleteChannelPartnerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the channel partner repricing config rule to delete.

deleteChannelPartnerRepricingConfigCallable()

public final UnaryCallable<DeleteChannelPartnerRepricingConfigRequest,Empty> deleteChannelPartnerRepricingConfigCallable()

Deletes the given ChannelPartnerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The ChannelPartnerRepricingConfig is active or in the past.
  • NOT_FOUND: No ChannelPartnerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteChannelPartnerRepricingConfigRequest request =
       DeleteChannelPartnerRepricingConfigRequest.newBuilder()
           .setName(
               ChannelPartnerRepricingConfigName.of(
                       "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<Empty> future =
       cloudChannelServiceClient
           .deleteChannelPartnerRepricingConfigCallable()
           .futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteChannelPartnerRepricingConfigRequest,Empty>

deleteCustomer(CustomerName name)

public final void deleteCustomer(CustomerName name)

Deletes the given Customer permanently.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The customer has existing entitlements.
  • NOT_FOUND: No Customer resource found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerName name = CustomerName.of("[ACCOUNT]", "[CUSTOMER]");
   cloudChannelServiceClient.deleteCustomer(name);
 }
 
Parameter
NameDescription
nameCustomerName

Required. The resource name of the customer to delete.

deleteCustomer(DeleteCustomerRequest request)

public final void deleteCustomer(DeleteCustomerRequest request)

Deletes the given Customer permanently.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The customer has existing entitlements.
  • NOT_FOUND: No Customer resource found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteCustomerRequest request =
       DeleteCustomerRequest.newBuilder()
           .setName(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   cloudChannelServiceClient.deleteCustomer(request);
 }
 
Parameter
NameDescription
requestDeleteCustomerRequest

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

deleteCustomer(String name)

public final void deleteCustomer(String name)

Deletes the given Customer permanently.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The customer has existing entitlements.
  • NOT_FOUND: No Customer resource found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name = CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString();
   cloudChannelServiceClient.deleteCustomer(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the customer to delete.

deleteCustomerCallable()

public final UnaryCallable<DeleteCustomerRequest,Empty> deleteCustomerCallable()

Deletes the given Customer permanently.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The customer has existing entitlements.
  • NOT_FOUND: No Customer resource found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteCustomerRequest request =
       DeleteCustomerRequest.newBuilder()
           .setName(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   ApiFuture<Empty> future =
       cloudChannelServiceClient.deleteCustomerCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteCustomerRequest,Empty>

deleteCustomerRepricingConfig(CustomerRepricingConfigName name)

public final void deleteCustomerRepricingConfig(CustomerRepricingConfigName name)

Deletes the given CustomerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The CustomerRepricingConfig is active or in the past.
  • NOT_FOUND: No CustomerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerRepricingConfigName name =
       CustomerRepricingConfigName.of("[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]");
   cloudChannelServiceClient.deleteCustomerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameCustomerRepricingConfigName

Required. The resource name of the customer repricing config rule to delete. Format: accounts/{account_id}/customers/{customer_id}/customerRepricingConfigs/{id}.

deleteCustomerRepricingConfig(DeleteCustomerRepricingConfigRequest request)

public final void deleteCustomerRepricingConfig(DeleteCustomerRepricingConfigRequest request)

Deletes the given CustomerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The CustomerRepricingConfig is active or in the past.
  • NOT_FOUND: No CustomerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteCustomerRepricingConfigRequest request =
       DeleteCustomerRepricingConfigRequest.newBuilder()
           .setName(
               CustomerRepricingConfigName.of(
                       "[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
                   .toString())
           .build();
   cloudChannelServiceClient.deleteCustomerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestDeleteCustomerRepricingConfigRequest

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

deleteCustomerRepricingConfig(String name)

public final void deleteCustomerRepricingConfig(String name)

Deletes the given CustomerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The CustomerRepricingConfig is active or in the past.
  • NOT_FOUND: No CustomerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name =
       CustomerRepricingConfigName.of("[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
           .toString();
   cloudChannelServiceClient.deleteCustomerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the customer repricing config rule to delete. Format: accounts/{account_id}/customers/{customer_id}/customerRepricingConfigs/{id}.

deleteCustomerRepricingConfigCallable()

public final UnaryCallable<DeleteCustomerRepricingConfigRequest,Empty> deleteCustomerRepricingConfigCallable()

Deletes the given CustomerRepricingConfig permanently. You can only delete configs if their RepricingConfig.effective_invoice_month is set to a date after the current month.

Possible error codes:

  • PERMISSION_DENIED: The account making the request does not own this customer.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • FAILED_PRECONDITION: The CustomerRepricingConfig is active or in the past.
  • NOT_FOUND: No CustomerRepricingConfig found for the name in the request.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   DeleteCustomerRepricingConfigRequest request =
       DeleteCustomerRepricingConfigRequest.newBuilder()
           .setName(
               CustomerRepricingConfigName.of(
                       "[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<Empty> future =
       cloudChannelServiceClient.deleteCustomerRepricingConfigCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteCustomerRepricingConfigRequest,Empty>
public final ChannelPartnerLink getChannelPartnerLink(GetChannelPartnerLinkRequest request)

Returns the requested ChannelPartnerLink resource. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: ChannelPartnerLink resource not found because of an invalid channel partner link name.

Return value: The ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetChannelPartnerLinkRequest request =
       GetChannelPartnerLinkRequest.newBuilder()
           .setName("name3373707")
           .setView(ChannelPartnerLinkView.forNumber(0))
           .build();
   ChannelPartnerLink response = cloudChannelServiceClient.getChannelPartnerLink(request);
 }
 
Parameter
NameDescription
requestGetChannelPartnerLinkRequest

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

Returns
TypeDescription
ChannelPartnerLink

getChannelPartnerLinkCallable()

public final UnaryCallable<GetChannelPartnerLinkRequest,ChannelPartnerLink> getChannelPartnerLinkCallable()

Returns the requested ChannelPartnerLink resource. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: ChannelPartnerLink resource not found because of an invalid channel partner link name.

Return value: The ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetChannelPartnerLinkRequest request =
       GetChannelPartnerLinkRequest.newBuilder()
           .setName("name3373707")
           .setView(ChannelPartnerLinkView.forNumber(0))
           .build();
   ApiFuture<ChannelPartnerLink> future =
       cloudChannelServiceClient.getChannelPartnerLinkCallable().futureCall(request);
   // Do something.
   ChannelPartnerLink response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetChannelPartnerLinkRequest,ChannelPartnerLink>

getChannelPartnerRepricingConfig(ChannelPartnerRepricingConfigName name)

public final ChannelPartnerRepricingConfig getChannelPartnerRepricingConfig(ChannelPartnerRepricingConfigName name)

Gets information about how a Distributor modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChannelPartnerRepricingConfigName name =
       ChannelPartnerRepricingConfigName.of(
           "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]");
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.getChannelPartnerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameChannelPartnerRepricingConfigName

Required. The resource name of the ChannelPartnerRepricingConfig Format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}/channelPartnerRepricingConfigs/{id}.

Returns
TypeDescription
ChannelPartnerRepricingConfig

getChannelPartnerRepricingConfig(GetChannelPartnerRepricingConfigRequest request)

public final ChannelPartnerRepricingConfig getChannelPartnerRepricingConfig(GetChannelPartnerRepricingConfigRequest request)

Gets information about how a Distributor modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetChannelPartnerRepricingConfigRequest request =
       GetChannelPartnerRepricingConfigRequest.newBuilder()
           .setName(
               ChannelPartnerRepricingConfigName.of(
                       "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
                   .toString())
           .build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.getChannelPartnerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestGetChannelPartnerRepricingConfigRequest

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

Returns
TypeDescription
ChannelPartnerRepricingConfig

getChannelPartnerRepricingConfig(String name)

public final ChannelPartnerRepricingConfig getChannelPartnerRepricingConfig(String name)

Gets information about how a Distributor modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name =
       ChannelPartnerRepricingConfigName.of(
               "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
           .toString();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.getChannelPartnerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the ChannelPartnerRepricingConfig Format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}/channelPartnerRepricingConfigs/{id}.

Returns
TypeDescription
ChannelPartnerRepricingConfig

getChannelPartnerRepricingConfigCallable()

public final UnaryCallable<GetChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig> getChannelPartnerRepricingConfigCallable()

Gets information about how a Distributor modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetChannelPartnerRepricingConfigRequest request =
       GetChannelPartnerRepricingConfigRequest.newBuilder()
           .setName(
               ChannelPartnerRepricingConfigName.of(
                       "[ACCOUNT]", "[CHANNEL_PARTNER]", "[CHANNEL_PARTNER_REPRICING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<ChannelPartnerRepricingConfig> future =
       cloudChannelServiceClient.getChannelPartnerRepricingConfigCallable().futureCall(request);
   // Do something.
   ChannelPartnerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig>

getCustomer(CustomerName name)

public final Customer getCustomer(CustomerName name)

Returns the requested Customer resource.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer resource doesn't exist. Usually the result of an invalid name parameter.

Return value: The Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerName name = CustomerName.of("[ACCOUNT]", "[CUSTOMER]");
   Customer response = cloudChannelServiceClient.getCustomer(name);
 }
 
Parameter
NameDescription
nameCustomerName

Required. The resource name of the customer to retrieve. Name uses the format: accounts/{account_id}/customers/{customer_id}

Returns
TypeDescription
Customer

getCustomer(GetCustomerRequest request)

public final Customer getCustomer(GetCustomerRequest request)

Returns the requested Customer resource.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer resource doesn't exist. Usually the result of an invalid name parameter.

Return value: The Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetCustomerRequest request =
       GetCustomerRequest.newBuilder()
           .setName(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   Customer response = cloudChannelServiceClient.getCustomer(request);
 }
 
Parameter
NameDescription
requestGetCustomerRequest

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

Returns
TypeDescription
Customer

getCustomer(String name)

public final Customer getCustomer(String name)

Returns the requested Customer resource.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer resource doesn't exist. Usually the result of an invalid name parameter.

Return value: The Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name = CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString();
   Customer response = cloudChannelServiceClient.getCustomer(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the customer to retrieve. Name uses the format: accounts/{account_id}/customers/{customer_id}

Returns
TypeDescription
Customer

getCustomerCallable()

public final UnaryCallable<GetCustomerRequest,Customer> getCustomerCallable()

Returns the requested Customer resource.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer resource doesn't exist. Usually the result of an invalid name parameter.

Return value: The Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetCustomerRequest request =
       GetCustomerRequest.newBuilder()
           .setName(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   ApiFuture<Customer> future =
       cloudChannelServiceClient.getCustomerCallable().futureCall(request);
   // Do something.
   Customer response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetCustomerRequest,Customer>

getCustomerRepricingConfig(CustomerRepricingConfigName name)

public final CustomerRepricingConfig getCustomerRepricingConfig(CustomerRepricingConfigName name)

Gets information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerRepricingConfigName name =
       CustomerRepricingConfigName.of("[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]");
   CustomerRepricingConfig response = cloudChannelServiceClient.getCustomerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameCustomerRepricingConfigName

Required. The resource name of the CustomerRepricingConfig. Format: accounts/{account_id}/customers/{customer_id}/customerRepricingConfigs/{id}.

Returns
TypeDescription
CustomerRepricingConfig

getCustomerRepricingConfig(GetCustomerRepricingConfigRequest request)

public final CustomerRepricingConfig getCustomerRepricingConfig(GetCustomerRepricingConfigRequest request)

Gets information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetCustomerRepricingConfigRequest request =
       GetCustomerRepricingConfigRequest.newBuilder()
           .setName(
               CustomerRepricingConfigName.of(
                       "[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
                   .toString())
           .build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.getCustomerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestGetCustomerRepricingConfigRequest

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

Returns
TypeDescription
CustomerRepricingConfig

getCustomerRepricingConfig(String name)

public final CustomerRepricingConfig getCustomerRepricingConfig(String name)

Gets information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String name =
       CustomerRepricingConfigName.of("[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
           .toString();
   CustomerRepricingConfig response = cloudChannelServiceClient.getCustomerRepricingConfig(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the CustomerRepricingConfig. Format: accounts/{account_id}/customers/{customer_id}/customerRepricingConfigs/{id}.

Returns
TypeDescription
CustomerRepricingConfig

getCustomerRepricingConfigCallable()

public final UnaryCallable<GetCustomerRepricingConfigRequest,CustomerRepricingConfig> getCustomerRepricingConfigCallable()

Gets information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig was not found.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetCustomerRepricingConfigRequest request =
       GetCustomerRepricingConfigRequest.newBuilder()
           .setName(
               CustomerRepricingConfigName.of(
                       "[ACCOUNT]", "[CUSTOMER]", "[CUSTOMER_REPRICING_CONFIG]")
                   .toString())
           .build();
   ApiFuture<CustomerRepricingConfig> future =
       cloudChannelServiceClient.getCustomerRepricingConfigCallable().futureCall(request);
   // Do something.
   CustomerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetCustomerRepricingConfigRequest,CustomerRepricingConfig>

getEntitlement(GetEntitlementRequest request)

public final Entitlement getEntitlement(GetEntitlementRequest request)

Returns the requested Entitlement resource.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer entitlement was not found.

Return value: The requested Entitlement resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetEntitlementRequest request =
       GetEntitlementRequest.newBuilder()
           .setName(EntitlementName.of("[ACCOUNT]", "[CUSTOMER]", "[ENTITLEMENT]").toString())
           .build();
   Entitlement response = cloudChannelServiceClient.getEntitlement(request);
 }
 
Parameter
NameDescription
requestGetEntitlementRequest

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

Returns
TypeDescription
Entitlement

getEntitlementCallable()

public final UnaryCallable<GetEntitlementRequest,Entitlement> getEntitlementCallable()

Returns the requested Entitlement resource.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer entitlement was not found.

Return value: The requested Entitlement resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   GetEntitlementRequest request =
       GetEntitlementRequest.newBuilder()
           .setName(EntitlementName.of("[ACCOUNT]", "[CUSTOMER]", "[ENTITLEMENT]").toString())
           .build();
   ApiFuture<Entitlement> future =
       cloudChannelServiceClient.getEntitlementCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetEntitlementRequest,Entitlement>

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

getSettings()

public final CloudChannelServiceSettings getSettings()
Returns
TypeDescription
CloudChannelServiceSettings

getStub()

public CloudChannelServiceStub getStub()
Returns
TypeDescription
CloudChannelServiceStub

importCustomer(ImportCustomerRequest request)

public final Customer importCustomer(ImportCustomerRequest request)

Imports a Customer from the Cloud Identity associated with the provided Cloud Identity ID or domain before a TransferEntitlements call. If a linked Customer already exists and overwrite_if_exists is true, it will update that Customer's data.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • NOT_FOUND: Cloud Identity doesn't exist or was deleted.
  • INVALID_ARGUMENT: Required parameters are missing, or the auth_token is expired or invalid.
  • ALREADY_EXISTS: A customer already exists and has conflicting critical fields. Requires an overwrite.

Return value: The Customer.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ImportCustomerRequest request =
       ImportCustomerRequest.newBuilder()
           .setParent("parent-995424086")
           .setAuthToken("authToken1450587441")
           .setOverwriteIfExists(true)
           .setChannelPartnerId("channelPartnerId-170366400")
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   Customer response = cloudChannelServiceClient.importCustomer(request);
 }
 
Parameter
NameDescription
requestImportCustomerRequest

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

Returns
TypeDescription
Customer

importCustomerCallable()

public final UnaryCallable<ImportCustomerRequest,Customer> importCustomerCallable()

Imports a Customer from the Cloud Identity associated with the provided Cloud Identity ID or domain before a TransferEntitlements call. If a linked Customer already exists and overwrite_if_exists is true, it will update that Customer's data.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • NOT_FOUND: Cloud Identity doesn't exist or was deleted.
  • INVALID_ARGUMENT: Required parameters are missing, or the auth_token is expired or invalid.
  • ALREADY_EXISTS: A customer already exists and has conflicting critical fields. Requires an overwrite.

Return value: The Customer.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ImportCustomerRequest request =
       ImportCustomerRequest.newBuilder()
           .setParent("parent-995424086")
           .setAuthToken("authToken1450587441")
           .setOverwriteIfExists(true)
           .setChannelPartnerId("channelPartnerId-170366400")
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .build();
   ApiFuture<Customer> future =
       cloudChannelServiceClient.importCustomerCallable().futureCall(request);
   // Do something.
   Customer response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ImportCustomerRequest,Customer>

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean
public final CloudChannelServiceClient.ListChannelPartnerLinksPagedResponse listChannelPartnerLinks(ListChannelPartnerLinksRequest request)

List ChannelPartnerLinks belonging to a distributor. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: The list of the distributor account's ChannelPartnerLink resources.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerLinksRequest request =
       ListChannelPartnerLinksRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(ChannelPartnerLinkView.forNumber(0))
           .build();
   for (ChannelPartnerLink element :
       cloudChannelServiceClient.listChannelPartnerLinks(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListChannelPartnerLinksRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListChannelPartnerLinksPagedResponse

listChannelPartnerLinksCallable()

public final UnaryCallable<ListChannelPartnerLinksRequest,ListChannelPartnerLinksResponse> listChannelPartnerLinksCallable()

List ChannelPartnerLinks belonging to a distributor. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: The list of the distributor account's ChannelPartnerLink resources.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerLinksRequest request =
       ListChannelPartnerLinksRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(ChannelPartnerLinkView.forNumber(0))
           .build();
   while (true) {
     ListChannelPartnerLinksResponse response =
         cloudChannelServiceClient.listChannelPartnerLinksCallable().call(request);
     for (ChannelPartnerLink element : response.getChannelPartnerLinksList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListChannelPartnerLinksRequest,ListChannelPartnerLinksResponse>

listChannelPartnerLinksPagedCallable()

public final UnaryCallable<ListChannelPartnerLinksRequest,CloudChannelServiceClient.ListChannelPartnerLinksPagedResponse> listChannelPartnerLinksPagedCallable()

List ChannelPartnerLinks belonging to a distributor. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: The list of the distributor account's ChannelPartnerLink resources.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerLinksRequest request =
       ListChannelPartnerLinksRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(ChannelPartnerLinkView.forNumber(0))
           .build();
   ApiFuture<ChannelPartnerLink> future =
       cloudChannelServiceClient.listChannelPartnerLinksPagedCallable().futureCall(request);
   // Do something.
   for (ChannelPartnerLink element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListChannelPartnerLinksRequest,ListChannelPartnerLinksPagedResponse>

listChannelPartnerRepricingConfigs(ChannelPartnerLinkName parent)

public final CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse listChannelPartnerRepricingConfigs(ChannelPartnerLinkName parent)

Lists information about how a Reseller modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • channel partner ID
  • RepricingConfig.effective_invoice_month
  • ChannelPartnerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChannelPartnerLinkName parent =
       ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]");
   for (ChannelPartnerRepricingConfig element :
       cloudChannelServiceClient.listChannelPartnerRepricingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentChannelPartnerLinkName

Required. The resource name of the account's ChannelPartnerLink. Parent uses the format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}. Supports accounts/{account_id}/channelPartnerLinks/- to retrieve configs for all channel partners.

Returns
TypeDescription
CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse

listChannelPartnerRepricingConfigs(ListChannelPartnerRepricingConfigsRequest request)

public final CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse listChannelPartnerRepricingConfigs(ListChannelPartnerRepricingConfigsRequest request)

Lists information about how a Reseller modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • channel partner ID
  • RepricingConfig.effective_invoice_month
  • ChannelPartnerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerRepricingConfigsRequest request =
       ListChannelPartnerRepricingConfigsRequest.newBuilder()
           .setParent(
               ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (ChannelPartnerRepricingConfig element :
       cloudChannelServiceClient.listChannelPartnerRepricingConfigs(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListChannelPartnerRepricingConfigsRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse

listChannelPartnerRepricingConfigs(String parent)

public final CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse listChannelPartnerRepricingConfigs(String parent)

Lists information about how a Reseller modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • channel partner ID
  • RepricingConfig.effective_invoice_month
  • ChannelPartnerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String parent = ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString();
   for (ChannelPartnerRepricingConfig element :
       cloudChannelServiceClient.listChannelPartnerRepricingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The resource name of the account's ChannelPartnerLink. Parent uses the format: accounts/{account_id}/channelPartnerLinks/{channel_partner_id}. Supports accounts/{account_id}/channelPartnerLinks/- to retrieve configs for all channel partners.

Returns
TypeDescription
CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse

listChannelPartnerRepricingConfigsCallable()

public final UnaryCallable<ListChannelPartnerRepricingConfigsRequest,ListChannelPartnerRepricingConfigsResponse> listChannelPartnerRepricingConfigsCallable()

Lists information about how a Reseller modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • channel partner ID
  • RepricingConfig.effective_invoice_month
  • ChannelPartnerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerRepricingConfigsRequest request =
       ListChannelPartnerRepricingConfigsRequest.newBuilder()
           .setParent(
               ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListChannelPartnerRepricingConfigsResponse response =
         cloudChannelServiceClient.listChannelPartnerRepricingConfigsCallable().call(request);
     for (ChannelPartnerRepricingConfig element :
         response.getChannelPartnerRepricingConfigsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListChannelPartnerRepricingConfigsRequest,ListChannelPartnerRepricingConfigsResponse>

listChannelPartnerRepricingConfigsPagedCallable()

public final UnaryCallable<ListChannelPartnerRepricingConfigsRequest,CloudChannelServiceClient.ListChannelPartnerRepricingConfigsPagedResponse> listChannelPartnerRepricingConfigsPagedCallable()

Lists information about how a Reseller modifies their bill before sending it to a ChannelPartner.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the ChannelPartnerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • channel partner ID
  • RepricingConfig.effective_invoice_month
  • ChannelPartnerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListChannelPartnerRepricingConfigsRequest request =
       ListChannelPartnerRepricingConfigsRequest.newBuilder()
           .setParent(
               ChannelPartnerLinkName.of("[ACCOUNT]", "[CHANNEL_PARTNER_LINK]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<ChannelPartnerRepricingConfig> future =
       cloudChannelServiceClient
           .listChannelPartnerRepricingConfigsPagedCallable()
           .futureCall(request);
   // Do something.
   for (ChannelPartnerRepricingConfig element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListChannelPartnerRepricingConfigsRequest,ListChannelPartnerRepricingConfigsPagedResponse>

listCustomerRepricingConfigs(CustomerName parent)

public final CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse listCustomerRepricingConfigs(CustomerName parent)

Lists information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • customer ID
  • RepricingConfig.EntitlementGranularity.entitlement
  • RepricingConfig.effective_invoice_month
  • CustomerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerName parent = CustomerName.of("[ACCOUNT]", "[CUSTOMER]");
   for (CustomerRepricingConfig element :
       cloudChannelServiceClient.listCustomerRepricingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentCustomerName

Required. The resource name of the customer. Parent uses the format: accounts/{account_id}/customers/{customer_id}. Supports accounts/{account_id}/customers/- to retrieve configs for all customers.

Returns
TypeDescription
CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse

listCustomerRepricingConfigs(ListCustomerRepricingConfigsRequest request)

public final CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse listCustomerRepricingConfigs(ListCustomerRepricingConfigsRequest request)

Lists information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • customer ID
  • RepricingConfig.EntitlementGranularity.entitlement
  • RepricingConfig.effective_invoice_month
  • CustomerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomerRepricingConfigsRequest request =
       ListCustomerRepricingConfigsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (CustomerRepricingConfig element :
       cloudChannelServiceClient.listCustomerRepricingConfigs(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListCustomerRepricingConfigsRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse

listCustomerRepricingConfigs(String parent)

public final CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse listCustomerRepricingConfigs(String parent)

Lists information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • customer ID
  • RepricingConfig.EntitlementGranularity.entitlement
  • RepricingConfig.effective_invoice_month
  • CustomerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   String parent = CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString();
   for (CustomerRepricingConfig element :
       cloudChannelServiceClient.listCustomerRepricingConfigs(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The resource name of the customer. Parent uses the format: accounts/{account_id}/customers/{customer_id}. Supports accounts/{account_id}/customers/- to retrieve configs for all customers.

Returns
TypeDescription
CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse

listCustomerRepricingConfigsCallable()

public final UnaryCallable<ListCustomerRepricingConfigsRequest,ListCustomerRepricingConfigsResponse> listCustomerRepricingConfigsCallable()

Lists information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • customer ID
  • RepricingConfig.EntitlementGranularity.entitlement
  • RepricingConfig.effective_invoice_month
  • CustomerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomerRepricingConfigsRequest request =
       ListCustomerRepricingConfigsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListCustomerRepricingConfigsResponse response =
         cloudChannelServiceClient.listCustomerRepricingConfigsCallable().call(request);
     for (CustomerRepricingConfig element : response.getCustomerRepricingConfigsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListCustomerRepricingConfigsRequest,ListCustomerRepricingConfigsResponse>

listCustomerRepricingConfigsPagedCallable()

public final UnaryCallable<ListCustomerRepricingConfigsRequest,CloudChannelServiceClient.ListCustomerRepricingConfigsPagedResponse> listCustomerRepricingConfigsPagedCallable()

Lists information about how a Reseller modifies their bill before sending it to a Customer.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the CustomerRepricingConfig resources. The data for each resource is displayed in the ascending order of:

  • customer ID
  • RepricingConfig.EntitlementGranularity.entitlement
  • RepricingConfig.effective_invoice_month
  • CustomerRepricingConfig.update_time

If unsuccessful, returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomerRepricingConfigsRequest request =
       ListCustomerRepricingConfigsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<CustomerRepricingConfig> future =
       cloudChannelServiceClient.listCustomerRepricingConfigsPagedCallable().futureCall(request);
   // Do something.
   for (CustomerRepricingConfig element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListCustomerRepricingConfigsRequest,ListCustomerRepricingConfigsPagedResponse>

listCustomers(ListCustomersRequest request)

public final CloudChannelServiceClient.ListCustomersPagedResponse listCustomers(ListCustomersRequest request)

List Customers.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of Customers, or an empty list if there are no customers.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomersRequest request =
       ListCustomersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   for (Customer element : cloudChannelServiceClient.listCustomers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListCustomersRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListCustomersPagedResponse

listCustomersCallable()

public final UnaryCallable<ListCustomersRequest,ListCustomersResponse> listCustomersCallable()

List Customers.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of Customers, or an empty list if there are no customers.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomersRequest request =
       ListCustomersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   while (true) {
     ListCustomersResponse response =
         cloudChannelServiceClient.listCustomersCallable().call(request);
     for (Customer element : response.getCustomersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListCustomersRequest,ListCustomersResponse>

listCustomersPagedCallable()

public final UnaryCallable<ListCustomersRequest,CloudChannelServiceClient.ListCustomersPagedResponse> listCustomersPagedCallable()

List Customers.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of Customers, or an empty list if there are no customers.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListCustomersRequest request =
       ListCustomersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .build();
   ApiFuture<Customer> future =
       cloudChannelServiceClient.listCustomersPagedCallable().futureCall(request);
   // Do something.
   for (Customer element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListCustomersRequest,ListCustomersPagedResponse>

listEntitlements(ListEntitlementsRequest request)

public final CloudChannelServiceClient.ListEntitlementsPagedResponse listEntitlements(ListEntitlementsRequest request)

Lists Entitlements belonging to a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's Entitlements.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListEntitlementsRequest request =
       ListEntitlementsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Entitlement element : cloudChannelServiceClient.listEntitlements(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListEntitlementsRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListEntitlementsPagedResponse

listEntitlementsCallable()

public final UnaryCallable<ListEntitlementsRequest,ListEntitlementsResponse> listEntitlementsCallable()

Lists Entitlements belonging to a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's Entitlements.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListEntitlementsRequest request =
       ListEntitlementsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListEntitlementsResponse response =
         cloudChannelServiceClient.listEntitlementsCallable().call(request);
     for (Entitlement element : response.getEntitlementsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListEntitlementsRequest,ListEntitlementsResponse>

listEntitlementsPagedCallable()

public final UnaryCallable<ListEntitlementsRequest,CloudChannelServiceClient.ListEntitlementsPagedResponse> listEntitlementsPagedCallable()

Lists Entitlements belonging to a customer.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's Entitlements.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListEntitlementsRequest request =
       ListEntitlementsRequest.newBuilder()
           .setParent(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Entitlement> future =
       cloudChannelServiceClient.listEntitlementsPagedCallable().futureCall(request);
   // Do something.
   for (Entitlement element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListEntitlementsRequest,ListEntitlementsPagedResponse>

listOffers(ListOffersRequest request)

public final CloudChannelServiceClient.ListOffersPagedResponse listOffers(ListOffersRequest request)

Lists the Offers the reseller can sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListOffersRequest request =
       ListOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (Offer element : cloudChannelServiceClient.listOffers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListOffersRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListOffersPagedResponse

listOffersCallable()

public final UnaryCallable<ListOffersRequest,ListOffersResponse> listOffersCallable()

Lists the Offers the reseller can sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListOffersRequest request =
       ListOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListOffersResponse response = cloudChannelServiceClient.listOffersCallable().call(request);
     for (Offer element : response.getOffersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListOffersRequest,ListOffersResponse>

listOffersPagedCallable()

public final UnaryCallable<ListOffersRequest,CloudChannelServiceClient.ListOffersPagedResponse> listOffersPagedCallable()

Lists the Offers the reseller can sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListOffersRequest request =
       ListOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<Offer> future =
       cloudChannelServiceClient.listOffersPagedCallable().futureCall(request);
   // Do something.
   for (Offer element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListOffersRequest,ListOffersPagedResponse>

listProducts(ListProductsRequest request)

public final CloudChannelServiceClient.ListProductsPagedResponse listProducts(ListProductsRequest request)

Lists the Products the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListProductsRequest request =
       ListProductsRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (Product element : cloudChannelServiceClient.listProducts(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListProductsRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListProductsPagedResponse

listProductsCallable()

public final UnaryCallable<ListProductsRequest,ListProductsResponse> listProductsCallable()

Lists the Products the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListProductsRequest request =
       ListProductsRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListProductsResponse response =
         cloudChannelServiceClient.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;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListProductsRequest,ListProductsResponse>

listProductsPagedCallable()

public final UnaryCallable<ListProductsRequest,CloudChannelServiceClient.ListProductsPagedResponse> listProductsPagedCallable()

Lists the Products the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListProductsRequest request =
       ListProductsRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<Product> future =
       cloudChannelServiceClient.listProductsPagedCallable().futureCall(request);
   // Do something.
   for (Product element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListProductsRequest,ListProductsPagedResponse>

listPurchasableOffers(ListPurchasableOffersRequest request)

public final CloudChannelServiceClient.ListPurchasableOffersPagedResponse listPurchasableOffers(ListPurchasableOffersRequest request)

Lists the following:

  • Offers that you can purchase for a customer.
  • Offers that you can change for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableOffersRequest request =
       ListPurchasableOffersRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (PurchasableOffer element :
       cloudChannelServiceClient.listPurchasableOffers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListPurchasableOffersRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListPurchasableOffersPagedResponse

listPurchasableOffersCallable()

public final UnaryCallable<ListPurchasableOffersRequest,ListPurchasableOffersResponse> listPurchasableOffersCallable()

Lists the following:

  • Offers that you can purchase for a customer.
  • Offers that you can change for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableOffersRequest request =
       ListPurchasableOffersRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListPurchasableOffersResponse response =
         cloudChannelServiceClient.listPurchasableOffersCallable().call(request);
     for (PurchasableOffer element : response.getPurchasableOffersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListPurchasableOffersRequest,ListPurchasableOffersResponse>

listPurchasableOffersPagedCallable()

public final UnaryCallable<ListPurchasableOffersRequest,CloudChannelServiceClient.ListPurchasableOffersPagedResponse> listPurchasableOffersPagedCallable()

Lists the following:

  • Offers that you can purchase for a customer.
  • Offers that you can change for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableOffersRequest request =
       ListPurchasableOffersRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<PurchasableOffer> future =
       cloudChannelServiceClient.listPurchasableOffersPagedCallable().futureCall(request);
   // Do something.
   for (PurchasableOffer element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListPurchasableOffersRequest,ListPurchasableOffersPagedResponse>

listPurchasableSkus(ListPurchasableSkusRequest request)

public final CloudChannelServiceClient.ListPurchasableSkusPagedResponse listPurchasableSkus(ListPurchasableSkusRequest request)

Lists the following:

  • SKUs that you can purchase for a customer
  • SKUs that you can upgrade or downgrade for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableSkusRequest request =
       ListPurchasableSkusRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (PurchasableSku element :
       cloudChannelServiceClient.listPurchasableSkus(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListPurchasableSkusRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListPurchasableSkusPagedResponse

listPurchasableSkusCallable()

public final UnaryCallable<ListPurchasableSkusRequest,ListPurchasableSkusResponse> listPurchasableSkusCallable()

Lists the following:

  • SKUs that you can purchase for a customer
  • SKUs that you can upgrade or downgrade for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableSkusRequest request =
       ListPurchasableSkusRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListPurchasableSkusResponse response =
         cloudChannelServiceClient.listPurchasableSkusCallable().call(request);
     for (PurchasableSku element : response.getPurchasableSkusList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListPurchasableSkusRequest,ListPurchasableSkusResponse>

listPurchasableSkusPagedCallable()

public final UnaryCallable<ListPurchasableSkusRequest,CloudChannelServiceClient.ListPurchasableSkusPagedResponse> listPurchasableSkusPagedCallable()

Lists the following:

  • SKUs that you can purchase for a customer
  • SKUs that you can upgrade or downgrade for an entitlement.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListPurchasableSkusRequest request =
       ListPurchasableSkusRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<PurchasableSku> future =
       cloudChannelServiceClient.listPurchasableSkusPagedCallable().futureCall(request);
   // Do something.
   for (PurchasableSku element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListPurchasableSkusRequest,ListPurchasableSkusPagedResponse>

listSkus(ListSkusRequest request)

public final CloudChannelServiceClient.ListSkusPagedResponse listSkus(ListSkusRequest request)

Lists the SKUs for a product the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSkusRequest request =
       ListSkusRequest.newBuilder()
           .setParent(ProductName.of("[PRODUCT]").toString())
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (Sku element : cloudChannelServiceClient.listSkus(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListSkusRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListSkusPagedResponse

listSkusCallable()

public final UnaryCallable<ListSkusRequest,ListSkusResponse> listSkusCallable()

Lists the SKUs for a product the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSkusRequest request =
       ListSkusRequest.newBuilder()
           .setParent(ProductName.of("[PRODUCT]").toString())
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListSkusResponse response = cloudChannelServiceClient.listSkusCallable().call(request);
     for (Sku element : response.getSkusList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSkusRequest,ListSkusResponse>

listSkusPagedCallable()

public final UnaryCallable<ListSkusRequest,CloudChannelServiceClient.ListSkusPagedResponse> listSkusPagedCallable()

Lists the SKUs for a product the reseller is authorized to sell.

Possible error codes:

  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSkusRequest request =
       ListSkusRequest.newBuilder()
           .setParent(ProductName.of("[PRODUCT]").toString())
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<Sku> future = cloudChannelServiceClient.listSkusPagedCallable().futureCall(request);
   // Do something.
   for (Sku element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSkusRequest,ListSkusPagedResponse>

listSubscribers(ListSubscribersRequest request)

public final CloudChannelServiceClient.ListSubscribersPagedResponse listSubscribers(ListSubscribersRequest request)

Lists service accounts with subscriber privileges on the Cloud Pub/Sub topic created for this Channel Services account.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The topic resource doesn't exist.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: A list of service email addresses.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSubscribersRequest request =
       ListSubscribersRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (String element : cloudChannelServiceClient.listSubscribers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListSubscribersRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListSubscribersPagedResponse

listSubscribersCallable()

public final UnaryCallable<ListSubscribersRequest,ListSubscribersResponse> listSubscribersCallable()

Lists service accounts with subscriber privileges on the Cloud Pub/Sub topic created for this Channel Services account.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The topic resource doesn't exist.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: A list of service email addresses.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSubscribersRequest request =
       ListSubscribersRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListSubscribersResponse response =
         cloudChannelServiceClient.listSubscribersCallable().call(request);
     for (String element : response.getServiceAccountsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSubscribersRequest,ListSubscribersResponse>

listSubscribersPagedCallable()

public final UnaryCallable<ListSubscribersRequest,CloudChannelServiceClient.ListSubscribersPagedResponse> listSubscribersPagedCallable()

Lists service accounts with subscriber privileges on the Cloud Pub/Sub topic created for this Channel Services account.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The topic resource doesn't exist.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: A list of service email addresses.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListSubscribersRequest request =
       ListSubscribersRequest.newBuilder()
           .setAccount("account-1177318867")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<String> future =
       cloudChannelServiceClient.listSubscribersPagedCallable().futureCall(request);
   // Do something.
   for (String element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListSubscribersRequest,ListSubscribersPagedResponse>

listTransferableOffers(ListTransferableOffersRequest request)

public final CloudChannelServiceClient.ListTransferableOffersPagedResponse listTransferableOffers(ListTransferableOffersRequest request)

List TransferableOffers of a customer based on Cloud Identity ID or Customer Name in the request.

Use this method when a reseller gets the entitlement information of an unowned customer. The reseller should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of TransferableOffer for the given customer and SKU.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableOffersRequest request =
       ListTransferableOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setSku("sku113949")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (TransferableOffer element :
       cloudChannelServiceClient.listTransferableOffers(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListTransferableOffersRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListTransferableOffersPagedResponse

listTransferableOffersCallable()

public final UnaryCallable<ListTransferableOffersRequest,ListTransferableOffersResponse> listTransferableOffersCallable()

List TransferableOffers of a customer based on Cloud Identity ID or Customer Name in the request.

Use this method when a reseller gets the entitlement information of an unowned customer. The reseller should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of TransferableOffer for the given customer and SKU.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableOffersRequest request =
       ListTransferableOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setSku("sku113949")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListTransferableOffersResponse response =
         cloudChannelServiceClient.listTransferableOffersCallable().call(request);
     for (TransferableOffer element : response.getTransferableOffersList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListTransferableOffersRequest,ListTransferableOffersResponse>

listTransferableOffersPagedCallable()

public final UnaryCallable<ListTransferableOffersRequest,CloudChannelServiceClient.ListTransferableOffersPagedResponse> listTransferableOffersPagedCallable()

List TransferableOffers of a customer based on Cloud Identity ID or Customer Name in the request.

Use this method when a reseller gets the entitlement information of an unowned customer. The reseller should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: List of TransferableOffer for the given customer and SKU.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableOffersRequest request =
       ListTransferableOffersRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setSku("sku113949")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<TransferableOffer> future =
       cloudChannelServiceClient.listTransferableOffersPagedCallable().futureCall(request);
   // Do something.
   for (TransferableOffer element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListTransferableOffersRequest,ListTransferableOffersPagedResponse>

listTransferableSkus(ListTransferableSkusRequest request)

public final CloudChannelServiceClient.ListTransferableSkusPagedResponse listTransferableSkus(ListTransferableSkusRequest request)

List TransferableSkus of a customer based on the Cloud Identity ID or Customer Name in the request.

Use this method to list the entitlements information of an unowned customer. You should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's TransferableSku.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableSkusRequest request =
       ListTransferableSkusRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setAuthToken("authToken1450587441")
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (TransferableSku element :
       cloudChannelServiceClient.listTransferableSkus(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListTransferableSkusRequest

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

Returns
TypeDescription
CloudChannelServiceClient.ListTransferableSkusPagedResponse

listTransferableSkusCallable()

public final UnaryCallable<ListTransferableSkusRequest,ListTransferableSkusResponse> listTransferableSkusCallable()

List TransferableSkus of a customer based on the Cloud Identity ID or Customer Name in the request.

Use this method to list the entitlements information of an unowned customer. You should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's TransferableSku.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableSkusRequest request =
       ListTransferableSkusRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setAuthToken("authToken1450587441")
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListTransferableSkusResponse response =
         cloudChannelServiceClient.listTransferableSkusCallable().call(request);
     for (TransferableSku element : response.getTransferableSkusList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListTransferableSkusRequest,ListTransferableSkusResponse>

listTransferableSkusPagedCallable()

public final UnaryCallable<ListTransferableSkusRequest,CloudChannelServiceClient.ListTransferableSkusPagedResponse> listTransferableSkusPagedCallable()

List TransferableSkus of a customer based on the Cloud Identity ID or Customer Name in the request.

Use this method to list the entitlements information of an unowned customer. You should provide the customer's Cloud Identity ID or Customer Name.

Possible error codes:

  • PERMISSION_DENIED: * The customer doesn't belong to the reseller and has no auth token. * The supplied auth token is invalid. * The reseller account making the request is different from the reseller account in the query.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.

Return value: A list of the customer's TransferableSku.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ListTransferableSkusRequest request =
       ListTransferableSkusRequest.newBuilder()
           .setParent("parent-995424086")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setAuthToken("authToken1450587441")
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<TransferableSku> future =
       cloudChannelServiceClient.listTransferableSkusPagedCallable().futureCall(request);
   // Do something.
   for (TransferableSku element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListTransferableSkusRequest,ListTransferableSkusPagedResponse>

lookupOffer(LookupOfferRequest request)

public final Offer lookupOffer(LookupOfferRequest request)

Returns the requested Offer resource.

Possible error codes:

  • PERMISSION_DENIED: The entitlement doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement or offer was not found.

Return value: The Offer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   LookupOfferRequest request =
       LookupOfferRequest.newBuilder()
           .setEntitlement(
               EntitlementName.of("[ACCOUNT]", "[CUSTOMER]", "[ENTITLEMENT]").toString())
           .build();
   Offer response = cloudChannelServiceClient.lookupOffer(request);
 }
 
Parameter
NameDescription
requestLookupOfferRequest

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

Returns
TypeDescription
Offer

lookupOfferCallable()

public final UnaryCallable<LookupOfferRequest,Offer> lookupOfferCallable()

Returns the requested Offer resource.

Possible error codes:

  • PERMISSION_DENIED: The entitlement doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement or offer was not found.

Return value: The Offer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   LookupOfferRequest request =
       LookupOfferRequest.newBuilder()
           .setEntitlement(
               EntitlementName.of("[ACCOUNT]", "[CUSTOMER]", "[ENTITLEMENT]").toString())
           .build();
   ApiFuture<Offer> future = cloudChannelServiceClient.lookupOfferCallable().futureCall(request);
   // Do something.
   Offer response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<LookupOfferRequest,Offer>

provisionCloudIdentityAsync(ProvisionCloudIdentityRequest request)

public final OperationFuture<Customer,OperationMetadata> provisionCloudIdentityAsync(ProvisionCloudIdentityRequest request)

Creates a Cloud Identity for the given customer using the customer's information, or the information provided here.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer was not found.
  • ALREADY_EXISTS: The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata contains an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ProvisionCloudIdentityRequest request =
       ProvisionCloudIdentityRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setCloudIdentityInfo(CloudIdentityInfo.newBuilder().build())
           .setUser(AdminUser.newBuilder().build())
           .setValidateOnly(true)
           .build();
   Customer response = cloudChannelServiceClient.provisionCloudIdentityAsync(request).get();
 }
 
Parameter
NameDescription
requestProvisionCloudIdentityRequest

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

Returns
TypeDescription
OperationFuture<Customer,OperationMetadata>

provisionCloudIdentityCallable()

public final UnaryCallable<ProvisionCloudIdentityRequest,Operation> provisionCloudIdentityCallable()

Creates a Cloud Identity for the given customer using the customer's information, or the information provided here.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer was not found.
  • ALREADY_EXISTS: The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata contains an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ProvisionCloudIdentityRequest request =
       ProvisionCloudIdentityRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setCloudIdentityInfo(CloudIdentityInfo.newBuilder().build())
           .setUser(AdminUser.newBuilder().build())
           .setValidateOnly(true)
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.provisionCloudIdentityCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ProvisionCloudIdentityRequest,Operation>

provisionCloudIdentityOperationCallable()

public final OperationCallable<ProvisionCloudIdentityRequest,Customer,OperationMetadata> provisionCloudIdentityOperationCallable()

Creates a Cloud Identity for the given customer using the customer's information, or the information provided here.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer was not found.
  • ALREADY_EXISTS: The customer's primary email already exists. Retry after changing the customer's primary contact email.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata contains an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ProvisionCloudIdentityRequest request =
       ProvisionCloudIdentityRequest.newBuilder()
           .setCustomer(CustomerName.of("[ACCOUNT]", "[CUSTOMER]").toString())
           .setCloudIdentityInfo(CloudIdentityInfo.newBuilder().build())
           .setUser(AdminUser.newBuilder().build())
           .setValidateOnly(true)
           .build();
   OperationFuture<Customer, OperationMetadata> future =
       cloudChannelServiceClient.provisionCloudIdentityOperationCallable().futureCall(request);
   // Do something.
   Customer response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ProvisionCloudIdentityRequest,Customer,OperationMetadata>

registerSubscriber(RegisterSubscriberRequest request)

public final RegisterSubscriberResponse registerSubscriber(RegisterSubscriberRequest request)

Registers a service account with subscriber privileges on the Cloud Pub/Sub topic for this Channel Services account. After you create a subscriber, you get the events through SubscriberEvent

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The topic name with the registered service email address.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   RegisterSubscriberRequest request =
       RegisterSubscriberRequest.newBuilder()
           .setAccount("account-1177318867")
           .setServiceAccount("serviceAccount1079137720")
           .build();
   RegisterSubscriberResponse response = cloudChannelServiceClient.registerSubscriber(request);
 }
 
Parameter
NameDescription
requestRegisterSubscriberRequest

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

Returns
TypeDescription
RegisterSubscriberResponse

registerSubscriberCallable()

public final UnaryCallable<RegisterSubscriberRequest,RegisterSubscriberResponse> registerSubscriberCallable()

Registers a service account with subscriber privileges on the Cloud Pub/Sub topic for this Channel Services account. After you create a subscriber, you get the events through SubscriberEvent

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The topic name with the registered service email address.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   RegisterSubscriberRequest request =
       RegisterSubscriberRequest.newBuilder()
           .setAccount("account-1177318867")
           .setServiceAccount("serviceAccount1079137720")
           .build();
   ApiFuture<RegisterSubscriberResponse> future =
       cloudChannelServiceClient.registerSubscriberCallable().futureCall(request);
   // Do something.
   RegisterSubscriberResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<RegisterSubscriberRequest,RegisterSubscriberResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

startPaidServiceAsync(StartPaidServiceRequest request)

public final OperationFuture<Entitlement,OperationMetadata> startPaidServiceAsync(StartPaidServiceRequest request)

Starts paid service for a trial entitlement.

Starts paid service for a trial entitlement immediately. This method is only applicable if a plan is set up for a trial entitlement but has some trial days remaining.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • FAILED_PRECONDITION/NOT_IN_TRIAL: This method only works for entitlement on trial plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   StartPaidServiceRequest request =
       StartPaidServiceRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.startPaidServiceAsync(request).get();
 }
 
Parameter
NameDescription
requestStartPaidServiceRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

startPaidServiceCallable()

public final UnaryCallable<StartPaidServiceRequest,Operation> startPaidServiceCallable()

Starts paid service for a trial entitlement.

Starts paid service for a trial entitlement immediately. This method is only applicable if a plan is set up for a trial entitlement but has some trial days remaining.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • FAILED_PRECONDITION/NOT_IN_TRIAL: This method only works for entitlement on trial plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   StartPaidServiceRequest request =
       StartPaidServiceRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.startPaidServiceCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<StartPaidServiceRequest,Operation>

startPaidServiceOperationCallable()

public final OperationCallable<StartPaidServiceRequest,Entitlement,OperationMetadata> startPaidServiceOperationCallable()

Starts paid service for a trial entitlement.

Starts paid service for a trial entitlement immediately. This method is only applicable if a plan is set up for a trial entitlement but has some trial days remaining.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • FAILED_PRECONDITION/NOT_IN_TRIAL: This method only works for entitlement on trial plans.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   StartPaidServiceRequest request =
       StartPaidServiceRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.startPaidServiceOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<StartPaidServiceRequest,Entitlement,OperationMetadata>

suspendEntitlementAsync(SuspendEntitlementRequest request)

public final OperationFuture<Entitlement,OperationMetadata> suspendEntitlementAsync(SuspendEntitlementRequest request)

Suspends a previously fulfilled entitlement.

An entitlement suspension is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_ACTIVE: Entitlement is not active.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   SuspendEntitlementRequest request =
       SuspendEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   Entitlement response = cloudChannelServiceClient.suspendEntitlementAsync(request).get();
 }
 
Parameter
NameDescription
requestSuspendEntitlementRequest

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

Returns
TypeDescription
OperationFuture<Entitlement,OperationMetadata>

suspendEntitlementCallable()

public final UnaryCallable<SuspendEntitlementRequest,Operation> suspendEntitlementCallable()

Suspends a previously fulfilled entitlement.

An entitlement suspension is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_ACTIVE: Entitlement is not active.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   SuspendEntitlementRequest request =
       SuspendEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.suspendEntitlementCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<SuspendEntitlementRequest,Operation>

suspendEntitlementOperationCallable()

public final OperationCallable<SuspendEntitlementRequest,Entitlement,OperationMetadata> suspendEntitlementOperationCallable()

Suspends a previously fulfilled entitlement.

An entitlement suspension is a long-running operation.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: Entitlement resource not found.
  • NOT_ACTIVE: Entitlement is not active.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   SuspendEntitlementRequest request =
       SuspendEntitlementRequest.newBuilder()
           .setName("name3373707")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Entitlement, OperationMetadata> future =
       cloudChannelServiceClient.suspendEntitlementOperationCallable().futureCall(request);
   // Do something.
   Entitlement response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<SuspendEntitlementRequest,Entitlement,OperationMetadata>

transferEntitlementsAsync(TransferEntitlementsRequest request)

public final OperationFuture<TransferEntitlementsResponse,OperationMetadata> transferEntitlementsAsync(TransferEntitlementsRequest request)

Transfers customer entitlements to new reseller.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain. * Specify all transferring entitlements.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsRequest request =
       TransferEntitlementsRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setAuthToken("authToken1450587441")
           .setRequestId("requestId693933066")
           .build();
   TransferEntitlementsResponse response =
       cloudChannelServiceClient.transferEntitlementsAsync(request).get();
 }
 
Parameter
NameDescription
requestTransferEntitlementsRequest

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

Returns
TypeDescription
OperationFuture<TransferEntitlementsResponse,OperationMetadata>

transferEntitlementsCallable()

public final UnaryCallable<TransferEntitlementsRequest,Operation> transferEntitlementsCallable()

Transfers customer entitlements to new reseller.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain. * Specify all transferring entitlements.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsRequest request =
       TransferEntitlementsRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setAuthToken("authToken1450587441")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.transferEntitlementsCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<TransferEntitlementsRequest,Operation>

transferEntitlementsOperationCallable()

public final OperationCallable<TransferEntitlementsRequest,TransferEntitlementsResponse,OperationMetadata> transferEntitlementsOperationCallable()

Transfers customer entitlements to new reseller.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain. * Specify all transferring entitlements.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsRequest request =
       TransferEntitlementsRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setAuthToken("authToken1450587441")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<TransferEntitlementsResponse, OperationMetadata> future =
       cloudChannelServiceClient.transferEntitlementsOperationCallable().futureCall(request);
   // Do something.
   TransferEntitlementsResponse response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<TransferEntitlementsRequest,TransferEntitlementsResponse,OperationMetadata>

transferEntitlementsToGoogleAsync(TransferEntitlementsToGoogleRequest request)

public final OperationFuture<Empty,OperationMetadata> transferEntitlementsToGoogleAsync(TransferEntitlementsToGoogleRequest request)

Transfers customer entitlements from their current reseller to Google.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsToGoogleRequest request =
       TransferEntitlementsToGoogleRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setRequestId("requestId693933066")
           .build();
   cloudChannelServiceClient.transferEntitlementsToGoogleAsync(request).get();
 }
 
Parameter
NameDescription
requestTransferEntitlementsToGoogleRequest

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

Returns
TypeDescription
OperationFuture<Empty,OperationMetadata>

transferEntitlementsToGoogleCallable()

public final UnaryCallable<TransferEntitlementsToGoogleRequest,Operation> transferEntitlementsToGoogleCallable()

Transfers customer entitlements from their current reseller to Google.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsToGoogleRequest request =
       TransferEntitlementsToGoogleRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       cloudChannelServiceClient.transferEntitlementsToGoogleCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<TransferEntitlementsToGoogleRequest,Operation>

transferEntitlementsToGoogleOperationCallable()

public final OperationCallable<TransferEntitlementsToGoogleRequest,Empty,OperationMetadata> transferEntitlementsToGoogleOperationCallable()

Transfers customer entitlements from their current reseller to Google.

Possible error codes:

  • PERMISSION_DENIED: The customer doesn't belong to the reseller.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The customer or offer resource was not found.
  • ALREADY_EXISTS: The SKU was already transferred for the customer.
  • CONDITION_NOT_MET or FAILED_PRECONDITION: * The SKU requires domain verification to transfer, but the domain is not verified. * An Add-On SKU (example, Vault or Drive) is missing the pre-requisite SKU (example, G Suite Basic). * (Developer accounts only) Reseller and resold domain must meet the following naming requirements: * Domain names must start with goog-test. * Domain names must include the reseller domain.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The ID of a long-running operation.

To get the results of the operation, call the GetOperation method of CloudChannelOperationsService. The response will contain google.protobuf.Empty on success. The Operation metadata will contain an instance of OperationMetadata.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   TransferEntitlementsToGoogleRequest request =
       TransferEntitlementsToGoogleRequest.newBuilder()
           .setParent("parent-995424086")
           .addAllEntitlements(new ArrayList<Entitlement>())
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<Empty, OperationMetadata> future =
       cloudChannelServiceClient
           .transferEntitlementsToGoogleOperationCallable()
           .futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
OperationCallable<TransferEntitlementsToGoogleRequest,Empty,OperationMetadata>

unregisterSubscriber(UnregisterSubscriberRequest request)

public final UnregisterSubscriberResponse unregisterSubscriber(UnregisterSubscriberRequest request)

Unregisters a service account with subscriber privileges on the Cloud Pub/Sub topic created for this Channel Services account. If there are no service accounts left with subscriber privileges, this deletes the topic. You can call ListSubscribers to check for these accounts.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The topic resource doesn't exist.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The topic name that unregistered the service email address. Returns a success response if the service email address wasn't registered with the topic.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UnregisterSubscriberRequest request =
       UnregisterSubscriberRequest.newBuilder()
           .setAccount("account-1177318867")
           .setServiceAccount("serviceAccount1079137720")
           .build();
   UnregisterSubscriberResponse response =
       cloudChannelServiceClient.unregisterSubscriber(request);
 }
 
Parameter
NameDescription
requestUnregisterSubscriberRequest

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

Returns
TypeDescription
UnregisterSubscriberResponse

unregisterSubscriberCallable()

public final UnaryCallable<UnregisterSubscriberRequest,UnregisterSubscriberResponse> unregisterSubscriberCallable()

Unregisters a service account with subscriber privileges on the Cloud Pub/Sub topic created for this Channel Services account. If there are no service accounts left with subscriber privileges, this deletes the topic. You can call ListSubscribers to check for these accounts.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request and the provided reseller account are different, or the impersonated user is not a super admin.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: The topic resource doesn't exist.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The topic name that unregistered the service email address. Returns a success response if the service email address wasn't registered with the topic.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UnregisterSubscriberRequest request =
       UnregisterSubscriberRequest.newBuilder()
           .setAccount("account-1177318867")
           .setServiceAccount("serviceAccount1079137720")
           .build();
   ApiFuture<UnregisterSubscriberResponse> future =
       cloudChannelServiceClient.unregisterSubscriberCallable().futureCall(request);
   // Do something.
   UnregisterSubscriberResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UnregisterSubscriberRequest,UnregisterSubscriberResponse>
public final ChannelPartnerLink updateChannelPartnerLink(UpdateChannelPartnerLinkRequest request)

Updates a channel partner link. Distributors call this method to change a link's status. For example, to suspend a partner link. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * Link state cannot change from invited to active or suspended. * Cannot send reseller_cloud_identity_id, invite_url, or name in update mask.
  • NOT_FOUND: ChannelPartnerLink resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The updated ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateChannelPartnerLinkRequest request =
       UpdateChannelPartnerLinkRequest.newBuilder()
           .setName("name3373707")
           .setChannelPartnerLink(ChannelPartnerLink.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ChannelPartnerLink response = cloudChannelServiceClient.updateChannelPartnerLink(request);
 }
 
Parameter
NameDescription
requestUpdateChannelPartnerLinkRequest

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

Returns
TypeDescription
ChannelPartnerLink

updateChannelPartnerLinkCallable()

public final UnaryCallable<UpdateChannelPartnerLinkRequest,ChannelPartnerLink> updateChannelPartnerLinkCallable()

Updates a channel partner link. Distributors call this method to change a link's status. For example, to suspend a partner link. You must be a distributor to call this method.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: * Required request parameters are missing or invalid. * Link state cannot change from invited to active or suspended. * Cannot send reseller_cloud_identity_id, invite_url, or name in update mask.
  • NOT_FOUND: ChannelPartnerLink resource not found.
  • INTERNAL: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.
  • UNKNOWN: Any non-user error related to a technical issue in the backend. Contact Cloud Channel support.

Return value: The updated ChannelPartnerLink resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateChannelPartnerLinkRequest request =
       UpdateChannelPartnerLinkRequest.newBuilder()
           .setName("name3373707")
           .setChannelPartnerLink(ChannelPartnerLink.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<ChannelPartnerLink> future =
       cloudChannelServiceClient.updateChannelPartnerLinkCallable().futureCall(request);
   // Do something.
   ChannelPartnerLink response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateChannelPartnerLinkRequest,ChannelPartnerLink>

updateChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

public final ChannelPartnerRepricingConfig updateChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig channelPartnerRepricingConfig)

Updates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateChannelPartnerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   ChannelPartnerRepricingConfig channelPartnerRepricingConfig =
       ChannelPartnerRepricingConfig.newBuilder().build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.updateChannelPartnerRepricingConfig(
           channelPartnerRepricingConfig);
 }
 
Parameter
NameDescription
channelPartnerRepricingConfigChannelPartnerRepricingConfig

Required. The ChannelPartnerRepricingConfig object to update.

Returns
TypeDescription
ChannelPartnerRepricingConfig

updateChannelPartnerRepricingConfig(UpdateChannelPartnerRepricingConfigRequest request)

public final ChannelPartnerRepricingConfig updateChannelPartnerRepricingConfig(UpdateChannelPartnerRepricingConfigRequest request)

Updates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateChannelPartnerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateChannelPartnerRepricingConfigRequest request =
       UpdateChannelPartnerRepricingConfigRequest.newBuilder()
           .setChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig.newBuilder().build())
           .build();
   ChannelPartnerRepricingConfig response =
       cloudChannelServiceClient.updateChannelPartnerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestUpdateChannelPartnerRepricingConfigRequest

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

Returns
TypeDescription
ChannelPartnerRepricingConfig

updateChannelPartnerRepricingConfigCallable()

public final UnaryCallable<UpdateChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig> updateChannelPartnerRepricingConfigCallable()

Updates a ChannelPartnerRepricingConfig. Call this method to set modifications for a specific ChannelPartner's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateChannelPartnerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The ChannelPartnerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated ChannelPartnerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateChannelPartnerRepricingConfigRequest request =
       UpdateChannelPartnerRepricingConfigRequest.newBuilder()
           .setChannelPartnerRepricingConfig(ChannelPartnerRepricingConfig.newBuilder().build())
           .build();
   ApiFuture<ChannelPartnerRepricingConfig> future =
       cloudChannelServiceClient
           .updateChannelPartnerRepricingConfigCallable()
           .futureCall(request);
   // Do something.
   ChannelPartnerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateChannelPartnerRepricingConfigRequest,ChannelPartnerRepricingConfig>

updateCustomer(UpdateCustomerRequest request)

public final Customer updateCustomer(UpdateCustomerRequest request)

Updates an existing Customer resource for the reseller or distributor.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: No Customer resource found for the name in the request.

Return value: The updated Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateCustomerRequest request =
       UpdateCustomerRequest.newBuilder()
           .setCustomer(Customer.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   Customer response = cloudChannelServiceClient.updateCustomer(request);
 }
 
Parameter
NameDescription
requestUpdateCustomerRequest

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

Returns
TypeDescription
Customer

updateCustomerCallable()

public final UnaryCallable<UpdateCustomerRequest,Customer> updateCustomerCallable()

Updates an existing Customer resource for the reseller or distributor.

Possible error codes:

  • PERMISSION_DENIED: The reseller account making the request is different from the reseller account in the API request.
  • INVALID_ARGUMENT: Required request parameters are missing or invalid.
  • NOT_FOUND: No Customer resource found for the name in the request.

Return value: The updated Customer resource.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateCustomerRequest request =
       UpdateCustomerRequest.newBuilder()
           .setCustomer(Customer.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<Customer> future =
       cloudChannelServiceClient.updateCustomerCallable().futureCall(request);
   // Do something.
   Customer response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateCustomerRequest,Customer>

updateCustomerRepricingConfig(CustomerRepricingConfig customerRepricingConfig)

public final CustomerRepricingConfig updateCustomerRepricingConfig(CustomerRepricingConfig customerRepricingConfig)

Updates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateCustomerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   CustomerRepricingConfig customerRepricingConfig =
       CustomerRepricingConfig.newBuilder().build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.updateCustomerRepricingConfig(customerRepricingConfig);
 }
 
Parameter
NameDescription
customerRepricingConfigCustomerRepricingConfig

Required. The CustomerRepricingConfig object to update.

Returns
TypeDescription
CustomerRepricingConfig

updateCustomerRepricingConfig(UpdateCustomerRepricingConfigRequest request)

public final CustomerRepricingConfig updateCustomerRepricingConfig(UpdateCustomerRepricingConfigRequest request)

Updates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateCustomerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateCustomerRepricingConfigRequest request =
       UpdateCustomerRepricingConfigRequest.newBuilder()
           .setCustomerRepricingConfig(CustomerRepricingConfig.newBuilder().build())
           .build();
   CustomerRepricingConfig response =
       cloudChannelServiceClient.updateCustomerRepricingConfig(request);
 }
 
Parameter
NameDescription
requestUpdateCustomerRepricingConfigRequest

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

Returns
TypeDescription
CustomerRepricingConfig

updateCustomerRepricingConfigCallable()

public final UnaryCallable<UpdateCustomerRepricingConfigRequest,CustomerRepricingConfig> updateCustomerRepricingConfigCallable()

Updates a CustomerRepricingConfig. Call this method to set modifications for a specific customer's bill. This method overwrites the existing CustomerRepricingConfig.

You can only update configs if the RepricingConfig.effective_invoice_month is a future month. To make changes to configs for the current month, use CreateCustomerRepricingConfig, taking note of its restrictions. You cannot update the RepricingConfig.effective_invoice_month.

When updating a config in the future:

  • This config must already exist.

Possible Error Codes:

  • PERMISSION_DENIED: If the account making the request and the account being queried are different.
  • INVALID_ARGUMENT: Missing or invalid required parameters in the request. Also displays if the updated config is for the current month or past months.
  • NOT_FOUND: The CustomerRepricingConfig specified does not exist or is not associated with the given account.
  • INTERNAL: Any non-user error related to technical issues in the backend. In this case, contact Cloud Channel support.

Return Value: If successful, the updated CustomerRepricingConfig resource, otherwise returns an error.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (CloudChannelServiceClient cloudChannelServiceClient = CloudChannelServiceClient.create()) {
   UpdateCustomerRepricingConfigRequest request =
       UpdateCustomerRepricingConfigRequest.newBuilder()
           .setCustomerRepricingConfig(CustomerRepricingConfig.newBuilder().build())
           .build();
   ApiFuture<CustomerRepricingConfig> future =
       cloudChannelServiceClient.updateCustomerRepricingConfigCallable().futureCall(request);
   // Do something.
   CustomerRepricingConfig response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateCustomerRepricingConfigRequest,CustomerRepricingConfig>