com.google.cloud.managedkafka.v1.stub.ManagedKafkaStub Maven / Gradle / Ivy
Show all versions of google-cloud-managedkafka 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.managedkafka.v1.stub;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListClustersPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListConsumerGroupsPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListLocationsPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListTopicsPagedResponse;
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.location.GetLocationRequest;
import com.google.cloud.location.ListLocationsRequest;
import com.google.cloud.location.ListLocationsResponse;
import com.google.cloud.location.Location;
import com.google.cloud.managedkafka.v1.Cluster;
import com.google.cloud.managedkafka.v1.ConsumerGroup;
import com.google.cloud.managedkafka.v1.CreateClusterRequest;
import com.google.cloud.managedkafka.v1.CreateTopicRequest;
import com.google.cloud.managedkafka.v1.DeleteClusterRequest;
import com.google.cloud.managedkafka.v1.DeleteConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.DeleteTopicRequest;
import com.google.cloud.managedkafka.v1.GetClusterRequest;
import com.google.cloud.managedkafka.v1.GetConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.GetTopicRequest;
import com.google.cloud.managedkafka.v1.ListClustersRequest;
import com.google.cloud.managedkafka.v1.ListClustersResponse;
import com.google.cloud.managedkafka.v1.ListConsumerGroupsRequest;
import com.google.cloud.managedkafka.v1.ListConsumerGroupsResponse;
import com.google.cloud.managedkafka.v1.ListTopicsRequest;
import com.google.cloud.managedkafka.v1.ListTopicsResponse;
import com.google.cloud.managedkafka.v1.OperationMetadata;
import com.google.cloud.managedkafka.v1.Topic;
import com.google.cloud.managedkafka.v1.UpdateClusterRequest;
import com.google.cloud.managedkafka.v1.UpdateConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.UpdateTopicRequest;
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 ManagedKafka service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class ManagedKafkaStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public UnaryCallable listClustersPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listClustersPagedCallable()");
}
public UnaryCallable listClustersCallable() {
throw new UnsupportedOperationException("Not implemented: listClustersCallable()");
}
public UnaryCallable getClusterCallable() {
throw new UnsupportedOperationException("Not implemented: getClusterCallable()");
}
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
deleteClusterOperationCallable() {
throw new UnsupportedOperationException("Not implemented: deleteClusterOperationCallable()");
}
public UnaryCallable deleteClusterCallable() {
throw new UnsupportedOperationException("Not implemented: deleteClusterCallable()");
}
public UnaryCallable listTopicsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listTopicsPagedCallable()");
}
public UnaryCallable listTopicsCallable() {
throw new UnsupportedOperationException("Not implemented: listTopicsCallable()");
}
public UnaryCallable getTopicCallable() {
throw new UnsupportedOperationException("Not implemented: getTopicCallable()");
}
public UnaryCallable createTopicCallable() {
throw new UnsupportedOperationException("Not implemented: createTopicCallable()");
}
public UnaryCallable updateTopicCallable() {
throw new UnsupportedOperationException("Not implemented: updateTopicCallable()");
}
public UnaryCallable deleteTopicCallable() {
throw new UnsupportedOperationException("Not implemented: deleteTopicCallable()");
}
public UnaryCallable
listConsumerGroupsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listConsumerGroupsPagedCallable()");
}
public UnaryCallable
listConsumerGroupsCallable() {
throw new UnsupportedOperationException("Not implemented: listConsumerGroupsCallable()");
}
public UnaryCallable getConsumerGroupCallable() {
throw new UnsupportedOperationException("Not implemented: getConsumerGroupCallable()");
}
public UnaryCallable updateConsumerGroupCallable() {
throw new UnsupportedOperationException("Not implemented: updateConsumerGroupCallable()");
}
public UnaryCallable deleteConsumerGroupCallable() {
throw new UnsupportedOperationException("Not implemented: deleteConsumerGroupCallable()");
}
public UnaryCallable
listLocationsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listLocationsPagedCallable()");
}
public UnaryCallable listLocationsCallable() {
throw new UnsupportedOperationException("Not implemented: listLocationsCallable()");
}
public UnaryCallable getLocationCallable() {
throw new UnsupportedOperationException("Not implemented: getLocationCallable()");
}
@Override
public abstract void close();
}