import * as $dara from '@darabonba/typescript'; export declare class AddRecordingRuleRequest extends $dara.Model { /** * @remarks * The cluster ID. * * This parameter is required. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The custom recording rule. The value is in the YAML format. * * This parameter is required. * * @example * groups: - name: "recording_demo" rules: - expr: "sum(jvm_memory_max_bytes)" record: "rate_coredns_demo" */ ruleYaml?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }