import * as $dara from '@darabonba/typescript'; export declare class ListSilencePoliciesRequest extends $dara.Model { /** * @remarks * Specifies whether to query the details of a silence policy. Valid values: * * * `true`: Details of the silence policy are queried. * * `false`: Details about notification policies are not queried. * * @example * true */ isDetail?: boolean; /** * @remarks * The name of the silence policy. * * @example * silencepolicy_test */ name?: string; /** * @remarks * The number of the page to return. * * This parameter is required. * * @example * 1 */ page?: number; /** * @remarks * The ID of the region. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The number of entries to return on each page. * * This parameter is required. * * @example * 20 */ size?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }