import * as $dara from '@darabonba/typescript'; export declare class DescribeAddonMetricsRequest extends $dara.Model { /** * @remarks * The version of the component. * * @example * 0.0.1 */ addonVersion?: string; /** * @remarks * The language. Valid values: zh and en. Default value: zh. * * @example * zh */ aliyunLang?: string; /** * @remarks * The environment. * * @example * CS */ environmentType?: string; /** * @remarks * The name of the component. * * This parameter is required. * * @example * mysql */ name?: string; /** * @remarks * The ID of the region. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }