Interface CreateBatchJobConfig

Config for optional parameters.

interface CreateBatchJobConfig {
    abortSignal?: AbortSignal;
    dest?: BatchJobDestinationUnion;
    displayName?: string;
    httpOptions?: HttpOptions;
}

Properties

abortSignal?: AbortSignal

Abort signal which can be used to cancel the request.

NOTE: AbortSignal is a client-only operation. Using it to cancel an operation will not cancel the request in the service. You will still be charged usage for any applicable operations.

GCS or BigQuery URI prefix for the output predictions. Example: "gs://path/to/output/data" or "bq://projectId.bqDatasetId.bqTableId".

displayName?: string

The user-defined name of this BatchJob.

httpOptions?: HttpOptions

Used to override HTTP request options.