import * as $dara from '@darabonba/typescript'; export declare class AddPrometheusGlobalViewByAliClusterIdsResponseBodyData extends $dara.Model { /** * @remarks * The Info-level information. * * @example * {regionId: the region where the aggregation instance resides. globalViewClusterId: the ID of the aggregation instance. failedClusterIds: the ID of the cluster that failed to be added. A cluster may fail to be added because the specified cluster ID is invalid or the cluster is added across continents.} */ info?: string; /** * @remarks * The additional information. * * @example * success */ 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 AddPrometheusGlobalViewByAliClusterIdsResponseBody 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 struct returned. */ data?: AddPrometheusGlobalViewByAliClusterIdsResponseBodyData; /** * @remarks * The returned message. * * @example * success */ message?: string; /** * @remarks * The request ID. You can use the ID to query logs and troubleshoot issues. * * @example * 3A0EA2AF-C9B3-555C-B9D5-5DD8F5EF98A9 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }