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

ProxyConnectionInfo

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

For display only. Metadata associated with ProxyConnection.

interface ProxyConnectionInfo {
networkUri?: string;
newDestinationIp?: string;
newDestinationPort?: number;
newSourceIp?: string;
newSourcePort?: number;
oldDestinationIp?: string;
oldDestinationPort?: number;
oldSourceIp?: string;
oldSourcePort?: number;
protocol?: string;
subnetUri?: string;
}

§Properties

§
networkUri?: string
[src]

URI of the network where connection is proxied.

§
newDestinationIp?: string
[src]

Destination IP address of a new connection.

§
newDestinationPort?: number
[src]

Destination port of a new connection. Only valid when protocol is TCP or UDP.

§
newSourceIp?: string
[src]

Source IP address of a new connection.

§
newSourcePort?: number
[src]

Source port of a new connection. Only valid when protocol is TCP or UDP.

§
oldDestinationIp?: string
[src]

Destination IP address of an original connection

§
oldDestinationPort?: number
[src]

Destination port of an original connection. Only valid when protocol is TCP or UDP.

§
oldSourceIp?: string
[src]

Source IP address of an original connection.

§
oldSourcePort?: number
[src]

Source port of an original connection. Only valid when protocol is TCP or UDP.

§
protocol?: string
[src]

IP protocol in string format, for example: "TCP", "UDP", "ICMP".

§
subnetUri?: string
[src]

Uri of proxy subnet.