github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/dhcp_ip_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  type DhcpIpPoolUsage struct {
     9  
    10  	// allocated number. COULD BE INACCURATE, REFERENCE ONLY.
    11  	AllocatedNumber int64 `json:"allocated_number"`
    12  
    13  	// allocated percentage. COULD BE INACCURATE, REFERENCE ONLY.
    14  	AllocatedPercentage int64 `json:"allocated_percentage"`
    15  
    16  	// uuid of dhcp ip pool
    17  	DhcpIpPoolId string `json:"dhcp_ip_pool_id"`
    18  
    19  	// pool size
    20  	PoolSize int64 `json:"pool_size"`
    21  }