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

Commit

Permalink
chore: update gax-java dependency to 1.62 (#417)
Browse files Browse the repository at this point in the history
This PR was generated using Autosynth. 🌈

Synth log will be available here:
https://source.cloud.google.com/results/invocations/fb4d0c25-9954-4a13-bd64-deb2f0d5f0d5/targets

- [ ] To automatically regenerate this PR, check this box.

PiperOrigin-RevId: 361377784
Source-Link: googleapis/googleapis@0e91521
  • Loading branch information
yoshi-automation committed Mar 8, 2021
1 parent 518f5e2 commit 14ae296
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 65 deletions.
Expand Up @@ -16,11 +16,6 @@
package com.google.cloud.billing.budgets.v1;

import static io.grpc.MethodDescriptor.generateFullMethodName;
import static io.grpc.stub.ClientCalls.asyncUnaryCall;
import static io.grpc.stub.ClientCalls.blockingUnaryCall;
import static io.grpc.stub.ClientCalls.futureUnaryCall;
import static io.grpc.stub.ServerCalls.asyncUnaryCall;
import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;

/**
*
Expand Down Expand Up @@ -329,7 +324,8 @@ public abstract static class BudgetServiceImplBase implements io.grpc.BindableSe
public void createBudget(
com.google.cloud.billing.budgets.v1.CreateBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnimplementedUnaryCall(getCreateBudgetMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getCreateBudgetMethod(), responseObserver);
}

/**
Expand All @@ -345,7 +341,8 @@ public void createBudget(
public void updateBudget(
com.google.cloud.billing.budgets.v1.UpdateBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnimplementedUnaryCall(getUpdateBudgetMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getUpdateBudgetMethod(), responseObserver);
}

/**
Expand All @@ -362,7 +359,7 @@ public void updateBudget(
public void getBudget(
com.google.cloud.billing.budgets.v1.GetBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnimplementedUnaryCall(getGetBudgetMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGetBudgetMethod(), responseObserver);
}

/**
Expand All @@ -380,7 +377,8 @@ public void listBudgets(
com.google.cloud.billing.budgets.v1.ListBudgetsRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.ListBudgetsResponse>
responseObserver) {
asyncUnimplementedUnaryCall(getListBudgetsMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getListBudgetsMethod(), responseObserver);
}

/**
Expand All @@ -393,40 +391,41 @@ public void listBudgets(
public void deleteBudget(
com.google.cloud.billing.budgets.v1.DeleteBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver) {
asyncUnimplementedUnaryCall(getDeleteBudgetMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getDeleteBudgetMethod(), responseObserver);
}

@java.lang.Override
public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getCreateBudgetMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.billing.budgets.v1.CreateBudgetRequest,
com.google.cloud.billing.budgets.v1.Budget>(this, METHODID_CREATE_BUDGET)))
.addMethod(
getUpdateBudgetMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.billing.budgets.v1.UpdateBudgetRequest,
com.google.cloud.billing.budgets.v1.Budget>(this, METHODID_UPDATE_BUDGET)))
.addMethod(
getGetBudgetMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.billing.budgets.v1.GetBudgetRequest,
com.google.cloud.billing.budgets.v1.Budget>(this, METHODID_GET_BUDGET)))
.addMethod(
getListBudgetsMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.billing.budgets.v1.ListBudgetsRequest,
com.google.cloud.billing.budgets.v1.ListBudgetsResponse>(
this, METHODID_LIST_BUDGETS)))
.addMethod(
getDeleteBudgetMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.billing.budgets.v1.DeleteBudgetRequest,
com.google.protobuf.Empty>(this, METHODID_DELETE_BUDGET)))
Expand Down Expand Up @@ -465,7 +464,7 @@ protected BudgetServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions c
public void createBudget(
com.google.cloud.billing.budgets.v1.CreateBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getCreateBudgetMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -484,7 +483,7 @@ public void createBudget(
public void updateBudget(
com.google.cloud.billing.budgets.v1.UpdateBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getUpdateBudgetMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -504,7 +503,7 @@ public void updateBudget(
public void getBudget(
com.google.cloud.billing.budgets.v1.GetBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.Budget> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGetBudgetMethod(), getCallOptions()), request, responseObserver);
}

Expand All @@ -523,7 +522,7 @@ public void listBudgets(
com.google.cloud.billing.budgets.v1.ListBudgetsRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.billing.budgets.v1.ListBudgetsResponse>
responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getListBudgetsMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -539,7 +538,7 @@ public void listBudgets(
public void deleteBudget(
com.google.cloud.billing.budgets.v1.DeleteBudgetRequest request,
io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getDeleteBudgetMethod(), getCallOptions()),
request,
responseObserver);
Expand Down Expand Up @@ -577,7 +576,8 @@ protected BudgetServiceBlockingStub build(
*/
public com.google.cloud.billing.budgets.v1.Budget createBudget(
com.google.cloud.billing.budgets.v1.CreateBudgetRequest request) {
return blockingUnaryCall(getChannel(), getCreateBudgetMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getCreateBudgetMethod(), getCallOptions(), request);
}

/**
Expand All @@ -592,7 +592,8 @@ public com.google.cloud.billing.budgets.v1.Budget createBudget(
*/
public com.google.cloud.billing.budgets.v1.Budget updateBudget(
com.google.cloud.billing.budgets.v1.UpdateBudgetRequest request) {
return blockingUnaryCall(getChannel(), getUpdateBudgetMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getUpdateBudgetMethod(), getCallOptions(), request);
}

/**
Expand All @@ -608,7 +609,8 @@ public com.google.cloud.billing.budgets.v1.Budget updateBudget(
*/
public com.google.cloud.billing.budgets.v1.Budget getBudget(
com.google.cloud.billing.budgets.v1.GetBudgetRequest request) {
return blockingUnaryCall(getChannel(), getGetBudgetMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGetBudgetMethod(), getCallOptions(), request);
}

/**
Expand All @@ -624,7 +626,8 @@ public com.google.cloud.billing.budgets.v1.Budget getBudget(
*/
public com.google.cloud.billing.budgets.v1.ListBudgetsResponse listBudgets(
com.google.cloud.billing.budgets.v1.ListBudgetsRequest request) {
return blockingUnaryCall(getChannel(), getListBudgetsMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getListBudgetsMethod(), getCallOptions(), request);
}

/**
Expand All @@ -636,7 +639,8 @@ public com.google.cloud.billing.budgets.v1.ListBudgetsResponse listBudgets(
*/
public com.google.protobuf.Empty deleteBudget(
com.google.cloud.billing.budgets.v1.DeleteBudgetRequest request) {
return blockingUnaryCall(getChannel(), getDeleteBudgetMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getDeleteBudgetMethod(), getCallOptions(), request);
}
}

