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

GoogleCloudRunV2HTTPGetAction

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

HTTPGetAction describes an action based on HTTP Get requests.

interface GoogleCloudRunV2HTTPGetAction {
path?: string;
port?: number;
}

§Properties

§

Optional. Custom headers to set in the request. HTTP allows repeated headers.

§
path?: string
[src]

Optional. Path to access on the HTTP server. Defaults to '/'.

§
port?: number
[src]

Optional. Port number to access on the container. Must be in the range 1 to 65535. If not specified, defaults to the exposed port of the container, which is the value of container.ports[0].containerPort.