com.google.cloud.discoveryengine.v1alpha.stub.DocumentServiceStub 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.v1alpha.stub;
import static com.google.cloud.discoveryengine.v1alpha.DocumentServiceClient.ListDocumentsPagedResponse;
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.v1alpha.CreateDocumentRequest;
import com.google.cloud.discoveryengine.v1alpha.DeleteDocumentRequest;
import com.google.cloud.discoveryengine.v1alpha.Document;
import com.google.cloud.discoveryengine.v1alpha.GetDocumentRequest;
import com.google.cloud.discoveryengine.v1alpha.GetProcessedDocumentRequest;
import com.google.cloud.discoveryengine.v1alpha.ImportDocumentsMetadata;
import com.google.cloud.discoveryengine.v1alpha.ImportDocumentsRequest;
import com.google.cloud.discoveryengine.v1alpha.ImportDocumentsResponse;
import com.google.cloud.discoveryengine.v1alpha.ListDocumentsRequest;
import com.google.cloud.discoveryengine.v1alpha.ListDocumentsResponse;
import com.google.cloud.discoveryengine.v1alpha.ProcessedDocument;
import com.google.cloud.discoveryengine.v1alpha.PurgeDocumentsMetadata;
import com.google.cloud.discoveryengine.v1alpha.PurgeDocumentsRequest;
import com.google.cloud.discoveryengine.v1alpha.PurgeDocumentsResponse;
import com.google.cloud.discoveryengine.v1alpha.UpdateDocumentRequest;
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 DocumentService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@BetaApi
@Generated("by gapic-generator-java")
public abstract class DocumentServiceStub implements BackgroundResource {
public OperationsStub getOperationsStub() {
return null;
}
public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}
public UnaryCallable getDocumentCallable() {
throw new UnsupportedOperationException("Not implemented: getDocumentCallable()");
}
public UnaryCallable
listDocumentsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listDocumentsPagedCallable()");
}
public UnaryCallable listDocumentsCallable() {
throw new UnsupportedOperationException("Not implemented: listDocumentsCallable()");
}
public UnaryCallable createDocumentCallable() {
throw new UnsupportedOperationException("Not implemented: createDocumentCallable()");
}
public UnaryCallable updateDocumentCallable() {
throw new UnsupportedOperationException("Not implemented: updateDocumentCallable()");
}
public UnaryCallable deleteDocumentCallable() {
throw new UnsupportedOperationException("Not implemented: deleteDocumentCallable()");
}
public OperationCallable
importDocumentsOperationCallable() {
throw new UnsupportedOperationException("Not implemented: importDocumentsOperationCallable()");
}
public UnaryCallable importDocumentsCallable() {
throw new UnsupportedOperationException("Not implemented: importDocumentsCallable()");
}
public OperationCallable
purgeDocumentsOperationCallable() {
throw new UnsupportedOperationException("Not implemented: purgeDocumentsOperationCallable()");
}
public UnaryCallable purgeDocumentsCallable() {
throw new UnsupportedOperationException("Not implemented: purgeDocumentsCallable()");
}
public UnaryCallable
getProcessedDocumentCallable() {
throw new UnsupportedOperationException("Not implemented: getProcessedDocumentCallable()");
}
@Override
public abstract void close();
}