Skip to content

Progress

@trimblecloudplatform/trimblecloud.processing


@trimblecloudplatform/trimblecloud.processing / Progress

Enumeration: Progress

Defined in: src/models/executions.ts:285

The execution_status of an Execution describes its processing status. Possible values are:

  • UNSUBMITTED: The execution was not successfully submitted to SWF.
  • SUBMITTED: The execution was successfully submitted to SWF for handling by the Decider.
  • WAITING: The execution is not ready to be executed.
  • QUEUED: The execution is in the queue.
  • EXECUTING: The execution is currently being executed.
  • FAILED: The execution has failed.
  • FINISHED: The execution has finished successfully.

Enumeration Members

EXECUTING

EXECUTING: "EXECUTING"

Defined in: src/models/executions.ts:290


FAILED

FAILED: "FAILED"

Defined in: src/models/executions.ts:291


FINISHED

FINISHED: "FINISHED"

Defined in: src/models/executions.ts:292


QUEUED

QUEUED: "QUEUED"

Defined in: src/models/executions.ts:289


SUBMITTED

SUBMITTED: "SUBMITTED"

Defined in: src/models/executions.ts:287


UNSUBMITTED

UNSUBMITTED: "UNSUBMITTED"

Defined in: src/models/executions.ts:286


WAITING

WAITING: "WAITING"

Defined in: src/models/executions.ts:288