A node is a back-end device providing a service on a specified IP and port.
Use this operation to get information about the nodes configured for a specified device
GET /{device_id}/nodes
This operation does not accept a request body.
Response
Successfully processed the request.
{
"load_balancer_data": [
{
"id": "Node-Test-68f31107:222.222.22.2:80",
"label": "Node-Test-68f31107",
"ip": "222.222.22.2",
"port_name": "HTTP",
"port_number": 80,
"admin_state": "ENABLED",
"runtime_state": "HEALTHY",
"stats": {
"bytes_in": 0,
"bytes_out": 0,
"conn_cur": 0,
"conn_max": 0,
"conn_tot": 0,
"pkts_in": 0,
"pkts_out": 0
}
},
{
"id": "Configuration-testNode:222.222.22.2:8560",
"label": "Configuration-testNode",
"ip": "222.222.22.2",
"port_name": "8560",
"port_number": 8560,
"admin_state": "ENABLED",
"runtime_state": "UNHEALTHY",
"stats": {
"bytes_in": 0,
"bytes_out": 0,
"conn_cur": 0,
"conn_max": 0,
"conn_tot": 0,
"pkts_in": 0,
"pkts_out": 0
}
}
]
}