Document navigation

GetHostPowerStatus

API Request

URLs
PUT zstack/v1/hosts/power/{uuid}/actions
Headers
Authorization: OAuth the-session-uuid
Body
{
  "getHostPowerStatus": {
    "method": "AUTO"
  },
  "systemTags": [],
  "userTags": []
}
Note: In the above example, systemTags and userTags fields can be omitted. They are listed to indicate that these two fields can be included in the body.
Curl Example
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X PUT -d '{"getHostPowerStatus":{"method":"AUTO"}}' //localhost:8080/zstack/v1/hosts/power/12d6c065d8cb3e128b5c33f7c619f65f/actions
Parameter List
Name Type Location Description Allowed Values Starting Version
uuid String url Resource UUID, uniquely identifies the resource 4.7.0
method (optional) String body (contained in getHostPowerStatus structure) Method to get host power status
  • AUTO
  • AGENT
  • IPMI
4.7.0
systemTags (optional) List body System tag 4.7.0
userTags (optional) List body User tag 4.7.0

API Response

Response Example
{
  "inventory": {
    "ipmiAddress": "192.168.0.1",
    "ipmiUsername": "admin",
    "ipmiPort": 623,
    "ipmiPassword": "password",
    "ipmiPowerStatus": "POWER_ON"
  }
}
Name Type Description Starting Version
success boolean Whether the operation succeeded. 4.7.0
inventory See details inventory 4.7.0
error ErrorCode Error code. If not null, the operation failed. If null, the operation succeeded. See details error 4.7.0
#inventory
Name Type Description Starting Version
uuid String Resource UUID, uniquely identifies the resource 4.7.0
ipmiAddress String IPMI address 4.7.0
ipmiUsername String IPMI username 4.7.0
ipmiPort int IPMI port 4.7.0
ipmiPowerStatus String IPMI power status 4.7.0
#error
Name Type Description Starting Version
code String Error code number, globally unique identifier of the error, e.g. SYS.1000, HOST.1001 4.7.0
description String Brief description of the error 4.7.0
details String Detailed error information 4.7.0
elaboration String Reserved field, default is null 4.7.0
opaque LinkedHashMap Reserved field, default is null 4.7.0
cause ErrorCode Root cause, the error that caused the current error. If there is no original error, this field is null 4.7.0

SDK Examples

Java SDK
GetHostPowerStatusAction action = new GetHostPowerStatusAction();
action.uuid = "12d6c065d8cb3e128b5c33f7c619f65f";
action.method = "AUTO";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
GetHostPowerStatusAction.Result res = action.call();
Python SDK
GetHostPowerStatusAction action = GetHostPowerStatusAction()
action.uuid = "12d6c065d8cb3e128b5c33f7c619f65f"
action.method = "AUTO"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
GetHostPowerStatusAction.Result res = action.call()
API Reference | ZStack ZSphere · ZVF | ZStack Resource Center