import * as $dara from '@darabonba/typescript'; export declare class AddPrometheusGlobalViewRequestTag extends $dara.Model { /** * @remarks * The tag key. * * @example * http.status_code */ key?: string; /** * @remarks * The tag value. * * @example * 200 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddPrometheusGlobalViewRequest extends $dara.Model { /** * @remarks * The queried global aggregation instances. The value is a JSON string. * * This parameter is required. * * @example * [ { "sourceName": "Data source name- ArmsPrometheus No.1", "sourceType":"AlibabaPrometheus", "userId":"UserID", "clusterId":"ClusterId", }, { "sourceName": "Data source name - MetrcStore No.2", "sourceType":"MetricStore", "dataSource":"MetricStore remote read address", "extras":{ "username":"BasicAuthUsername", "password":"BasicAuthPassword" } }, { "sourceName": "Custom ", "sourceType":"CustomPrometheus", "dataSource":"Build your own Prometheus data source remoteread address", "extras":{ "username":"BasicAuthUsername", "password":"BasicAuthPassword" } }, { "sourceName": "Other one ", "sourceType":"Others", "dataSource":"Other data sources such as Tencent remoteread address", "headers":{ "AnyHeaderToFill":"Headers to be populated" }, "extras":{ "username":"BasicAuthUsername", "password":"BasicAuthPassword" } } // ....... more addre ] */ clusters?: string; /** * @remarks * The name of the aggregation instance. * * This parameter is required. * * @example * zyGlobalView */ groupName?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The resource group ID. * * @example * rg-aek2eq4pecazwfy */ resourceGroupId?: string; /** * @remarks * The list of tags. */ tag?: AddPrometheusGlobalViewRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }