import * as $dara from '@darabonba/typescript'; export declare class ScheduledPolicy extends $dara.Model { /** * @example * 2024-01-01T08:00:00 */ endTime?: string; /** * @example * scale-up-morning */ name?: string; /** * @example * cron(0 8 * * ? *) */ scheduleExpression?: string; /** * @example * 2024-01-01T08:00:00 */ startTime?: string; /** * @example * 20 */ target?: number; /** * @example * Asia/Shanghai */ timeZone?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }