import * as $dara from '@darabonba/typescript'; export declare class ListClusterInspectReportsResponseBodyReportsSummary extends $dara.Model { /** * @remarks * The number of check items with a result of advice. * * @example * 0 */ adviceCount?: number; /** * @remarks * The status code of the check task result. * * @example * warning */ code?: string; /** * @remarks * The number of check items with a result of error. * * @example * 0 */ errorCount?: number; /** * @remarks * The number of check items with a result of normal. * * @example * 1 */ normalCount?: number; /** * @remarks * The number of check items with a result of warning. * * @example * 0 */ warnCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListClusterInspectReportsResponseBodyReports extends $dara.Model { /** * @remarks * The completion time of the inspection report. * * @example * 2024-12-18T19:40:16.778333+08:00 */ endTime?: string; /** * @remarks * The inspection report ID. * * @example * 782df89346054a0000562063a6**** */ reportId?: string; /** * @remarks * The start time of the inspection report. * * @example * 2024-12-18T19:40:16.778333+08:00 */ startTime?: string; /** * @remarks * The generation status of the inspection report. * * @example * completed */ status?: string; /** * @remarks * The inspection report summary. */ summary?: ListClusterInspectReportsResponseBodyReportsSummary; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListClusterInspectReportsResponseBody extends $dara.Model { /** * @remarks * The pagination token. * * @example * 405b99e5411f9a4e7148506e45 */ nextToken?: string; /** * @remarks * The inspection reports. */ reports?: ListClusterInspectReportsResponseBodyReports[]; /** * @remarks * The request ID. * * @example * 49511F2D-D56A-5C24-B9AE-C8491E09B*** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }