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

EndpointInfo

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

For display only. The specification of the endpoints for the test. EndpointInfo is derived from source and destination Endpoint and validated by the backend data plane model.

interface EndpointInfo {
destinationIp?: string;
destinationNetworkUri?: string;
destinationPort?: number;
protocol?: string;
sourceAgentUri?: string;
sourceIp?: string;
sourceNetworkUri?: string;
sourcePort?: number;
}

§Properties

§
destinationIp?: string
[src]

Destination IP address.

§
destinationNetworkUri?: string
[src]

URI of the network where this packet is sent to.

§
destinationPort?: number
[src]

Destination port. Only valid when protocol is TCP or UDP.

§
protocol?: string
[src]

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

§
sourceAgentUri?: string
[src]

URI of the source telemetry agent this packet originates from.

§
sourceIp?: string
[src]

Source IP address.

§
sourceNetworkUri?: string
[src]

URI of the network where this packet originates from.

§
sourcePort?: number
[src]

Source port. Only valid when protocol is TCP or UDP.