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 (#440)
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/de8b7308-42e1-491a-9337-882343eb7261/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 1a6877c commit 759865e
Show file tree
Hide file tree
Showing 13 changed files with 377 additions and 340 deletions.
Expand Up @@ -16,11 +16,6 @@
package com.google.cloud.talent.v4;

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 @@ -311,7 +306,8 @@ public abstract static class CompanyServiceImplBase implements io.grpc.BindableS
public void createCompany(
com.google.cloud.talent.v4.CreateCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnimplementedUnaryCall(getCreateCompanyMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getCreateCompanyMethod(), responseObserver);
}

/**
Expand All @@ -324,7 +320,7 @@ public void createCompany(
public void getCompany(
com.google.cloud.talent.v4.GetCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnimplementedUnaryCall(getGetCompanyMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGetCompanyMethod(), responseObserver);
}

/**
Expand All @@ -337,7 +333,8 @@ public void getCompany(
public void updateCompany(
com.google.cloud.talent.v4.UpdateCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnimplementedUnaryCall(getUpdateCompanyMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getUpdateCompanyMethod(), responseObserver);
}

/**
Expand All @@ -351,7 +348,8 @@ public void updateCompany(
public void deleteCompany(
com.google.cloud.talent.v4.DeleteCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver) {
asyncUnimplementedUnaryCall(getDeleteCompanyMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getDeleteCompanyMethod(), responseObserver);
}

/**
Expand All @@ -365,39 +363,40 @@ public void listCompanies(
com.google.cloud.talent.v4.ListCompaniesRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.ListCompaniesResponse>
responseObserver) {
asyncUnimplementedUnaryCall(getListCompaniesMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getListCompaniesMethod(), responseObserver);
}

@java.lang.Override
public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getCreateCompanyMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.CreateCompanyRequest,
com.google.cloud.talent.v4.Company>(this, METHODID_CREATE_COMPANY)))
.addMethod(
getGetCompanyMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.GetCompanyRequest,
com.google.cloud.talent.v4.Company>(this, METHODID_GET_COMPANY)))
.addMethod(
getUpdateCompanyMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.UpdateCompanyRequest,
com.google.cloud.talent.v4.Company>(this, METHODID_UPDATE_COMPANY)))
.addMethod(
getDeleteCompanyMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.DeleteCompanyRequest, com.google.protobuf.Empty>(
this, METHODID_DELETE_COMPANY)))
.addMethod(
getListCompaniesMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.ListCompaniesRequest,
com.google.cloud.talent.v4.ListCompaniesResponse>(
Expand Down Expand Up @@ -434,7 +433,7 @@ protected CompanyServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions
public void createCompany(
com.google.cloud.talent.v4.CreateCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getCreateCompanyMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -450,7 +449,7 @@ public void createCompany(
public void getCompany(
com.google.cloud.talent.v4.GetCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGetCompanyMethod(), getCallOptions()), request, responseObserver);
}

Expand All @@ -464,7 +463,7 @@ public void getCompany(
public void updateCompany(
com.google.cloud.talent.v4.UpdateCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.Company> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getUpdateCompanyMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -481,7 +480,7 @@ public void updateCompany(
public void deleteCompany(
com.google.cloud.talent.v4.DeleteCompanyRequest request,
io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getDeleteCompanyMethod(), getCallOptions()),
request,
responseObserver);
Expand All @@ -498,7 +497,7 @@ public void listCompanies(
com.google.cloud.talent.v4.ListCompaniesRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.ListCompaniesResponse>
responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getListCompaniesMethod(), getCallOptions()),
request,
responseObserver);
Expand Down Expand Up @@ -533,7 +532,8 @@ protected CompanyServiceBlockingStub build(
*/
public com.google.cloud.talent.v4.Company createCompany(
com.google.cloud.talent.v4.CreateCompanyRequest request) {
return blockingUnaryCall(getChannel(), getCreateCompanyMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getCreateCompanyMethod(), getCallOptions(), request);
}

/**
Expand All @@ -545,7 +545,8 @@ public com.google.cloud.talent.v4.Company createCompany(
*/
public com.google.cloud.talent.v4.Company getCompany(
com.google.cloud.talent.v4.GetCompanyRequest request) {
return blockingUnaryCall(getChannel(), getGetCompanyMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGetCompanyMethod(), getCallOptions(), request);
}

/**
Expand All @@ -557,7 +558,8 @@ public com.google.cloud.talent.v4.Company getCompany(
*/
public com.google.cloud.talent.v4.Company updateCompany(
com.google.cloud.talent.v4.UpdateCompanyRequest request) {
return blockingUnaryCall(getChannel(), getUpdateCompanyMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getUpdateCompanyMethod(), getCallOptions(), request);
}

/**
Expand All @@ -570,7 +572,8 @@ public com.google.cloud.talent.v4.Company updateCompany(
*/
public com.google.protobuf.Empty deleteCompany(
com.google.cloud.talent.v4.DeleteCompanyRequest request) {
return blockingUnaryCall(getChannel(), getDeleteCompanyMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getDeleteCompanyMethod(), getCallOptions(), request);
}

/**
Expand All @@ -582,7 +585,8 @@ public com.google.protobuf.Empty deleteCompany(
*/
public com.google.cloud.talent.v4.ListCompaniesResponse listCompanies(
com.google.cloud.talent.v4.ListCompaniesRequest request) {
return blockingUnaryCall(getChannel(), getListCompaniesMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getListCompaniesMethod(), getCallOptions(), request);
}
}

Expand Down Expand Up @@ -614,7 +618,7 @@ protected CompanyServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.cloud.talent.v4.Company>
createCompany(com.google.cloud.talent.v4.CreateCompanyRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getCreateCompanyMethod(), getCallOptions()), request);
}

Expand All @@ -627,7 +631,7 @@ protected CompanyServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.cloud.talent.v4.Company>
getCompany(com.google.cloud.talent.v4.GetCompanyRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGetCompanyMethod(), getCallOptions()), request);
}

Expand All @@ -640,7 +644,7 @@ protected CompanyServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.cloud.talent.v4.Company>
updateCompany(com.google.cloud.talent.v4.UpdateCompanyRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getUpdateCompanyMethod(), getCallOptions()), request);
}

Expand All @@ -654,7 +658,7 @@ protected CompanyServiceFutureStub build(
*/
public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty>
deleteCompany(com.google.cloud.talent.v4.DeleteCompanyRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getDeleteCompanyMethod(), getCallOptions()), request);
}

Expand All @@ -668,7 +672,7 @@ protected CompanyServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.talent.v4.ListCompaniesResponse>
listCompanies(com.google.cloud.talent.v4.ListCompaniesRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getListCompaniesMethod(), getCallOptions()), request);
}
}
Expand Down
Expand Up @@ -16,11 +16,6 @@
package com.google.cloud.talent.v4;

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 @@ -145,15 +140,16 @@ public void completeQuery(
com.google.cloud.talent.v4.CompleteQueryRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.CompleteQueryResponse>
responseObserver) {
asyncUnimplementedUnaryCall(getCompleteQueryMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getCompleteQueryMethod(), responseObserver);
}

@java.lang.Override
public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getCompleteQueryMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.CompleteQueryRequest,
com.google.cloud.talent.v4.CompleteQueryResponse>(
Expand Down Expand Up @@ -191,7 +187,7 @@ public void completeQuery(
com.google.cloud.talent.v4.CompleteQueryRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.CompleteQueryResponse>
responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getCompleteQueryMethod(), getCallOptions()),
request,
responseObserver);
Expand Down Expand Up @@ -227,7 +223,8 @@ protected CompletionBlockingStub build(
*/
public com.google.cloud.talent.v4.CompleteQueryResponse completeQuery(
com.google.cloud.talent.v4.CompleteQueryRequest request) {
return blockingUnaryCall(getChannel(), getCompleteQueryMethod(), getCallOptions(), request);
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getCompleteQueryMethod(), getCallOptions(), request);
}
}

Expand Down Expand Up @@ -260,7 +257,7 @@ protected CompletionFutureStub build(io.grpc.Channel channel, io.grpc.CallOption
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.talent.v4.CompleteQueryResponse>
completeQuery(com.google.cloud.talent.v4.CompleteQueryRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getCompleteQueryMethod(), getCallOptions()), request);
}
}
Expand Down
Expand Up @@ -16,11 +16,6 @@
package com.google.cloud.talent.v4;

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 @@ -151,15 +146,16 @@ public abstract static class EventServiceImplBase implements io.grpc.BindableSer
public void createClientEvent(
com.google.cloud.talent.v4.CreateClientEventRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.ClientEvent> responseObserver) {
asyncUnimplementedUnaryCall(getCreateClientEventMethod(), responseObserver);
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
getCreateClientEventMethod(), responseObserver);
}

@java.lang.Override
public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getCreateClientEventMethod(),
asyncUnaryCall(
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.cloud.talent.v4.CreateClientEventRequest,
com.google.cloud.talent.v4.ClientEvent>(this, METHODID_CREATE_CLIENT_EVENT)))
Expand Down Expand Up @@ -201,7 +197,7 @@ protected EventServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions ca
public void createClientEvent(
com.google.cloud.talent.v4.CreateClientEventRequest request,
io.grpc.stub.StreamObserver<com.google.cloud.talent.v4.ClientEvent> responseObserver) {
asyncUnaryCall(
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getCreateClientEventMethod(), getCallOptions()),
request,
responseObserver);
Expand Down Expand Up @@ -242,7 +238,7 @@ protected EventServiceBlockingStub build(
*/
public com.google.cloud.talent.v4.ClientEvent createClientEvent(
com.google.cloud.talent.v4.CreateClientEventRequest request) {
return blockingUnaryCall(
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getCreateClientEventMethod(), getCallOptions(), request);
}
}
Expand Down Expand Up @@ -282,7 +278,7 @@ protected EventServiceFutureStub build(
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.talent.v4.ClientEvent>
createClientEvent(com.google.cloud.talent.v4.CreateClientEventRequest request) {
return futureUnaryCall(
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getCreateClientEventMethod(), getCallOptions()), request);
}
}
Expand Down

0 comments on commit 759865e

Please sign in to comment.