Class CreateBatchJobConfig.Builder
-
- All Implemented Interfaces:
public abstract class CreateBatchJobConfig.BuilderBuilder for CreateBatchJobConfig.
-
-
Constructor Summary
Constructors Constructor Description CreateBatchJobConfig.Builder()
-
Method Summary
-
-
Method Detail
-
httpOptions
abstract CreateBatchJobConfig.Builder httpOptions(HttpOptions httpOptions)
Setter for httpOptions.
httpOptions: Used to override HTTP request options.
-
httpOptions
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder httpOptions(HttpOptions.Builder httpOptionsBuilder)
Setter for httpOptions builder.
httpOptions: Used to override HTTP request options.
-
clearHttpOptions
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder clearHttpOptions()
Clears the value of httpOptions field.
-
displayName
abstract CreateBatchJobConfig.Builder displayName(String displayName)
Setter for displayName.
displayName: The user-defined name of this BatchJob.
-
clearDisplayName
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder clearDisplayName()
Clears the value of displayName field.
-
dest
abstract CreateBatchJobConfig.Builder dest(BatchJobDestination dest)
Setter for dest.
dest: GCS or BigQuery URI prefix for the output predictions. Example: "gs://path/to/output/data" or "bq://projectId.bqDatasetId.bqTableId".
-
dest
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder dest(BatchJobDestination.Builder destBuilder)
Setter for dest builder.
dest: GCS or BigQuery URI prefix for the output predictions. Example: "gs://path/to/output/data" or "bq://projectId.bqDatasetId.bqTableId".
-
clearDest
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder clearDest()
Clears the value of dest field.
-
webhookConfig
abstract CreateBatchJobConfig.Builder webhookConfig(WebhookConfig webhookConfig)
Setter for webhookConfig.
webhookConfig: Webhook configuration for receiving notifications when the batch operation completes.
-
webhookConfig
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder webhookConfig(WebhookConfig.Builder webhookConfigBuilder)
Setter for webhookConfig builder.
webhookConfig: Webhook configuration for receiving notifications when the batch operation completes.
-
clearWebhookConfig
@CanIgnoreReturnValue() CreateBatchJobConfig.Builder clearWebhookConfig()
Clears the value of webhookConfig field.
-
build
abstract CreateBatchJobConfig build()
-
-
-
-