Skip to content

nodeToReplace

The ID of the Rubrik cluster node to replace.

Arguments

Argument Type Description
input (required) NodeToReplaceInput! Input for getting the ID of the node to replace on a Rubrik cluster.

Returns

NodeToReplaceReply!

Sample

query NodeToReplace($input: NodeToReplaceInput!) {
  nodeToReplace(input: $input) {
    nodeToReplace
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "nodeToReplace": {
      "nodeToReplace": "example-string"
    }
  }
}