github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/bfd_properties.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 // BFD information 9 type BfdProperties struct { 10 11 // True if tunnel is active in a gateway HA setup 12 Active bool `json:"active,omitempty"` 13 14 // A short message indicating what the BFD session thinks is wrong in case of a problem 15 Diagnostic string `json:"diagnostic,omitempty"` 16 17 // True if the BFD session believes this interface may be used to forward traffic 18 Forwarding bool `json:"forwarding,omitempty"` 19 20 // A short message indicating what the remote interface's BFD session thinks is wrong in case of a problem 21 RemoteDiagnostic string `json:"remote_diagnostic,omitempty"` 22 23 // State of the remote interface's BFD session 24 RemoteState string `json:"remote_state,omitempty"` 25 26 // State of the BFD session 27 State string `json:"state,omitempty"` 28 }