Class BudgetServiceClient (2.2.0)

public class BudgetServiceClient implements BackgroundResource

Service Description: BudgetService stores Cloud Billing budgets, which define a budget plan and rules to execute as we track spend against that plan.

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 (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   BillingAccountName parent = BillingAccountName.of("[BILLING_ACCOUNT]");
   Budget budget = Budget.newBuilder().build();
   Budget response = budgetServiceClient.createBudget(parent, budget);
 }
 

Note: close() needs to be called on the BudgetServiceClient 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 BudgetServiceSettings 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.
 BudgetServiceSettings budgetServiceSettings =
     BudgetServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 BudgetServiceClient budgetServiceClient = BudgetServiceClient.create(budgetServiceSettings);
 

To customize the endpoint:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 BudgetServiceSettings budgetServiceSettings =
     BudgetServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 BudgetServiceClient budgetServiceClient = BudgetServiceClient.create(budgetServiceSettings);
 

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

Inheritance

java.lang.Object > BudgetServiceClient

Implements

BackgroundResource

Static Methods

create()

public static final BudgetServiceClient create()

Constructs an instance of BudgetServiceClient with default settings.

Returns
TypeDescription
BudgetServiceClient
Exceptions
TypeDescription
IOException

create(BudgetServiceSettings settings)

public static final BudgetServiceClient create(BudgetServiceSettings settings)

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

create(BudgetServiceStub stub)

public static final BudgetServiceClient create(BudgetServiceStub stub)

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

Parameter
NameDescription
stubBudgetServiceStub
Returns
TypeDescription
BudgetServiceClient

Constructors

BudgetServiceClient(BudgetServiceSettings settings)

protected BudgetServiceClient(BudgetServiceSettings settings)

Constructs an instance of BudgetServiceClient, 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
settingsBudgetServiceSettings

BudgetServiceClient(BudgetServiceStub stub)

protected BudgetServiceClient(BudgetServiceStub stub)
Parameter
NameDescription
stubBudgetServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

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

close()

public final void close()

createBudget(BillingAccountName parent, Budget budget)

public final Budget createBudget(BillingAccountName parent, Budget budget)

Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   BillingAccountName parent = BillingAccountName.of("[BILLING_ACCOUNT]");
   Budget budget = Budget.newBuilder().build();
   Budget response = budgetServiceClient.createBudget(parent, budget);
 }
 
Parameters
NameDescription
parentBillingAccountName

Required. The name of the billing account to create the budget in. Values are of the form billingAccounts/{billingAccountId}.

budgetBudget

Required. Budget to create.

Returns
TypeDescription
Budget

createBudget(CreateBudgetRequest request)

public final Budget createBudget(CreateBudgetRequest request)

Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   CreateBudgetRequest request =
       CreateBudgetRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setBudget(Budget.newBuilder().build())
           .build();
   Budget response = budgetServiceClient.createBudget(request);
 }
 
Parameter
NameDescription
requestCreateBudgetRequest

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

Returns
TypeDescription
Budget

createBudget(String parent, Budget budget)

public final Budget createBudget(String parent, Budget budget)

Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   String parent = BillingAccountName.of("[BILLING_ACCOUNT]").toString();
   Budget budget = Budget.newBuilder().build();
   Budget response = budgetServiceClient.createBudget(parent, budget);
 }
 
Parameters
NameDescription
parentString

Required. The name of the billing account to create the budget in. Values are of the form billingAccounts/{billingAccountId}.

budgetBudget

Required. Budget to create.

Returns
TypeDescription
Budget

createBudgetCallable()

public final UnaryCallable<CreateBudgetRequest,Budget> createBudgetCallable()

Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   CreateBudgetRequest request =
       CreateBudgetRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setBudget(Budget.newBuilder().build())
           .build();
   ApiFuture<Budget> future = budgetServiceClient.createBudgetCallable().futureCall(request);
   // Do something.
   Budget response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateBudgetRequest,Budget>

deleteBudget(BudgetName name)

public final void deleteBudget(BudgetName name)

Deletes a budget. Returns successfully if already deleted.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   BudgetName name = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]");
   budgetServiceClient.deleteBudget(name);
 }
 
Parameter
NameDescription
nameBudgetName

Required. Name of the budget to delete. Values are of the form billingAccounts/{billingAccountId}/budgets/{budgetId}.

deleteBudget(DeleteBudgetRequest request)

public final void deleteBudget(DeleteBudgetRequest request)

Deletes a budget. Returns successfully if already deleted.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   DeleteBudgetRequest request =
       DeleteBudgetRequest.newBuilder()
           .setName(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
           .build();
   budgetServiceClient.deleteBudget(request);
 }
 
Parameter
NameDescription
requestDeleteBudgetRequest

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

deleteBudget(String name)

public final void deleteBudget(String name)

Deletes a budget. Returns successfully if already deleted.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   String name = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString();
   budgetServiceClient.deleteBudget(name);
 }
 
Parameter
NameDescription
nameString

Required. Name of the budget to delete. Values are of the form billingAccounts/{billingAccountId}/budgets/{budgetId}.

deleteBudgetCallable()

public final UnaryCallable<DeleteBudgetRequest,Empty> deleteBudgetCallable()

Deletes a budget. Returns successfully if already deleted.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   DeleteBudgetRequest request =
       DeleteBudgetRequest.newBuilder()
           .setName(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
           .build();
   ApiFuture<Empty> future = budgetServiceClient.deleteBudgetCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteBudgetRequest,Empty>

getBudget(BudgetName name)

public final Budget getBudget(BudgetName name)

Returns a budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   BudgetName name = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]");
   Budget response = budgetServiceClient.getBudget(name);
 }
 
Parameter
NameDescription
nameBudgetName

Required. Name of budget to get. Values are of the form billingAccounts/{billingAccountId}/budgets/{budgetId}.

Returns
TypeDescription
Budget

getBudget(GetBudgetRequest request)

public final Budget getBudget(GetBudgetRequest request)

Returns a budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   GetBudgetRequest request =
       GetBudgetRequest.newBuilder()
           .setName(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
           .build();
   Budget response = budgetServiceClient.getBudget(request);
 }
 
Parameter
NameDescription
requestGetBudgetRequest

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

Returns
TypeDescription
Budget

getBudget(String name)

public final Budget getBudget(String name)

Returns a budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   String name = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString();
   Budget response = budgetServiceClient.getBudget(name);
 }
 
Parameter
NameDescription
nameString

Required. Name of budget to get. Values are of the form billingAccounts/{billingAccountId}/budgets/{budgetId}.

Returns
TypeDescription
Budget

getBudgetCallable()

public final UnaryCallable<GetBudgetRequest,Budget> getBudgetCallable()

Returns a budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   GetBudgetRequest request =
       GetBudgetRequest.newBuilder()
           .setName(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
           .build();
   ApiFuture<Budget> future = budgetServiceClient.getBudgetCallable().futureCall(request);
   // Do something.
   Budget response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetBudgetRequest,Budget>

getSettings()

public final BudgetServiceSettings getSettings()
Returns
TypeDescription
BudgetServiceSettings

getStub()

public BudgetServiceStub getStub()
Returns
TypeDescription
BudgetServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listBudgets(BillingAccountName parent)

public final BudgetServiceClient.ListBudgetsPagedResponse listBudgets(BillingAccountName parent)

Returns a list of budgets for a billing account.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   BillingAccountName parent = BillingAccountName.of("[BILLING_ACCOUNT]");
   for (Budget element : budgetServiceClient.listBudgets(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentBillingAccountName

Required. Name of billing account to list budgets under. Values are of the form billingAccounts/{billingAccountId}.

Returns
TypeDescription
BudgetServiceClient.ListBudgetsPagedResponse

listBudgets(ListBudgetsRequest request)

public final BudgetServiceClient.ListBudgetsPagedResponse listBudgets(ListBudgetsRequest request)

Returns a list of budgets for a billing account.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   ListBudgetsRequest request =
       ListBudgetsRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Budget element : budgetServiceClient.listBudgets(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListBudgetsRequest

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

Returns
TypeDescription
BudgetServiceClient.ListBudgetsPagedResponse

listBudgets(String parent)

public final BudgetServiceClient.ListBudgetsPagedResponse listBudgets(String parent)

Returns a list of budgets for a billing account.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   String parent = BillingAccountName.of("[BILLING_ACCOUNT]").toString();
   for (Budget element : budgetServiceClient.listBudgets(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. Name of billing account to list budgets under. Values are of the form billingAccounts/{billingAccountId}.

Returns
TypeDescription
BudgetServiceClient.ListBudgetsPagedResponse

listBudgetsCallable()

public final UnaryCallable<ListBudgetsRequest,ListBudgetsResponse> listBudgetsCallable()

Returns a list of budgets for a billing account.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   ListBudgetsRequest request =
       ListBudgetsRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListBudgetsResponse response = budgetServiceClient.listBudgetsCallable().call(request);
     for (Budget element : response.getResponsesList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListBudgetsRequest,ListBudgetsResponse>

listBudgetsPagedCallable()

public final UnaryCallable<ListBudgetsRequest,BudgetServiceClient.ListBudgetsPagedResponse> listBudgetsPagedCallable()

Returns a list of budgets for a billing account.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. When reading from the API, you will not see these fields in the return value, though they may have been set in the Cloud Console.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   ListBudgetsRequest request =
       ListBudgetsRequest.newBuilder()
           .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Budget> future = budgetServiceClient.listBudgetsPagedCallable().futureCall(request);
   // Do something.
   for (Budget element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListBudgetsRequest,ListBudgetsPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateBudget(Budget budget, FieldMask updateMask)

public final Budget updateBudget(Budget budget, FieldMask updateMask)

Updates a budget and returns the updated budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. Budget fields that are not exposed in this API will not be changed by this method.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   Budget budget = Budget.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   Budget response = budgetServiceClient.updateBudget(budget, updateMask);
 }
 
Parameters
NameDescription
budgetBudget

Required. The updated budget object. The budget to update is specified by the budget name in the budget.

updateMaskFieldMask

Optional. Indicates which fields in the provided budget to update. Read-only fields (such as name) cannot be changed. If this is not provided, then only fields with non-default values from the request are updated. See https://developers.google.com/protocol-buffers/docs/proto3#default for more details about default values.

Returns
TypeDescription
Budget

updateBudget(UpdateBudgetRequest request)

public final Budget updateBudget(UpdateBudgetRequest request)

Updates a budget and returns the updated budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. Budget fields that are not exposed in this API will not be changed by this method.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   UpdateBudgetRequest request =
       UpdateBudgetRequest.newBuilder()
           .setBudget(Budget.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   Budget response = budgetServiceClient.updateBudget(request);
 }
 
Parameter
NameDescription
requestUpdateBudgetRequest

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

Returns
TypeDescription
Budget

updateBudgetCallable()

public final UnaryCallable<UpdateBudgetRequest,Budget> updateBudgetCallable()

Updates a budget and returns the updated budget.

WARNING: There are some fields exposed on the Google Cloud Console that aren't available on this API. Budget fields that are not exposed in this API will not be changed by this method.

Sample code:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
   UpdateBudgetRequest request =
       UpdateBudgetRequest.newBuilder()
           .setBudget(Budget.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<Budget> future = budgetServiceClient.updateBudgetCallable().futureCall(request);
   // Do something.
   Budget response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateBudgetRequest,Budget>