github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/dhcp_statistics.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 DhcpStatistics struct { 9 10 // The total number of DHCP ACK packets 11 Acks int64 `json:"acks"` 12 13 // The total number of DHCP DECLINE packets 14 Declines int64 `json:"declines"` 15 16 // dhcp server uuid 17 DhcpServerId string `json:"dhcp_server_id"` 18 19 // The total number of DHCP DISCOVER packets 20 Discovers int64 `json:"discovers"` 21 22 // The total number of DHCP errors 23 Errors int64 `json:"errors"` 24 25 // The total number of DHCP INFORM packets 26 Informs int64 `json:"informs"` 27 28 // The DHCP ip pool usage statistics 29 IpPoolStats []DhcpIpPoolUsage `json:"ip_pool_stats,omitempty"` 30 31 // The total number of DHCP NACK packets 32 Nacks int64 `json:"nacks"` 33 34 // The total number of DHCP OFFER packets 35 Offers int64 `json:"offers"` 36 37 // The total number of DHCP RELEASE packets 38 Releases int64 `json:"releases"` 39 40 // The total number of DHCP REQUEST packets 41 Requests int64 `json:"requests"` 42 43 // timestamp of the statistics 44 Timestamp int64 `json:"timestamp"` 45 }