import * as $dara from '@darabonba/typescript'; export declare class GetClusterCheckResponseBody extends $dara.Model { /** * @remarks * The check ID. * * @example * 1697100584236600453-ce0da5a1d627e4e9e9f96cae8ad07****-clustercheck-lboto */ checkId?: string; /** * @remarks * The check items. */ checkItems?: { [key: string]: { [key: string]: any; }[]; }; /** * @remarks * The creation time. * * @example * 2023-10-16T08:31:20.292030178Z */ createdAt?: string; /** * @remarks * The completion time. * * @example * 2023-10-16T08:35:20.292030178Z */ finishedAt?: string; /** * @remarks * The check status message. * * @example * task succeed */ message?: string; /** * @remarks * The check status. * * @example * Succeeded */ status?: string; /** * @remarks * The check type. * * @example * ClusterUpgrade */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }