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

BfdStatus

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

Next free: 15

interface BfdStatus {
bfdSessionInitializationMode?: "ACTIVE" | "DISABLED" | "PASSIVE";
configUpdateTimestampMicros?: bigint;
controlPacketCounts?: BfdStatusPacketCounts;
controlPacketIntervals?: PacketIntervals[];
localDiagnostic?:
| "ADMINISTRATIVELY_DOWN"
| "CONCATENATED_PATH_DOWN"
| "CONTROL_DETECTION_TIME_EXPIRED"
| "DIAGNOSTIC_UNSPECIFIED"
| "ECHO_FUNCTION_FAILED"
| "FORWARDING_PLANE_RESET"
| "NEIGHBOR_SIGNALED_SESSION_DOWN"
| "NO_DIAGNOSTIC"
| "PATH_DOWN"
| "REVERSE_CONCATENATED_PATH_DOWN";
localState?:
| "ADMIN_DOWN"
| "DOWN"
| "INIT"
| "STATE_UNSPECIFIED"
| "UP";
negotiatedLocalControlTxIntervalMs?: number;
rxPacket?: BfdPacket;
txPacket?: BfdPacket;
uptimeMs?: bigint;
}

§Properties

§
bfdSessionInitializationMode?: "ACTIVE" | "DISABLED" | "PASSIVE"
[src]

The BFD session initialization mode for this BGP peer. If set to ACTIVE, the Cloud Router will initiate the BFD session for this BGP peer. If set to PASSIVE, the Cloud Router will wait for the peer router to initiate the BFD session for this BGP peer. If set to DISABLED, BFD is disabled for this BGP peer.

§
configUpdateTimestampMicros?: bigint
[src]

Unix timestamp of the most recent config update.

§
controlPacketCounts?: BfdStatusPacketCounts
[src]

Control packet counts for the current BFD session.

§
controlPacketIntervals?: PacketIntervals[]
[src]

Inter-packet time interval statistics for control packets.

§
localDiagnostic?: "ADMINISTRATIVELY_DOWN" | "CONCATENATED_PATH_DOWN" | "CONTROL_DETECTION_TIME_EXPIRED" | "DIAGNOSTIC_UNSPECIFIED" | "ECHO_FUNCTION_FAILED" | "FORWARDING_PLANE_RESET" | "NEIGHBOR_SIGNALED_SESSION_DOWN" | "NO_DIAGNOSTIC" | "PATH_DOWN" | "REVERSE_CONCATENATED_PATH_DOWN"
[src]

The diagnostic code specifies the local system's reason for the last change in session state. This allows remote systems to determine the reason that the previous session failed, for example. These diagnostic codes are specified in section 4.1 of RFC5880

§
localState?: "ADMIN_DOWN" | "DOWN" | "INIT" | "STATE_UNSPECIFIED" | "UP"
[src]

The current BFD session state as seen by the transmitting system. These states are specified in section 4.1 of RFC5880

§
negotiatedLocalControlTxIntervalMs?: number
[src]

Negotiated transmit interval for control packets.

§
rxPacket?: BfdPacket
[src]

The most recent Rx control packet for this BFD session.

§
txPacket?: BfdPacket
[src]

The most recent Tx control packet for this BFD session.

§
uptimeMs?: bigint
[src]

Session uptime in milliseconds. Value will be 0 if session is not up.