import * as $dara from '@darabonba/typescript'; export declare class DescribeClusterTasksResponseBodyPageInfo extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The total number of results. * * @example * 10 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClusterTasksResponseBodyTasksError extends $dara.Model { /** * @remarks * The error code. * * @example * BadRequest */ code?: string; /** * @remarks * The error message. * * @example * Addon status not match */ message?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClusterTasksResponseBodyTasks extends $dara.Model { /** * @remarks * The creation time. * * @example * 2022-08-03T10:11:33+08:00 */ created?: string; /** * @remarks * The node fault error message. */ error?: DescribeClusterTasksResponseBodyTasksError; /** * @remarks * The task status. * * @example * success */ state?: string; /** * @remarks * The task ID. * * @example * install-addons-c3xxxxxx */ taskId?: string; /** * @remarks * The task type. * * @example * cluster_addon_install */ taskType?: string; /** * @remarks * The update time. * * @example * 2022-08-03T10:12:03.482+08:00 */ updated?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeClusterTasksResponseBody extends $dara.Model { nextToken?: string; /** * @remarks * The pagination information. */ pageInfo?: DescribeClusterTasksResponseBodyPageInfo; /** * @remarks * The request ID. * * @example * 0527ac9a-c899-4341-a21a-xxxxxxxxx */ requestId?: string; /** * @remarks * The task array. */ tasks?: DescribeClusterTasksResponseBodyTasks[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }