models.snapshot_task_status_enum module

class models.snapshot_task_status_enum.SnapshotTaskStatusEnum[source]

Bases: object

Implementation of the ‘SnapshotTaskStatus’ enum.

Specifies the status of the indexing task. ‘kJobRunning’ indicates that the Job/task is currently running. ‘kJobFinished’ indicates that the Job/task completed and finished. ‘kJobFailed’ indicates that the Job/task failed and did not complete. ‘kJobCanceled’ indicates that the Job/task was canceled. ‘kJobPaused’ indicates the Job/task is paused.

Attributes:

KJOBRUNNING: TODO: type description here. KJOBFINISHED: TODO: type description here. KJOBFAILED: TODO: type description here. KJOBCANCELED: TODO: type description here. KJOBPAUSED: TODO: type description here.

KJOBCANCELED = 'kJobCanceled'
KJOBFAILED = 'kJobFailed'
KJOBFINISHED = 'kJobFinished'
KJOBPAUSED = 'kJobPaused'
KJOBRUNNING = 'kJobRunning'