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

Route

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

The route resource is the child of the private connection resource, used for defining a route for a private connection.

interface Route {
readonly createTime?: Date;
destinationAddress?: string;
destinationPort?: number;
displayName?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The create time of the resource.

§
destinationAddress?: string
[src]

Required. Destination address for connection

§
destinationPort?: number
[src]

Destination port for connection

§
displayName?: string
[src]

Required. Display name.

§
labels?: {
[key: string]: string;
}
[src]

Labels.

§
readonly name?: string
[src]

Output only. The resource's name.

§
readonly updateTime?: Date
[src]

Output only. The update time of the resource.