github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/compute_manager_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 manager 7 8 // Runtime status information of the compute manager 9 type ComputeManagerStatus struct { 10 11 // Errors when connecting with compute manager 12 ConnectionErrors []ErrorInfo `json:"connection_errors,omitempty"` 13 14 // Status of connection with the compute manager 15 ConnectionStatus string `json:"connection_status,omitempty"` 16 17 // Details about connection status 18 ConnectionStatusDetails string `json:"connection_status_details,omitempty"` 19 20 // Timestamp of the last successful update of Inventory, in epoch milliseconds. 21 LastSyncTime int64 `json:"last_sync_time,omitempty"` 22 23 // Errors when registering with compute manager 24 RegistrationErrors []ErrorInfo `json:"registration_errors,omitempty"` 25 26 // Registration status of compute manager 27 RegistrationStatus string `json:"registration_status,omitempty"` 28 29 // Version of the compute manager 30 Version string `json:"version,omitempty"` 31 }