import * as $dara from '@darabonba/typescript'; export declare class UpdateEnvPodMonitorRequest extends $dara.Model { /** * @remarks * The language. Valid values: * * * zh (default value): Chinese * * en: English * * @example * zh */ aliyunLang?: string; /** * @remarks * The YAML configuration file of the ServiceMonitor. * * This parameter is required. * * @example * Refer to supplementary instructions. */ configYaml?: string; /** * @remarks * Checks whether the format is valid and whether targets are matched. * * @example * true */ dryRun?: boolean; /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxxxx */ environmentId?: string; /** * @remarks * The namespace where the PodMonitor resides. * * This parameter is required. * * @example * arms-prom */ namespace?: string; /** * @remarks * The name of the PodMonitor. * * This parameter is required. * * @example * arms-admin-pm1 */ podMonitorName?: string; /** * @remarks * The region ID. * * 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; }); }