import * as $dara from '@darabonba/typescript'; export declare class UpdatePrometheusIntegrationResponseBodyData extends $dara.Model { /** * @remarks * The exporter ID. * * @example * 2866 */ instanceId?: number; /** * @remarks * The exporter name. * * @example * inet */ instanceName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdatePrometheusIntegrationResponseBody extends $dara.Model { /** * @remarks * The status code or error code. * * @example * 200 */ code?: number; /** * @remarks * The struct returned. */ data?: UpdatePrometheusIntegrationResponseBodyData; /** * @remarks * The message returned. * * @example * Successful */ message?: string; /** * @remarks * Id of the request * * @example * 2DB771C3-D1BB-5363-8A5F-ADB2AF2948DB */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }