import * as $dara from '@darabonba/typescript'; export declare class UpgradeEnvironmentFeatureRequest extends $dara.Model { /** * @remarks * The language. Valid values: zh and en. Default value: zh. * * @example * zh */ aliyunLang?: string; /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxx */ environmentId?: string; /** * @remarks * The feature name. Valid values: app-agent-pilot, metric-agent, ebpf-agent, and service-check. * * This parameter is required. * * @example * metric-agent */ featureName?: string; /** * @remarks * The version of the feature. * * @example * 1.1.17 */ featureVersion?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * Specifies whether to enable service discovery. For PodAnnotation, set the value to run or mini. For PodMonitor and ServiceMonitor, set the value to true or false. * * @example * {"PodAnnotation":"run"} */ values?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }