import * as $dara from '@darabonba/typescript'; export declare class InstallManagedPrometheusResponseBody 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. In most cases, the installation status of the Prometheus agent is returned. * * @example * success */ data?: string; /** * @remarks * The error message returned if the Prometheus agent failed to be installed. * * @example * vpcId is blank */ message?: string; /** * @remarks * The request ID. * * @example * String 2A0CEDF1-06FE-44AC-8E21-21A5BE65**** */ requestId?: string; /** * @remarks * Indicates whether the Prometheus agent was installed. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }