github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/supportbundle/success_node_support_bundle_result.go (about) 1 /* 2 * NSX-T Manager API 3 * 4 * VMware NSX-T Manager REST API 5 * 6 * API version: 3.2.0.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package supportbundle 11 12 type SuccessNodeSupportBundleResult struct { 13 // Name of support bundle, e.g. nsx_NODETYPE_UUID_YYYYMMDD_HHMMSS.tgz 14 BundleName string `json:"bundle_name,omitempty"` 15 // Size of support bundle in bytes 16 BundleSize int64 `json:"bundle_size,omitempty"` 17 // Display name of node 18 NodeDisplayName string `json:"node_display_name,omitempty"` 19 // UUID of node 20 NodeId string `json:"node_id,omitempty"` 21 // File's SHA256 thumbprint 22 Sha256Thumbprint string `json:"sha256_thumbprint,omitempty"` 23 }