Skip to content

azureCloudAccountSubscriptionWithFeatures

Retrieves the details of the Azure cloud account.

Arguments

Argument Type Description
cloudAccountId (required) UUID! The Rubrik ID of the cloud account.

Returns

AzureCloudAccountSubscriptionWithFeatures!

Sample

query AzureCloudAccountSubscriptionWithFeatures($cloudAccountId: UUID!) {
  azureCloudAccountSubscriptionWithFeatures(cloudAccountId: $cloudAccountId)
}
{
  "cloudAccountId": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "azureCloudAccountSubscriptionWithFeatures": {
      "featureDetails": [
        {
          "customerFeatureId": "00000000-0000-0000-0000-000000000000",
          "feature": "ALL",
          "permissionsGroups": [
            "AKS_CUSTOM_PRIVATE_DNS_ZONE"
          ],
          "regions": [
            "AUSTRALIACENTRAL"
          ],
          "status": "CONNECTED"
        }
      ],
      "subscription": {
        "cloudType": "AZURECHINACLOUD",
        "customerSubscriptionId": "example-string",
        "customerTenantId": "example-string",
        "isAuthorized": true,
        "name": "example-string",
        "nativeId": "example-string"
      }
    }
  }
}