DeploymentStatus
The current state of a deployment operation.
Every deployment moves through a linear lifecycle:
Once a deployment reaches a terminal state (COMPLETED, FAILED, or ABORTED),
it cannot transition again.
enum DeploymentStatus {
PENDING
RUNNING
COMPLETED
FAILED
ABORTED
}
Values
DeploymentStatus.PENDING {#pending}
The deployment is queued and waiting for execution to begin.
DeploymentStatus.RUNNING {#running}
Infrastructure changes are actively being applied.
DeploymentStatus.COMPLETED {#completed}
All infrastructure changes were applied successfully.
DeploymentStatus.FAILED {#failed}
The deployment encountered an error. Check deployment logs for details.
DeploymentStatus.ABORTED {#aborted}
The deployment was manually stopped before it could finish.
Member Of
Deployment object ● DeploymentStatusFilter input