import * as $dara from '@darabonba/typescript'; export declare class ListDispatchRuleRequest extends $dara.Model { /** * @remarks * The name of the notification policy. Fuzzy match is supported. * * @example * Prod */ name?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * * The type of notification policies to be queried. Valid values: `false` (default): notification policies created in Application Real-Time Monitoring Service (ARMS). * * `true`: notification policies created in an external system. * * > You cannot use the ARMS console to modify the dispatch rules of a notification policy that is created in an external system. * * @example * true */ system?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }