Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
chore: update Java and Python dependencies (#621)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 408420890

Source-Link: googleapis/googleapis@2921f9f

Source-Link: googleapis/googleapis-gen@6598ca8
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjU5OGNhOGNiYmY1MjI2NzMzYTA5OWM0NTA2NTE4YTVhZjZmZjc0YyJ9
  • Loading branch information
gcf-owl-bot[bot] committed Nov 10, 2021
1 parent a380697 commit 2450437
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
Expand Up @@ -188,7 +188,7 @@ public final Budget createBudget(BillingAccountName parent, Budget budget) {
*
* <pre>{@code
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* String parent = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString();
* String parent = BillingAccountName.of("[BILLING_ACCOUNT]").toString();
* Budget budget = Budget.newBuilder().build();
* Budget response = budgetServiceClient.createBudget(parent, budget);
* }
Expand Down Expand Up @@ -216,7 +216,7 @@ public final Budget createBudget(String parent, Budget budget) {
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* CreateBudgetRequest request =
* CreateBudgetRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setBudget(Budget.newBuilder().build())
* .build();
* Budget response = budgetServiceClient.createBudget(request);
Expand All @@ -241,7 +241,7 @@ public final Budget createBudget(CreateBudgetRequest request) {
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* CreateBudgetRequest request =
* CreateBudgetRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setBudget(Budget.newBuilder().build())
* .build();
* ApiFuture<Budget> future = budgetServiceClient.createBudgetCallable().futureCall(request);
Expand Down Expand Up @@ -488,7 +488,7 @@ public final ListBudgetsPagedResponse listBudgets(BillingAccountName parent) {
*
* <pre>{@code
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* String parent = BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString();
* String parent = BillingAccountName.of("[BILLING_ACCOUNT]").toString();
* for (Budget element : budgetServiceClient.listBudgets(parent).iterateAll()) {
* // doThingsWith(element);
* }
Expand Down Expand Up @@ -518,7 +518,7 @@ public final ListBudgetsPagedResponse listBudgets(String parent) {
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* ListBudgetsRequest request =
* ListBudgetsRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
Expand Down Expand Up @@ -549,7 +549,7 @@ public final ListBudgetsPagedResponse listBudgets(ListBudgetsRequest request) {
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* ListBudgetsRequest request =
* ListBudgetsRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
Expand Down Expand Up @@ -580,7 +580,7 @@ public final ListBudgetsPagedResponse listBudgets(ListBudgetsRequest request) {
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* ListBudgetsRequest request =
* ListBudgetsRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setPageSize(883849137)
* .setPageToken("pageToken873572522")
* .build();
Expand Down
Expand Up @@ -28,7 +28,7 @@
* try (BudgetServiceClient budgetServiceClient = BudgetServiceClient.create()) {
* CreateBudgetRequest request =
* CreateBudgetRequest.newBuilder()
* .setParent(BudgetName.of("[BILLING_ACCOUNT]", "[BUDGET]").toString())
* .setParent(BillingAccountName.of("[BILLING_ACCOUNT]").toString())
* .setBudget(Budget.newBuilder().build())
* .build();
* Budget response = budgetServiceClient.createBudget(request);
Expand Down
Expand Up @@ -28,6 +28,7 @@
@javax.annotation.Generated(
value = "by gRPC proto compiler",
comments = "Source: google/cloud/billing/budgets/v1/budget_service.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class BudgetServiceGrpc {

private BudgetServiceGrpc() {}
Expand Down
Expand Up @@ -28,6 +28,7 @@
@javax.annotation.Generated(
value = "by gRPC proto compiler",
comments = "Source: google/cloud/billing/budgets/v1beta1/budget_service.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class BudgetServiceGrpc {

private BudgetServiceGrpc() {}
Expand Down

0 comments on commit 2450437

Please sign in to comment.