state property
State of the resource Possible string values are:
- "unknownState" : Should never be in this state. Exists for proto deserialization backward compatibility.
- "pending" : The Execution/Step is created, ready to run, but not running yet. If an Execution/Step is created without initial state, it is assumed that the Execution/Step is in PENDING state.
- "inProgress" : The Execution/Step is in progress.
- "complete" : The finalized, immutable state. Steps/Executions in this state cannot be modified.
Implementation
core.String? state;