com.google.cloud.discoveryengine.v1beta.stub.DataStoreServiceStub Maven / Gradle / Ivy
Show all versions of google-cloud-discoveryengine 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.discoveryengine.v1beta.stub;
import static com.google.cloud.discoveryengine.v1beta.DataStoreServiceClient.ListDataStoresPagedResponse;
import com.google.api.core.BetaApi;
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.discoveryengine.v1beta.CreateDataStoreMetadata;
import com.google.cloud.discoveryengine.v1beta.CreateDataStoreRequest;
import com.google.cloud.discoveryengine.v1beta.DataStore;
import com.google.cloud.discoveryengine.v1beta.DeleteDataStoreMetadata;
import com.google.cloud.discoveryengine.v1beta.DeleteDataStoreRequest;
import com.google.cloud.discoveryengine.v1beta.GetDataStoreRequest;
import com.google.cloud.discoveryengine.v1beta.ListDataStoresRequest;
import com.google.cloud.discoveryengine.v1beta.ListDataStoresResponse;
import com.google.cloud.discoveryengine.v1beta.UpdateDataStoreRequest;
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 DataStoreService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@BetaApi
@Generated("by gapic-generator-java")
public abstract class DataStoreServiceStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public OperationCallable
createDataStoreOperationCallable() {
throw new UnsupportedOperationException("Not implemented: createDataStoreOperationCallable()");
}
public UnaryCallable createDataStoreCallable() {
throw new UnsupportedOperationException("Not implemented: createDataStoreCallable()");
}
public UnaryCallable getDataStoreCallable() {
throw new UnsupportedOperationException("Not implemented: getDataStoreCallable()");
}
public UnaryCallable
listDataStoresPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listDataStoresPagedCallable()");
}
public UnaryCallable listDataStoresCallable() {
throw new UnsupportedOperationException("Not implemented: listDataStoresCallable()");
}
public OperationCallable
deleteDataStoreOperationCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDataStoreOperationCallable()");
}
public UnaryCallable deleteDataStoreCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDataStoreCallable()");
}
public UnaryCallable updateDataStoreCallable() {
throw new UnsupportedOperationException("Not implemented: updateDataStoreCallable()");
}
@Override
public abstract void close();
}