Skip to content

batchTriggerExocomputeHealthCheck

Initiates an on-demand Exocompute health check for a batch of exocompute configurations across regions.

Arguments

Argument Type Description
input (required) BatchTriggerExocomputeHealthCheckInput! Input to initiate Exocompute health check for a batch of clusters.

Returns

BatchTriggerExocomputeHealthCheckReply!

Sample

mutation BatchTriggerExocomputeHealthCheck($input: BatchTriggerExocomputeHealthCheckInput!) {
  batchTriggerExocomputeHealthCheck(input: $input) {
    failedConfigIds
    healthCheckJobIds
  }
}
{
  "input": {
    "exocomputeConfigs": [
      {
        "cloudVendor": "ALL_VENDORS",
        "exocomputeConfigId": "00000000-0000-0000-0000-000000000000"
      }
    ]
  }
}
{
  "data": {
    "batchTriggerExocomputeHealthCheck": {
      "failedConfigIds": [
        "00000000-0000-0000-0000-000000000000"
      ],
      "healthCheckJobIds": [
        "example-string"
      ]
    }
  }
}