1. Packages
  2. Azure Native
  3. API Docs
  4. cdn
  5. EdgeActionVersion
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Concrete tracked resource types can be created by aliasing this type using a specific property type.

    Uses Azure REST API version 2025-09-01-preview.

    Other available API versions: 2024-07-22-preview, 2025-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native cdn [ApiVersion]. See the version guide for details.

    Example Usage

    CreateEdgeActionVersion

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var edgeActionVersion = new AzureNative.Cdn.EdgeActionVersion("edgeActionVersion", new()
        {
            DeploymentType = AzureNative.Cdn.EdgeActionVersionDeploymentType.Zip,
            EdgeActionName = "edgeAction1",
            IsDefaultVersion = AzureNative.Cdn.EdgeActionIsDefaultVersion.True,
            Location = "global",
            ResourceGroupName = "testrg",
            Version = "version2",
        });
    
    });
    
    package main
    
    import (
    	cdn "github.com/pulumi/pulumi-azure-native-sdk/cdn/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cdn.NewEdgeActionVersion(ctx, "edgeActionVersion", &cdn.EdgeActionVersionArgs{
    			DeploymentType:    pulumi.String(cdn.EdgeActionVersionDeploymentTypeZip),
    			EdgeActionName:    pulumi.String("edgeAction1"),
    			IsDefaultVersion:  pulumi.String(cdn.EdgeActionIsDefaultVersionTrue),
    			Location:          pulumi.String("global"),
    			ResourceGroupName: pulumi.String("testrg"),
    			Version:           pulumi.String("version2"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.cdn.EdgeActionVersion;
    import com.pulumi.azurenative.cdn.EdgeActionVersionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var edgeActionVersion = new EdgeActionVersion("edgeActionVersion", EdgeActionVersionArgs.builder()
                .deploymentType("zip")
                .edgeActionName("edgeAction1")
                .isDefaultVersion("True")
                .location("global")
                .resourceGroupName("testrg")
                .version("version2")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const edgeActionVersion = new azure_native.cdn.EdgeActionVersion("edgeActionVersion", {
        deploymentType: azure_native.cdn.EdgeActionVersionDeploymentType.Zip,
        edgeActionName: "edgeAction1",
        isDefaultVersion: azure_native.cdn.EdgeActionIsDefaultVersion.True,
        location: "global",
        resourceGroupName: "testrg",
        version: "version2",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    edge_action_version = azure_native.cdn.EdgeActionVersion("edgeActionVersion",
        deployment_type=azure_native.cdn.EdgeActionVersionDeploymentType.ZIP,
        edge_action_name="edgeAction1",
        is_default_version=azure_native.cdn.EdgeActionIsDefaultVersion.TRUE,
        location="global",
        resource_group_name="testrg",
        version="version2")
    
    resources:
      edgeActionVersion:
        type: azure-native:cdn:EdgeActionVersion
        properties:
          deploymentType: zip
          edgeActionName: edgeAction1
          isDefaultVersion: True
          location: global
          resourceGroupName: testrg
          version: version2
    

    Create EdgeActionVersion Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EdgeActionVersion(name: string, args: EdgeActionVersionArgs, opts?: CustomResourceOptions);
    @overload
    def EdgeActionVersion(resource_name: str,
                          args: EdgeActionVersionArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def EdgeActionVersion(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          deployment_type: Optional[Union[str, EdgeActionVersionDeploymentType]] = None,
                          edge_action_name: Optional[str] = None,
                          is_default_version: Optional[Union[str, EdgeActionIsDefaultVersion]] = None,
                          resource_group_name: Optional[str] = None,
                          location: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None,
                          version: Optional[str] = None)
    func NewEdgeActionVersion(ctx *Context, name string, args EdgeActionVersionArgs, opts ...ResourceOption) (*EdgeActionVersion, error)
    public EdgeActionVersion(string name, EdgeActionVersionArgs args, CustomResourceOptions? opts = null)
    public EdgeActionVersion(String name, EdgeActionVersionArgs args)
    public EdgeActionVersion(String name, EdgeActionVersionArgs args, CustomResourceOptions options)
    
    type: azure-native:cdn:EdgeActionVersion
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args EdgeActionVersionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EdgeActionVersionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EdgeActionVersionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EdgeActionVersionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EdgeActionVersionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var edgeActionVersionResource = new AzureNative.Cdn.EdgeActionVersion("edgeActionVersionResource", new()
    {
        DeploymentType = "string",
        EdgeActionName = "string",
        IsDefaultVersion = "string",
        ResourceGroupName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Version = "string",
    });
    
    example, err := cdn.NewEdgeActionVersion(ctx, "edgeActionVersionResource", &cdn.EdgeActionVersionArgs{
    	DeploymentType:    pulumi.String("string"),
    	EdgeActionName:    pulumi.String("string"),
    	IsDefaultVersion:  pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Version: pulumi.String("string"),
    })
    
    var edgeActionVersionResource = new EdgeActionVersion("edgeActionVersionResource", EdgeActionVersionArgs.builder()
        .deploymentType("string")
        .edgeActionName("string")
        .isDefaultVersion("string")
        .resourceGroupName("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .version("string")
        .build());
    
    edge_action_version_resource = azure_native.cdn.EdgeActionVersion("edgeActionVersionResource",
        deployment_type="string",
        edge_action_name="string",
        is_default_version="string",
        resource_group_name="string",
        location="string",
        tags={
            "string": "string",
        },
        version="string")
    
    const edgeActionVersionResource = new azure_native.cdn.EdgeActionVersion("edgeActionVersionResource", {
        deploymentType: "string",
        edgeActionName: "string",
        isDefaultVersion: "string",
        resourceGroupName: "string",
        location: "string",
        tags: {
            string: "string",
        },
        version: "string",
    });
    
    type: azure-native:cdn:EdgeActionVersion
    properties:
        deploymentType: string
        edgeActionName: string
        isDefaultVersion: string
        location: string
        resourceGroupName: string
        tags:
            string: string
        version: string
    

    EdgeActionVersion Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The EdgeActionVersion resource accepts the following input properties:

    DeploymentType string | Pulumi.AzureNative.Cdn.EdgeActionVersionDeploymentType
    The deployment type
    EdgeActionName string
    The name of the Edge Action
    IsDefaultVersion string | Pulumi.AzureNative.Cdn.EdgeActionIsDefaultVersion
    The active state
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    Version string
    The name of the Edge Action version
    DeploymentType string | EdgeActionVersionDeploymentType
    The deployment type
    EdgeActionName string
    The name of the Edge Action
    IsDefaultVersion string | EdgeActionIsDefaultVersion
    The active state
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    Version string
    The name of the Edge Action version
    deploymentType String | EdgeActionVersionDeploymentType
    The deployment type
    edgeActionName String
    The name of the Edge Action
    isDefaultVersion String | EdgeActionIsDefaultVersion
    The active state
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    version String
    The name of the Edge Action version
    deploymentType string | EdgeActionVersionDeploymentType
    The deployment type
    edgeActionName string
    The name of the Edge Action
    isDefaultVersion string | EdgeActionIsDefaultVersion
    The active state
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    version string
    The name of the Edge Action version
    deployment_type str | EdgeActionVersionDeploymentType
    The deployment type
    edge_action_name str
    The name of the Edge Action
    is_default_version str | EdgeActionIsDefaultVersion
    The active state
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    version str
    The name of the Edge Action version
    deploymentType String | "zip" | "file" | "others"
    The deployment type
    edgeActionName String
    The name of the Edge Action
    isDefaultVersion String | "True" | "False"
    The active state
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.
    version String
    The name of the Edge Action version

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EdgeActionVersion resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastPackageUpdateTime string
    The last update time in UTC for package update
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state
    SystemData Pulumi.AzureNative.Cdn.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    ValidationStatus string
    The validation status
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastPackageUpdateTime string
    The last update time in UTC for package update
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    ValidationStatus string
    The validation status
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    lastPackageUpdateTime String
    The last update time in UTC for package update
    name String
    The name of the resource
    provisioningState String
    The provisioning state
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationStatus String
    The validation status
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    lastPackageUpdateTime string
    The last update time in UTC for package update
    name string
    The name of the resource
    provisioningState string
    The provisioning state
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationStatus string
    The validation status
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    last_package_update_time str
    The last update time in UTC for package update
    name str
    The name of the resource
    provisioning_state str
    The provisioning state
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validation_status str
    The validation status
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    lastPackageUpdateTime String
    The last update time in UTC for package update
    name String
    The name of the resource
    provisioningState String
    The provisioning state
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationStatus String
    The validation status

    Supporting Types

    EdgeActionIsDefaultVersion, EdgeActionIsDefaultVersionArgs

    True
    True This is the default version
    False
    False This is not the default version
    EdgeActionIsDefaultVersionTrue
    True This is the default version
    EdgeActionIsDefaultVersionFalse
    False This is not the default version
    True
    True This is the default version
    False
    False This is not the default version
    True
    True This is the default version
    False
    False This is not the default version
    TRUE
    True This is the default version
    FALSE
    False This is not the default version
    "True"
    True This is the default version
    "False"
    False This is not the default version

    EdgeActionVersionDeploymentType, EdgeActionVersionDeploymentTypeArgs

    Zip
    zip ZIP file deployment
    File
    file Single file deployment
    Others
    others Other deployment types
    EdgeActionVersionDeploymentTypeZip
    zip ZIP file deployment
    EdgeActionVersionDeploymentTypeFile
    file Single file deployment
    EdgeActionVersionDeploymentTypeOthers
    others Other deployment types
    Zip
    zip ZIP file deployment
    File
    file Single file deployment
    Others
    others Other deployment types
    Zip
    zip ZIP file deployment
    File
    file Single file deployment
    Others
    others Other deployment types
    ZIP
    zip ZIP file deployment
    FILE
    file Single file deployment
    OTHERS
    others Other deployment types
    "zip"
    zip ZIP file deployment
    "file"
    file Single file deployment
    "others"
    others Other deployment types

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:cdn:EdgeActionVersion version2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/edgeActions/{edgeActionName}/versions/{version} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate