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

ReachabilityDetails

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

Results of the configuration analysis from the last run of the test.

interface ReachabilityDetails {
error?: Status;
result?:
| "RESULT_UNSPECIFIED"
| "REACHABLE"
| "UNREACHABLE"
| "AMBIGUOUS"
| "UNDETERMINED";
traces?: Trace[];
verifyTime?: Date;
}

§Properties

§
error?: Status
[src]

The details of a failure or a cancellation of reachability analysis.

§
result?: "RESULT_UNSPECIFIED" | "REACHABLE" | "UNREACHABLE" | "AMBIGUOUS" | "UNDETERMINED"
[src]

The overall result of the test's configuration analysis.

§
traces?: Trace[]
[src]

Result may contain a list of traces if a test has multiple possible paths in the network, such as when destination endpoint is a load balancer with multiple backends.

§
verifyTime?: Date
[src]

The time of the configuration analysis.