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

GoogleCloudAiplatformV1ProbeHttpGetAction

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

HttpGetAction describes an action based on HTTP Get requests.

interface GoogleCloudAiplatformV1ProbeHttpGetAction {
host?: string;
path?: string;
port?: number;
scheme?: string;
}

§Properties

§
host?: string
[src]

Host name to connect to, defaults to the model serving container's IP. You probably want to set "Host" in httpHeaders instead.

§

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

§
path?: string
[src]

Path to access on the HTTP server.

§
port?: number
[src]

Number of the port to access on the container. Number must be in the range 1 to 65535.

§
scheme?: string
[src]

Scheme to use for connecting to the host. Defaults to HTTP. Acceptable values are "HTTP" or "HTTPS".