BaseUpgradeStatusMessage

BaseUpgradeStatusMessage
Base Status Message

Individual status message providing feedback about step execution. Messages are categorized by severity and provide human-readable information for operators.

JSON Example
{
    "severity": "string",
    "message": "string"
}
string
severity
Required

Severity level indicating the importance and type of the message.

INFO represents informational messages about normal progress or milestones.

WARNING represents non-critical issues that do not prevent step completion but should be reviewed.

ERROR represents critical issues that prevent step completion or indicate failure.

Enumeration: INFO, WARNING, ERROR
string
message
Required

Human-readable message text providing specific information about the step's progress, warnings, or errors.