Run a command in the guest over SSH (shell on Unix, PowerShell on Windows).
(command: string)
| 32 | readonly sshKeyPath?: string; |
| 33 | /** Run a command in the guest over SSH (shell on Unix, PowerShell on Windows). */ |
| 34 | ssh(command: string): Promise<SshResult>; |
| 35 | /** Copy a local file or directory into the guest (recursive for directories). */ |
| 36 | push(localPath: string, remotePath: string): Promise<void>; |
| 37 | /** Reboot the guest OS; resolves only once SSH is reachable again. */ |
no outgoing calls
no test coverage detected