import * as $dara from '@darabonba/typescript'; export declare class ListPrometheusInstancesRequest extends $dara.Model { /** * @remarks * The cluster type. If you do not specify this parameter, all cluster types are queried. Valid values: * * * cloud-product-prometheus: Prometheus instance for cloud services * * ManagedKubernetes: ACK managed cluster * * satellite: Prometheus instance for ARMS OpenTelemetry * * Ask: ACK Serverless cluster * * remote-write-prometheus: general-purpose Prometheus instance * * cloud-monitor-cmee: Hybrid Cloud Monitoring * * ExternalKubernetes: external Kubernetes cluster registered in ACK * * vpc-prometheus: Prometheus instance for ECS * * cloud-monitor-direct: cloud service self-monitoring * * Edge Kubernetes: ACK Edge cluster * * @example * cloud-product-prometheus */ clusterType?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * Specifies whether to obtain global aggregation instances. Valid values: * * * true * * false * * This parameter is required. * * @example * true */ showGlobalView?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }