Skip to content

allAzureDiskEncryptionSetsByRegionFromNativeId

List of all Azure Disk Encryption Sets in a region using Azure's native subscription ID. Use this for exocompute-only subscriptions that don't have a Rubrik subscription ID.

Arguments

Argument Type Description
azureSubscriptionNativeId (required) UUID! Azure's native subscription ID.
region (required) AzureNativeRegion! The azure region.

Returns

[AzureNativeDiskEncryptionSet!]!

Sample

query AllAzureDiskEncryptionSetsByRegionFromNativeId($azureSubscriptionNativeId: UUID!, $region: AzureNativeRegion!) {
  allAzureDiskEncryptionSetsByRegionFromNativeId(
    azureSubscriptionNativeId: $azureSubscriptionNativeId
    region: $region
  ) {
    name
    nativeId
  }
}
{
  "azureSubscriptionNativeId": "00000000-0000-0000-0000-000000000000",
  "region": "AUSTRALIA_CENTRAL"
}
{
  "data": {
    "allAzureDiskEncryptionSetsByRegionFromNativeId": [
      {
        "name": "example-string",
        "nativeId": "example-string"
      }
    ]
  }
}