github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/upgrade_unit_group_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 upgrade 7 8 type UpgradeUnitGroupStatus struct { 9 10 // Number of nodes in the upgrade unit group that failed upgrade 11 FailedCount int32 `json:"failed_count,omitempty"` 12 13 // Identifier for upgrade unit group 14 GroupId string `json:"group_id,omitempty"` 15 16 // Name of the upgrade unit group 17 GroupName string `json:"group_name,omitempty"` 18 19 // Indicator of upgrade progress in percentage 20 PercentComplete float32 `json:"percent_complete,omitempty"` 21 22 // Upgrade status of upgrade unit group 23 Status string `json:"status,omitempty"` 24 25 // Number of upgrade units in the group 26 UpgradeUnitCount int32 `json:"upgrade_unit_count,omitempty"` 27 }