Management of Physical Servers is available via the following endpoint:
/api/physical_servers
Querying all physical servers in the system is simply:
GET /api/physical_servers
Getting details on a specific Physical Server:
GET /api/physical_servers/:id
The following actions are available on Physical Servers:
Action | Description |
---|---|
power_on | Power On |
power_off | Power Off |
power_off_now | Power Off Now |
refresh_now | Refresh |
restart | Restart |
restart_now | Restart Now |
restart_to_sys_setup | Restart to System Setup |
restart_mgmt_controller | Restart Management Controller |
blink_loc_led | Blink the Identify LED |
turn_on_loc_led | Turn On the Identify LED |
turn_off_loc_led | Turn Off the Identify LED |
{
"action" : "power_on"
}
{
"action" : "power_off"
}
{
"action" : "power_off_now"
}
{
"action" : "refresh"
}
{
"action" : "restart"
}
{
"action" : "restart_now"
}
{
"action" : "restart_to_sys_setup"
}
{
"action" : "restart_mgmt_controller"
}
{
"action" : "blink_loc_led"
}
{
"action" : "turn_on_loc_led"
}
{
"action" : "turn_off_loc_led"
}