github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/upgrade/upgrade_history.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 UpgradeHistory struct { 9 10 // Version before the upgrade started 11 InitialVersion string `json:"initial_version"` 12 13 // Version being upgraded to 14 TargetVersion string `json:"target_version"` 15 16 // Timestamp (in milliseconds since epoch) when the upgrade was performed 17 Timestamp int64 `json:"timestamp"` 18 19 // Status of the upgrade 20 UpgradeStatus string `json:"upgrade_status"` 21 }