Expand Down Expand Up @@ -672,7 +676,7 @@ protected BudgetServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.billing.budgets.v1.Budget>
createBudget(com.google.cloud.billing.budgets.v1.CreateBudgetRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getCreateBudgetMethod(), getCallOptions()), request);
}

Expand All @@ -689,7 +693,7 @@ protected BudgetServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.billing.budgets.v1.Budget>
updateBudget(com.google.cloud.billing.budgets.v1.UpdateBudgetRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getUpdateBudgetMethod(), getCallOptions()), request);
}

Expand All @@ -707,7 +711,8 @@ protected BudgetServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.billing.budgets.v1.Budget>
getBudget(com.google.cloud.billing.budgets.v1.GetBudgetRequest request) {
return futureUnaryCall(getChannel().newCall(getGetBudgetMethod(), getCallOptions()), request);
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGetBudgetMethod(), getCallOptions()), request);
}

/**
Expand All @@ -724,7 +729,7 @@ protected BudgetServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.billing.budgets.v1.ListBudgetsResponse>
listBudgets(com.google.cloud.billing.budgets.v1.ListBudgetsRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getListBudgetsMethod(), getCallOptions()), request);
}

Expand All @@ -737,7 +742,7 @@ protected BudgetServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty>
deleteBudget(com.google.cloud.billing.budgets.v1.DeleteBudgetRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getDeleteBudgetMethod(), getCallOptions()), request);
}
}
Expand Down

0 comments on commit 14ae296

Please sign in to comment.