import * as $dara from '@darabonba/typescript'; export declare class DescribeEnvServiceMonitorRequest extends $dara.Model { /** * @remarks * The ID of the environment instance. * * This parameter is required. * * @example * env-xxxxx */ environmentId?: string; /** * @remarks * The namespace where the ServiceMonitor resides. * * This parameter is required. * * @example * arms-prom */ namespace?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The name of the ServiceMonitor. * * This parameter is required. * * @example * arms-admin1 */ serviceMonitorName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }