github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/supportbundle/container_cluster_node.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 // Container cluster and its nodes requiring a support bundle 13 type ContainerClusterNode struct { 14 // The UUID of the container cluster 15 ClusterId string `json:"cluster_id"` 16 // List of at most 200 container node UUIDs requiring a support bundle 17 Nodes []string `json:"nodes,omitempty"` 18 }