import * as $dara from '@darabonba/typescript'; export declare class GetUpgradeStatusResponseBodyUpgradeTask extends $dara.Model { /** * @remarks * The description of the upgrade task. * * @example * subject to actual return */ message?: string; /** * @remarks * The upgrade task status. Valid values: * - `running`: The task is running. * - `Success`: The task is successful. * - `Failed`: The task has failed. * * @example * running */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetUpgradeStatusResponseBody extends $dara.Model { /** * @remarks * The error message during the cluster upgrade. * * @example * subject to actual return */ errorMessage?: string; /** * @remarks * The ID of the precheck report. * * @example * be4c8eb72de94d459ea7ace7c811d119 */ precheckReportId?: string; /** * @remarks * The current upgrade status of the cluster. Valid values: * * - `success`: The upgrade is successful. * - `fail`: The upgrade has failed. * - `pause`: The upgrade is paused. * - `running`: The upgrade is in progress. * * @example * running */ status?: string; /** * @remarks * The current upgrade phase of the cluster. Valid values: * * - `not_start`: Not started. * - `prechecking`: Prechecking is in progress. * - `upgrading`: The upgrade is in progress. * - `pause`: The upgrade is paused. * - `success`: The upgrade is successful. * * @example * prechecking */ upgradeStep?: string; /** * @remarks * The upgrade task details. */ upgradeTask?: GetUpgradeStatusResponseBodyUpgradeTask; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }