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

GoogleCloudAiplatformV1Probe

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

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

interface GoogleCloudAiplatformV1Probe {
failureThreshold?: number;
initialDelaySeconds?: number;
periodSeconds?: number;
successThreshold?: number;
timeoutSeconds?: number;
}

§Properties

§

ExecAction probes the health of a container by executing a command.

§
failureThreshold?: number
[src]

Number of consecutive failures before the probe is considered failed. Defaults to 3. Minimum value is 1. Maps to Kubernetes probe argument 'failureThreshold'.

§

GrpcAction probes the health of a container by sending a gRPC request.

§

HttpGetAction probes the health of a container by sending an HTTP GET request.

§
initialDelaySeconds?: number
[src]

Number of seconds to wait before starting the probe. Defaults to 0. Minimum value is 0. Maps to Kubernetes probe argument 'initialDelaySeconds'.

§
periodSeconds?: number
[src]

How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Must be less than timeout_seconds. Maps to Kubernetes probe argument 'periodSeconds'.

§
successThreshold?: number
[src]

Number of consecutive successes before the probe is considered successful. Defaults to 1. Minimum value is 1. Maps to Kubernetes probe argument 'successThreshold'.

§

TcpSocketAction probes the health of a container by opening a TCP socket connection.

§
timeoutSeconds?: number
[src]

Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Must be greater or equal to period_seconds. Maps to Kubernetes probe argument 'timeoutSeconds'.