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