Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The edgeActions resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Cdn/edgeActions resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Cdn/edgeActions@2024-07-22-preview' = {
location: 'string'
name: 'string'
properties: {}
sku: {
name: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Cdn/edgeActions
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = 50 Pattern = [a-zA-Z0-9]+ (required) |
properties | The resource-specific properties for this resource. | EdgeActionProperties |
sku | The sku type of the edge action | SkuType (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
EdgeActionProperties
Name | Description | Value |
---|
SkuType
Name | Description | Value |
---|---|---|
name | The name of the SKU for the EdgeAction. | string (required) |
tier | The pricing tier associated with the SKU. | string (required) |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The edgeActions resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Cdn/edgeActions resource, add the following JSON to your template.
{
"type": "Microsoft.Cdn/edgeActions",
"apiVersion": "2024-07-22-preview",
"name": "string",
"location": "string",
"properties": {
},
"sku": {
"name": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Cdn/edgeActions
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-07-22-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = 50 Pattern = [a-zA-Z0-9]+ (required) |
properties | The resource-specific properties for this resource. | EdgeActionProperties |
sku | The sku type of the edge action | SkuType (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Cdn/edgeActions' |
EdgeActionProperties
Name | Description | Value |
---|
SkuType
Name | Description | Value |
---|---|---|
name | The name of the SKU for the EdgeAction. | string (required) |
tier | The pricing tier associated with the SKU. | string (required) |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The edgeActions 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.Cdn/edgeActions resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Cdn/edgeActions@2024-07-22-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
}
sku = {
name = "string"
tier = "string"
}
}
}
Property Values
Microsoft.Cdn/edgeActions
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = 50 Pattern = [a-zA-Z0-9]+ (required) |
properties | The resource-specific properties for this resource. | EdgeActionProperties |
sku | The sku type of the edge action | SkuType (required) |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Cdn/edgeActions@2024-07-22-preview" |
EdgeActionProperties
Name | Description | Value |
---|
SkuType
Name | Description | Value |
---|---|---|
name | The name of the SKU for the EdgeAction. | string (required) |
tier | The pricing tier associated with the SKU. | string (required) |
TrackedResourceTags
Name | Description | Value |
---|