Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
The Power Control Service (PCS) performs power-related operations on system components - nodes, blades, and chassis. PCS refers to system components by their xname, or system identifier.
This REST API provides the following functions:
Power xname on or off.
Get power status of xnames.
Get and set power capping parameters.
Send a JSON payload with a list of targets and power capping parameters to be applied to the targets. This is a non-blocking operation. A task ID is returned, used to query the status of the task and get the requested information.
Retrieve status of specified power cap PATCH operation and current values.
Send a JSON payload with a list of target xnames. This will launch a task and return a snapshot ID which can be queried for status.
Query the status of a power cap snapshot task. If completed, contains the current power cap values as read from the hardware.
Base URLs:
License: MIT
Endpoints that perform power operations to a set of xnames
Code samples
POST https://api-gw-service-nmn.local/apis/power-control/v1/transitions HTTP/1.1
Host: api-gw-service-nmn.local
Content-Type: application/json
Accept: application/json
# You can also use wget
curl -X POST https://api-gw-service-nmn.local/apis/power-control/v1/transitions \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.post('https://api-gw-service-nmn.local/apis/power-control/v1/transitions', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("POST", "https://api-gw-service-nmn.local/apis/power-control/v1/transitions", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
POST /transitions
Start a transition
Request to perform power transitions.
Body parameter
{
"operation": "force-off",
"taskDeadlineMinutes": 0,
"location": [
{
"xname": "x0c0s0b0n0",
"deputyKey": "80838f7c-04e3-4cf6-8456-6bd557a0f1be"
}
]
}
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | transition_create | true | Transition parameters |
Example responses
200 Response
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"operation": "Soft-Restart"
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Accepted | transition_start_output |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error prevented starting the transition | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/transitions HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/transitions \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/transitions', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/transitions", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /transitions
Retrieve all requested power transitions
Return a complete list of the requested power transitions, with status information. Note that records older than 24 hours are automatically deleted.
Example responses
200 Response
{
"transitions": [
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"createTime": "2020-12-16T19:00:20",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"transitionStatus": "in-progress",
"operation": "Soft-Restart",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
]
}
500 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | transitions_getAll |
500 | Internal Server Error | Database error prevented getting the transitions | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID} HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID} \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID}', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /transitions/{transitionID}
Retrieve transition status by ID
Retrieve the transition status information for the specified transitionID.
Name | In | Type | Required | Description |
---|---|---|---|---|
transitionID | path | string(uuid) | true | none |
Example responses
200 Response
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"createTime": "2020-12-16T19:00:20",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"transitionStatus": "in-progress",
"operation": "Soft-Restart",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
},
"tasks": [
{
"xname": "x0c0s0b0n0",
"taskStatus": "failed",
"taskStatusDescription": "the device did not respond in a timely manner",
"error": "failed to achieve transition"
}
]
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | transitions_getID |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error prevented getting the transition | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
DELETE https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID} HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X DELETE https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID} \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.delete('https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID}', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("DELETE", "https://api-gw-service-nmn.local/apis/power-control/v1/transitions/{transitionID}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
DELETE /transitions/{transitionID}
Abort an in-progress transition
Attempt to abort an in-progress transition by transitionID
Name | In | Type | Required | Description |
---|---|---|---|---|
transitionID | path | string(uuid) | true | none |
Example responses
202 Response
{
"abortStatus": "Accepted - abort initiated"
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
202 | Accepted | Accepted - abort initiated | transitions_abort |
400 | Bad Request | Specified transition is complete | Problem7807 |
404 | Not Found | TransitionID not found | Problem7807 |
500 | Internal Server Error | Database error prevented abort signaling | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Endpoints that retrieve power status of xnames
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/power-status HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/power-status \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/power-status', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/power-status", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /power-status
Retrieve the power state
Retrieve the power state of the components specified by xname.
Name | In | Type | Required | Description |
---|---|---|---|---|
xname | query | non_empty_string_list | false | none |
powerStateFilter | query | power_state | false | none |
managementStateFilter | query | management_state | false | none |
Parameter | Value |
---|---|
powerStateFilter | on |
powerStateFilter | off |
powerStateFilter | undefined |
managementStateFilter | unavailable |
managementStateFilter | available |
Example responses
200 Response
{
"status": [
{
"xname": "x0c0s0b0n0",
"powerState": "on",
"managementState": "available",
"error": "permission denied - system credentials failed",
"supportedPowerTransitions": [
"Soft-Restart"
],
"lastUpdated": "2022-08-24T16:45:53.953811137Z"
}
]
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | power_status_all |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
POST https://api-gw-service-nmn.local/apis/power-control/v1/power-status HTTP/1.1
Host: api-gw-service-nmn.local
Content-Type: application/json
Accept: application/json
# You can also use wget
curl -X POST https://api-gw-service-nmn.local/apis/power-control/v1/power-status \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.post('https://api-gw-service-nmn.local/apis/power-control/v1/power-status', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("POST", "https://api-gw-service-nmn.local/apis/power-control/v1/power-status", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
POST /power-status
Retrieve the power state
Retrieve the power state of the components specified by xname.
Body parameter
{
"xname": [
"string"
],
"powerStateFilter": "on",
"managementStateFilter": "available"
}
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | power_status_get | true | Node filtering parameters |
Example responses
200 Response
{
"status": [
{
"xname": "x0c0s0b0n0",
"powerState": "on",
"managementState": "available",
"error": "permission denied - system credentials failed",
"supportedPowerTransitions": [
"Soft-Restart"
],
"lastUpdated": "2022-08-24T16:45:53.953811137Z"
}
]
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | power_status_all |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Endpoints that retrieve or set power cap parameters
Code samples
POST https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/snapshot HTTP/1.1
Host: api-gw-service-nmn.local
Content-Type: application/json
Accept: application/json
# You can also use wget
curl -X POST https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/snapshot \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.post('https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/snapshot', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("POST", "https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/snapshot", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
POST /power-cap/snapshot
Take a power cap snapshot for a set of targets
Get power cap snapshot for a set of targets. This operation returns a taskID to be used for completion status queries, since this can be a long running task. Progress and status for this task can be queried via a GET /power-cap/{taskID}
Body parameter
{
"xnames": [
"x0c0s0b0n0"
]
}
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | power_cap_snapshot_req | false | none |
Example responses
200 Response
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1"
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK. The data was successfully retrieved | op_task_start_response |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
PATCH https://api-gw-service-nmn.local/apis/power-control/v1/power-cap HTTP/1.1
Host: api-gw-service-nmn.local
Content-Type: application/json
Accept: application/json
# You can also use wget
curl -X PATCH https://api-gw-service-nmn.local/apis/power-control/v1/power-cap \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.patch('https://api-gw-service-nmn.local/apis/power-control/v1/power-cap', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("PATCH", "https://api-gw-service-nmn.local/apis/power-control/v1/power-cap", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
PATCH /power-cap
Set power capping parameters on a set of targets
Set power cap parameters for a list of targets. The PATCH payload contains the targets and the parameters to set. This operation returns a powercapID to be used for completion status queries, since this can be a long running task. Progress and status for this task can be queried via a GET /power-cap/{taskID}
.
Body parameter
{
"components": [
{
"xname": "x0c0s0b0n0",
"controls": [
{
"name": "string",
"value": 400
}
]
}
]
}
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | power_cap_patch | false | none |
Example responses
200 Response
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1"
}
400 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK. The data was successfully retrieved | op_task_start_response |
400 | Bad Request | Bad Request | Problem7807 |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/power-cap HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/power-cap \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/power-cap', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/power-cap", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /power-cap
Get a list of power-cap tasks (snapshots or sets)
Example responses
200 Response
{
"tasks": [
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1",
"type": "snapshot",
"taskCreateTime": "2021-04-01T19:00:00",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"taskStatus": "Completed",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
]
}
500 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK. The data was successfully retrieved | power_cap_task_list |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/{taskID} HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/{taskID} \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/{taskID}', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/power-cap/{taskID}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /power-cap/{taskID}
Get power cap or snapshot information
Queries the current status for the specified taskID. Use the taskID returned from a PATCH /power-cap
or POST /power-cap/snapshot
request.
Name | In | Type | Required | Description |
---|---|---|---|---|
taskID | path | task_id | true | none |
Example responses
200 Response
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1",
"type": "snapshot",
"taskCreateTime": "2021-04-01T19:00:00",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"taskStatus": "Completed",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
},
"components": [
{
"xname": "x0c0s0b0n0",
"error": "Optional error message",
"limits": {
"hostLimitMax": 900,
"hostLimitMin": 360,
"powerupPower": 250
},
"powerCapLimits": [
{
"name": "Node",
"currentValue": 410,
"maximumValue": 900,
"minimumValue": 360
}
]
}
]
}
404 Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK. The data was successfully retrieved. Task Info is only present for task status operations (PATCH power-cap or POST power-cap/snapshot) | power_caps_retdata |
404 | Not Found | TaskID not found | Problem7807 |
500 | Internal Server Error | Database error | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Endpoints that should not be parsed by the Cray CLI generator
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/liveness HTTP/1.1
Host: api-gw-service-nmn.local
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/liveness \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/liveness', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/liveness", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /liveness
Get liveness status of the service
Get liveness status of the service
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | No Content Network API call success | None |
503 | Service Unavailable | The service is not taking HTTP requests | None |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/readiness HTTP/1.1
Host: api-gw-service-nmn.local
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/readiness \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/readiness', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/readiness", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /readiness
Get readiness status of the service
Get readiness status of the service
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | No Content Network API call success | None |
503 | Service Unavailable | The service is not taking HTTP requests | None |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
Code samples
GET https://api-gw-service-nmn.local/apis/power-control/v1/health HTTP/1.1
Host: api-gw-service-nmn.local
Accept: application/json
# You can also use wget
curl -X GET https://api-gw-service-nmn.local/apis/power-control/v1/health \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
import requests
headers = {
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api-gw-service-nmn.local/apis/power-control/v1/health', headers = headers)
print(r.json())
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api-gw-service-nmn.local/apis/power-control/v1/health", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
GET /health
Query the health of the service
The health
resource returns health information about the PCS service and its dependencies. This actively checks the connection between PCS and the following:
This is primarily intended as a diagnostic tool to investigate the functioning of the PCS service.
Example responses
200 Response
{
"KvStore": "connected, responsive",
"StateManager": "connected, responsive",
"BackingStore": "connected, responsive",
"Vault": "connected, responsive",
"TaskRunnerMode": "connected, responsive, local mode"
}
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK Network API call success | health_rsp |
405 | Method Not Allowed | Operation Not Permitted. For /health, only GET operations are allowed. | Problem7807 |
To perform this operation, you must be authenticated by means of one of the following methods: bearerAuth
{
"xname": "x0c0s0b0n0",
"powerState": "on",
"managementState": "available",
"error": "permission denied - system credentials failed",
"supportedPowerTransitions": [
"Soft-Restart"
],
"lastUpdated": "2022-08-24T16:45:53.953811137Z"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | xname | false | none | The xname of this piece of hardware |
powerState | power_state | false | none | The power state of a component. |
managementState | management_state | false | none | Whether the device is currently available for commands via its management controller |
error | string¦null | false | none | none |
supportedPowerTransitions | [power_operation] | false | none | [An operation to be applied to the hardware.] |
lastUpdated | string(date-time) | false | read-only | none |
{
"status": [
{
"xname": "x0c0s0b0n0",
"powerState": "on",
"managementState": "available",
"error": "permission denied - system credentials failed",
"supportedPowerTransitions": [
"Soft-Restart"
],
"lastUpdated": "2022-08-24T16:45:53.953811137Z"
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
status | [power_status] | false | none | none |
{
"xname": [
"string"
],
"powerStateFilter": "on",
"managementStateFilter": "available"
}
Filters to limit which nodes have their power status returned.
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | non_empty_string_list | false | none | none |
powerStateFilter | power_state | false | none | The power state of a component. |
managementStateFilter | management_state | false | none | Whether the device is currently available for commands via its management controller |
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"createTime": "2020-12-16T19:00:20",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"transitionStatus": "in-progress",
"operation": "Soft-Restart",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
},
"tasks": [
{
"xname": "x0c0s0b0n0",
"taskStatus": "failed",
"taskStatusDescription": "the device did not respond in a timely manner",
"error": "failed to achieve transition"
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
transitionID | string(uuid) | false | none | none |
createTime | string | false | none | none |
automaticExpirationTime | string(date-time) | false | none | When the record will be deleted |
transitionStatus | transition_status | false | none | The status of the power transition. |
operation | power_operation | false | none | An operation to be applied to the hardware. |
taskCounts | task_counts | false | none | none |
tasks | [transition_task_data] | false | none | none |
{
"transitions": [
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"createTime": "2020-12-16T19:00:20",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"transitionStatus": "in-progress",
"operation": "Soft-Restart",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
transitions | [transitions_get] | false | none | none |
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"createTime": "2020-12-16T19:00:20",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"transitionStatus": "in-progress",
"operation": "Soft-Restart",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
transitionID | string(uuid) | false | none | none |
createTime | string | false | none | none |
automaticExpirationTime | string(date-time) | false | none | When the record will be deleted |
transitionStatus | transition_status | false | none | The status of the power transition. |
operation | power_operation | false | none | An operation to be applied to the hardware. |
taskCounts | task_counts | false | none | none |
{
"transitionID": "8dd3e1a5-ae40-4761-b8fe-6c489e965fbd",
"operation": "Soft-Restart"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
transitionID | string(uuid) | false | none | none |
operation | power_operation | false | none | An operation to be applied to the hardware. |
{
"abortStatus": "Accepted - abort initiated"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
abortStatus | string | false | none | none |
{
"xname": "x0c0s0b0n0",
"taskStatus": "failed",
"taskStatusDescription": "the device did not respond in a timely manner",
"error": "failed to achieve transition"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | xname | false | none | The xname of this piece of hardware |
taskStatus | string | false | none | none |
taskStatusDescription | string | false | none | none |
error | string | false | none | none |
Property | Value |
---|---|
taskStatus | new |
taskStatus | in-progress |
taskStatus | failed |
taskStatus | succeeded |
taskStatus | unsupported |
{
"xname": "x0c0s0b0n0",
"deputyKey": "80838f7c-04e3-4cf6-8456-6bd557a0f1be"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | xname | true | none | The xname of this piece of hardware |
deputyKey | string(uuid) | false | none | none |
{
"operation": "force-off",
"taskDeadlineMinutes": 0,
"location": [
{
"xname": "x0c0s0b0n0",
"deputyKey": "80838f7c-04e3-4cf6-8456-6bd557a0f1be"
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
operation | string | false | none | The operation that should be applied to the hardware. The operation parameter is not case sensitive. |
taskDeadlineMinutes | integer | false | none | The number of minutes to wait for a single transition task to complete before continuing. Defaults to 5 minutes, if unspecified. 0 disables waiting. -1 waits as long as it takes. |
location | [reserved_location] | false | none | none |
Property | Value |
---|---|
operation | on |
operation | off |
operation | soft-off |
operation | soft-restart |
operation | hard-restart |
operation | init |
operation | force-off |
{
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
total | integer | false | none | none |
new | integer | false | none | none |
in-progress | integer | false | none | none |
failed | integer | false | none | none |
succeeded | integer | false | none | none |
un-supported | integer | false | none | none |
{
"type": "about:blank",
"detail": "Detail about this specific problem occurrence. See RFC7807",
"instance": "",
"statusCode": 400,
"title": "Description of HTTP Status code, e.g. 400"
}
RFC 7807 compliant error payload. All fields are optional except the ’type’ field.
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
type | string | true | none | none |
detail | string | false | none | none |
instance | string | false | none | none |
statusCode | number(integer) | false | none | none |
title | string | false | none | none |
"on"
The power state of a component.
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string | false | none | The power state of a component. |
Property | Value |
---|---|
anonymous | on |
anonymous | off |
anonymous | undefined |
"Soft-Restart"
An operation to be applied to the hardware.
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string | false | read-only | An operation to be applied to the hardware. |
Property | Value |
---|---|
anonymous | On |
anonymous | Off |
anonymous | Soft-Restart |
anonymous | Hard-Restart |
anonymous | Init |
anonymous | Force-Off |
anonymous | Soft-Off |
"in-progress"
The status of the power transition.
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string | false | none | The status of the power transition. |
Property | Value |
---|---|
anonymous | new |
anonymous | in-progress |
anonymous | completed |
anonymous | aborted |
anonymous | abort-signaled |
"available"
Whether the device is currently available for commands via its management controller
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string | false | none | Whether the device is currently available for commands via its management controller |
Property | Value |
---|---|
anonymous | unavailable |
anonymous | available |
[
"string"
]
None
"x0c0s0b0n0"
The xname of this piece of hardware
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string | false | none | The xname of this piece of hardware |
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
Task ID from power-cap, snapshot operation
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | string(uuid) | false | none | Task ID from power-cap, snapshot operation |
{
"components": [
{
"xname": "x0c0s0b0n0",
"controls": [
{
"name": "string",
"value": 400
}
]
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
components | [power_cap_patch_component] | false | none | none |
{
"xname": "x0c0s0b0n0",
"controls": [
{
"name": "string",
"value": 400
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | xname | false | none | The xname of this piece of hardware |
controls | [power_cap_patch_component_control] | false | none | none |
{
"name": "string",
"value": 400
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | string | false | none | none |
value | integer | false | none | none |
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
taskID | string(uuid) | false | none | none |
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1",
"type": "snapshot",
"taskCreateTime": "2021-04-01T19:00:00",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"taskStatus": "Completed",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
},
"components": [
{
"xname": "x0c0s0b0n0",
"error": "Optional error message",
"limits": {
"hostLimitMax": 900,
"hostLimitMin": 360,
"powerupPower": 250
},
"powerCapLimits": [
{
"name": "Node",
"currentValue": 410,
"maximumValue": 900,
"minimumValue": 360
}
]
}
]
}
allOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | power_cap_task_info | false | none | none |
and
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | object | false | none | none |
» components | [rsp_power_cap_components] | false | none | none |
{
"tasks": [
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1",
"type": "snapshot",
"taskCreateTime": "2021-04-01T19:00:00",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"taskStatus": "Completed",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
tasks | [power_cap_task_info] | false | none | none |
{
"taskID": "e6d742d9-0922-4edc-baeb-3e1ecb0579d1",
"type": "snapshot",
"taskCreateTime": "2021-04-01T19:00:00",
"automaticExpirationTime": "2019-08-24T14:15:22Z",
"taskStatus": "Completed",
"taskCounts": {
"total": 5,
"new": 2,
"in-progress": 2,
"failed": 0,
"succeeded": 1,
"un-supported": 0
}
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
taskID | string(uuid) | false | none | none |
type | string | false | none | The task can either be the result of a snapshot or a patch |
taskCreateTime | string | false | none | none |
automaticExpirationTime | string(date-time) | false | none | When the record will be deleted |
taskStatus | string | false | none | none |
taskCounts | task_counts | false | none | none |
Property | Value |
---|---|
type | snapshot |
type | patch |
{
"xnames": [
"x0c0s0b0n0"
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xnames | [xname] | false | none | [The xname of this piece of hardware] |
{
"xname": "x0c0s0b0n0",
"error": "Optional error message",
"limits": {
"hostLimitMax": 900,
"hostLimitMin": 360,
"powerupPower": 250
},
"powerCapLimits": [
{
"name": "Node",
"currentValue": 410,
"maximumValue": 900,
"minimumValue": 360
}
]
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
xname | xname | false | none | The xname of this piece of hardware |
error | string | false | none | nullable error field |
limits | capabilities_limits | false | none | none |
powerCapLimits | [rsp_power_cap_components_control] | false | none | none |
{
"name": "Node",
"currentValue": 410,
"maximumValue": 900,
"minimumValue": 360
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | string | false | none | none |
currentValue | integer | false | none | The current power cap limit as reported by the device |
maximumValue | integer | false | none | The maximum power cap limit the device may be set to |
minimumValue | integer | false | none | The minimum power cap limit the device may be set to |
Property | Value |
---|---|
name | Node |
name | Accel |
{
"hostLimitMax": 900,
"hostLimitMin": 360,
"powerupPower": 250
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
hostLimitMax | integer | false | none | Node maximum power draw, measured in watts, as reported by underlying Redfish implementation |
hostLimitMin | integer | false | none | Node minimum power draw, measured in watts, as reported by underlying Redfish implementation |
powerupPower | integer | false | none | Typical power consumption of each node during hardware initialization, specified in watts |
{
"KvStore": "connected, responsive",
"StateManager": "connected, responsive",
"BackingStore": "connected, responsive",
"Vault": "connected, responsive",
"TaskRunnerMode": "connected, responsive, local mode"
}
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
KvStore | string | true | none | Status of the KV Store. |
DistLocking | string | true | none | Status of the distributed locking mechanism |
StateManager | string | true | none | Status of the connection to the Hardware State Manager. |
Vault | string | true | none | Status of the connection to Vault. |
TaskRunner | any | true | none | TRS status and mode (local or remote/worker). |