github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/loadbalancer/lb_pool_statistics.go (about)

     1  package loadbalancer
     2  
     3  type LbPoolStatistics struct {
     4  	// Timestamp when the data was last updated
     5  	LastUpdateTimestamp int64 `json:"last_update_timestamp,omitempty"`
     6  
     7  	// Statistics of load balancer pool members
     8  	Members []LbPoolMemberStatistics `json:"members,omitempty"`
     9  
    10  	// Load balancer pool identifier
    11  	PoolId string `json:"pool_id"`
    12  
    13  	// Load balancer statistics counter
    14  	Statistics LbStatisticsCounter `json:"statistics"`
    15  }