import * as $dara from '@darabonba/typescript'; export declare class CreateKeyPairResponseBody extends $dara.Model { /** * @remarks * The fingerprint of the key pair. The public key fingerprint format is defined by RFC 4716 and uses the MD5 message digest algorithm. For more information, see [RFC 4716](https://tools.ietf.org/html/rfc4716). * * @example * 89:f0:ba:62:ac:b8:aa:e1:61:5e:fd:81:69:86:6d:6b:f0:c0:5a:** */ keyPairFingerPrint?: string; /** * @remarks * The ID of the SSH key pair. * * @example * ssh-bp67acfmxazb4p**** */ keyPairId?: string; /** * @remarks * The name of the key pair. * * @example * testKeyPairName */ keyPairName?: string; /** * @remarks * The private key of the key pair. The private key is PEM-encoded in PKCS#8 format. * * @example * MIIEpAIBAAKCAQEAtReyMzLIcBH78EV2zj**** */ privateKeyBody?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }