github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/pool_usage.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  // Pool usage statistics in a pool.
     9  type PoolUsage struct {
    10  
    11  	// Total number of allocated IDs in a pool
    12  	AllocatedIds int64 `json:"allocated_ids,omitempty"`
    13  
    14  	// Total number of free IDs in a pool
    15  	FreeIds int64 `json:"free_ids,omitempty"`
    16  
    17  	// Total number of IDs in a pool
    18  	TotalIds int64 `json:"total_ids,omitempty"`
    19  }