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

GoogleCloudRunV2ContainerPort

import type { GoogleCloudRunV2ContainerPort } from "https://googleapis.deno.dev/v1/run:v2.ts";

ContainerPort represents a network port in a single container.

interface GoogleCloudRunV2ContainerPort {
containerPort?: number;
name?: string;
}

§Properties

§
containerPort?: number
[src]

Port number the container listens on. This must be a valid TCP port number, 0 < container_port < 65536.

§
name?: string
[src]

If specified, used to specify which protocol to use. Allowed values are "http1" and "h2c".