import * as $dara from '@darabonba/typescript'; export declare class DescribeAddonMetricsResponseBodyDataLabels extends $dara.Model { /** * @remarks * The description of the tag. * * @example * The number of times a B-tree page of size PAGE_SIZE was successfully compressed. */ description?: string; /** * @remarks * The tag key. * * @example * page_size */ key?: string; /** * @remarks * The source of the tag. * * @example * db */ source?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAddonMetricsResponseBodyDataMetricsLabels extends $dara.Model { /** * @remarks * The description of the tag. * * @example * PAGE_SIZE */ description?: string; /** * @remarks * The tag key. * * @example * page_size */ key?: string; /** * @remarks * The source of the tag. * * @example * db */ source?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAddonMetricsResponseBodyDataMetrics extends $dara.Model { /** * @remarks * The description of the metric. * * @example * The number of times a B-tree page of size PAGE_SIZE was successfully compressed. */ description?: string; /** * @remarks * The tags. */ labels?: DescribeAddonMetricsResponseBodyDataMetricsLabels[]; /** * @remarks * The metric name. * * @example * mysql_exporter_collector_duration_seconds */ metric?: string; /** * @remarks * The type of the metric. * * @example * GAUGE */ type?: string; /** * @remarks * The unit of the metric. * * @example * bytes */ unit?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAddonMetricsResponseBodyData extends $dara.Model { /** * @remarks * The metric group. * * @example * Common */ group?: string; /** * @remarks * The tags. */ labels?: DescribeAddonMetricsResponseBodyDataLabels[]; /** * @remarks * The metrics. */ metrics?: DescribeAddonMetricsResponseBodyDataMetrics[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeAddonMetricsResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The metric details. */ data?: DescribeAddonMetricsResponseBodyData[]; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * Id of the request * * @example * B6A00968-82A8-4F14-9D1B-B53827DB**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }