/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SSHAuthData */ export interface SSHAuthData { /** * * @type {string} * @memberof SSHAuthData */ auth_type?: SSHAuthDataAuthTypeEnum; /** * SSH username * @type {string} * @memberof SSHAuthData */ username: string; /** * SSH public key * @type {string} * @memberof SSHAuthData */ public_key?: string; /** * SSH private key * @type {string} * @memberof SSHAuthData */ private_key: string; } export declare const SSHAuthDataAuthTypeEnum: { readonly Ssh: "ssh"; }; export type SSHAuthDataAuthTypeEnum = typeof SSHAuthDataAuthTypeEnum[keyof typeof SSHAuthDataAuthTypeEnum];