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

UrlMapValidationResult

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

Message representing the validation result for a UrlMap.

interface UrlMapValidationResult {
loadErrors?: string[];
loadSucceeded?: boolean;
testFailures?: TestFailure[];
testPassed?: boolean;
}

§Properties

§
loadErrors?: string[]
[src]
§
loadSucceeded?: boolean
[src]

Whether the given UrlMap can be successfully loaded. If false, 'loadErrors' indicates the reasons.

§
testFailures?: TestFailure[]
[src]
§
testPassed?: boolean
[src]

If successfully loaded, this field indicates whether the test passed. If false, 'testFailures's indicate the reason of failure.