import * as $dara from '@darabonba/typescript'; export declare class ListClusterChecksResponseBodyChecks extends $dara.Model { /** * @remarks * The check ID. * * @example * 1697100584236600453-ce0da5a1d627e4e9e9f96cae8ad07****-clustercheck-lboto */ checkId?: string; /** * @remarks * The creation time. * * @example * 2025-04-11T02:56:02.565982623Z */ createdAt?: string; /** * @remarks * The completion time. * * @example * 2025-04-11T02:56:18.881054031Z */ 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; }); } export declare class ListClusterChecksResponseBody extends $dara.Model { /** * @remarks * The list of checks. */ checks?: ListClusterChecksResponseBodyChecks[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }