Class AMLSettings (0.1.0)

public class AMLSettings extends ClientSettings<AMLSettings>

Settings class to configure an instance of AMLClient.

The default instance has everything set to sensible defaults:

  • The default service address (financialservices.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 getInstance:


 // 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
 AMLSettings.Builder aMLSettingsBuilder = AMLSettings.newBuilder();
 aMLSettingsBuilder
     .getInstanceSettings()
     .setRetrySettings(
         aMLSettingsBuilder
             .getInstanceSettings()
             .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());
 AMLSettings aMLSettings = aMLSettingsBuilder.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 createInstance:


 // 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
 AMLSettings.Builder aMLSettingsBuilder = AMLSettings.newBuilder();
 TimedRetryAlgorithm timedRetryAlgorithm =
     OperationalTimedPollAlgorithm.create(
         RetrySettings.newBuilder()
             .setInitialRetryDelayDuration(Duration.ofMillis(500))
             .setRetryDelayMultiplier(1.5)
             .setMaxRetryDelayDuration(Duration.ofMillis(5000))
             .setTotalTimeoutDuration(Duration.ofHours(24))
             .build());
 aMLSettingsBuilder
     .createClusterOperationSettings()
     .setPollingAlgorithm(timedRetryAlgorithm)
     .build();
 

Inheritance

java.lang.Object > ClientSettings > AMLSettings

Static Methods

create(AMLStubSettings stub)

public static final AMLSettings create(AMLStubSettings stub)
Parameter
Name Description
stub AMLStubSettings
Returns
Type Description
AMLSettings
Exceptions
Type Description
IOException

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
Type Description
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
Type Description
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
Type Description
Builder

defaultGrpcTransportProviderBuilder()

public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()

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

Returns
Type Description
Builder

defaultHttpJsonTransportProviderBuilder()

public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()

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

Returns
Type Description
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns
Type Description
TransportChannelProvider

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
Type Description
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
Type Description
List<String>

newBuilder()

public static AMLSettings.Builder newBuilder()

Returns a new gRPC builder for this class.

Returns
Type Description
AMLSettings.Builder

newBuilder(ClientContext clientContext)

public static AMLSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
Name Description
clientContext ClientContext
Returns
Type Description
AMLSettings.Builder

newHttpJsonBuilder()

public static AMLSettings.Builder newHttpJsonBuilder()

Returns a new REST builder for this class.

Returns
Type Description
AMLSettings.Builder

Constructors

AMLSettings(AMLSettings.Builder settingsBuilder)

protected AMLSettings(AMLSettings.Builder settingsBuilder)
Parameter
Name Description
settingsBuilder AMLSettings.Builder

Methods

createBacktestResultOperationSettings()

public OperationCallSettings<CreateBacktestResultRequest,BacktestResult,OperationMetadata> createBacktestResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreateBacktestResultRequest,BacktestResult,OperationMetadata>

createBacktestResultSettings()

public UnaryCallSettings<CreateBacktestResultRequest,Operation> createBacktestResultSettings()

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

Returns
Type Description
UnaryCallSettings<CreateBacktestResultRequest,Operation>

createDatasetOperationSettings()

public OperationCallSettings<CreateDatasetRequest,Dataset,OperationMetadata> createDatasetOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreateDatasetRequest,Dataset,OperationMetadata>

createDatasetSettings()

public UnaryCallSettings<CreateDatasetRequest,Operation> createDatasetSettings()

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

Returns
Type Description
UnaryCallSettings<CreateDatasetRequest,Operation>

createEngineConfigOperationSettings()

public OperationCallSettings<CreateEngineConfigRequest,EngineConfig,OperationMetadata> createEngineConfigOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreateEngineConfigRequest,EngineConfig,OperationMetadata>

createEngineConfigSettings()

public UnaryCallSettings<CreateEngineConfigRequest,Operation> createEngineConfigSettings()

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

Returns
Type Description
UnaryCallSettings<CreateEngineConfigRequest,Operation>

createInstanceOperationSettings()

public OperationCallSettings<CreateInstanceRequest,Instance,OperationMetadata> createInstanceOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreateInstanceRequest,Instance,OperationMetadata>

createInstanceSettings()

public UnaryCallSettings<CreateInstanceRequest,Operation> createInstanceSettings()

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

Returns
Type Description
UnaryCallSettings<CreateInstanceRequest,Operation>

createModelOperationSettings()

public OperationCallSettings<CreateModelRequest,Model,OperationMetadata> createModelOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreateModelRequest,Model,OperationMetadata>

createModelSettings()

public UnaryCallSettings<CreateModelRequest,Operation> createModelSettings()

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

Returns
Type Description
UnaryCallSettings<CreateModelRequest,Operation>

createPredictionResultOperationSettings()

public OperationCallSettings<CreatePredictionResultRequest,PredictionResult,OperationMetadata> createPredictionResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<CreatePredictionResultRequest,PredictionResult,OperationMetadata>

createPredictionResultSettings()

public UnaryCallSettings<CreatePredictionResultRequest,Operation> createPredictionResultSettings()

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

Returns
Type Description
UnaryCallSettings<CreatePredictionResultRequest,Operation>

deleteBacktestResultOperationSettings()

public OperationCallSettings<DeleteBacktestResultRequest,Empty,OperationMetadata> deleteBacktestResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteBacktestResultRequest,Empty,OperationMetadata>

deleteBacktestResultSettings()

public UnaryCallSettings<DeleteBacktestResultRequest,Operation> deleteBacktestResultSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteBacktestResultRequest,Operation>

deleteDatasetOperationSettings()

public OperationCallSettings<DeleteDatasetRequest,Empty,OperationMetadata> deleteDatasetOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteDatasetRequest,Empty,OperationMetadata>

deleteDatasetSettings()

public UnaryCallSettings<DeleteDatasetRequest,Operation> deleteDatasetSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteDatasetRequest,Operation>

deleteEngineConfigOperationSettings()

public OperationCallSettings<DeleteEngineConfigRequest,Empty,OperationMetadata> deleteEngineConfigOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteEngineConfigRequest,Empty,OperationMetadata>

deleteEngineConfigSettings()

public UnaryCallSettings<DeleteEngineConfigRequest,Operation> deleteEngineConfigSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteEngineConfigRequest,Operation>

deleteInstanceOperationSettings()

public OperationCallSettings<DeleteInstanceRequest,Empty,OperationMetadata> deleteInstanceOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteInstanceRequest,Empty,OperationMetadata>

deleteInstanceSettings()

public UnaryCallSettings<DeleteInstanceRequest,Operation> deleteInstanceSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteInstanceRequest,Operation>

deleteModelOperationSettings()

public OperationCallSettings<DeleteModelRequest,Empty,OperationMetadata> deleteModelOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeleteModelRequest,Empty,OperationMetadata>

deleteModelSettings()

public UnaryCallSettings<DeleteModelRequest,Operation> deleteModelSettings()

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

Returns
Type Description
UnaryCallSettings<DeleteModelRequest,Operation>

deletePredictionResultOperationSettings()

public OperationCallSettings<DeletePredictionResultRequest,Empty,OperationMetadata> deletePredictionResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<DeletePredictionResultRequest,Empty,OperationMetadata>

deletePredictionResultSettings()

public UnaryCallSettings<DeletePredictionResultRequest,Operation> deletePredictionResultSettings()

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

Returns
Type Description
UnaryCallSettings<DeletePredictionResultRequest,Operation>

exportBacktestResultMetadataOperationSettings()

public OperationCallSettings<ExportBacktestResultMetadataRequest,ExportBacktestResultMetadataResponse,OperationMetadata> exportBacktestResultMetadataOperationSettings()

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

Returns
Type Description
OperationCallSettings<ExportBacktestResultMetadataRequest,ExportBacktestResultMetadataResponse,OperationMetadata>

exportBacktestResultMetadataSettings()

public UnaryCallSettings<ExportBacktestResultMetadataRequest,Operation> exportBacktestResultMetadataSettings()

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

Returns
Type Description
UnaryCallSettings<ExportBacktestResultMetadataRequest,Operation>

exportEngineConfigMetadataOperationSettings()

public OperationCallSettings<ExportEngineConfigMetadataRequest,ExportEngineConfigMetadataResponse,OperationMetadata> exportEngineConfigMetadataOperationSettings()

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

Returns
Type Description
OperationCallSettings<ExportEngineConfigMetadataRequest,ExportEngineConfigMetadataResponse,OperationMetadata>

exportEngineConfigMetadataSettings()

public UnaryCallSettings<ExportEngineConfigMetadataRequest,Operation> exportEngineConfigMetadataSettings()

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

Returns
Type Description
UnaryCallSettings<ExportEngineConfigMetadataRequest,Operation>

exportModelMetadataOperationSettings()

public OperationCallSettings<ExportModelMetadataRequest,ExportModelMetadataResponse,OperationMetadata> exportModelMetadataOperationSettings()

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

Returns
Type Description
OperationCallSettings<ExportModelMetadataRequest,ExportModelMetadataResponse,OperationMetadata>

exportModelMetadataSettings()

public UnaryCallSettings<ExportModelMetadataRequest,Operation> exportModelMetadataSettings()

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

Returns
Type Description
UnaryCallSettings<ExportModelMetadataRequest,Operation>

exportPredictionResultMetadataOperationSettings()

public OperationCallSettings<ExportPredictionResultMetadataRequest,ExportPredictionResultMetadataResponse,OperationMetadata> exportPredictionResultMetadataOperationSettings()

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

Returns
Type Description
OperationCallSettings<ExportPredictionResultMetadataRequest,ExportPredictionResultMetadataResponse,OperationMetadata>

exportPredictionResultMetadataSettings()

public UnaryCallSettings<ExportPredictionResultMetadataRequest,Operation> exportPredictionResultMetadataSettings()

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

Returns
Type Description
UnaryCallSettings<ExportPredictionResultMetadataRequest,Operation>

exportRegisteredPartiesOperationSettings()

public OperationCallSettings<ExportRegisteredPartiesRequest,ExportRegisteredPartiesResponse,OperationMetadata> exportRegisteredPartiesOperationSettings()

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

Returns
Type Description
OperationCallSettings<ExportRegisteredPartiesRequest,ExportRegisteredPartiesResponse,OperationMetadata>

exportRegisteredPartiesSettings()

public UnaryCallSettings<ExportRegisteredPartiesRequest,Operation> exportRegisteredPartiesSettings()

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

Returns
Type Description
UnaryCallSettings<ExportRegisteredPartiesRequest,Operation>

getBacktestResultSettings()

public UnaryCallSettings<GetBacktestResultRequest,BacktestResult> getBacktestResultSettings()

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

Returns
Type Description
UnaryCallSettings<GetBacktestResultRequest,BacktestResult>

getDatasetSettings()

public UnaryCallSettings<GetDatasetRequest,Dataset> getDatasetSettings()

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

Returns
Type Description
UnaryCallSettings<GetDatasetRequest,Dataset>

getEngineConfigSettings()

public UnaryCallSettings<GetEngineConfigRequest,EngineConfig> getEngineConfigSettings()

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

Returns
Type Description
UnaryCallSettings<GetEngineConfigRequest,EngineConfig>

getEngineVersionSettings()

public UnaryCallSettings<GetEngineVersionRequest,EngineVersion> getEngineVersionSettings()

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

Returns
Type Description
UnaryCallSettings<GetEngineVersionRequest,EngineVersion>

getInstanceSettings()

public UnaryCallSettings<GetInstanceRequest,Instance> getInstanceSettings()

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

Returns
Type Description
UnaryCallSettings<GetInstanceRequest,Instance>

getLocationSettings()

public UnaryCallSettings<GetLocationRequest,Location> getLocationSettings()

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

Returns
Type Description
UnaryCallSettings<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location>

getModelSettings()

public UnaryCallSettings<GetModelRequest,Model> getModelSettings()

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

Returns
Type Description
UnaryCallSettings<GetModelRequest,Model>

getPredictionResultSettings()

public UnaryCallSettings<GetPredictionResultRequest,PredictionResult> getPredictionResultSettings()

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

Returns
Type Description
UnaryCallSettings<GetPredictionResultRequest,PredictionResult>

importRegisteredPartiesOperationSettings()

public OperationCallSettings<ImportRegisteredPartiesRequest,ImportRegisteredPartiesResponse,OperationMetadata> importRegisteredPartiesOperationSettings()

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

Returns
Type Description
OperationCallSettings<ImportRegisteredPartiesRequest,ImportRegisteredPartiesResponse,OperationMetadata>

importRegisteredPartiesSettings()

public UnaryCallSettings<ImportRegisteredPartiesRequest,Operation> importRegisteredPartiesSettings()

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

Returns
Type Description
UnaryCallSettings<ImportRegisteredPartiesRequest,Operation>

listBacktestResultsSettings()

public PagedCallSettings<ListBacktestResultsRequest,ListBacktestResultsResponse,AMLClient.ListBacktestResultsPagedResponse> listBacktestResultsSettings()

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

Returns
Type Description
PagedCallSettings<ListBacktestResultsRequest,ListBacktestResultsResponse,ListBacktestResultsPagedResponse>

listDatasetsSettings()

public PagedCallSettings<ListDatasetsRequest,ListDatasetsResponse,AMLClient.ListDatasetsPagedResponse> listDatasetsSettings()

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

Returns
Type Description
PagedCallSettings<ListDatasetsRequest,ListDatasetsResponse,ListDatasetsPagedResponse>

listEngineConfigsSettings()

public PagedCallSettings<ListEngineConfigsRequest,ListEngineConfigsResponse,AMLClient.ListEngineConfigsPagedResponse> listEngineConfigsSettings()

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

Returns
Type Description
PagedCallSettings<ListEngineConfigsRequest,ListEngineConfigsResponse,ListEngineConfigsPagedResponse>

listEngineVersionsSettings()

public PagedCallSettings<ListEngineVersionsRequest,ListEngineVersionsResponse,AMLClient.ListEngineVersionsPagedResponse> listEngineVersionsSettings()

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

Returns
Type Description
PagedCallSettings<ListEngineVersionsRequest,ListEngineVersionsResponse,ListEngineVersionsPagedResponse>

listInstancesSettings()

public PagedCallSettings<ListInstancesRequest,ListInstancesResponse,AMLClient.ListInstancesPagedResponse> listInstancesSettings()

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

Returns
Type Description
PagedCallSettings<ListInstancesRequest,ListInstancesResponse,ListInstancesPagedResponse>

listLocationsSettings()

public PagedCallSettings<ListLocationsRequest,ListLocationsResponse,AMLClient.ListLocationsPagedResponse> listLocationsSettings()

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

Returns
Type Description
PagedCallSettings<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse,ListLocationsPagedResponse>

listModelsSettings()

public PagedCallSettings<ListModelsRequest,ListModelsResponse,AMLClient.ListModelsPagedResponse> listModelsSettings()

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

Returns
Type Description
PagedCallSettings<ListModelsRequest,ListModelsResponse,ListModelsPagedResponse>

listPredictionResultsSettings()

public PagedCallSettings<ListPredictionResultsRequest,ListPredictionResultsResponse,AMLClient.ListPredictionResultsPagedResponse> listPredictionResultsSettings()

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

Returns
Type Description
PagedCallSettings<ListPredictionResultsRequest,ListPredictionResultsResponse,ListPredictionResultsPagedResponse>

toBuilder()

public AMLSettings.Builder toBuilder()

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

Returns
Type Description
AMLSettings.Builder
Overrides

updateBacktestResultOperationSettings()

public OperationCallSettings<UpdateBacktestResultRequest,BacktestResult,OperationMetadata> updateBacktestResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdateBacktestResultRequest,BacktestResult,OperationMetadata>

updateBacktestResultSettings()

public UnaryCallSettings<UpdateBacktestResultRequest,Operation> updateBacktestResultSettings()

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

Returns
Type Description
UnaryCallSettings<UpdateBacktestResultRequest,Operation>

updateDatasetOperationSettings()

public OperationCallSettings<UpdateDatasetRequest,Dataset,OperationMetadata> updateDatasetOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdateDatasetRequest,Dataset,OperationMetadata>

updateDatasetSettings()

public UnaryCallSettings<UpdateDatasetRequest,Operation> updateDatasetSettings()

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

Returns
Type Description
UnaryCallSettings<UpdateDatasetRequest,Operation>

updateEngineConfigOperationSettings()

public OperationCallSettings<UpdateEngineConfigRequest,EngineConfig,OperationMetadata> updateEngineConfigOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdateEngineConfigRequest,EngineConfig,OperationMetadata>

updateEngineConfigSettings()

public UnaryCallSettings<UpdateEngineConfigRequest,Operation> updateEngineConfigSettings()

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

Returns
Type Description
UnaryCallSettings<UpdateEngineConfigRequest,Operation>

updateInstanceOperationSettings()

public OperationCallSettings<UpdateInstanceRequest,Instance,OperationMetadata> updateInstanceOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdateInstanceRequest,Instance,OperationMetadata>

updateInstanceSettings()

public UnaryCallSettings<UpdateInstanceRequest,Operation> updateInstanceSettings()

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

Returns
Type Description
UnaryCallSettings<UpdateInstanceRequest,Operation>

updateModelOperationSettings()

public OperationCallSettings<UpdateModelRequest,Model,OperationMetadata> updateModelOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdateModelRequest,Model,OperationMetadata>

updateModelSettings()

public UnaryCallSettings<UpdateModelRequest,Operation> updateModelSettings()

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

Returns
Type Description
UnaryCallSettings<UpdateModelRequest,Operation>

updatePredictionResultOperationSettings()

public OperationCallSettings<UpdatePredictionResultRequest,PredictionResult,OperationMetadata> updatePredictionResultOperationSettings()

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

Returns
Type Description
OperationCallSettings<UpdatePredictionResultRequest,PredictionResult,OperationMetadata>

updatePredictionResultSettings()

public UnaryCallSettings<UpdatePredictionResultRequest,Operation> updatePredictionResultSettings()

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

Returns
Type Description
UnaryCallSettings<UpdatePredictionResultRequest,Operation>