BaseUpgradeStepStatus
Base schema containing status-related fields for tracking execution state of steps. This schema provides standardized status reporting with detailed messages and execution timestamps.
{
"status": "string",
"messages": [
{
"severity": "string",
"message": "string"
}
],
"last_run_time": 0
}
Current execution state of the step.
Ordered list of status messages generated during execution. Messages provide real-time feedback including progress updates, warnings about non-critical issues, and errors describing failures.
Timestamp in milliseconds since Unix epoch (January 1, 1970 00:00:00 UTC) indicating when this step was last executed. This field is only present after the step has been executed at least once. It will be absent for steps in NOT_STARTED state.