All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dialogflow.v2beta1.stub.HttpJsonDocumentsStub Maven / Gradle / Ivy

There is a newer version: 4.59.0
Show newest version
/*
 * 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.dialogflow.v2beta1.stub;

import static com.google.cloud.dialogflow.v2beta1.DocumentsClient.ListDocumentsPagedResponse;
import static com.google.cloud.dialogflow.v2beta1.DocumentsClient.ListLocationsPagedResponse;

import com.google.api.HttpRule;
import com.google.api.core.BetaApi;
import com.google.api.core.InternalApi;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.core.BackgroundResourceAggregation;
import com.google.api.gax.httpjson.ApiMethodDescriptor;
import com.google.api.gax.httpjson.HttpJsonCallSettings;
import com.google.api.gax.httpjson.HttpJsonOperationSnapshot;
import com.google.api.gax.httpjson.HttpJsonStubCallableFactory;
import com.google.api.gax.httpjson.ProtoMessageRequestFormatter;
import com.google.api.gax.httpjson.ProtoMessageResponseParser;
import com.google.api.gax.httpjson.ProtoRestSerializer;
import com.google.api.gax.httpjson.longrunning.stub.HttpJsonOperationsStub;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.RequestParamsBuilder;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.dialogflow.v2beta1.CreateDocumentRequest;
import com.google.cloud.dialogflow.v2beta1.DeleteDocumentRequest;
import com.google.cloud.dialogflow.v2beta1.Document;
import com.google.cloud.dialogflow.v2beta1.GetDocumentRequest;
import com.google.cloud.dialogflow.v2beta1.ImportDocumentsRequest;
import com.google.cloud.dialogflow.v2beta1.ImportDocumentsResponse;
import com.google.cloud.dialogflow.v2beta1.KnowledgeOperationMetadata;
import com.google.cloud.dialogflow.v2beta1.ListDocumentsRequest;
import com.google.cloud.dialogflow.v2beta1.ListDocumentsResponse;
import com.google.cloud.dialogflow.v2beta1.ReloadDocumentRequest;
import com.google.cloud.dialogflow.v2beta1.UpdateDocumentRequest;
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.common.collect.ImmutableMap;
import com.google.longrunning.Operation;
import com.google.protobuf.Empty;
import com.google.protobuf.TypeRegistry;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
 * REST stub implementation for the Documents service API.
 *
 * 

This class is for advanced usage and reflects the underlying API directly. */ @BetaApi @Generated("by gapic-generator-java") public class HttpJsonDocumentsStub extends DocumentsStub { private static final TypeRegistry typeRegistry = TypeRegistry.newBuilder() .add(ImportDocumentsResponse.getDescriptor()) .add(Empty.getDescriptor()) .add(Document.getDescriptor()) .add(KnowledgeOperationMetadata.getDescriptor()) .build(); private static final ApiMethodDescriptor listDocumentsMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/ListDocuments") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{parent=projects/*/knowledgeBases/*}/documents", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "parent", request.getParent()); return fields; }) .setAdditionalPaths( "/v2beta1/{parent=projects/*/locations/*/knowledgeBases/*}/documents", "/v2beta1/{parent=projects/*/agent/knowledgeBases/*}/documents") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "filter", request.getFilter()); serializer.putQueryParam(fields, "pageSize", request.getPageSize()); serializer.putQueryParam(fields, "pageToken", request.getPageToken()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(ListDocumentsResponse.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor getDocumentMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/GetDocument") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{name=projects/*/knowledgeBases/*/documents/*}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "name", request.getName()); return fields; }) .setAdditionalPaths( "/v2beta1/{name=projects/*/locations/*/knowledgeBases/*/documents/*}", "/v2beta1/{name=projects/*/agent/knowledgeBases/*/documents/*}") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Document.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor createDocumentMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/CreateDocument") .setHttpMethod("POST") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{parent=projects/*/knowledgeBases/*}/documents", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "parent", request.getParent()); return fields; }) .setAdditionalPaths( "/v2beta1/{parent=projects/*/locations/*/knowledgeBases/*}/documents", "/v2beta1/{parent=projects/*/agent/knowledgeBases/*}/documents") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam( fields, "importGcsCustomMetadata", request.getImportGcsCustomMetadata()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create() .toBody("document", request.getDocument(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Operation.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .setOperationSnapshotFactory( (CreateDocumentRequest request, Operation response) -> HttpJsonOperationSnapshot.create(response)) .build(); private static final ApiMethodDescriptor importDocumentsMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/ImportDocuments") .setHttpMethod("POST") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{parent=projects/*/knowledgeBases/*}/documents:import", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "parent", request.getParent()); return fields; }) .setAdditionalPaths( "/v2beta1/{parent=projects/*/locations/*/knowledgeBases/*}/documents:import") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create() .toBody("*", request.toBuilder().clearParent().build(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Operation.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .setOperationSnapshotFactory( (ImportDocumentsRequest request, Operation response) -> HttpJsonOperationSnapshot.create(response)) .build(); private static final ApiMethodDescriptor deleteDocumentMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/DeleteDocument") .setHttpMethod("DELETE") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{name=projects/*/knowledgeBases/*/documents/*}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "name", request.getName()); return fields; }) .setAdditionalPaths( "/v2beta1/{name=projects/*/locations/*/knowledgeBases/*/documents/*}", "/v2beta1/{name=projects/*/agent/knowledgeBases/*/documents/*}") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Operation.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .setOperationSnapshotFactory( (DeleteDocumentRequest request, Operation response) -> HttpJsonOperationSnapshot.create(response)) .build(); private static final ApiMethodDescriptor updateDocumentMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/UpdateDocument") .setHttpMethod("PATCH") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{document.name=projects/*/knowledgeBases/*/documents/*}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam( fields, "document.name", request.getDocument().getName()); return fields; }) .setAdditionalPaths( "/v2beta1/{document.name=projects/*/locations/*/knowledgeBases/*/documents/*}", "/v2beta1/{document.name=projects/*/agent/knowledgeBases/*/documents/*}") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "updateMask", request.getUpdateMask()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create() .toBody("document", request.getDocument(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Operation.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .setOperationSnapshotFactory( (UpdateDocumentRequest request, Operation response) -> HttpJsonOperationSnapshot.create(response)) .build(); private static final ApiMethodDescriptor reloadDocumentMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.dialogflow.v2beta1.Documents/ReloadDocument") .setHttpMethod("POST") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{name=projects/*/knowledgeBases/*/documents/*}:reload", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "name", request.getName()); return fields; }) .setAdditionalPaths( "/v2beta1/{name=projects/*/locations/*/knowledgeBases/*/documents/*}:reload", "/v2beta1/{name=projects/*/agent/knowledgeBases/*/documents/*}:reload") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create() .toBody("*", request.toBuilder().clearName().build(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Operation.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .setOperationSnapshotFactory( (ReloadDocumentRequest request, Operation response) -> HttpJsonOperationSnapshot.create(response)) .build(); private static final ApiMethodDescriptor listLocationsMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.location.Locations/ListLocations") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{name=projects/*}/locations", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "name", request.getName()); return fields; }) .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(ListLocationsResponse.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor getLocationMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.cloud.location.Locations/GetLocation") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v2beta1/{name=projects/*/locations/*}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "name", request.getName()); return fields; }) .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Location.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private final UnaryCallable listDocumentsCallable; private final UnaryCallable listDocumentsPagedCallable; private final UnaryCallable getDocumentCallable; private final UnaryCallable createDocumentCallable; private final OperationCallable createDocumentOperationCallable; private final UnaryCallable importDocumentsCallable; private final OperationCallable< ImportDocumentsRequest, ImportDocumentsResponse, KnowledgeOperationMetadata> importDocumentsOperationCallable; private final UnaryCallable deleteDocumentCallable; private final OperationCallable deleteDocumentOperationCallable; private final UnaryCallable updateDocumentCallable; private final OperationCallable updateDocumentOperationCallable; private final UnaryCallable reloadDocumentCallable; private final OperationCallable reloadDocumentOperationCallable; private final UnaryCallable listLocationsCallable; private final UnaryCallable listLocationsPagedCallable; private final UnaryCallable getLocationCallable; private final BackgroundResource backgroundResources; private final HttpJsonOperationsStub httpJsonOperationsStub; private final HttpJsonStubCallableFactory callableFactory; public static final HttpJsonDocumentsStub create(DocumentsStubSettings settings) throws IOException { return new HttpJsonDocumentsStub(settings, ClientContext.create(settings)); } public static final HttpJsonDocumentsStub create(ClientContext clientContext) throws IOException { return new HttpJsonDocumentsStub( DocumentsStubSettings.newHttpJsonBuilder().build(), clientContext); } public static final HttpJsonDocumentsStub create( ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException { return new HttpJsonDocumentsStub( DocumentsStubSettings.newHttpJsonBuilder().build(), clientContext, callableFactory); } /** * Constructs an instance of HttpJsonDocumentsStub, using the given settings. This is protected so * that it is easy to make a subclass, but otherwise, the static factory methods should be * preferred. */ protected HttpJsonDocumentsStub(DocumentsStubSettings settings, ClientContext clientContext) throws IOException { this(settings, clientContext, new HttpJsonDocumentsCallableFactory()); } /** * Constructs an instance of HttpJsonDocumentsStub, using the given settings. This is protected so * that it is easy to make a subclass, but otherwise, the static factory methods should be * preferred. */ protected HttpJsonDocumentsStub( DocumentsStubSettings settings, ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException { this.callableFactory = callableFactory; this.httpJsonOperationsStub = HttpJsonOperationsStub.create( clientContext, callableFactory, typeRegistry, ImmutableMap.builder() .put( "google.longrunning.Operations.CancelOperation", HttpRule.newBuilder() .setPost("/v2beta1/{name=projects/*/operations/*}:cancel") .addAdditionalBindings( HttpRule.newBuilder() .setPost( "/v2beta1/{name=projects/*/locations/*/operations/*}:cancel") .build()) .build()) .put( "google.longrunning.Operations.GetOperation", HttpRule.newBuilder() .setGet("/v2beta1/{name=projects/*/operations/*}") .addAdditionalBindings( HttpRule.newBuilder() .setGet("/v2beta1/{name=projects/*/locations/*/operations/*}") .build()) .build()) .put( "google.longrunning.Operations.ListOperations", HttpRule.newBuilder() .setGet("/v2beta1/{name=projects/*}/operations") .addAdditionalBindings( HttpRule.newBuilder() .setGet("/v2beta1/{name=projects/*/locations/*}/operations") .build()) .build()) .build()); HttpJsonCallSettings listDocumentsTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(listDocumentsMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("parent", String.valueOf(request.getParent())); return builder.build(); }) .build(); HttpJsonCallSettings getDocumentTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(getDocumentMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("name", String.valueOf(request.getName())); return builder.build(); }) .build(); HttpJsonCallSettings createDocumentTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(createDocumentMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("parent", String.valueOf(request.getParent())); return builder.build(); }) .build(); HttpJsonCallSettings importDocumentsTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(importDocumentsMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("parent", String.valueOf(request.getParent())); return builder.build(); }) .build(); HttpJsonCallSettings deleteDocumentTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(deleteDocumentMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("name", String.valueOf(request.getName())); return builder.build(); }) .build(); HttpJsonCallSettings updateDocumentTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(updateDocumentMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("document.name", String.valueOf(request.getDocument().getName())); return builder.build(); }) .build(); HttpJsonCallSettings reloadDocumentTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(reloadDocumentMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("name", String.valueOf(request.getName())); return builder.build(); }) .build(); HttpJsonCallSettings listLocationsTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(listLocationsMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("name", String.valueOf(request.getName())); return builder.build(); }) .build(); HttpJsonCallSettings getLocationTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(getLocationMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("name", String.valueOf(request.getName())); return builder.build(); }) .build(); this.listDocumentsCallable = callableFactory.createUnaryCallable( listDocumentsTransportSettings, settings.listDocumentsSettings(), clientContext); this.listDocumentsPagedCallable = callableFactory.createPagedCallable( listDocumentsTransportSettings, settings.listDocumentsSettings(), clientContext); this.getDocumentCallable = callableFactory.createUnaryCallable( getDocumentTransportSettings, settings.getDocumentSettings(), clientContext); this.createDocumentCallable = callableFactory.createUnaryCallable( createDocumentTransportSettings, settings.createDocumentSettings(), clientContext); this.createDocumentOperationCallable = callableFactory.createOperationCallable( createDocumentTransportSettings, settings.createDocumentOperationSettings(), clientContext, httpJsonOperationsStub); this.importDocumentsCallable = callableFactory.createUnaryCallable( importDocumentsTransportSettings, settings.importDocumentsSettings(), clientContext); this.importDocumentsOperationCallable = callableFactory.createOperationCallable( importDocumentsTransportSettings, settings.importDocumentsOperationSettings(), clientContext, httpJsonOperationsStub); this.deleteDocumentCallable = callableFactory.createUnaryCallable( deleteDocumentTransportSettings, settings.deleteDocumentSettings(), clientContext); this.deleteDocumentOperationCallable = callableFactory.createOperationCallable( deleteDocumentTransportSettings, settings.deleteDocumentOperationSettings(), clientContext, httpJsonOperationsStub); this.updateDocumentCallable = callableFactory.createUnaryCallable( updateDocumentTransportSettings, settings.updateDocumentSettings(), clientContext); this.updateDocumentOperationCallable = callableFactory.createOperationCallable( updateDocumentTransportSettings, settings.updateDocumentOperationSettings(), clientContext, httpJsonOperationsStub); this.reloadDocumentCallable = callableFactory.createUnaryCallable( reloadDocumentTransportSettings, settings.reloadDocumentSettings(), clientContext); this.reloadDocumentOperationCallable = callableFactory.createOperationCallable( reloadDocumentTransportSettings, settings.reloadDocumentOperationSettings(), clientContext, httpJsonOperationsStub); this.listLocationsCallable = callableFactory.createUnaryCallable( listLocationsTransportSettings, settings.listLocationsSettings(), clientContext); this.listLocationsPagedCallable = callableFactory.createPagedCallable( listLocationsTransportSettings, settings.listLocationsSettings(), clientContext); this.getLocationCallable = callableFactory.createUnaryCallable( getLocationTransportSettings, settings.getLocationSettings(), clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); } @InternalApi public static List getMethodDescriptors() { List methodDescriptors = new ArrayList<>(); methodDescriptors.add(listDocumentsMethodDescriptor); methodDescriptors.add(getDocumentMethodDescriptor); methodDescriptors.add(createDocumentMethodDescriptor); methodDescriptors.add(importDocumentsMethodDescriptor); methodDescriptors.add(deleteDocumentMethodDescriptor); methodDescriptors.add(updateDocumentMethodDescriptor); methodDescriptors.add(reloadDocumentMethodDescriptor); methodDescriptors.add(listLocationsMethodDescriptor); methodDescriptors.add(getLocationMethodDescriptor); return methodDescriptors; } public HttpJsonOperationsStub getHttpJsonOperationsStub() { return httpJsonOperationsStub; } @Override public UnaryCallable listDocumentsCallable() { return listDocumentsCallable; } @Override public UnaryCallable listDocumentsPagedCallable() { return listDocumentsPagedCallable; } @Override public UnaryCallable getDocumentCallable() { return getDocumentCallable; } @Override public UnaryCallable createDocumentCallable() { return createDocumentCallable; } @Override public OperationCallable createDocumentOperationCallable() { return createDocumentOperationCallable; } @Override public UnaryCallable importDocumentsCallable() { return importDocumentsCallable; } @Override public OperationCallable< ImportDocumentsRequest, ImportDocumentsResponse, KnowledgeOperationMetadata> importDocumentsOperationCallable() { return importDocumentsOperationCallable; } @Override public UnaryCallable deleteDocumentCallable() { return deleteDocumentCallable; } @Override public OperationCallable deleteDocumentOperationCallable() { return deleteDocumentOperationCallable; } @Override public UnaryCallable updateDocumentCallable() { return updateDocumentCallable; } @Override public OperationCallable updateDocumentOperationCallable() { return updateDocumentOperationCallable; } @Override public UnaryCallable reloadDocumentCallable() { return reloadDocumentCallable; } @Override public OperationCallable reloadDocumentOperationCallable() { return reloadDocumentOperationCallable; } @Override public UnaryCallable listLocationsCallable() { return listLocationsCallable; } @Override public UnaryCallable listLocationsPagedCallable() { return listLocationsPagedCallable; } @Override public UnaryCallable getLocationCallable() { return getLocationCallable; } @Override public final void close() { try { backgroundResources.close(); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw new IllegalStateException("Failed to close resource", e); } } @Override public void shutdown() { backgroundResources.shutdown(); } @Override public boolean isShutdown() { return backgroundResources.isShutdown(); } @Override public boolean isTerminated() { return backgroundResources.isTerminated(); } @Override public void shutdownNow() { backgroundResources.shutdownNow(); } @Override public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { return backgroundResources.awaitTermination(duration, unit); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy