azure-resource-manager-durabletask-dotnet

Manage Azure Durable Task Scheduler resources via Azure Resource Manager SDK.

Updated Apr 12, 2026
One-click install
npx skills add https://github.com/davidrrowley/CortexYouV3 --skill azure-resource-manager-durabletask-dotnet-davidrrowley
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: azure-resource-manager-durabletask-dotnet
Source: https://github.com/davidrrowley/CortexYouV3/tree/main/.agents/skills/azure-resource-manager-durabletask-dotnet
Command: npx skills add https://github.com/davidrrowley/CortexYouV3 --skill azure-resource-manager-durabletask-dotnet-davidrrowley

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill removes the friction of provisioning and managing Azure Durable Task Scheduler resources by providing clear, SDK-based management plane workflows for creating schedulers, task hubs, and retention policies.

Core Features & Use Cases

  • Scheduler lifecycle management: Create, update, list, and delete Durable Task Schedulers with Dedicated or Consumption SKUs.
  • Task hub and retention policy management: Create and remove Task Hubs and configure retention policies under a scheduler.
  • Operational guidance: Shows authentication with DefaultAzureCredential, handling long-running operations with WaitUntil, async patterns, and targeted error handling for common ARM failures.
  • Use Case: Provision a production-grade scheduler with Dedicated SKU and IP allowlist, then create task hubs and retention policies, and later perform safe cleanup.

Quick Start

Create a Durable Task Scheduler named my-scheduler in your resource group using DefaultAzureCredential and the Azure.ResourceManager.DurableTask SDK.

Frequently Asked Questions about azure-resource-manager-durabletask-dotnet

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I provision Azure Durable Task Scheduler resources using ARM?

To provision Azure Durable Task Scheduler resources via ARM, use the Azure.ResourceManager.DurableTask SDK to create schedulers, task hubs, and retention policies within a subscription or resource group.

What is needed to authenticate Durable Task Scheduler management operations in .NET?

Durable Task Scheduler management operations require Azure.Identity authentication using DefaultAzureCredential to securely authorize ARM requests within your .NET application.

How do I handle long-running operations when creating a Durable Task Scheduler?

Handle long-running operations for creating a Durable Task Scheduler by using WaitUntil to manage the asynchronous ARM lifecycle and applying targeted error handling for RequestFailedException.

Can I configure retention policies for task hubs under a Durable Task Scheduler?

Yes, you can configure retention policies for task hubs by creating and removing Task Hubs under an existing Durable Task Scheduler using the Azure.ResourceManager.DurableTask management plane.

Does the Durable Task Scheduler support different SKUs for production provisioning?

Yes, Durable Task Scheduler supports both Dedicated and Consumption SKUs, allowing you to provision a production-grade scheduler with specific configurations like an IP allowlist.