SspUpgradePreChecksStatus
Aggregated status of all pre-checks validations, providing a complete view of system readiness for SSP upgrade along with detailed execution status for each individual pre-check. The overall_status provides a quick go or no-go decision, while individual pre_checks provide detailed execution results.
{
"overall_status": "string",
"pre_checks": [
{
"_create_time": 0,
"_last_modified_time": 0,
"id": "string",
"display_name": "string",
"description": "string",
"activity_status_msg": "string",
"_completed_at": 0,
"status": "string",
"messages": [
{
"severity": "string",
"message": "string"
}
],
"last_run_time": 0
}
]
}
Aggregated status across all pre-checks, representing the overall readiness of the system for upgrade.
NOT_STARTED indicates pre-checks have not been initiated.
IN_PROGRESS indicates one or more pre-checks are currently executing.
SUCCESS indicates all pre-checks passed with no issues detected.
SUCCESS_WITH_WARNINGS indicates all pre-checks completed successfully but some identified non-critical concerns. Review WARNING messages in individual pre-checks before deciding to proceed.
FAILED indicates one or more pre-checks failed due to critical issues. The system is not ready for upgrade. Review ERROR messages in failed pre-checks, address the underlying issues, and re-run pre-checks before attempting upgrade.
Note: SKIPPED is not applicable at the overall status level.
Detailed execution status for each individual pre-checks validation. Each entry combines the pre-checks definition with real-time execution state. Pre-checks are returned in a consistent order but may execute in parallel.