Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
This tutorial shows how to use the ACZ management APIs in Azure Data Manager for Energy. You create, list, retrieve, and delete ACZ instances by using cURL.
Important
Analytics Consumption Zone is currently in preview. See the Supplemental Terms of Use for Microsoft Azure Previews for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
Note
During the preview, ACZ is only available on Developer Tier instances and requires allowlisting. Follow the guidance in How to enable the Analytics Consumption Zone (ACZ) and contact your Microsoft representative.
In this tutorial, you learn how to:
- Create an Analytics Consumption Zone
- List all ACZs in a data partition
- Get details of a specific ACZ
- Delete an ACZ
Prerequisites
- An Azure subscription. Create one for free.
- An Azure Data Manager for Energy (Developer Tier) instance in your Azure subscription. Create an Azure Data Manager for Energy instance.
- ACZ enabled for your instance. See How to enable the Analytics Consumption Zone (ACZ).
- Azure CLI installed and authenticated (
az login). - cURL (for Bash examples) or PowerShell 5.1+ (for PowerShell examples).
Tip
Explore the API interactively
You can view the complete ACZ API specification and test endpoints using Swagger UI at https://{instance-name}.energy.azure.com/api/acz/v1/docs. Replace {instance-name} with your Azure Data Manager for Energy instance name.
Get your Azure Data Manager for Energy instance details
Gather these details from your Azure Data Manager for Energy instance in the Azure portal:
Before you begin
The code examples in this tutorial use placeholder values in {curly-braces} format. Replace these placeholders with your actual values when running the commands.
All API calls require authentication. The Bash and PowerShell examples show inline token generation using Azure CLI. For alternative authentication methods, see How to generate auth token.
Create an ACZ
Use the Create ACZ API to set up a new Analytics Consumption Zone for a data partition.
API: POST /api/acz/v1/aczs
Key points:
- Maximum of three ACZs per data partition (preview limit).
- The ACZ name must be unique within the partition.
- The user-assigned managed identity must be:
- Assigned to your Azure Data Manager for Energy resource (see How to enable ACZ)
- Granted Storage Blob Data Contributor role on the destination ADLS Gen2 storage account
- An Azure Data Lake Storage (ADLS) Gen2 storage account with hierarchical namespace enabled is required.
# Get auth app ID for your ADME instance
AUTH_APP_ID=$(az resource show --ids /subscriptions/{subscription-id}/resourceGroups/{resource-group}/providers/Microsoft.OpenEnergyPlatform/energyServices/{adme-instance-name} --query properties.authAppId -o tsv)
# Get access token
TOKEN=$(az account get-access-token --resource $AUTH_APP_ID --query accessToken -o tsv)
# Create ACZ
curl --request POST \
--url https://{base-url}/api/acz/v1/aczs \
--header "Authorization: Bearer $TOKEN" \
--header 'Content-Type: application/json' \
--header 'data-partition-id: {data-partition-id}' \
--data '{
"name": "{acz-name}",
"aczType": "{acz-type}",
"targetFormat": "DELTA_PARQUET",
"sink": {
"storageType": "microsoft.storage/storageaccounts",
"storageId": "{storage-resource-id}",
"basePath": "{base-path}"
},
"configuration": {
"catalogKinds": {catalog-kinds},
"wellboreDDMSKinds": {wellbore-ddms-kinds}
}
}'
Replace the placeholders:
| Placeholder | Description |
|---|---|
{subscription-id} |
Subscription ID where your Azure Data Manager for Energy instance resides |
{resource-group} |
Resource group containing your Azure Data Manager for Energy instance |
{adme-instance-name} |
Your Azure Data Manager for Energy instance name |
{base-url} |
Your Azure Data Manager for Energy instance URL (for example, myinstance.energy.azure.com) |
{data-partition-id} |
Your data partition ID (for example, opendes) |
{acz-name} |
Display name for the ACZ (1-100 characters, for example, my-acz-wells-and-logs) |
{acz-type} |
Optional: LATEST_VERSION (default) exports only the latest version, ALL_VERSIONS exports all versions |
{storage-resource-id} |
Azure resource ID of the destination ADLS Gen2 storage account (for example, /subscriptions/xxx.../storageAccounts/mystorageacct) |
{base-path} |
Optional: Base path within the storage account for ACZ data output (for example, acz-output) |
{catalog-kinds} |
Optional: OSDU® catalog kind strings to sync (for example, ["osdu:wks:master-data--Well:*"]) |
{wellbore-ddms-kinds} |
Optional: Wellbore Domain Data Management Service (DDMS) kind strings to sync (for example, ["osdu:wks:work-product-component--WellLog:*"]) |
Note
You must provide at least one of {catalog-kinds} or {wellbore-ddms-kinds} in the configuration.
Sample response (201 Created):
{
"aczId": "acz-abc123def456",
"name": "my-acz-wells-and-logs",
"status": "ACTIVE",
"aczType": "LATEST_VERSION",
"targetFormat": "DELTA_PARQUET",
"sink": {
"storageType": "microsoft.storage/storageaccounts",
"storageId": "/subscriptions/{sub-id}/resourceGroups/{rg}/providers/Microsoft.Storage/storageAccounts/{account}",
"basePath": "acz-output"
},
"configuration": {
"catalogKinds": [
"osdu:wks:master-data--Well:*",
"osdu:wks:reference-data--UnitOfMeasure:*"
],
"wellboreDDMSKinds": [
"osdu:wks:work-product-component--WellLog:*"
]
},
"historicalSnapshotStatus": "PROCESSING",
"createdTs": "2026-03-31T10:00:00Z",
"updatedTs": "2026-03-31T10:00:00Z",
"createdBy": "user@contoso.com"
}
After you create the ACZ, it begins the historical snapshot with PROCESSING state. Use the Get ACZ API to check the status.
List ACZs
Use the List ACZs API to get all Analytics Consumption Zones in a data partition.
API: GET /api/acz/v1/aczs
# Get auth app ID for your ADME instance
AUTH_APP_ID=$(az resource show --ids /subscriptions/{subscription-id}/resourceGroups/{resource-group}/providers/Microsoft.OpenEnergyPlatform/energyServices/{adme-instance-name} --query properties.authAppId -o tsv)
# Get access token
TOKEN=$(az account get-access-token --resource $AUTH_APP_ID --query accessToken -o tsv)
# List ACZs
curl --request GET \
--url https://{base-url}/api/acz/v1/aczs \
--header "Authorization: Bearer $TOKEN" \
--header 'Accept: application/json' \
--header 'data-partition-id: {data-partition-id}'
Replace the placeholders:
| Placeholder | Description |
|---|---|
{subscription-id} |
Subscription ID where your Azure Data Manager for Energy instance resides |
{resource-group} |
Resource group containing your Azure Data Manager for Energy instance |
{adme-instance-name} |
Your Azure Data Manager for Energy instance name |
{base-url} |
Your Azure Data Manager for Energy instance URL (for example, myinstance.energy.azure.com) |
{data-partition-id} |
Your data partition ID (for example, opendes) |
Sample response (200 OK):
{
"items": [
{
"aczId": "acz-abc123def456",
"name": "my-acz-wells-and-logs",
"status": "ACTIVE",
"aczType": "LATEST_VERSION",
"targetFormat": "DELTA_PARQUET",
"sink": {
"storageType": "microsoft.storage/storageaccounts",
"storageId": "/subscriptions/{sub-id}/resourceGroups/{rg}/providers/Microsoft.Storage/storageAccounts/{account}",
"basePath": "acz-output"
},
"configuration": {
"catalogKinds": [
"osdu:wks:master-data--Well:*",
"osdu:wks:reference-data--UnitOfMeasure:*"
],
"wellboreDDMSKinds": [
"osdu:wks:work-product-component--WellLog:*"
]
},
"historicalSnapshotStatus": "COMPLETED",
"createdTs": "2026-03-31T10:00:00Z",
"updatedTs": "2026-03-31T10:30:00Z",
"createdBy": "user@contoso.com"
}
],
"count": 1
}
The response lists all ACZs in any status: ACTIVE, FAILED, or ACCESS_DENIED.
Get ACZ details
Use the Get ACZ API to get details for a specific ACZ.
API: GET /api/acz/v1/aczs/{acz-id}
# Get auth app ID for your ADME instance
AUTH_APP_ID=$(az resource show --ids /subscriptions/{subscription-id}/resourceGroups/{resource-group}/providers/Microsoft.OpenEnergyPlatform/energyServices/{adme-instance-name} --query properties.authAppId -o tsv)
# Get access token
TOKEN=$(az account get-access-token --resource $AUTH_APP_ID --query accessToken -o tsv)
# Get ACZ details
curl --request GET \
--url https://{base-url}/api/acz/v1/aczs/{acz-id} \
--header "Authorization: Bearer $TOKEN" \
--header 'Accept: application/json' \
--header 'data-partition-id: {data-partition-id}'
Replace the placeholders:
| Placeholder | Description |
|---|---|
{subscription-id} |
Subscription ID where your Azure Data Manager for Energy instance resides |
{resource-group} |
Resource group containing your Azure Data Manager for Energy instance |
{adme-instance-name} |
Your Azure Data Manager for Energy instance name |
{base-url} |
Your Azure Data Manager for Energy instance URL (for example, myinstance.energy.azure.com) |
{data-partition-id} |
Your data partition ID (for example, opendes) |
{acz-id} |
ACZ identifier from the Create or List response (for example, acz-abc123def456) |
Sample response (200 OK):
{
"aczId": "acz-abc123def456",
"name": "my-acz-wells-and-logs",
"status": "ACTIVE",
"aczType": "LATEST_VERSION",
"targetFormat": "DELTA_PARQUET",
"sink": {
"storageType": "microsoft.storage/storageaccounts",
"storageId": "/subscriptions/{sub-id}/resourceGroups/{rg}/providers/Microsoft.Storage/storageAccounts/{account}",
"basePath": "acz-output"
},
"configuration": {
"catalogKinds": [
"osdu:wks:master-data--Well:*",
"osdu:wks:reference-data--UnitOfMeasure:*"
],
"wellboreDDMSKinds": [
"osdu:wks:work-product-component--WellLog:*"
]
},
"historicalSnapshotStatus": "COMPLETED",
"createdTs": "2026-03-31T10:00:00Z",
"updatedTs": "2026-03-31T10:30:00Z",
"createdBy": "user@contoso.com"
}
To track ACZ provisioning, check the status and historicalSnapshotStatus fields.
Delete an ACZ
Use the Delete ACZ API to remove an ACZ configuration.
API: DELETE /api/acz/v1/aczs/{acz-id}
Warning
This delete action can't be undone. It removes all ACZ configuration and stops sync. Data already in the destination ADLS storage account stays intact.
# Get auth app ID for your ADME instance
AUTH_APP_ID=$(az resource show --ids /subscriptions/{subscription-id}/resourceGroups/{resource-group}/providers/Microsoft.OpenEnergyPlatform/energyServices/{adme-instance-name} --query properties.authAppId -o tsv)
# Get access token
TOKEN=$(az account get-access-token --resource $AUTH_APP_ID --query accessToken -o tsv)
# Delete ACZ
curl --request DELETE \
--url https://{base-url}/api/acz/v1/aczs/{acz-id} \
--header "Authorization: Bearer $TOKEN" \
--header 'Accept: application/json' \
--header 'data-partition-id: {data-partition-id}'
Replace the placeholders:
| Placeholder | Description |
|---|---|
{subscription-id} |
Subscription ID where your Azure Data Manager for Energy instance resides |
{resource-group} |
Resource group containing your Azure Data Manager for Energy instance |
{adme-instance-name} |
Your Azure Data Manager for Energy instance name |
{base-url} |
Your Azure Data Manager for Energy instance URL (for example, myinstance.energy.azure.com) |
{data-partition-id} |
Your data partition ID (for example, opendes) |
{acz-id} |
ACZ identifier from the Create or List response (for example, acz-abc123def456) |
Sample response (204 No Content):
A successful delete returns HTTP 204 with no response body. The ACZ status changes to DELETING while cleanup runs.
Error responses
The ACZ APIs return these error codes:
| HTTP status | Description |
|---|---|
400 |
Bad request. Check the request body for validation errors. |
401 |
Unauthorized. The Bearer token is missing or not valid. |
403 |
Forbidden. The user doesn't belong to the required entitlements group. |
404 |
Not found. The specified ACZ ID doesn't exist. |
422 |
Validation failed. The request body has values that aren't valid. |
500 |
Internal server error. Contact support if this error persists. |