Skip to content

coordinatorLabels

GetCoordinatorLabels retrieves the current coordinator labels for all virtual machines in a Cloud Direct cluster.

Arguments

Argument Type Description
input (required) GetCoordinatorLabelsReq! The Cloud Direct cluster UUID.

Returns

CoordinatorLabelsReply!

Sample

query CoordinatorLabels($input: GetCoordinatorLabelsReq!) {
  coordinatorLabels(input: $input)
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "coordinatorLabels": {
      "entries": [
        {
          "hardwareId": "example-string",
          "labels": [
            "BACKUP_SUITE"
          ]
        }
      ]
    }
  }
}