// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteAlertRulesRequest extends $dara.Model { /** * @remarks * The IDs of the alert rules that you want to delete. The value is a JSON array, for example, `[123, 234]`. You can call the SearchAlertRules operation and view the `Id` parameter in the response to obtain the alert rule ID. For more information, see [SearchAlertRules](https://help.aliyun.com/document_detail/175825.html). * * This parameter is required. * * @example * [123, 234] */ alertIds?: string; /** * @remarks * The region ID. Default value: `cn-hangzhou`. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { alertIds: 'AlertIds', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { alertIds: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }