Class ParticipantsSettings (4.7.5)

public class ParticipantsSettings extends ClientSettings<ParticipantsSettings>

Settings class to configure an instance of ParticipantsClient.

The default instance has everything set to sensible defaults:

  • The default service address (dialogflow.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of createParticipant to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ParticipantsSettings.Builder participantsSettingsBuilder = ParticipantsSettings.newBuilder();
 participantsSettingsBuilder
     .createParticipantSettings()
     .setRetrySettings(
         participantsSettingsBuilder
             .createParticipantSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ParticipantsSettings participantsSettings = participantsSettingsBuilder.build();
 

Inheritance

java.lang.Object > ClientSettings > ParticipantsSettings

Static Methods

create(ParticipantsStubSettings stub)

public static final ParticipantsSettings create(ParticipantsStubSettings stub)
Parameter
NameDescription
stubParticipantsStubSettings
Returns
TypeDescription
ParticipantsSettings
Exceptions
TypeDescription
IOException

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
TypeDescription
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
TypeDescription
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
TypeDescription
Builder

defaultGrpcTransportProviderBuilder()

public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()

Returns a builder for the default gRPC ChannelProvider for this service.

Returns
TypeDescription
Builder

defaultHttpJsonTransportProviderBuilder()

public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()

Returns a builder for the default REST ChannelProvider for this service.

Returns
TypeDescription
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
TypeDescription
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
TypeDescription
List<String>

newBuilder()

public static ParticipantsSettings.Builder newBuilder()

Returns a new gRPC builder for this class.

Returns

newBuilder(ClientContext clientContext)

public static ParticipantsSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns

newHttpJsonBuilder()

public static ParticipantsSettings.Builder newHttpJsonBuilder()

Returns a new REST builder for this class.

Returns

Constructors

ParticipantsSettings(ParticipantsSettings.Builder settingsBuilder)

protected ParticipantsSettings(ParticipantsSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderParticipantsSettings.Builder

Methods

analyzeContentSettings()

public UnaryCallSettings<AnalyzeContentRequest,AnalyzeContentResponse> analyzeContentSettings()

Returns the object with the settings used for calls to analyzeContent.

Returns

compileSuggestionSettings() (deprecated)

public UnaryCallSettings<CompileSuggestionRequest,CompileSuggestionResponse> compileSuggestionSettings()

Deprecated. This method is deprecated and will be removed in the next major version update.

Returns the object with the settings used for calls to compileSuggestion.

Returns

createParticipantSettings()

public UnaryCallSettings<CreateParticipantRequest,Participant> createParticipantSettings()

Returns the object with the settings used for calls to createParticipant.

Returns

getParticipantSettings()

public UnaryCallSettings<GetParticipantRequest,Participant> getParticipantSettings()

Returns the object with the settings used for calls to getParticipant.

Returns

listParticipantsSettings()

public PagedCallSettings<ListParticipantsRequest,ListParticipantsResponse,ParticipantsClient.ListParticipantsPagedResponse> listParticipantsSettings()

Returns the object with the settings used for calls to listParticipants.

Returns

listSuggestionsSettings() (deprecated)

public PagedCallSettings<ListSuggestionsRequest,ListSuggestionsResponse,ParticipantsClient.ListSuggestionsPagedResponse> listSuggestionsSettings()

Deprecated. This method is deprecated and will be removed in the next major version update.

Returns the object with the settings used for calls to listSuggestions.

Returns

streamingAnalyzeContentSettings()

public StreamingCallSettings<StreamingAnalyzeContentRequest,StreamingAnalyzeContentResponse> streamingAnalyzeContentSettings()

Returns the object with the settings used for calls to streamingAnalyzeContent.

Returns

suggestArticlesSettings()

public UnaryCallSettings<SuggestArticlesRequest,SuggestArticlesResponse> suggestArticlesSettings()

Returns the object with the settings used for calls to suggestArticles.

Returns

suggestFaqAnswersSettings()

public UnaryCallSettings<SuggestFaqAnswersRequest,SuggestFaqAnswersResponse> suggestFaqAnswersSettings()

Returns the object with the settings used for calls to suggestFaqAnswers.

Returns

suggestSmartRepliesSettings()

public UnaryCallSettings<SuggestSmartRepliesRequest,SuggestSmartRepliesResponse> suggestSmartRepliesSettings()

Returns the object with the settings used for calls to suggestSmartReplies.

Returns

toBuilder()

public ParticipantsSettings.Builder toBuilder()

Returns a builder containing all the values of this settings class.

Returns Overrides

updateParticipantSettings()

public UnaryCallSettings<UpdateParticipantRequest,Participant> updateParticipantSettings()

Returns the object with the settings used for calls to updateParticipant.

Returns