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

ConnectivityTest

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

A Connectivity Test for a network reachability analysis.

interface ConnectivityTest {
bypassFirewallChecks?: boolean;
readonly createTime?: Date;
description?: string;
destination?: Endpoint;
readonly displayName?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
readonly probingDetails?: ProbingDetails;
protocol?: string;
readonly reachabilityDetails?: ReachabilityDetails;
relatedProjects?: string[];
readonly returnReachabilityDetails?: ReachabilityDetails;
roundTrip?: boolean;
source?: Endpoint;
readonly updateTime?: Date;
}

§Properties

§
bypassFirewallChecks?: boolean
[src]

Whether the analysis should skip firewall checking. Default value is false.

§
readonly createTime?: Date
[src]

Output only. The time the test was created.

§
description?: string
[src]

The user-supplied description of the Connectivity Test. Maximum of 512 characters.

§
destination?: Endpoint
[src]

Required. Destination specification of the Connectivity Test. You can use a combination of destination IP address, URI of a supported endpoint, project ID, or VPC network to identify the destination location. Reachability analysis proceeds even if the destination location is ambiguous. However, the test result might include endpoints or use a destination that you don't intend to test.

§
readonly displayName?: string
[src]

Output only. The display name of a Connectivity Test.

§
labels?: {
[key: string]: string;
}
[src]

Resource labels to represent user-provided metadata.

§
name?: string
[src]

Identifier. Unique name of the resource using the form: projects/{project_id}/locations/global/connectivityTests/{test_id}

§
readonly probingDetails?: ProbingDetails
[src]

Output only. The probing details of this test from the latest run, present for applicable tests only. The details are updated when creating a new test, updating an existing test, or triggering a one-time rerun of an existing test.

§
protocol?: string
[src]

IP Protocol of the test. When not provided, "TCP" is assumed.

§
readonly reachabilityDetails?: ReachabilityDetails
[src]

Output only. The reachability details of this test from the latest run. The details are updated when creating a new test, updating an existing test, or triggering a one-time rerun of an existing test.

§
relatedProjects?: string[]
[src]

Other projects that may be relevant for reachability analysis. This is applicable to scenarios where a test can cross project boundaries.

§
readonly returnReachabilityDetails?: ReachabilityDetails
[src]

Output only. The reachability details of this test from the latest run for the return path. The details are updated when creating a new test, updating an existing test, or triggering a one-time rerun of an existing test.

§
roundTrip?: boolean
[src]

Whether run analysis for the return path from destination to source. Default value is false.

§
source?: Endpoint
[src]

Required. Source specification of the Connectivity Test. You can use a combination of source IP address, URI of a supported endpoint, project ID, or VPC network to identify the source location. Reachability analysis might proceed even if the source location is ambiguous. However, the test result might include endpoints or use a source that you don't intend to test.

§
readonly updateTime?: Date
[src]

Output only. The time the test's configuration was updated.