// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyPlanMaintenanceWindowShrinkRequest 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; targetResourceShrink?: string; timePeriodShrink?: string; static names(): { [key: string]: string } { return { enable: 'Enable', planWindowId: 'PlanWindowId', planWindowName: 'PlanWindowName', regionId: 'RegionId', supportMaintenanceAction: 'SupportMaintenanceAction', targetResourceShrink: 'TargetResource', timePeriodShrink: 'TimePeriod', }; } static types(): { [key: string]: any } { return { enable: 'boolean', planWindowId: 'string', planWindowName: 'string', regionId: 'string', supportMaintenanceAction: 'string', targetResourceShrink: 'string', timePeriodShrink: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }