Class EnvironmentsSettings (0.13.0)

public class EnvironmentsSettings extends ClientSettings<EnvironmentsSettings>

Settings class to configure an instance of EnvironmentsClient.

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 getEnvironment to 30 seconds:


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

Inheritance

java.lang.Object > ClientSettings > EnvironmentsSettings

Static Methods

create(EnvironmentsStubSettings stub)

public static final EnvironmentsSettings create(EnvironmentsStubSettings stub)
Parameter
NameDescription
stubEnvironmentsStubSettings
Returns
TypeDescription
EnvironmentsSettings
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 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 EnvironmentsSettings.Builder newBuilder()

Returns a new builder for this class.

Returns

newBuilder(ClientContext clientContext)

public static EnvironmentsSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns

Constructors

EnvironmentsSettings(EnvironmentsSettings.Builder settingsBuilder)

protected EnvironmentsSettings(EnvironmentsSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderEnvironmentsSettings.Builder

Methods

createEnvironmentOperationSettings()

public OperationCallSettings<CreateEnvironmentRequest,Environment,Struct> createEnvironmentOperationSettings()

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

Returns

createEnvironmentSettings()

public UnaryCallSettings<CreateEnvironmentRequest,Operation> createEnvironmentSettings()

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

Returns

deleteEnvironmentSettings()

public UnaryCallSettings<DeleteEnvironmentRequest,Empty> deleteEnvironmentSettings()

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

Returns

deployFlowOperationSettings()

public OperationCallSettings<DeployFlowRequest,DeployFlowResponse,DeployFlowMetadata> deployFlowOperationSettings()

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

Returns

deployFlowSettings()

public UnaryCallSettings<DeployFlowRequest,Operation> deployFlowSettings()

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

Returns

getEnvironmentSettings()

public UnaryCallSettings<GetEnvironmentRequest,Environment> getEnvironmentSettings()

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

Returns

listContinuousTestResultsSettings()

public PagedCallSettings<ListContinuousTestResultsRequest,ListContinuousTestResultsResponse,EnvironmentsClient.ListContinuousTestResultsPagedResponse> listContinuousTestResultsSettings()

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

Returns

listEnvironmentsSettings()

public PagedCallSettings<ListEnvironmentsRequest,ListEnvironmentsResponse,EnvironmentsClient.ListEnvironmentsPagedResponse> listEnvironmentsSettings()

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

Returns

lookupEnvironmentHistorySettings()

public PagedCallSettings<LookupEnvironmentHistoryRequest,LookupEnvironmentHistoryResponse,EnvironmentsClient.LookupEnvironmentHistoryPagedResponse> lookupEnvironmentHistorySettings()

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

Returns

runContinuousTestOperationSettings()

public OperationCallSettings<RunContinuousTestRequest,RunContinuousTestResponse,RunContinuousTestMetadata> runContinuousTestOperationSettings()

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

Returns

runContinuousTestSettings()

public UnaryCallSettings<RunContinuousTestRequest,Operation> runContinuousTestSettings()

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

Returns

toBuilder()

public EnvironmentsSettings.Builder toBuilder()

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

Returns Overrides

updateEnvironmentOperationSettings()

public OperationCallSettings<UpdateEnvironmentRequest,Environment,Struct> updateEnvironmentOperationSettings()

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

Returns

updateEnvironmentSettings()

public UnaryCallSettings<UpdateEnvironmentRequest,Operation> updateEnvironmentSettings()

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

Returns