SspUpgradePreChecksStatus

SspUpgradePreChecksStatus
Pre-Checks Status

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.

JSON Example
{
    "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
        }
    ]
}
overall_status
Required   Read-Only  

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.

Enumeration: NOT_STARTED, IN_PROGRESS, SUCCESS, SUCCESS_WITH_WARNINGS, FAILED, SKIPPED, PAUSED
pre_checks
Required  

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.

Property Of