state property
Status of the execution. Possible string values are:
- "STATE_UNSPECIFIED" : Default.
- "PENDING" : Execution is scheduled and awaiting to be triggered.
- "PROCESSING" : Execution is processing.
- "SUCCEEDED" : Execution successfully finished. There's no more change after this state.
- "FAILED" : Execution failed. There's no more change after this state.
- "CANCELLED" : Execution canceled by user. There's no more change after this state.
- "RETRY_ON_HOLD" : Execution failed and waiting for retry.
- "SUSPENDED" : Execution suspended and waiting for manual intervention.
Implementation
core.String? state;