Skip to content

allMissingClusters

All missing clusters from the account.

Arguments

Argument Type Description
connectionStatus MissingClusterConnectionStatus Rubrik cluster connection status.
isExcluded Boolean Rubrik cluster exclusion status.

Returns

MissingClusterConnection!

Sample

query {
  allMissingClusters {
    nodes {
      clusterIp
      clusterType
      connectionStatus
      disconnectedState
      exclusionReason
      isExcluded
      name
      nodes
      numOfNodes
      uuid
      version
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "allMissingClusters": {
      "nodes": [
        [
          {
            "clusterIp": "example-string",
            "clusterType": "example-string",
            "connectionStatus": "CONNECTED",
            "disconnectedState": "DECOMMISSIONED",
            "exclusionReason": "example-string",
            "isExcluded": true
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}