Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ForwardSshTunnelConnectivity

import type { ForwardSshTunnelConnectivity } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

Forward SSH Tunnel connectivity.

interface ForwardSshTunnelConnectivity {
hostname?: string;
password?: string;
port?: number;
privateKey?: string;
username?: string;
}

§Properties

§
hostname?: string
[src]

Required. Hostname for the SSH tunnel.

§
password?: string
[src]

Input only. SSH password.

§
port?: number
[src]

Port for the SSH tunnel, default value is 22.

§
privateKey?: string
[src]

Input only. SSH private key.

§
username?: string
[src]

Required. Username for the SSH tunnel.