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

     1  package loadbalancer
     2  
     3  type LbPoolStatus struct {
     4  
     5  	// Timestamp when the data was last updated
     6  	LastUpdateTimestamp int64 `json:"last_update_timestamp,omitempty"`
     7  
     8  	// Status of load balancer pool members
     9  	Members []LbPoolMemberStatus `json:"members,omitempty"`
    10  
    11  	// Load balancer pool identifier
    12  	PoolId string `json:"pool_id"`
    13  
    14  	// Virtual server status
    15  	Status string `json:"status"`
    16  }