import * as $dara from '@darabonba/typescript'; export declare class AddPrometheusIntegrationResponseBodyData extends $dara.Model { /** * @remarks * The ID of the exporter. * * @example * 2829 */ instanceId?: number; /** * @remarks * The name of the exporter. * * @example * hw-cloud02 */ instanceName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddPrometheusIntegrationResponseBody extends $dara.Model { /** * @remarks * The status code or error code. * * @example * 200 */ code?: number; /** * @remarks * The struct returned. */ data?: AddPrometheusIntegrationResponseBodyData; /** * @remarks * The message returned. * * @example * message */ message?: string; /** * @remarks * Id of the request * * @example * 3703B98C-335E-5BA7-972E-F90E9E768A85 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }