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

HealthCheck

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

HealthCheck contains the detailed health check of a component based on asource.

interface HealthCheck {
readonly message?: string;
readonly metric?: string;
readonly resource?: CloudResource;
readonly source?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PASSED"
| "FAILED"
| "DEGRADED"
| "SKIPPED"
| "UNSUPPORTED";
}

§Properties

§
readonly message?: string
[src]

Output only. The message of the health check.

§
readonly metric?: string
[src]

Output only. The health check source metric name.

§
readonly resource?: CloudResource
[src]

Output only. The resource the check performs on.

§
readonly source?: string
[src]

Output only. The source of the health check.

§
readonly state?: "STATE_UNSPECIFIED" | "PASSED" | "FAILED" | "DEGRADED" | "SKIPPED" | "UNSUPPORTED"
[src]

Output only. The state of the health check.