Endpoint

/v1/cluster/nodes/chassis/

GET

List the status of the chassis for nodes. This API is deprecated in favor of /v1/cluster/nodes/uid-lights and /v2/metrics/endpoints/default/data for PSU information

Parameters

This resource has no parameters.

Response

Codes

Code Description
200 Return value on success

Schema

{
  "type": "array",
  "items": {
    "description": "api_node_chassis",
    "type": "object",
    "properties": {
      "id": {
        "description": "id",
        "type": "number"
      },
      "light_visible": {
        "description": "Visibility of the node identifier light",
        "type": "boolean"
      },
      "psu_statuses": {
        "type": "array",
        "items": {
          "description": "psu_statuses",
          "type": "object",
          "properties": {
            "name": {
              "description": "name",
              "type": "string"
            },
            "state": {
              "type": "string",
              "enum": [
                "UNKNOWN",
                "MISSING",
                "NO AC",
                "GOOD",
                "FAILED",
                "PREFAIL"
              ],
              "description": "state:\n * `FAILED` - PSU_STATE_FAILED,\n * `GOOD` - PSU_STATE_GOOD,\n * `MISSING` - PSU_STATE_MISSING,\n * `NO AC` - PSU_STATE_NO_AC,\n * `PREFAIL` - PSU_STATE_PREFAIL,\n * `UNKNOWN` - PSU_STATE_UNKNOWN"
            },
            "location": {
              "type": "string",
              "enum": [
                "right",
                "left",
                "top",
                "bottom"
              ],
              "description": "location:\n * `bottom` - PSU_LOCATION_BOTTOM,\n * `left` - PSU_LOCATION_LEFT,\n * `right` - PSU_LOCATION_RIGHT,\n * `top` - PSU_LOCATION_TOP"
            }
          }
        }
      }
    }
  }
}