import * as $dara from '@darabonba/typescript'; export declare class DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyListNodeTaskInstanceInstanceList extends $dara.Model { string?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyListNodeTaskInstance extends $dara.Model { /** * @remarks * The ID of the availability monitoring task. * * @example * 123456 */ id?: number; instanceList?: DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyListNodeTaskInstanceInstanceList; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyList extends $dara.Model { nodeTaskInstance?: DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyListNodeTaskInstance[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeUnhealthyHostAvailabilityResponseBody extends $dara.Model { /** * @remarks * The status code. * * > The status code 200 indicates that the request was successful. * * @example * 200 */ code?: string; /** * @remarks * The error message. * * @example * User not authorized to operate on the specified resource. */ message?: string; /** * @remarks * The request ID. * * @example * ACBDBB40-DFB6-4F4C-8957-51FFB233969C */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * true * * false * * @example * true */ success?: boolean; /** * @remarks * The unhealthy instances that are detected by the specified availability monitoring tasks. */ unhealthyList?: DescribeUnhealthyHostAvailabilityResponseBodyUnhealthyList; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }