Class BatchControllerSettings (2.3.1)

public class BatchControllerSettings extends ClientSettings<BatchControllerSettings>

Settings class to configure an instance of BatchControllerClient.

The default instance has everything set to sensible defaults:

  • The default service address (dataproc.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 getBatch to 30 seconds:


 BatchControllerSettings.Builder batchControllerSettingsBuilder =
     BatchControllerSettings.newBuilder();
 batchControllerSettingsBuilder
     .getBatchSettings()
     .setRetrySettings(
         batchControllerSettingsBuilder
             .getBatchSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 BatchControllerSettings batchControllerSettings = batchControllerSettingsBuilder.build();
 

Inheritance

java.lang.Object > ClientSettings > BatchControllerSettings

Constructors

BatchControllerSettings(BatchControllerSettings.Builder settingsBuilder)

protected BatchControllerSettings(BatchControllerSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderBatchControllerSettings.Builder

Methods

create(BatchControllerStubSettings stub)

public static final BatchControllerSettings create(BatchControllerStubSettings stub)
Parameter
NameDescription
stubBatchControllerStubSettings
Returns
TypeDescription
BatchControllerSettings
Exceptions
TypeDescription
IOException

createBatchOperationSettings()

public OperationCallSettings<CreateBatchRequest,Batch,BatchOperationMetadata> createBatchOperationSettings()

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

Returns
TypeDescription
OperationCallSettings<CreateBatchRequest,Batch,BatchOperationMetadata>

createBatchSettings()

public UnaryCallSettings<CreateBatchRequest,Operation> createBatchSettings()

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

Returns
TypeDescription
UnaryCallSettings<CreateBatchRequest,Operation>

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
TypeDescription
TransportChannelProvider

deleteBatchSettings()

public UnaryCallSettings<DeleteBatchRequest,Empty> deleteBatchSettings()

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

Returns
TypeDescription
UnaryCallSettings<DeleteBatchRequest,Empty>

getBatchSettings()

public UnaryCallSettings<GetBatchRequest,Batch> getBatchSettings()

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

Returns
TypeDescription
UnaryCallSettings<GetBatchRequest,Batch>

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>

listBatchesSettings()

public PagedCallSettings<ListBatchesRequest,ListBatchesResponse,BatchControllerClient.ListBatchesPagedResponse> listBatchesSettings()

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

Returns
TypeDescription
PagedCallSettings<ListBatchesRequest,ListBatchesResponse,ListBatchesPagedResponse>

newBuilder()

public static BatchControllerSettings.Builder newBuilder()

Returns a new builder for this class.

Returns
TypeDescription
BatchControllerSettings.Builder

newBuilder(ClientContext clientContext)

public static BatchControllerSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns
TypeDescription
BatchControllerSettings.Builder

toBuilder()

public BatchControllerSettings.Builder toBuilder()

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

Returns
TypeDescription
BatchControllerSettings.Builder
Overrides