github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/bfd_diagnostic_count.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package manager
     7  
     8  type BfdDiagnosticCount struct {
     9  
    10  	// Number of tunnels with administratively down diagnostic message
    11  	AdministrativelyDownCount int64 `json:"administratively_down_count,omitempty"`
    12  
    13  	// Number of tunnels with concatenated path down diagnostic message
    14  	ConcatenatedPathDownCount int64 `json:"concatenated_path_down_count,omitempty"`
    15  
    16  	// Number of tunnels with control detection time expired diagnostic message
    17  	ControlDetectionTimeExpiredCount int64 `json:"control_detection_time_expired_count,omitempty"`
    18  
    19  	// Number of tunnels with echo function failed diagnostic message
    20  	EchoFunctionFailedCount int64 `json:"echo_function_failed_count,omitempty"`
    21  
    22  	// Number of tunnels with forwarding plane reset diagnostic message
    23  	ForwardingPlaneResetCount int64 `json:"forwarding_plane_reset_count,omitempty"`
    24  
    25  	// Number of tunnels neighbor signaled session down
    26  	NeighborSignaledSessionDownCount int64 `json:"neighbor_signaled_session_down_count,omitempty"`
    27  
    28  	// Number of tunnels with no diagnostic
    29  	NoDiagnosticCount int64 `json:"no_diagnostic_count,omitempty"`
    30  
    31  	// Number of tunnels with path down diagnostic message
    32  	PathDownCount int64 `json:"path_down_count,omitempty"`
    33  
    34  	// Number of tunnels with reverse concatenated path down diagnostic message
    35  	ReverseConcatenatedPathDownCount int64 `json:"reverse_concatenated_path_down_count,omitempty"`
    36  }