github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/monitoring/heat_map_transport_zone_status.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 monitoring
     7  
     8  type HeatMapTransportZoneStatus struct {
     9  
    10  	// Number of transport nodes that are degraded
    11  	DegradedCount int32 `json:"degraded_count,omitempty"`
    12  
    13  	// Number of transport nodes that are down
    14  	DownCount int32 `json:"down_count,omitempty"`
    15  
    16  	// Number of transport nodes with unknown status
    17  	UnknownCount int32 `json:"unknown_count,omitempty"`
    18  
    19  	// Number of transport nodes that are up
    20  	UpCount int32 `json:"up_count,omitempty"`
    21  }