| 48 | * Parsed jump host information |
| 49 | */ |
| 50 | export interface JumpHost { |
| 51 | /** Jump host hostname */ |
| 52 | host: string; |
| 53 | |
| 54 | /** Jump host port (default: 22) */ |
| 55 | port: number; |
| 56 | |
| 57 | /** Jump host username (inherited from target if not specified) */ |
| 58 | username?: string; |
| 59 | |
| 60 | /** Jump host private key path/content, resolved from its own `~/.ssh/config` entry */ |
| 61 | privateKey?: string; |
| 62 | |
| 63 | /** Passphrase for the jump host's private key */ |
| 64 | passphrase?: string; |
| 65 | } |
| 66 | |
| 67 | export interface SSHTunnelOptions { |
| 68 | /** Target database host (as seen from SSH server) */ |
nothing calls this directly
no outgoing calls
no test coverage detected