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

NetworkPeeringConnectionStatusConsensusState

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

The status of update/delete for a consensus peering connection. Only set when connection_status.update_strategy is CONSENSUS or a network peering is proposing to update the strategy to CONSENSUS.

interface NetworkPeeringConnectionStatusConsensusState {
deleteStatus?:
| "DELETE_ACKNOWLEDGED"
| "DELETE_STATUS_UNSPECIFIED"
| "LOCAL_DELETE_REQUESTED"
| "PEER_DELETE_REQUESTED";
updateStatus?:
| "IN_SYNC"
| "PENDING_LOCAL_ACKNOWLEDMENT"
| "PENDING_PEER_ACKNOWLEDGEMENT"
| "UPDATE_STATUS_UNSPECIFIED";
}

§Properties

§
deleteStatus?: "DELETE_ACKNOWLEDGED" | "DELETE_STATUS_UNSPECIFIED" | "LOCAL_DELETE_REQUESTED" | "PEER_DELETE_REQUESTED"
[src]

The status of the delete request.

§
updateStatus?: "IN_SYNC" | "PENDING_LOCAL_ACKNOWLEDMENT" | "PENDING_PEER_ACKNOWLEDGEMENT" | "UPDATE_STATUS_UNSPECIFIED"
[src]

The status of the update request.