Class ExecutionsSettings (0.73.0)

publicclass ExecutionsSettingsextendsClientSettings<ExecutionsSettings>

Settings class to configure an instance of ExecutionsClient.

The default instance has everything set to sensible defaults:

  • The default service address (run.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 RetrySettings of getExecution:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ExecutionsSettings.BuilderexecutionsSettingsBuilder=ExecutionsSettings.newBuilder();
executionsSettingsBuilder
.getExecutionSettings()
.setRetrySettings(
executionsSettingsBuilder
.getExecutionSettings()
.getRetrySettings()
.toBuilder()
.setInitialRetryDelayDuration(Duration.ofSeconds(1))
.setInitialRpcTimeoutDuration(Duration.ofSeconds(5))
.setMaxAttempts(5)
.setMaxRetryDelayDuration(Duration.ofSeconds(30))
.setMaxRpcTimeoutDuration(Duration.ofSeconds(60))
.setRetryDelayMultiplier(1.3)
.setRpcTimeoutMultiplier(1.5)
.setTotalTimeoutDuration(Duration.ofSeconds(300))
.build());
ExecutionsSettingsexecutionsSettings=executionsSettingsBuilder.build();

Please refer to the Client Side Retry Guide for additional support in setting retries.

To configure the RetrySettings of a Long Running Operation method, create an OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to configure the RetrySettings for deleteExecution:


// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ExecutionsSettings.BuilderexecutionsSettingsBuilder=ExecutionsSettings.newBuilder();
TimedRetryAlgorithmtimedRetryAlgorithm=
OperationalTimedPollAlgorithm.create(
RetrySettings.newBuilder()
.setInitialRetryDelayDuration(Duration.ofMillis(500))
.setRetryDelayMultiplier(1.5)
.setMaxRetryDelayDuration(Duration.ofMillis(5000))
.setTotalTimeoutDuration(Duration.ofHours(24))
.build());
executionsSettingsBuilder
.createClusterOperationSettings()
.setPollingAlgorithm(timedRetryAlgorithm)
.build();

Inheritance

java.lang.Object > ClientSettings > ExecutionsSettings

Inherited Members

Static Methods

create(ExecutionsStubSettings stub)

publicstaticfinalExecutionsSettingscreate(ExecutionsStubSettingsstub)
Parameter
Name Description
stub ExecutionsStubSettings
Returns
Type Description
ExecutionsSettings
Exceptions
Type Description
IOException

defaultApiClientHeaderProviderBuilder()

publicstaticApiClientHeaderProvider.BuilderdefaultApiClientHeaderProviderBuilder()
Returns
Type Description
Builder

defaultCredentialsProviderBuilder()

publicstaticGoogleCredentialsProvider.BuilderdefaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
Type Description
Builder

defaultExecutorProviderBuilder()

publicstaticInstantiatingExecutorProvider.BuilderdefaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
Type Description
Builder

defaultGrpcTransportProviderBuilder()

publicstaticInstantiatingGrpcChannelProvider.BuilderdefaultGrpcTransportProviderBuilder()

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

Returns
Type Description
Builder

defaultHttpJsonTransportProviderBuilder()

publicstaticInstantiatingHttpJsonChannelProvider.BuilderdefaultHttpJsonTransportProviderBuilder()

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

Returns
Type Description
Builder

defaultTransportChannelProvider()

publicstaticTransportChannelProviderdefaultTransportChannelProvider()
Returns
Type Description
TransportChannelProvider

getDefaultEndpoint()

publicstaticStringgetDefaultEndpoint()

Returns the default service endpoint.

Returns
Type Description
String

getDefaultServiceScopes()

publicstaticList<String>getDefaultServiceScopes()

Returns the default service scopes.

Returns
Type Description
List<String>

newBuilder()

publicstaticExecutionsSettings.BuildernewBuilder()

Returns a new gRPC builder for this class.

Returns
Type Description
ExecutionsSettings.Builder

newBuilder(ClientContext clientContext)

publicstaticExecutionsSettings.BuildernewBuilder(ClientContextclientContext)

Returns a new builder for this class.

Parameter
Name Description
clientContext ClientContext
Returns
Type Description
ExecutionsSettings.Builder

newHttpJsonBuilder()

publicstaticExecutionsSettings.BuildernewHttpJsonBuilder()

Returns a new REST builder for this class.

Returns
Type Description
ExecutionsSettings.Builder

Constructors

ExecutionsSettings(ExecutionsSettings.Builder settingsBuilder)

protectedExecutionsSettings(ExecutionsSettings.BuildersettingsBuilder)
Parameter
Name Description
settingsBuilder ExecutionsSettings.Builder

Methods

cancelExecutionOperationSettings()

publicOperationCallSettings<CancelExecutionRequest,Execution,Execution>cancelExecutionOperationSettings()

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

Returns
Type Description
OperationCallSettings<CancelExecutionRequest,Execution,Execution>

cancelExecutionSettings()

publicUnaryCallSettings<CancelExecutionRequest,Operation>cancelExecutionSettings()

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

Returns
Type Description
UnaryCallSettings<CancelExecutionRequest,Operation>

deleteExecutionOperationSettings()

publicOperationCallSettings<DeleteExecutionRequest,Execution,Execution>deleteExecutionOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteExecutionRequest,Execution,Execution>

deleteExecutionSettings()

publicUnaryCallSettings<DeleteExecutionRequest,Operation>deleteExecutionSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteExecutionRequest,Operation>

getExecutionSettings()

publicUnaryCallSettings<GetExecutionRequest,Execution>getExecutionSettings()

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

Returns
Type Description
UnaryCallSettings<GetExecutionRequest,Execution>

listExecutionsSettings()

publicPagedCallSettings<ListExecutionsRequest,ListExecutionsResponse,ExecutionsClient.ListExecutionsPagedResponse>listExecutionsSettings()

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

Returns
Type Description
PagedCallSettings<ListExecutionsRequest,ListExecutionsResponse,ListExecutionsPagedResponse>

toBuilder()

publicExecutionsSettings.BuildertoBuilder()

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

Returns
Type Description
ExecutionsSettings.Builder
Overrides

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月30日 UTC.