com.google.cloud.gkemulticloud.v1.stub.AttachedClustersStub Maven / Gradle / Ivy
Show all versions of google-cloud-gke-multi-cloud Show documentation
/*
* 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.gkemulticloud.v1.stub;
import static com.google.cloud.gkemulticloud.v1.AttachedClustersClient.ListAttachedClustersPagedResponse;
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.gkemulticloud.v1.AttachedCluster;
import com.google.cloud.gkemulticloud.v1.AttachedServerConfig;
import com.google.cloud.gkemulticloud.v1.CreateAttachedClusterRequest;
import com.google.cloud.gkemulticloud.v1.DeleteAttachedClusterRequest;
import com.google.cloud.gkemulticloud.v1.GenerateAttachedClusterAgentTokenRequest;
import com.google.cloud.gkemulticloud.v1.GenerateAttachedClusterAgentTokenResponse;
import com.google.cloud.gkemulticloud.v1.GenerateAttachedClusterInstallManifestRequest;
import com.google.cloud.gkemulticloud.v1.GenerateAttachedClusterInstallManifestResponse;
import com.google.cloud.gkemulticloud.v1.GetAttachedClusterRequest;
import com.google.cloud.gkemulticloud.v1.GetAttachedServerConfigRequest;
import com.google.cloud.gkemulticloud.v1.ImportAttachedClusterRequest;
import com.google.cloud.gkemulticloud.v1.ListAttachedClustersRequest;
import com.google.cloud.gkemulticloud.v1.ListAttachedClustersResponse;
import com.google.cloud.gkemulticloud.v1.OperationMetadata;
import com.google.cloud.gkemulticloud.v1.UpdateAttachedClusterRequest;
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 AttachedClusters service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class AttachedClustersStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public OperationCallable
createAttachedClusterOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: createAttachedClusterOperationCallable()");
}
public UnaryCallable createAttachedClusterCallable() {
throw new UnsupportedOperationException("Not implemented: createAttachedClusterCallable()");
}
public OperationCallable
updateAttachedClusterOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: updateAttachedClusterOperationCallable()");
}
public UnaryCallable updateAttachedClusterCallable() {
throw new UnsupportedOperationException("Not implemented: updateAttachedClusterCallable()");
}
public OperationCallable
importAttachedClusterOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: importAttachedClusterOperationCallable()");
}
public UnaryCallable importAttachedClusterCallable() {
throw new UnsupportedOperationException("Not implemented: importAttachedClusterCallable()");
}
public UnaryCallable getAttachedClusterCallable() {
throw new UnsupportedOperationException("Not implemented: getAttachedClusterCallable()");
}
public UnaryCallable
listAttachedClustersPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listAttachedClustersPagedCallable()");
}
public UnaryCallable
listAttachedClustersCallable() {
throw new UnsupportedOperationException("Not implemented: listAttachedClustersCallable()");
}
public OperationCallable
deleteAttachedClusterOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: deleteAttachedClusterOperationCallable()");
}
public UnaryCallable deleteAttachedClusterCallable() {
throw new UnsupportedOperationException("Not implemented: deleteAttachedClusterCallable()");
}
public UnaryCallable
getAttachedServerConfigCallable() {
throw new UnsupportedOperationException("Not implemented: getAttachedServerConfigCallable()");
}
public UnaryCallable<
GenerateAttachedClusterInstallManifestRequest,
GenerateAttachedClusterInstallManifestResponse>
generateAttachedClusterInstallManifestCallable() {
throw new UnsupportedOperationException(
"Not implemented: generateAttachedClusterInstallManifestCallable()");
}
public UnaryCallable<
GenerateAttachedClusterAgentTokenRequest, GenerateAttachedClusterAgentTokenResponse>
generateAttachedClusterAgentTokenCallable() {
throw new UnsupportedOperationException(
"Not implemented: generateAttachedClusterAgentTokenCallable()");
}
@Override
public abstract void close();
}