import * as $dara from '@darabonba/typescript'; export declare class DeleteMetricRuleTargetsResponseBodyFailIdsTargetIds extends $dara.Model { targetId?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteMetricRuleTargetsResponseBodyFailIds extends $dara.Model { /** * @remarks * The IDs of the resources that failed to be deleted. */ targetIds?: DeleteMetricRuleTargetsResponseBodyFailIdsTargetIds; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteMetricRuleTargetsResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * ** * * **Description** The status code 200 indicates that the request was successful. * * @example * 200 */ code?: string; /** * @remarks * The IDs of the resources that failed to be deleted. */ failIds?: DeleteMetricRuleTargetsResponseBodyFailIds; /** * @remarks * The error message. * * @example * The Request is not authorization. */ message?: string; /** * @remarks * The request ID. * * @example * 786E92D2-AC66-4250-B76F-F1E2FCDDBA1C */ requestId?: 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; }); }