import type { SecretSpec } from '../schemas/SecretSpec'; export interface SshPasswordSpec extends SecretSpec { /** * SSH password */ password: string; /** * SSH port * @format int32 */ port?: number; /** * This specifies the type of secret */ type: 'SSHPassword'; /** * SSH username */ username: string; }