JobStatus

data class JobStatus(val errorResults: List<JobStatusErrorResult>? = null, val errors: List<JobStatusError>? = null, val state: String? = null)

Constructors

Link copied to clipboard
constructor(errorResults: List<JobStatusErrorResult>? = null, errors: List<JobStatusError>? = null, state: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

(Output) Final error result of the job. If present, indicates that the job has completed and was unsuccessful. Structure is documented below.

Link copied to clipboard
val errors: List<JobStatusError>? = null

(Output) The first errors encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has not completed or was unsuccessful. Structure is documented below.

Link copied to clipboard
val state: String? = null

(Output) Running state of the job. Valid states include 'PENDING', 'RUNNING', and 'DONE'.