Interface BatchJob

Config for batches.create return value.

interface BatchJob {
    createTime?: string;
    dest?: BatchJobDestination;
    displayName?: string;
    endTime?: string;
    error?: JobError;
    model?: string;
    name?: string;
    src?: BatchJobSource;
    startTime?: string;
    state?: JobState;
    updateTime?: string;
}

Properties

createTime?: string

The time when the BatchJob was created.

Configuration for the output data.

displayName?: string

The display name of the BatchJob.

endTime?: string

The time when the BatchJob was completed.

error?: JobError

Output only. Only populated when the job's state is JOB_STATE_FAILED or JOB_STATE_CANCELLED.

model?: string

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

name?: string

The resource name of the BatchJob. Output only.".

Configuration for the input data.

startTime?: string

Output only. Time when the Job for the first time entered the JOB_STATE_RUNNING state.

state?: JobState

The state of the BatchJob.

updateTime?: string

The time when the BatchJob was last updated.