Interface CreateBatchJobParameters

Config for batches.create parameters.

interface CreateBatchJobParameters {
    config?: CreateBatchJobConfig;
    model?: string;
    src: BatchJobSourceUnion;
}

Properties

Properties

Optional parameters for creating a BatchJob.

model?: string

The name of the model to produces the predictions via the BatchJob.

GCS URI(-s) or BigQuery URI to your input data to run batch job. Example: "gs://path/to/input/data" or "bq://projectId.bqDatasetId.bqTableId".