GrpcClusterControllerStub.java
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.dataproc.v1.stub;
import static com.google.cloud.dataproc.v1.ClusterControllerClient.ListClustersPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.core.BackgroundResourceAggregation;
import com.google.api.gax.grpc.GrpcCallSettings;
import com.google.api.gax.grpc.GrpcStubCallableFactory;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.dataproc.v1.Cluster;
import com.google.cloud.dataproc.v1.ClusterOperationMetadata;
import com.google.cloud.dataproc.v1.CreateClusterRequest;
import com.google.cloud.dataproc.v1.DeleteClusterRequest;
import com.google.cloud.dataproc.v1.DiagnoseClusterRequest;
import com.google.cloud.dataproc.v1.DiagnoseClusterResults;
import com.google.cloud.dataproc.v1.GetClusterRequest;
import com.google.cloud.dataproc.v1.ListClustersRequest;
import com.google.cloud.dataproc.v1.ListClustersResponse;
import com.google.cloud.dataproc.v1.StartClusterRequest;
import com.google.cloud.dataproc.v1.StopClusterRequest;
import com.google.cloud.dataproc.v1.UpdateClusterRequest;
import com.google.common.collect.ImmutableMap;
import com.google.longrunning.Operation;
import com.google.longrunning.stub.GrpcOperationsStub;
import com.google.protobuf.Empty;
import io.grpc.MethodDescriptor;
import io.grpc.protobuf.ProtoUtils;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* gRPC stub implementation for the ClusterController service API.
*
* <p>This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public class GrpcClusterControllerStub extends ClusterControllerStub {
private static final MethodDescriptor<CreateClusterRequest, Operation>
createClusterMethodDescriptor =
MethodDescriptor.<CreateClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/CreateCluster")
.setRequestMarshaller(
ProtoUtils.marshaller(CreateClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private static final MethodDescriptor<UpdateClusterRequest, Operation>
updateClusterMethodDescriptor =
MethodDescriptor.<UpdateClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/UpdateCluster")
.setRequestMarshaller(
ProtoUtils.marshaller(UpdateClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private static final MethodDescriptor<StopClusterRequest, Operation> stopClusterMethodDescriptor =
MethodDescriptor.<StopClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/StopCluster")
.setRequestMarshaller(ProtoUtils.marshaller(StopClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private static final MethodDescriptor<StartClusterRequest, Operation>
startClusterMethodDescriptor =
MethodDescriptor.<StartClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/StartCluster")
.setRequestMarshaller(ProtoUtils.marshaller(StartClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private static final MethodDescriptor<DeleteClusterRequest, Operation>
deleteClusterMethodDescriptor =
MethodDescriptor.<DeleteClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/DeleteCluster")
.setRequestMarshaller(
ProtoUtils.marshaller(DeleteClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private static final MethodDescriptor<GetClusterRequest, Cluster> getClusterMethodDescriptor =
MethodDescriptor.<GetClusterRequest, Cluster>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/GetCluster")
.setRequestMarshaller(ProtoUtils.marshaller(GetClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Cluster.getDefaultInstance()))
.build();
private static final MethodDescriptor<ListClustersRequest, ListClustersResponse>
listClustersMethodDescriptor =
MethodDescriptor.<ListClustersRequest, ListClustersResponse>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/ListClusters")
.setRequestMarshaller(ProtoUtils.marshaller(ListClustersRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(ListClustersResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor<DiagnoseClusterRequest, Operation>
diagnoseClusterMethodDescriptor =
MethodDescriptor.<DiagnoseClusterRequest, Operation>newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dataproc.v1.ClusterController/DiagnoseCluster")
.setRequestMarshaller(
ProtoUtils.marshaller(DiagnoseClusterRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.build();
private final UnaryCallable<CreateClusterRequest, Operation> createClusterCallable;
private final OperationCallable<CreateClusterRequest, Cluster, ClusterOperationMetadata>
createClusterOperationCallable;
private final UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallable;
private final OperationCallable<UpdateClusterRequest, Cluster, ClusterOperationMetadata>
updateClusterOperationCallable;
private final UnaryCallable<StopClusterRequest, Operation> stopClusterCallable;
private final OperationCallable<StopClusterRequest, Cluster, ClusterOperationMetadata>
stopClusterOperationCallable;
private final UnaryCallable<StartClusterRequest, Operation> startClusterCallable;
private final OperationCallable<StartClusterRequest, Cluster, ClusterOperationMetadata>
startClusterOperationCallable;
private final UnaryCallable<DeleteClusterRequest, Operation> deleteClusterCallable;
private final OperationCallable<DeleteClusterRequest, Empty, ClusterOperationMetadata>
deleteClusterOperationCallable;
private final UnaryCallable<GetClusterRequest, Cluster> getClusterCallable;
private final UnaryCallable<ListClustersRequest, ListClustersResponse> listClustersCallable;
private final UnaryCallable<ListClustersRequest, ListClustersPagedResponse>
listClustersPagedCallable;
private final UnaryCallable<DiagnoseClusterRequest, Operation> diagnoseClusterCallable;
private final OperationCallable<
DiagnoseClusterRequest, DiagnoseClusterResults, ClusterOperationMetadata>
diagnoseClusterOperationCallable;
private final BackgroundResource backgroundResources;
private final GrpcOperationsStub operationsStub;
private final GrpcStubCallableFactory callableFactory;
public static final GrpcClusterControllerStub create(ClusterControllerStubSettings settings)
throws IOException {
return new GrpcClusterControllerStub(settings, ClientContext.create(settings));
}
public static final GrpcClusterControllerStub create(ClientContext clientContext)
throws IOException {
return new GrpcClusterControllerStub(
ClusterControllerStubSettings.newBuilder().build(), clientContext);
}
public static final GrpcClusterControllerStub create(
ClientContext clientContext, GrpcStubCallableFactory callableFactory) throws IOException {
return new GrpcClusterControllerStub(
ClusterControllerStubSettings.newBuilder().build(), clientContext, callableFactory);
}
/**
* Constructs an instance of GrpcClusterControllerStub, 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.
*/
protected GrpcClusterControllerStub(
ClusterControllerStubSettings settings, ClientContext clientContext) throws IOException {
this(settings, clientContext, new GrpcClusterControllerCallableFactory());
}
/**
* Constructs an instance of GrpcClusterControllerStub, 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.
*/
protected GrpcClusterControllerStub(
ClusterControllerStubSettings settings,
ClientContext clientContext,
GrpcStubCallableFactory callableFactory)
throws IOException {
this.callableFactory = callableFactory;
this.operationsStub = GrpcOperationsStub.create(clientContext, callableFactory);
GrpcCallSettings<CreateClusterRequest, Operation> createClusterTransportSettings =
GrpcCallSettings.<CreateClusterRequest, Operation>newBuilder()
.setMethodDescriptor(createClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<UpdateClusterRequest, Operation> updateClusterTransportSettings =
GrpcCallSettings.<UpdateClusterRequest, Operation>newBuilder()
.setMethodDescriptor(updateClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<StopClusterRequest, Operation> stopClusterTransportSettings =
GrpcCallSettings.<StopClusterRequest, Operation>newBuilder()
.setMethodDescriptor(stopClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<StartClusterRequest, Operation> startClusterTransportSettings =
GrpcCallSettings.<StartClusterRequest, Operation>newBuilder()
.setMethodDescriptor(startClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<DeleteClusterRequest, Operation> deleteClusterTransportSettings =
GrpcCallSettings.<DeleteClusterRequest, Operation>newBuilder()
.setMethodDescriptor(deleteClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<GetClusterRequest, Cluster> getClusterTransportSettings =
GrpcCallSettings.<GetClusterRequest, Cluster>newBuilder()
.setMethodDescriptor(getClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<ListClustersRequest, ListClustersResponse> listClustersTransportSettings =
GrpcCallSettings.<ListClustersRequest, ListClustersResponse>newBuilder()
.setMethodDescriptor(listClustersMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
GrpcCallSettings<DiagnoseClusterRequest, Operation> diagnoseClusterTransportSettings =
GrpcCallSettings.<DiagnoseClusterRequest, Operation>newBuilder()
.setMethodDescriptor(diagnoseClusterMethodDescriptor)
.setParamsExtractor(
request -> {
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
params.put("cluster_name", String.valueOf(request.getClusterName()));
params.put("project_id", String.valueOf(request.getProjectId()));
params.put("region", String.valueOf(request.getRegion()));
return params.build();
})
.build();
this.createClusterCallable =
callableFactory.createUnaryCallable(
createClusterTransportSettings, settings.createClusterSettings(), clientContext);
this.createClusterOperationCallable =
callableFactory.createOperationCallable(
createClusterTransportSettings,
settings.createClusterOperationSettings(),
clientContext,
operationsStub);
this.updateClusterCallable =
callableFactory.createUnaryCallable(
updateClusterTransportSettings, settings.updateClusterSettings(), clientContext);
this.updateClusterOperationCallable =
callableFactory.createOperationCallable(
updateClusterTransportSettings,
settings.updateClusterOperationSettings(),
clientContext,
operationsStub);
this.stopClusterCallable =
callableFactory.createUnaryCallable(
stopClusterTransportSettings, settings.stopClusterSettings(), clientContext);
this.stopClusterOperationCallable =
callableFactory.createOperationCallable(
stopClusterTransportSettings,
settings.stopClusterOperationSettings(),
clientContext,
operationsStub);
this.startClusterCallable =
callableFactory.createUnaryCallable(
startClusterTransportSettings, settings.startClusterSettings(), clientContext);
this.startClusterOperationCallable =
callableFactory.createOperationCallable(
startClusterTransportSettings,
settings.startClusterOperationSettings(),
clientContext,
operationsStub);
this.deleteClusterCallable =
callableFactory.createUnaryCallable(
deleteClusterTransportSettings, settings.deleteClusterSettings(), clientContext);
this.deleteClusterOperationCallable =
callableFactory.createOperationCallable(
deleteClusterTransportSettings,
settings.deleteClusterOperationSettings(),
clientContext,
operationsStub);
this.getClusterCallable =
callableFactory.createUnaryCallable(
getClusterTransportSettings, settings.getClusterSettings(), clientContext);
this.listClustersCallable =
callableFactory.createUnaryCallable(
listClustersTransportSettings, settings.listClustersSettings(), clientContext);
this.listClustersPagedCallable =
callableFactory.createPagedCallable(
listClustersTransportSettings, settings.listClustersSettings(), clientContext);
this.diagnoseClusterCallable =
callableFactory.createUnaryCallable(
diagnoseClusterTransportSettings, settings.diagnoseClusterSettings(), clientContext);
this.diagnoseClusterOperationCallable =
callableFactory.createOperationCallable(
diagnoseClusterTransportSettings,
settings.diagnoseClusterOperationSettings(),
clientContext,
operationsStub);
this.backgroundResources =
new BackgroundResourceAggregation(clientContext.getBackgroundResources());
}
public GrpcOperationsStub getOperationsStub() {
return operationsStub;
}
@Override
public UnaryCallable<CreateClusterRequest, Operation> createClusterCallable() {
return createClusterCallable;
}
@Override
public OperationCallable<CreateClusterRequest, Cluster, ClusterOperationMetadata>
createClusterOperationCallable() {
return createClusterOperationCallable;
}
@Override
public UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallable() {
return updateClusterCallable;
}
@Override
public OperationCallable<UpdateClusterRequest, Cluster, ClusterOperationMetadata>
updateClusterOperationCallable() {
return updateClusterOperationCallable;
}
@Override
public UnaryCallable<StopClusterRequest, Operation> stopClusterCallable() {
return stopClusterCallable;
}
@Override
public OperationCallable<StopClusterRequest, Cluster, ClusterOperationMetadata>
stopClusterOperationCallable() {
return stopClusterOperationCallable;
}
@Override
public UnaryCallable<StartClusterRequest, Operation> startClusterCallable() {
return startClusterCallable;
}
@Override
public OperationCallable<StartClusterRequest, Cluster, ClusterOperationMetadata>
startClusterOperationCallable() {
return startClusterOperationCallable;
}
@Override
public UnaryCallable<DeleteClusterRequest, Operation> deleteClusterCallable() {
return deleteClusterCallable;
}
@Override
public OperationCallable<DeleteClusterRequest, Empty, ClusterOperationMetadata>
deleteClusterOperationCallable() {
return deleteClusterOperationCallable;
}
@Override
public UnaryCallable<GetClusterRequest, Cluster> getClusterCallable() {
return getClusterCallable;
}
@Override
public UnaryCallable<ListClustersRequest, ListClustersResponse> listClustersCallable() {
return listClustersCallable;
}
@Override
public UnaryCallable<ListClustersRequest, ListClustersPagedResponse> listClustersPagedCallable() {
return listClustersPagedCallable;
}
@Override
public UnaryCallable<DiagnoseClusterRequest, Operation> diagnoseClusterCallable() {
return diagnoseClusterCallable;
}
@Override
public OperationCallable<DiagnoseClusterRequest, DiagnoseClusterResults, ClusterOperationMetadata>
diagnoseClusterOperationCallable() {
return diagnoseClusterOperationCallable;
}
@Override
public final void close() {
try {
backgroundResources.close();
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new IllegalStateException("Failed to close resource", e);
}
}
@Override
public void shutdown() {
backgroundResources.shutdown();
}
@Override
public boolean isShutdown() {
return backgroundResources.isShutdown();
}
@Override
public boolean isTerminated() {
return backgroundResources.isTerminated();
}
@Override
public void shutdownNow() {
backgroundResources.shutdownNow();
}
@Override
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException {
return backgroundResources.awaitTermination(duration, unit);
}
}