import * as $dara from '@darabonba/typescript'; export declare class AttachKeyPairResponseBodyResultsResult extends $dara.Model { code?: string; instanceId?: string; message?: string; success?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AttachKeyPairResponseBodyResults extends $dara.Model { result?: AttachKeyPairResponseBodyResultsResult[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AttachKeyPairResponseBody extends $dara.Model { /** * @remarks * The number of instances to which the SSH key pair fails to be bound. * * @example * 0 */ failCount?: string; /** * @remarks * The name of the SSH key pair. * * @example * testKeyPairName */ keyPairName?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; results?: AttachKeyPairResponseBodyResults; /** * @remarks * The total number of instances to which the SSH key pair is bound. * * @example * 2 */ totalCount?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }