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

Commit

Permalink
chore: update gax-java dependency to 1.62 (#378)
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/3f6ca683-ffe3-4731-b15d-91fc1937c0e0/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 21f538c commit d4123c8
Show file tree
Hide file tree
Showing 9 changed files with 337 additions and 315 deletions.

Large diffs are not rendered by default.

Expand Up @@ -16,11 +16,6 @@
package com.google.cloud.gaming.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 @@ -309,7 +304,8 @@ public void listGameServerConfigs(
com.google.cloud.gaming.v1.ListGameServerConfigsRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.gaming.v1.ListGameServerConfigsResponse>
responseObserver) {
asyncUnimplementedUnaryCall(getListGameServerConfigsMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getListGameServerConfigsMethod(), responseObserver);
}

/**
Expand All @@ -322,7 +318,8 @@ public void listGameServerConfigs(
public void getGameServerConfig(
com.google.cloud.gaming.v1.GetGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.gaming.v1.GameServerConfig> responseObserver) {
asyncUnimplementedUnaryCall(getGetGameServerConfigMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getGetGameServerConfigMethod(), responseObserver);
}

/**
Expand All @@ -337,7 +334,8 @@ public void getGameServerConfig(
public void createGameServerConfig(
com.google.cloud.gaming.v1.CreateGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver) {
asyncUnimplementedUnaryCall(getCreateGameServerConfigMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getCreateGameServerConfigMethod(), responseObserver);
}

/**
Expand All @@ -351,35 +349,36 @@ public void createGameServerConfig(
public void deleteGameServerConfig(
com.google.cloud.gaming.v1.DeleteGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver) {
asyncUnimplementedUnaryCall(getDeleteGameServerConfigMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getDeleteGameServerConfigMethod(), responseObserver);
}

@java.lang.Override
public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getListGameServerConfigsMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.gaming.v1.ListGameServerConfigsRequest,
com.google.cloud.gaming.v1.ListGameServerConfigsResponse>(
this, METHODID_LIST_GAME_SERVER_CONFIGS)))
.addMethod(
getGetGameServerConfigMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.gaming.v1.GetGameServerConfigRequest,
com.google.cloud.gaming.v1.GameServerConfig>(
this, METHODID_GET_GAME_SERVER_CONFIG)))
.addMethod(
getCreateGameServerConfigMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.gaming.v1.CreateGameServerConfigRequest,
com.google.longrunning.Operation>(this, METHODID_CREATE_GAME_SERVER_CONFIG)))
.addMethod(
getDeleteGameServerConfigMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.gaming.v1.DeleteGameServerConfigRequest,
com.google.longrunning.Operation>(this, METHODID_DELETE_GAME_SERVER_CONFIG)))
Expand Down Expand Up @@ -418,7 +417,7 @@ public void listGameServerConfigs(
com.google.cloud.gaming.v1.ListGameServerConfigsRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.gaming.v1.ListGameServerConfigsResponse>
responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getListGameServerConfigsMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -434,7 +433,7 @@ public void listGameServerConfigs(
public void getGameServerConfig(
com.google.cloud.gaming.v1.GetGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.gaming.v1.GameServerConfig> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGetGameServerConfigMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -452,7 +451,7 @@ public void getGameServerConfig(
public void createGameServerConfig(
com.google.cloud.gaming.v1.CreateGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getCreateGameServerConfigMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -469,7 +468,7 @@ public void createGameServerConfig(
public void deleteGameServerConfig(
com.google.cloud.gaming.v1.DeleteGameServerConfigRequest request,
io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getDeleteGameServerConfigMethod(), getCallOptions()),
request,
responseObserver);
Expand Down Expand Up @@ -506,7 +505,7 @@ protected GameServerConfigsServiceBlockingStub build(
*/
public com.google.cloud.gaming.v1.ListGameServerConfigsResponse listGameServerConfigs(
com.google.cloud.gaming.v1.ListGameServerConfigsRequest request) {
return blockingUnaryCall(
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getListGameServerConfigsMethod(), getCallOptions(), request);
}

Expand All @@ -519,7 +518,7 @@ public com.google.cloud.gaming.v1.ListGameServerConfigsResponse listGameServerCo
*/
public com.google.cloud.gaming.v1.GameServerConfig getGameServerConfig(
com.google.cloud.gaming.v1.GetGameServerConfigRequest request) {
return blockingUnaryCall(
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGetGameServerConfigMethod(), getCallOptions(), request);
}

Expand All @@ -534,7 +533,7 @@ public com.google.cloud.gaming.v1.GameServerConfig getGameServerConfig(
*/
public com.google.longrunning.Operation createGameServerConfig(
com.google.cloud.gaming.v1.CreateGameServerConfigRequest request) {
return blockingUnaryCall(
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getCreateGameServerConfigMethod(), getCallOptions(), request);
}

Expand All @@ -548,7 +547,7 @@ public com.google.longrunning.Operation createGameServerConfig(
*/
public com.google.longrunning.Operation deleteGameServerConfig(
com.google.cloud.gaming.v1.DeleteGameServerConfigRequest request) {
return blockingUnaryCall(
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getDeleteGameServerConfigMethod(), getCallOptions(), request);
}
}
Expand Down Expand Up @@ -584,7 +583,7 @@ protected GameServerConfigsServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.gaming.v1.ListGameServerConfigsResponse>
listGameServerConfigs(com.google.cloud.gaming.v1.ListGameServerConfigsRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getListGameServerConfigsMethod(), getCallOptions()), request);
}

Expand All @@ -598,7 +597,7 @@ protected GameServerConfigsServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.gaming.v1.GameServerConfig>
getGameServerConfig(com.google.cloud.gaming.v1.GetGameServerConfigRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGetGameServerConfigMethod(), getCallOptions()), request);
}

Expand All @@ -613,7 +612,7 @@ protected GameServerConfigsServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
createGameServerConfig(com.google.cloud.gaming.v1.CreateGameServerConfigRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getCreateGameServerConfigMethod(), getCallOptions()), request);
}

Expand All @@ -627,7 +626,7 @@ protected GameServerConfigsServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation>
deleteGameServerConfig(com.google.cloud.gaming.v1.DeleteGameServerConfigRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getDeleteGameServerConfigMethod(), getCallOptions()), request);
}
}
Expand Down

0 comments on commit d4123c8

Please sign in to comment.