github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/status_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 StatusCount struct {
     9  
    10  	// Degraded count
    11  	DegradedCount int32 `json:"degraded_count,omitempty"`
    12  
    13  	// Down count
    14  	DownCount int32 `json:"down_count,omitempty"`
    15  
    16  	// Roll-up status
    17  	Status string `json:"status,omitempty"`
    18  
    19  	// Up count
    20  	UpCount int32 `json:"up_count,omitempty"`
    21  }