github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/component_upgrade_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 ComponentUpgradeStatus struct { 9 10 // Can the upgrade of the remaining units in this component be skipped 11 CanSkip bool `json:"can_skip,omitempty"` 12 13 // Component type for the upgrade status 14 ComponentType string `json:"component_type,omitempty"` 15 16 // Details about the upgrade status 17 Details string `json:"details,omitempty"` 18 19 // Indicator of upgrade progress in percentage 20 PercentComplete float32 `json:"percent_complete,omitempty"` 21 22 // Upgrade status of component 23 Status string `json:"status,omitempty"` 24 }