/** Region SSHKey */
export interface SSHKey {
    /** SSHKey fingerPrint */
    fingerPrint: string;
    /** SSHKey ID */
    id: string;
    /** SSHKey name */
    name: string;
    /** SSHKey publicKey */
    publicKey: string;
    /** SSHKey region */
    region: string;
}
//# sourceMappingURL=SSHKey.d.ts.map