import * as $dara from '@darabonba/typescript'; export declare class DescribeClusterLogsResponseBody extends $dara.Model { /** * @remarks * 日志ID。 * * @example * 73117232145****** */ ID?: number; /** * @remarks * 集群ID。 * * @example * c23421cfa74454bc8b37163fd19af*** */ clusterId?: string; /** * @remarks * 日志内容。 * * @example * start to update cluster status to CREATE_COMPLETE */ clusterLog?: string; /** * @remarks * 日志产生时间。 * * @example * 2025-04-10T17:54:26+08:00 */ created?: string; /** * @remarks * 日志更新时间。 * * @example * 2025-04-10T17:54:26+08:00 */ updated?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClusterLogsResponse extends $dara.Model { headers?: { [key: string]: string; }; statusCode?: number; body?: DescribeClusterLogsResponseBody[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }