Skip to content

allAzureSubscriptionWithExocomputeMappings

Retrieves a list of all Azure subscriptions with Exocompute subscription mapping.

Arguments

Argument Type Description
features [CloudAccountFeature!] Cloud account features. Rubrik offers a cloud account feature as part of Rubrik Security Cloud (RSC).
exocomputeSubscriptionIdsFilter [UUID!] List of mapped Exocompute subscription IDs.

Returns

[AzureSubscriptionWithExocomputeMapping!]!

Sample

query {
  allAzureSubscriptionWithExocomputeMappings {
    id
    name
    nativeId
  }
}
{}
{
  "data": {
    "allAzureSubscriptionWithExocomputeMappings": [
      {
        "id": "example-string",
        "name": "example-string",
        "nativeId": "example-string",
        "mappedExocomputeSubscription": {
          "id": "example-string",
          "name": "example-string",
          "nativeId": "example-string"
        }
      }
    ]
  }
}