github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/instance_stats.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 upgrade 7 8 // Instance statistics 9 type InstanceStats struct { 10 11 // Instances with status error 12 Error_ int64 `json:"error,omitempty"` 13 14 // Instances with status managed 15 Managed int64 `json:"managed,omitempty"` 16 17 // Instances with status unmanaged 18 Unmanaged int64 `json:"unmanaged,omitempty"` 19 20 // Number of virtual cores 21 Vcpus int64 `json:"vcpus,omitempty"` 22 }