Share via


Microsoft.DurableTask schedulers

Bicep resource definition

The schedulers resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DurableTask/schedulers resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.DurableTask/schedulers@2025-11-01' = {
  location: 'string'
  name: 'string'
  properties: {
    ipAllowlist: [
      'string'
    ]
    sku: {
      capacity: int
      name: 'string'
    }
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.DurableTask/schedulers

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,64}$ (required)
properties The resource-specific properties for this resource. SchedulerProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

SchedulerProperties

Name Description Value
ipAllowlist IP allow list for durable task scheduler. Values can be IPv4, IPv6 or CIDR string[] (required)
sku SKU of the durable task scheduler SchedulerSku (required)

SchedulerSku

Name Description Value
capacity The SKU capacity. This allows scale out/in for the resource and impacts zone redundancy int
name The name of the SKU 'Consumption'
'Dedicated' (required)

TrackedResourceTags

Name Description Value

ARM template resource definition

The schedulers resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DurableTask/schedulers resource, add the following JSON to your template.

{
  "type": "Microsoft.DurableTask/schedulers",
  "apiVersion": "2025-11-01",
  "name": "string",
  "location": "string",
  "properties": {
    "ipAllowlist": [ "string" ],
    "sku": {
      "capacity": "int",
      "name": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.DurableTask/schedulers

Name Description Value
apiVersion The api version '2025-11-01'
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,64}$ (required)
properties The resource-specific properties for this resource. SchedulerProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.DurableTask/schedulers'

SchedulerProperties

Name Description Value
ipAllowlist IP allow list for durable task scheduler. Values can be IPv4, IPv6 or CIDR string[] (required)
sku SKU of the durable task scheduler SchedulerSku (required)

SchedulerSku

Name Description Value
capacity The SKU capacity. This allows scale out/in for the resource and impacts zone redundancy int
name The name of the SKU 'Consumption'
'Dedicated' (required)

TrackedResourceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

The schedulers resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DurableTask/schedulers resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DurableTask/schedulers@2025-11-01"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      ipAllowlist = [
        "string"
      ]
      sku = {
        capacity = int
        name = "string"
      }
    }
  }
}

Property Values

Microsoft.DurableTask/schedulers

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,64}$ (required)
properties The resource-specific properties for this resource. SchedulerProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.DurableTask/schedulers@2025-11-01"

SchedulerProperties

Name Description Value
ipAllowlist IP allow list for durable task scheduler. Values can be IPv4, IPv6 or CIDR string[] (required)
sku SKU of the durable task scheduler SchedulerSku (required)

SchedulerSku

Name Description Value
capacity The SKU capacity. This allows scale out/in for the resource and impacts zone redundancy int
name The name of the SKU 'Consumption'
'Dedicated' (required)

TrackedResourceTags

Name Description Value