import * as $dara from '@darabonba/typescript'; export declare class RemoveSourcesFromPrometheusGlobalViewResponseBodyData extends $dara.Model { /** * @remarks * The Info-level information. * * @example * {regionId: the region where the aggregation instance resides. globalViewClusterId: the ID of the aggregation instance. */ info?: string; /** * @remarks * The additional information. * * @example * OK */ msg?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * `true` * * `false` * * @example * True */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class RemoveSourcesFromPrometheusGlobalViewResponseBody extends $dara.Model { /** * @remarks * The status code. The HTTP 200 status code indicates a successful request, while others indicate error conditions. * * @example * 200 */ code?: number; /** * @remarks * The returned struct. */ data?: RemoveSourcesFromPrometheusGlobalViewResponseBodyData; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The request ID. You can use the ID to query logs and troubleshoot issues. * * @example * 9319A57D-2D9E-472A-B69B-CF3CD16D**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }