import type { SecretSpec } from '../schemas/SecretSpec'; export interface SshKeyPathSpec extends SecretSpec { /** * This is the passphrase provided while creating the SSH key for local encryption */ encrypted_passphrase?: string; /** * Path of the key file */ key_path: string; /** * SSH port * @format int32 */ port?: number; /** * This specifies the type of secret */ type: 'SSHKeyPath'; /** * SSH username */ username: string; }