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

ValidationCheckResult

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

ValidationCheckResult defines the details about the validation check.

interface ValidationCheckResult {
category?: string;
description?: string;
details?: string;
reason?: string;
state?:
| "STATE_UNKNOWN"
| "STATE_FAILURE"
| "STATE_SKIPPED"
| "STATE_FATAL"
| "STATE_WARNING";
}

§Properties

§
category?: string
[src]

The category of the validation.

§
description?: string
[src]

The description of the validation check.

§
details?: string
[src]

Detailed failure information, which might be unformatted.

§
reason?: string
[src]

A human-readable message of the check failure.

§
state?: "STATE_UNKNOWN" | "STATE_FAILURE" | "STATE_SKIPPED" | "STATE_FATAL" | "STATE_WARNING"
[src]

The validation check state.