Skip to content

azureO365Exocompute

GetAzureO365Exocompute returns the details of the specified Exocluster.

Arguments

Argument Type Description
orgId (required) UUID! Org UUID.
exocomputeClusterId (required) String! The ID of the exocompute cluster.

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"
      }
    }
  }
}