import * as $dara from '@darabonba/typescript'; export declare class AttachInstancesResponseBodyList extends $dara.Model { /** * @remarks * The status code of the node addition result. * * @example * 200 */ code?: string; /** * @remarks * The ECS instance ID. * * @example * i-2ze0lgm3y6iylcbt**** */ instanceId?: string; /** * @remarks * The description of the node addition result. * * @example * successful */ message?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AttachInstancesResponseBody extends $dara.Model { /** * @remarks * The list of node addition information. */ list?: AttachInstancesResponseBodyList[]; /** * @remarks * The task ID. * * @example * T-5a544aff80282e39ea00**** */ taskId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }