Skip to content

azureCloudAccountDetailsForFeature

Retrieves the cloud account details from azure customer feature ID.

Arguments

Argument Type Description
featureId (required) UUID! Azure customer feature ID.

Returns

AzureCloudAccountDetailsForFeatureReply!

Sample

query AzureCloudAccountDetailsForFeature($featureId: UUID!) {
  azureCloudAccountDetailsForFeature(featureId: $featureId) {
    azureCloudType
    permissionsGroups
    subscriptionId
    tenantDomain
    tenantId
  }
}
{
  "featureId": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "azureCloudAccountDetailsForFeature": {
      "azureCloudType": "AZURECHINACLOUD",
      "permissionsGroups": [
        "AKS_CUSTOM_PRIVATE_DNS_ZONE"
      ],
      "subscriptionId": "example-string",
      "tenantDomain": "example-string",
      "tenantId": "example-string"
    }
  }
}