import * as $dara from '@darabonba/typescript'; export declare class GetPrometheusIntegrationRequest extends $dara.Model { /** * @remarks * The ID of the Prometheus instance. Valid values: aliyun-cs and ecs. * * This parameter is required. * * @example * cc7a37ee31aea4ed1a059eff8034b**** */ clusterId?: string; /** * @remarks * The ID of the exporter. * * This parameter is required. * * @example * 2893 */ instanceId?: number; /** * @remarks * The integration type. Valid values: kafka, mysql, redis, snmp, emr, nubela, and tidb. * * This parameter is required. * * @example * kafka, mysql, redis, snmp, emr, nubela, and tidb */ integrationType?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }