import * as $dara from '@darabonba/typescript'; export declare class DescribeEventsForRegionResponseBodyEventsData extends $dara.Model { /** * @remarks * The event level. * * @example * info */ level?: string; /** * @remarks * The event details. * * @example * Start to upgrade NodePool nodePool/nodePool-A */ message?: string; /** * @remarks * The event status. * * @example * Started */ reason?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeEventsForRegionResponseBodyEvents extends $dara.Model { /** * @remarks * The cluster ID. * * @example * c82e6987e2961451182edacd74faf**** */ clusterId?: string; /** * @remarks * The event description. */ data?: DescribeEventsForRegionResponseBodyEventsData; /** * @remarks * The event ID. * * @example * e-9ad04f72-8ee7-46bf-a02c-e4a06b39**** */ eventId?: string; /** * @remarks * The event source. * * @example * task */ source?: string; /** * @remarks * The object associated with the event. * * @example * npdd89dc2b76c04f14b06774883b****** */ subject?: string; /** * @remarks * The time when the event occurred. * * @example * 2025-05-14T10:00:56+08:00 */ time?: string; /** * @remarks * The event type. * * @example * nodePool_upgrade */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeEventsForRegionResponseBodyPageInfo extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The maximum number of results displayed on each page. * * @example * 50 */ pageSize?: number; /** * @remarks * The total number of results. * * @example * 3 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeEventsForRegionResponseBody extends $dara.Model { /** * @remarks * The list of events. */ events?: DescribeEventsForRegionResponseBodyEvents[]; nextToken?: string; /** * @remarks * The pagination information. */ pageInfo?: DescribeEventsForRegionResponseBodyPageInfo; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }