Skip to content

azureO365Exocompute

Gets the exocompute details of the given cluster.

Arguments

Argument Type Description
orgId (required) UUID! Org UUID.
exocomputeClusterId (required) String!

Returns

GetAzureO365ExocomputeResp!

Sample

query AzureO365Exocompute($orgId: UUID!, $exocomputeClusterId: String!) {
  azureO365Exocompute(
    orgId: $orgId
    exocomputeClusterId: $exocomputeClusterId
  )
}
{
  "orgId": "00000000-0000-0000-0000-000000000000",
  "exocomputeClusterId": "example-string"
}
{
  "data": {
    "azureO365Exocompute": {
      "cluster": {
        "acrId": "example-string",
        "aksId": "example-string",
        "aksLbIps": [
          "example-string"
        ],
        "aksVersion": "example-string",
        "azureAppId": "example-string",
        "azureCloudType": "PUBLIC"
      }
    }
  }
}