import * as $dara from '@darabonba/typescript'; export declare class ModifyPlanMaintenanceWindowRequestTargetResourceTags extends $dara.Model { key?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyPlanMaintenanceWindowRequestTargetResource extends $dara.Model { /** * @example * rg-acfmy4cc27vsvia */ resourceGroupId?: string; /** * @example * Tag */ scope?: string; tags?: ModifyPlanMaintenanceWindowRequestTargetResourceTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyPlanMaintenanceWindowRequestTimePeriodRangeList extends $dara.Model { /** * @example * Tuesday,03:00 */ endTime?: string; /** * @example * Monday,22:00 */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyPlanMaintenanceWindowRequestTimePeriod extends $dara.Model { /** * @example * Year */ periodUnit?: string; rangeList?: ModifyPlanMaintenanceWindowRequestTimePeriodRangeList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyPlanMaintenanceWindowRequest extends $dara.Model { /** * @example * false */ enable?: boolean; /** * @remarks * This parameter is required. * * @example * pw-bp1au1w8v8a1yer65g5k */ planWindowId?: string; planWindowName?: string; /** * @remarks * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @example * Reboot */ supportMaintenanceAction?: string; targetResource?: ModifyPlanMaintenanceWindowRequestTargetResource; timePeriod?: ModifyPlanMaintenanceWindowRequestTimePeriod; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }