com.google.cloud.dataproc.v1.stub.ClusterControllerStub Maven / Gradle / Ivy
/*
* Copyright 2024 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.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.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
import com.google.iam.v1.TestIamPermissionsRequest;
import com.google.iam.v1.TestIamPermissionsResponse;
import com.google.longrunning.Operation;
import com.google.longrunning.stub.OperationsStub;
import com.google.protobuf.Empty;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the ClusterController service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class ClusterControllerStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public OperationCallable
createClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: createClusterOperationCallable()");
}
public UnaryCallable createClusterCallable() {
throw new UnsupportedOperationException("Not implemented: createClusterCallable()");
}
public OperationCallable
updateClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: updateClusterOperationCallable()");
}
public UnaryCallable updateClusterCallable() {
throw new UnsupportedOperationException("Not implemented: updateClusterCallable()");
}
public OperationCallable
stopClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: stopClusterOperationCallable()");
}
public UnaryCallable stopClusterCallable() {
throw new UnsupportedOperationException("Not implemented: stopClusterCallable()");
}
public OperationCallable
startClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: startClusterOperationCallable()");
}
public UnaryCallable startClusterCallable() {
throw new UnsupportedOperationException("Not implemented: startClusterCallable()");
}
public OperationCallable
deleteClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: deleteClusterOperationCallable()");
}
public UnaryCallable deleteClusterCallable() {
throw new UnsupportedOperationException("Not implemented: deleteClusterCallable()");
}
public UnaryCallable getClusterCallable() {
throw new UnsupportedOperationException("Not implemented: getClusterCallable()");
}
public UnaryCallable listClustersPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listClustersPagedCallable()");
}
public UnaryCallable listClustersCallable() {
throw new UnsupportedOperationException("Not implemented: listClustersCallable()");
}
public OperationCallable
diagnoseClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: diagnoseClusterOperationCallable()");
}
public UnaryCallable diagnoseClusterCallable() {
throw new UnsupportedOperationException("Not implemented: diagnoseClusterCallable()");
}
public UnaryCallable setIamPolicyCallable() {
throw new UnsupportedOperationException("Not implemented: setIamPolicyCallable()");
}
public UnaryCallable getIamPolicyCallable() {
throw new UnsupportedOperationException("Not implemented: getIamPolicyCallable()");
}
public UnaryCallable
testIamPermissionsCallable() {
throw new UnsupportedOperationException("Not implemented: testIamPermissionsCallable()");
}
@Override
public abstract void close();
}