import * as $dara from '@darabonba/typescript'; export declare class RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData extends $dara.Model { /** * @remarks * The Info-level information. * * @example * {regionId: the region where the global aggregation instance resides. globalViewClusterId: the ID of the global aggregation instance. failedClusterIds: the IDs of the clusters that failed to be added. A cluster may fail to be added if the specified cluster ID is invalid.} */ 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 RemoveAliClusterIdsFromPrometheusGlobalViewResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. The status code 200 indicates that the request was successful. * * @example * 200 */ code?: number; /** * @remarks * The returned struct. */ data?: RemoveAliClusterIdsFromPrometheusGlobalViewResponseBodyData; /** * @remarks * The message returned. * * @example * success */ message?: string; /** * @remarks * The request ID. You can use the ID to query logs and troubleshoot issues. * * @example * F7781D4A-2818-41E7-B7BB-79D809E9**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }