import * as $dara from '@darabonba/typescript'; export declare class UninstallManagedPrometheusResponseBody extends $dara.Model { /** * @remarks * The status code. The status code 200 indicates that the request was successful. If another status code is returned, the request failed. * * @example * 200 */ code?: number; /** * @remarks * The response content. The status of the Prometheus instance is returned. * * @example * success */ data?: string; /** * @remarks * The error message that is returned if the request fails. * * @example * vpcId is blank */ message?: string; /** * @remarks * The request ID. * * @example * 2A0CEDF1-06FE-44AC-8E21-21A5BE65**** */ requestId?: string; /** * @remarks * Indicates whether the Prometheus instance was removed. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }