Skip to content

updateFailoverCluster

Update a failover cluster Supported in v5.2+ Update failover cluster with specified properties.

Arguments

Argument Type Description
input (required) UpdateFailoverClusterInput! Input for V1UpdateFailoverCluster.

Returns

UpdateFailoverClusterReply!

Sample

mutation UpdateFailoverCluster($input: UpdateFailoverClusterInput!) {
  updateFailoverCluster(input: $input)
}
{
  "input": {
    "id": "example-string",
    "updateProperties": {
      "hostIds": [
        "example-string"
      ],
      "name": "example-string"
    }
  }
}
{
  "data": {
    "updateFailoverCluster": {
      "output": {
        "numApps": 0,
        "numNodes": 0
      }
    }
  }
}