com.google.cloud.dialogflow.v2.stub.GrpcParticipantsStub Maven / Gradle / Ivy
Show all versions of google-cloud-dialogflow 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.dialogflow.v2.stub;
import static com.google.cloud.dialogflow.v2.ParticipantsClient.ListLocationsPagedResponse;
import static com.google.cloud.dialogflow.v2.ParticipantsClient.ListParticipantsPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.core.BackgroundResourceAggregation;
import com.google.api.gax.grpc.GrpcCallSettings;
import com.google.api.gax.grpc.GrpcStubCallableFactory;
import com.google.api.gax.rpc.BidiStreamingCallable;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.RequestParamsBuilder;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.dialogflow.v2.AnalyzeContentRequest;
import com.google.cloud.dialogflow.v2.AnalyzeContentResponse;
import com.google.cloud.dialogflow.v2.CreateParticipantRequest;
import com.google.cloud.dialogflow.v2.GetParticipantRequest;
import com.google.cloud.dialogflow.v2.ListParticipantsRequest;
import com.google.cloud.dialogflow.v2.ListParticipantsResponse;
import com.google.cloud.dialogflow.v2.Participant;
import com.google.cloud.dialogflow.v2.StreamingAnalyzeContentRequest;
import com.google.cloud.dialogflow.v2.StreamingAnalyzeContentResponse;
import com.google.cloud.dialogflow.v2.SuggestArticlesRequest;
import com.google.cloud.dialogflow.v2.SuggestArticlesResponse;
import com.google.cloud.dialogflow.v2.SuggestFaqAnswersRequest;
import com.google.cloud.dialogflow.v2.SuggestFaqAnswersResponse;
import com.google.cloud.dialogflow.v2.SuggestSmartRepliesRequest;
import com.google.cloud.dialogflow.v2.SuggestSmartRepliesResponse;
import com.google.cloud.dialogflow.v2.UpdateParticipantRequest;
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.longrunning.stub.GrpcOperationsStub;
import io.grpc.MethodDescriptor;
import io.grpc.protobuf.ProtoUtils;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* gRPC stub implementation for the Participants service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public class GrpcParticipantsStub extends ParticipantsStub {
private static final MethodDescriptor
createParticipantMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/CreateParticipant")
.setRequestMarshaller(
ProtoUtils.marshaller(CreateParticipantRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Participant.getDefaultInstance()))
.build();
private static final MethodDescriptor
getParticipantMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/GetParticipant")
.setRequestMarshaller(
ProtoUtils.marshaller(GetParticipantRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Participant.getDefaultInstance()))
.build();
private static final MethodDescriptor
listParticipantsMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/ListParticipants")
.setRequestMarshaller(
ProtoUtils.marshaller(ListParticipantsRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(ListParticipantsResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor
updateParticipantMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/UpdateParticipant")
.setRequestMarshaller(
ProtoUtils.marshaller(UpdateParticipantRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Participant.getDefaultInstance()))
.build();
private static final MethodDescriptor
analyzeContentMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/AnalyzeContent")
.setRequestMarshaller(
ProtoUtils.marshaller(AnalyzeContentRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(AnalyzeContentResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor<
StreamingAnalyzeContentRequest, StreamingAnalyzeContentResponse>
streamingAnalyzeContentMethodDescriptor =
MethodDescriptor
.newBuilder()
.setType(MethodDescriptor.MethodType.BIDI_STREAMING)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/StreamingAnalyzeContent")
.setRequestMarshaller(
ProtoUtils.marshaller(StreamingAnalyzeContentRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(StreamingAnalyzeContentResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor
suggestArticlesMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/SuggestArticles")
.setRequestMarshaller(
ProtoUtils.marshaller(SuggestArticlesRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(SuggestArticlesResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor
suggestFaqAnswersMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/SuggestFaqAnswers")
.setRequestMarshaller(
ProtoUtils.marshaller(SuggestFaqAnswersRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(SuggestFaqAnswersResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor
suggestSmartRepliesMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.dialogflow.v2.Participants/SuggestSmartReplies")
.setRequestMarshaller(
ProtoUtils.marshaller(SuggestSmartRepliesRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(SuggestSmartRepliesResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor
listLocationsMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.location.Locations/ListLocations")
.setRequestMarshaller(
ProtoUtils.marshaller(ListLocationsRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(ListLocationsResponse.getDefaultInstance()))
.build();
private static final MethodDescriptor getLocationMethodDescriptor =
MethodDescriptor.newBuilder()
.setType(MethodDescriptor.MethodType.UNARY)
.setFullMethodName("google.cloud.location.Locations/GetLocation")
.setRequestMarshaller(ProtoUtils.marshaller(GetLocationRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Location.getDefaultInstance()))
.build();
private final UnaryCallable createParticipantCallable;
private final UnaryCallable getParticipantCallable;
private final UnaryCallable
listParticipantsCallable;
private final UnaryCallable
listParticipantsPagedCallable;
private final UnaryCallable updateParticipantCallable;
private final UnaryCallable analyzeContentCallable;
private final BidiStreamingCallable<
StreamingAnalyzeContentRequest, StreamingAnalyzeContentResponse>
streamingAnalyzeContentCallable;
private final UnaryCallable
suggestArticlesCallable;
private final UnaryCallable
suggestFaqAnswersCallable;
private final UnaryCallable
suggestSmartRepliesCallable;
private final UnaryCallable listLocationsCallable;
private final UnaryCallable
listLocationsPagedCallable;
private final UnaryCallable getLocationCallable;
private final BackgroundResource backgroundResources;
private final GrpcOperationsStub operationsStub;
private final GrpcStubCallableFactory callableFactory;
public static final GrpcParticipantsStub create(ParticipantsStubSettings settings)
throws IOException {
return new GrpcParticipantsStub(settings, ClientContext.create(settings));
}
public static final GrpcParticipantsStub create(ClientContext clientContext) throws IOException {
return new GrpcParticipantsStub(ParticipantsStubSettings.newBuilder().build(), clientContext);
}
public static final GrpcParticipantsStub create(
ClientContext clientContext, GrpcStubCallableFactory callableFactory) throws IOException {
return new GrpcParticipantsStub(
ParticipantsStubSettings.newBuilder().build(), clientContext, callableFactory);
}
/**
* Constructs an instance of GrpcParticipantsStub, 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 GrpcParticipantsStub(ParticipantsStubSettings settings, ClientContext clientContext)
throws IOException {
this(settings, clientContext, new GrpcParticipantsCallableFactory());
}
/**
* Constructs an instance of GrpcParticipantsStub, 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 GrpcParticipantsStub(
ParticipantsStubSettings settings,
ClientContext clientContext,
GrpcStubCallableFactory callableFactory)
throws IOException {
this.callableFactory = callableFactory;
this.operationsStub = GrpcOperationsStub.create(clientContext, callableFactory);
GrpcCallSettings createParticipantTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(createParticipantMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("parent", String.valueOf(request.getParent()));
return builder.build();
})
.build();
GrpcCallSettings getParticipantTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(getParticipantMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("name", String.valueOf(request.getName()));
return builder.build();
})
.build();
GrpcCallSettings
listParticipantsTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(listParticipantsMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("parent", String.valueOf(request.getParent()));
return builder.build();
})
.build();
GrpcCallSettings updateParticipantTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(updateParticipantMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add(
"participant.name", String.valueOf(request.getParticipant().getName()));
return builder.build();
})
.build();
GrpcCallSettings
analyzeContentTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(analyzeContentMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("participant", String.valueOf(request.getParticipant()));
return builder.build();
})
.build();
GrpcCallSettings
streamingAnalyzeContentTransportSettings =
GrpcCallSettings
.newBuilder()
.setMethodDescriptor(streamingAnalyzeContentMethodDescriptor)
.build();
GrpcCallSettings
suggestArticlesTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(suggestArticlesMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("parent", String.valueOf(request.getParent()));
return builder.build();
})
.build();
GrpcCallSettings
suggestFaqAnswersTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(suggestFaqAnswersMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("parent", String.valueOf(request.getParent()));
return builder.build();
})
.build();
GrpcCallSettings
suggestSmartRepliesTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(suggestSmartRepliesMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("parent", String.valueOf(request.getParent()));
return builder.build();
})
.build();
GrpcCallSettings listLocationsTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(listLocationsMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("name", String.valueOf(request.getName()));
return builder.build();
})
.build();
GrpcCallSettings getLocationTransportSettings =
GrpcCallSettings.newBuilder()
.setMethodDescriptor(getLocationMethodDescriptor)
.setParamsExtractor(
request -> {
RequestParamsBuilder builder = RequestParamsBuilder.create();
builder.add("name", String.valueOf(request.getName()));
return builder.build();
})
.build();
this.createParticipantCallable =
callableFactory.createUnaryCallable(
createParticipantTransportSettings,
settings.createParticipantSettings(),
clientContext);
this.getParticipantCallable =
callableFactory.createUnaryCallable(
getParticipantTransportSettings, settings.getParticipantSettings(), clientContext);
this.listParticipantsCallable =
callableFactory.createUnaryCallable(
listParticipantsTransportSettings, settings.listParticipantsSettings(), clientContext);
this.listParticipantsPagedCallable =
callableFactory.createPagedCallable(
listParticipantsTransportSettings, settings.listParticipantsSettings(), clientContext);
this.updateParticipantCallable =
callableFactory.createUnaryCallable(
updateParticipantTransportSettings,
settings.updateParticipantSettings(),
clientContext);
this.analyzeContentCallable =
callableFactory.createUnaryCallable(
analyzeContentTransportSettings, settings.analyzeContentSettings(), clientContext);
this.streamingAnalyzeContentCallable =
callableFactory.createBidiStreamingCallable(
streamingAnalyzeContentTransportSettings,
settings.streamingAnalyzeContentSettings(),
clientContext);
this.suggestArticlesCallable =
callableFactory.createUnaryCallable(
suggestArticlesTransportSettings, settings.suggestArticlesSettings(), clientContext);
this.suggestFaqAnswersCallable =
callableFactory.createUnaryCallable(
suggestFaqAnswersTransportSettings,
settings.suggestFaqAnswersSettings(),
clientContext);
this.suggestSmartRepliesCallable =
callableFactory.createUnaryCallable(
suggestSmartRepliesTransportSettings,
settings.suggestSmartRepliesSettings(),
clientContext);
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());
}
public GrpcOperationsStub getOperationsStub() {
return operationsStub;
}
@Override
public UnaryCallable createParticipantCallable() {
return createParticipantCallable;
}
@Override
public UnaryCallable getParticipantCallable() {
return getParticipantCallable;
}
@Override
public UnaryCallable
listParticipantsCallable() {
return listParticipantsCallable;
}
@Override
public UnaryCallable
listParticipantsPagedCallable() {
return listParticipantsPagedCallable;
}
@Override
public UnaryCallable updateParticipantCallable() {
return updateParticipantCallable;
}
@Override
public UnaryCallable analyzeContentCallable() {
return analyzeContentCallable;
}
@Override
public BidiStreamingCallable
streamingAnalyzeContentCallable() {
return streamingAnalyzeContentCallable;
}
@Override
public UnaryCallable suggestArticlesCallable() {
return suggestArticlesCallable;
}
@Override
public UnaryCallable
suggestFaqAnswersCallable() {
return suggestFaqAnswersCallable;
}
@Override
public UnaryCallable
suggestSmartRepliesCallable() {
return suggestSmartRepliesCallable;
}
@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);
}
}