github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/containerinventory/container_cluster_list_result.go (about) 1 /* 2 * NSX-T Manager API 3 * 4 * VMware NSX-T Manager REST API 5 * 6 * API version: 3.0.0.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package containerinventory 11 12 import ( 13 "github.com/vmware/go-vmware-nsxt/common" 14 ) 15 16 type ContainerClusterListResult struct { 17 // The server will populate this field when returing the resource. Ignored on PUT and POST. 18 Links []common.ResourceLink `json:"_links,omitempty"` 19 // Schema for this resource 20 Schema string `json:"_schema,omitempty"` 21 // Link to this resource 22 Self *common.SelfResourceLink `json:"_self,omitempty"` 23 // Opaque cursor to be used for getting next page of records (supplied by current result page) 24 Cursor string `json:"cursor,omitempty"` 25 // Count of results found (across all pages), set only on first page 26 ResultCount int64 `json:"result_count,omitempty"` 27 // If true, results are sorted in ascending order 28 SortAscending bool `json:"sort_ascending,omitempty"` 29 // Field by which records are sorted 30 SortBy string `json:"sort_by,omitempty"` 31 // List of Container Clusters 32 Results []ContainerCluster `json:"results"` 33 }