Skip to content

clusterNodes

Get list of nodes in this Rubrik cluster Supported in v5.0+ Returns the list of all Rubrik nodes.

Arguments

Argument Type Description
input (required) GetNodesInput! Input for InternalGetNodes.

Returns

NodeStatusListResponse!

Sample

query ClusterNodes($input: GetNodesInput!) {
  clusterNodes(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "clusterNodes": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "brikId": "example-string",
          "hasUnavailableDisks": true,
          "hostname": "example-string",
          "id": "example-string",
          "ipAddress": "example-string",
          "role": "example-string"
        }
      ]
    }
  }
}