Technical & DevelopmentIntermediate
azure-resource-manager-durabletask-dotnet
Durable Task Scheduler management
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-resource-manager-durabletask-dotnetnpx skills add https://github.com/microsoft/skills --skill azure-resource-manager-durabletask-dotnetOr paste this URL into your assistant to install:
Overview
What This Skill Does
Management plane SDK for Azure Durable Task Scheduler in .NET. Handles provisioning schedulers, creating task hubs, and configuring retention policies via Azure Resource Manager. Separate from the data plane SDK, which runs orchestrations.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure.ResourceManager.DurableTask (.NET)
Management plane SDK for provisioning and managing Azure Durable Task Scheduler resources via Azure Resource Manager.
⚠️ Management vs Data Plane
- This SDK (Azure.ResourceManager.DurableTask): Create schedulers, task hubs, configure retention policies
- Data Plane SDK (Microsoft.DurableTask.Client.AzureManaged): Start orchestrations, query instances, send events
Installation
dotnet add package Azure.ResourceManager.DurableTask
dotnet add package Azure.Identity
Current Versions: Stable v1.0.0 (2025-11-03), Preview v1.0.0-beta.1 (2025-04-24) API Version: 2025-11-01
Environment Variables
AZURE_SUBSCRIPTION_ID=<your-subscription-id> # Required: Azure subscription ID
AZURE_RESOURCE_GROUP=<your-resource-group> # Required: Azure resource group name
AZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production
AZURE_TENANT_ID=<tenant-id> # For service principal auth (optional)
AZURE_CLIENT_ID=<client-id> # For service principal auth (optional)
AZURE_CLIENT_SECRET=<client-secret> # For service principal auth (optional)
Lines 1 - 28 of 375
Recommendations