JobStatus

class JobStatus[source]

Bases: Enum

Status of a job on the Qoro Service.

Attributes Summary

CANCELLED

Job was cancelled before completion.

COMPLETED

Job has finished successfully.

FAILED

Job execution encountered an error.

PENDING

Job is queued and waiting to be processed.

RUNNING

Job is currently being executed.

Attributes Documentation

CANCELLED = 'CANCELLED'

Job was cancelled before completion.

COMPLETED = 'COMPLETED'

Job has finished successfully.

FAILED = 'FAILED'

Job execution encountered an error.

PENDING = 'PENDING'

Job is queued and waiting to be processed.

RUNNING = 'RUNNING'

Job is currently being executed.