import * as $dara from '@darabonba/typescript'; export declare class UpdateAlertContactGroupRequest extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * This parameter is required. * * @example * 123 */ contactGroupId?: number; /** * @remarks * The name of the alert contact group. * * This parameter is required. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The ID of the alert contact. * * @example * 123 234 345 */ contactIds?: string; /** * @remarks * The ID of the region. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }