1. Packages
  2. Azure Native
  3. API Docs
  4. cdn
  5. Profile
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.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.cdn.Profile

Explore with Pulumi AI

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.3.0 published on Monday, Apr 28, 2025 by Pulumi

    A profile is a logical grouping of endpoints that share the same settings.

    Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01.

    Other available API versions: 2023-05-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2025-04-15. 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

    Profiles_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var profile = new AzureNative.Cdn.Profile("profile", new()
        {
            Location = "global",
            ProfileName = "profile1",
            ResourceGroupName = "RG",
            Sku = new AzureNative.Cdn.Inputs.SkuArgs
            {
                Name = AzureNative.Cdn.SkuName.Premium_AzureFrontDoor,
            },
        });
    
    });
    
    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.NewProfile(ctx, "profile", &cdn.ProfileArgs{
    			Location:          pulumi.String("global"),
    			ProfileName:       pulumi.String("profile1"),
    			ResourceGroupName: pulumi.String("RG"),
    			Sku: &cdn.SkuArgs{
    				Name: pulumi.String(cdn.SkuName_Premium_AzureFrontDoor),
    			},
    		})
    		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.Profile;
    import com.pulumi.azurenative.cdn.ProfileArgs;
    import com.pulumi.azurenative.cdn.inputs.SkuArgs;
    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 profile = new Profile("profile", ProfileArgs.builder()
                .location("global")
                .profileName("profile1")
                .resourceGroupName("RG")
                .sku(SkuArgs.builder()
                    .name("Premium_AzureFrontDoor")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const profile = new azure_native.cdn.Profile("profile", {
        location: "global",
        profileName: "profile1",
        resourceGroupName: "RG",
        sku: {
            name: azure_native.cdn.SkuName.Premium_AzureFrontDoor,
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    profile = azure_native.cdn.Profile("profile",
        location="global",
        profile_name="profile1",
        resource_group_name="RG",
        sku={
            "name": azure_native.cdn.SkuName.PREMIUM_AZURE_FRONT_DOOR,
        })
    
    resources:
      profile:
        type: azure-native:cdn:Profile
        properties:
          location: global
          profileName: profile1
          resourceGroupName: RG
          sku:
            name: Premium_AzureFrontDoor
    

    Create Profile Resource

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

    Constructor syntax

    new Profile(name: string, args: ProfileArgs, opts?: CustomResourceOptions);
    @overload
    def Profile(resource_name: str,
                args: ProfileArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Profile(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                sku: Optional[SkuArgs] = None,
                identity: Optional[ManagedServiceIdentityArgs] = None,
                location: Optional[str] = None,
                log_scrubbing: Optional[ProfileLogScrubbingArgs] = None,
                origin_response_timeout_seconds: Optional[int] = None,
                profile_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewProfile(ctx *Context, name string, args ProfileArgs, opts ...ResourceOption) (*Profile, error)
    public Profile(string name, ProfileArgs args, CustomResourceOptions? opts = null)
    public Profile(String name, ProfileArgs args)
    public Profile(String name, ProfileArgs args, CustomResourceOptions options)
    
    type: azure-native:cdn:Profile
    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 ProfileArgs
    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 ProfileArgs
    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 ProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProfileArgs
    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 profileResource = new AzureNative.Cdn.Profile("profileResource", new()
    {
        ResourceGroupName = "string",
        Sku = new AzureNative.Cdn.Inputs.SkuArgs
        {
            Name = "string",
        },
        Identity = new AzureNative.Cdn.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        LogScrubbing = new AzureNative.Cdn.Inputs.ProfileLogScrubbingArgs
        {
            ScrubbingRules = new[]
            {
                new AzureNative.Cdn.Inputs.ProfileScrubbingRulesArgs
                {
                    MatchVariable = "string",
                    SelectorMatchOperator = "string",
                    Selector = "string",
                    State = "string",
                },
            },
            State = "string",
        },
        OriginResponseTimeoutSeconds = 0,
        ProfileName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cdn.NewProfile(ctx, "profileResource", &cdn.ProfileArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Sku: &cdn.SkuArgs{
    		Name: pulumi.String("string"),
    	},
    	Identity: &cdn.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	LogScrubbing: &cdn.ProfileLogScrubbingArgs{
    		ScrubbingRules: cdn.ProfileScrubbingRulesArray{
    			&cdn.ProfileScrubbingRulesArgs{
    				MatchVariable:         pulumi.String("string"),
    				SelectorMatchOperator: pulumi.String("string"),
    				Selector:              pulumi.String("string"),
    				State:                 pulumi.String("string"),
    			},
    		},
    		State: pulumi.String("string"),
    	},
    	OriginResponseTimeoutSeconds: pulumi.Int(0),
    	ProfileName:                  pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var profileResource = new com.pulumi.azurenative.cdn.Profile("profileResource", com.pulumi.azurenative.cdn.ProfileArgs.builder()
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .build())
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .logScrubbing(ProfileLogScrubbingArgs.builder()
            .scrubbingRules(ProfileScrubbingRulesArgs.builder()
                .matchVariable("string")
                .selectorMatchOperator("string")
                .selector("string")
                .state("string")
                .build())
            .state("string")
            .build())
        .originResponseTimeoutSeconds(0)
        .profileName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    profile_resource = azure_native.cdn.Profile("profileResource",
        resource_group_name="string",
        sku={
            "name": "string",
        },
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        log_scrubbing={
            "scrubbing_rules": [{
                "match_variable": "string",
                "selector_match_operator": "string",
                "selector": "string",
                "state": "string",
            }],
            "state": "string",
        },
        origin_response_timeout_seconds=0,
        profile_name="string",
        tags={
            "string": "string",
        })
    
    const profileResource = new azure_native.cdn.Profile("profileResource", {
        resourceGroupName: "string",
        sku: {
            name: "string",
        },
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        logScrubbing: {
            scrubbingRules: [{
                matchVariable: "string",
                selectorMatchOperator: "string",
                selector: "string",
                state: "string",
            }],
            state: "string",
        },
        originResponseTimeoutSeconds: 0,
        profileName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:cdn:Profile
    properties:
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        logScrubbing:
            scrubbingRules:
                - matchVariable: string
                  selector: string
                  selectorMatchOperator: string
                  state: string
            state: string
        originResponseTimeoutSeconds: 0
        profileName: string
        resourceGroupName: string
        sku:
            name: string
        tags:
            string: string
    

    Profile 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 Profile resource accepts the following input properties:

    ResourceGroupName string
    Name of the Resource group within the Azure subscription.
    Sku Pulumi.AzureNative.Cdn.Inputs.Sku
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    Identity Pulumi.AzureNative.Cdn.Inputs.ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities).
    Location string
    Resource location.
    LogScrubbing Pulumi.AzureNative.Cdn.Inputs.ProfileLogScrubbing
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    OriginResponseTimeoutSeconds int
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    ProfileName string
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    Name of the Resource group within the Azure subscription.
    Sku SkuArgs
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    Identity ManagedServiceIdentityArgs
    Managed service identity (system assigned and/or user assigned identities).
    Location string
    Resource location.
    LogScrubbing ProfileLogScrubbingArgs
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    OriginResponseTimeoutSeconds int
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    ProfileName string
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    Name of the Resource group within the Azure subscription.
    sku Sku
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    identity ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities).
    location String
    Resource location.
    logScrubbing ProfileLogScrubbing
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    originResponseTimeoutSeconds Integer
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    profileName String
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    Name of the Resource group within the Azure subscription.
    sku Sku
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    identity ManagedServiceIdentity
    Managed service identity (system assigned and/or user assigned identities).
    location string
    Resource location.
    logScrubbing ProfileLogScrubbing
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    originResponseTimeoutSeconds number
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    profileName string
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    Name of the Resource group within the Azure subscription.
    sku SkuArgs
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    identity ManagedServiceIdentityArgs
    Managed service identity (system assigned and/or user assigned identities).
    location str
    Resource location.
    log_scrubbing ProfileLogScrubbingArgs
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    origin_response_timeout_seconds int
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    profile_name str
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    Name of the Resource group within the Azure subscription.
    sku Property Map
    The pricing tier (defines Azure Front Door Standard or Premium or a CDN provider, feature list and rate) of the profile.
    identity Property Map
    Managed service identity (system assigned and/or user assigned identities).
    location String
    Resource location.
    logScrubbing Property Map
    Defines rules that scrub sensitive fields in the Azure Front Door profile logs.
    originResponseTimeoutSeconds Number
    Send and receive timeout on forwarding request to the origin. When timeout is reached, the request fails and returns.
    profileName String
    Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    ExtendedProperties Dictionary<string, string>
    Key-Value pair representing additional properties for profiles.
    FrontDoorId string
    The Id of the frontdoor.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    Name string
    Resource name.
    ProvisioningState string
    Provisioning status of the profile.
    ResourceState string
    Resource status of the profile.
    SystemData Pulumi.AzureNative.Cdn.Outputs.SystemDataResponse
    Read only system data
    Type string
    Resource type.
    AzureApiVersion string
    The Azure API version of the resource.
    ExtendedProperties map[string]string
    Key-Value pair representing additional properties for profiles.
    FrontDoorId string
    The Id of the frontdoor.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    Name string
    Resource name.
    ProvisioningState string
    Provisioning status of the profile.
    ResourceState string
    Resource status of the profile.
    SystemData SystemDataResponse
    Read only system data
    Type string
    Resource type.
    azureApiVersion String
    The Azure API version of the resource.
    extendedProperties Map<String,String>
    Key-Value pair representing additional properties for profiles.
    frontDoorId String
    The Id of the frontdoor.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    name String
    Resource name.
    provisioningState String
    Provisioning status of the profile.
    resourceState String
    Resource status of the profile.
    systemData SystemDataResponse
    Read only system data
    type String
    Resource type.
    azureApiVersion string
    The Azure API version of the resource.
    extendedProperties {[key: string]: string}
    Key-Value pair representing additional properties for profiles.
    frontDoorId string
    The Id of the frontdoor.
    id string
    The provider-assigned unique ID for this managed resource.
    kind string
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    name string
    Resource name.
    provisioningState string
    Provisioning status of the profile.
    resourceState string
    Resource status of the profile.
    systemData SystemDataResponse
    Read only system data
    type string
    Resource type.
    azure_api_version str
    The Azure API version of the resource.
    extended_properties Mapping[str, str]
    Key-Value pair representing additional properties for profiles.
    front_door_id str
    The Id of the frontdoor.
    id str
    The provider-assigned unique ID for this managed resource.
    kind str
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    name str
    Resource name.
    provisioning_state str
    Provisioning status of the profile.
    resource_state str
    Resource status of the profile.
    system_data SystemDataResponse
    Read only system data
    type str
    Resource type.
    azureApiVersion String
    The Azure API version of the resource.
    extendedProperties Map<String>
    Key-Value pair representing additional properties for profiles.
    frontDoorId String
    The Id of the frontdoor.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Kind of the profile. Used by portal to differentiate traditional CDN profile and new AFD profile.
    name String
    Resource name.
    provisioningState String
    Provisioning status of the profile.
    resourceState String
    Resource status of the profile.
    systemData Property Map
    Read only system data
    type String
    Resource type.

    Supporting Types

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.Cdn.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Cdn.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned, UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned, UserAssigned"
    SystemAssigned, UserAssigned

    ProfileLogScrubbing, ProfileLogScrubbingArgs

    ScrubbingRules List<Pulumi.AzureNative.Cdn.Inputs.ProfileScrubbingRules>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    State string | Pulumi.AzureNative.Cdn.ProfileScrubbingState
    State of the log scrubbing config. Default value is Enabled.
    ScrubbingRules []ProfileScrubbingRules
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    State string | ProfileScrubbingState
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules List<ProfileScrubbingRules>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state String | ProfileScrubbingState
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules ProfileScrubbingRules[]
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state string | ProfileScrubbingState
    State of the log scrubbing config. Default value is Enabled.
    scrubbing_rules Sequence[ProfileScrubbingRules]
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state str | ProfileScrubbingState
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules List<Property Map>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state String | "Enabled" | "Disabled"
    State of the log scrubbing config. Default value is Enabled.

    ProfileLogScrubbingResponse, ProfileLogScrubbingResponseArgs

    ScrubbingRules List<Pulumi.AzureNative.Cdn.Inputs.ProfileScrubbingRulesResponse>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    State string
    State of the log scrubbing config. Default value is Enabled.
    ScrubbingRules []ProfileScrubbingRulesResponse
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    State string
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules List<ProfileScrubbingRulesResponse>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state String
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules ProfileScrubbingRulesResponse[]
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state string
    State of the log scrubbing config. Default value is Enabled.
    scrubbing_rules Sequence[ProfileScrubbingRulesResponse]
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state str
    State of the log scrubbing config. Default value is Enabled.
    scrubbingRules List<Property Map>
    List of log scrubbing rules applied to the Azure Front Door profile logs.
    state String
    State of the log scrubbing config. Default value is Enabled.

    ProfileScrubbingRules, ProfileScrubbingRulesArgs

    MatchVariable string | Pulumi.AzureNative.Cdn.ScrubbingRuleEntryMatchVariable
    The variable to be scrubbed from the logs.
    SelectorMatchOperator string | Pulumi.AzureNative.Cdn.ScrubbingRuleEntryMatchOperator
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    Selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    State string | Pulumi.AzureNative.Cdn.ScrubbingRuleEntryState
    Defines the state of a log scrubbing rule. Default value is enabled.
    MatchVariable string | ScrubbingRuleEntryMatchVariable
    The variable to be scrubbed from the logs.
    SelectorMatchOperator string | ScrubbingRuleEntryMatchOperator
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    Selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    State string | ScrubbingRuleEntryState
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable String | ScrubbingRuleEntryMatchVariable
    The variable to be scrubbed from the logs.
    selectorMatchOperator String | ScrubbingRuleEntryMatchOperator
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector String
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state String | ScrubbingRuleEntryState
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable string | ScrubbingRuleEntryMatchVariable
    The variable to be scrubbed from the logs.
    selectorMatchOperator string | ScrubbingRuleEntryMatchOperator
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state string | ScrubbingRuleEntryState
    Defines the state of a log scrubbing rule. Default value is enabled.
    match_variable str | ScrubbingRuleEntryMatchVariable
    The variable to be scrubbed from the logs.
    selector_match_operator str | ScrubbingRuleEntryMatchOperator
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector str
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state str | ScrubbingRuleEntryState
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable String | "RequestIPAddress" | "RequestUri" | "QueryStringArgNames"
    The variable to be scrubbed from the logs.
    selectorMatchOperator String | "EqualsAny"
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector String
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state String | "Enabled" | "Disabled"
    Defines the state of a log scrubbing rule. Default value is enabled.

    ProfileScrubbingRulesResponse, ProfileScrubbingRulesResponseArgs

    MatchVariable string
    The variable to be scrubbed from the logs.
    SelectorMatchOperator string
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    Selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    State string
    Defines the state of a log scrubbing rule. Default value is enabled.
    MatchVariable string
    The variable to be scrubbed from the logs.
    SelectorMatchOperator string
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    Selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    State string
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable String
    The variable to be scrubbed from the logs.
    selectorMatchOperator String
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector String
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state String
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable string
    The variable to be scrubbed from the logs.
    selectorMatchOperator string
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector string
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state string
    Defines the state of a log scrubbing rule. Default value is enabled.
    match_variable str
    The variable to be scrubbed from the logs.
    selector_match_operator str
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector str
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state str
    Defines the state of a log scrubbing rule. Default value is enabled.
    matchVariable String
    The variable to be scrubbed from the logs.
    selectorMatchOperator String
    When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    selector String
    When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    state String
    Defines the state of a log scrubbing rule. Default value is enabled.

    ProfileScrubbingState, ProfileScrubbingStateArgs

    Enabled
    Enabled
    Disabled
    Disabled
    ProfileScrubbingStateEnabled
    Enabled
    ProfileScrubbingStateDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    ScrubbingRuleEntryMatchOperator, ScrubbingRuleEntryMatchOperatorArgs

    EqualsAny
    EqualsAny
    ScrubbingRuleEntryMatchOperatorEqualsAny
    EqualsAny
    EqualsAny
    EqualsAny
    EqualsAny
    EqualsAny
    EQUALS_ANY
    EqualsAny
    "EqualsAny"
    EqualsAny

    ScrubbingRuleEntryMatchVariable, ScrubbingRuleEntryMatchVariableArgs

    RequestIPAddress
    RequestIPAddress
    RequestUri
    RequestUri
    QueryStringArgNames
    QueryStringArgNames
    ScrubbingRuleEntryMatchVariableRequestIPAddress
    RequestIPAddress
    ScrubbingRuleEntryMatchVariableRequestUri
    RequestUri
    ScrubbingRuleEntryMatchVariableQueryStringArgNames
    QueryStringArgNames
    RequestIPAddress
    RequestIPAddress
    RequestUri
    RequestUri
    QueryStringArgNames
    QueryStringArgNames
    RequestIPAddress
    RequestIPAddress
    RequestUri
    RequestUri
    QueryStringArgNames
    QueryStringArgNames
    REQUEST_IP_ADDRESS
    RequestIPAddress
    REQUEST_URI
    RequestUri
    QUERY_STRING_ARG_NAMES
    QueryStringArgNames
    "RequestIPAddress"
    RequestIPAddress
    "RequestUri"
    RequestUri
    "QueryStringArgNames"
    QueryStringArgNames

    ScrubbingRuleEntryState, ScrubbingRuleEntryStateArgs

    Enabled
    Enabled
    Disabled
    Disabled
    ScrubbingRuleEntryStateEnabled
    Enabled
    ScrubbingRuleEntryStateDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    Sku, SkuArgs

    Name string | Pulumi.AzureNative.Cdn.SkuName
    Name of the pricing tier.
    Name string | SkuName
    Name of the pricing tier.
    name String | SkuName
    Name of the pricing tier.
    name string | SkuName
    Name of the pricing tier.
    name str | SkuName
    Name of the pricing tier.

    SkuName, SkuNameArgs

    Standard_Verizon
    Standard_Verizon
    Premium_Verizon
    Premium_Verizon
    Custom_Verizon
    Custom_Verizon
    Standard_Akamai
    Standard_Akamai
    Standard_ChinaCdn
    Standard_ChinaCdn
    Standard_Microsoft
    Standard_Microsoft
    Standard_AzureFrontDoor
    Standard_AzureFrontDoor
    Premium_AzureFrontDoor
    Premium_AzureFrontDoor
    Standard_955BandWidth_ChinaCdn
    Standard_955BandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    SkuName_Standard_Verizon
    Standard_Verizon
    SkuName_Premium_Verizon
    Premium_Verizon
    SkuName_Custom_Verizon
    Custom_Verizon
    SkuName_Standard_Akamai
    Standard_Akamai
    SkuName_Standard_ChinaCdn
    Standard_ChinaCdn
    SkuName_Standard_Microsoft
    Standard_Microsoft
    SkuName_Standard_AzureFrontDoor
    Standard_AzureFrontDoor
    SkuName_Premium_AzureFrontDoor
    Premium_AzureFrontDoor
    SkuName_Standard_955BandWidth_ChinaCdn
    Standard_955BandWidth_ChinaCdn
    SkuName_Standard_AvgBandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    SkuName_StandardPlus_ChinaCdn
    StandardPlus_ChinaCdn
    SkuName_StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    SkuName_StandardPlus_AvgBandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    Standard_Verizon
    Standard_Verizon
    Premium_Verizon
    Premium_Verizon
    Custom_Verizon
    Custom_Verizon
    Standard_Akamai
    Standard_Akamai
    Standard_ChinaCdn
    Standard_ChinaCdn
    Standard_Microsoft
    Standard_Microsoft
    Standard_AzureFrontDoor
    Standard_AzureFrontDoor
    Premium_AzureFrontDoor
    Premium_AzureFrontDoor
    Standard_955BandWidth_ChinaCdn
    Standard_955BandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    Standard_Verizon
    Standard_Verizon
    Premium_Verizon
    Premium_Verizon
    Custom_Verizon
    Custom_Verizon
    Standard_Akamai
    Standard_Akamai
    Standard_ChinaCdn
    Standard_ChinaCdn
    Standard_Microsoft
    Standard_Microsoft
    Standard_AzureFrontDoor
    Standard_AzureFrontDoor
    Premium_AzureFrontDoor
    Premium_AzureFrontDoor
    Standard_955BandWidth_ChinaCdn
    Standard_955BandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    Standard_AvgBandWidth_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_955BandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    StandardPlus_AvgBandWidth_ChinaCdn
    STANDARD_VERIZON
    Standard_Verizon
    PREMIUM_VERIZON
    Premium_Verizon
    CUSTOM_VERIZON
    Custom_Verizon
    STANDARD_AKAMAI
    Standard_Akamai
    STANDARD_CHINA_CDN
    Standard_ChinaCdn
    STANDARD_MICROSOFT
    Standard_Microsoft
    STANDARD_AZURE_FRONT_DOOR
    Standard_AzureFrontDoor
    PREMIUM_AZURE_FRONT_DOOR
    Premium_AzureFrontDoor
    STANDARD_955_BAND_WIDTH_CHINA_CDN
    Standard_955BandWidth_ChinaCdn
    STANDARD_AVG_BAND_WIDTH_CHINA_CDN
    Standard_AvgBandWidth_ChinaCdn
    STANDARD_PLUS_CHINA_CDN
    StandardPlus_ChinaCdn
    STANDARD_PLUS_955_BAND_WIDTH_CHINA_CDN
    StandardPlus_955BandWidth_ChinaCdn
    STANDARD_PLUS_AVG_BAND_WIDTH_CHINA_CDN
    StandardPlus_AvgBandWidth_ChinaCdn
    "Standard_Verizon"
    Standard_Verizon
    "Premium_Verizon"
    Premium_Verizon
    "Custom_Verizon"
    Custom_Verizon
    "Standard_Akamai"
    Standard_Akamai
    "Standard_ChinaCdn"
    Standard_ChinaCdn
    "Standard_Microsoft"
    Standard_Microsoft
    "Standard_AzureFrontDoor"
    Standard_AzureFrontDoor
    "Premium_AzureFrontDoor"
    Premium_AzureFrontDoor
    "Standard_955BandWidth_ChinaCdn"
    Standard_955BandWidth_ChinaCdn
    "Standard_AvgBandWidth_ChinaCdn"
    Standard_AvgBandWidth_ChinaCdn
    "StandardPlus_ChinaCdn"
    StandardPlus_ChinaCdn
    "StandardPlus_955BandWidth_ChinaCdn"
    StandardPlus_955BandWidth_ChinaCdn
    "StandardPlus_AvgBandWidth_ChinaCdn"
    StandardPlus_AvgBandWidth_ChinaCdn

    SkuResponse, SkuResponseArgs

    Name string
    Name of the pricing tier.
    Name string
    Name of the pricing tier.
    name String
    Name of the pricing tier.
    name string
    Name of the pricing tier.
    name str
    Name of the pricing tier.
    name String
    Name of the pricing tier.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for the identity that last modified the resource
    lastModifiedByType String
    The type of identity that last modified the resource

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Import

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

    $ pulumi import azure-native:cdn:Profile profile1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName} 
    

    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.3.0 published on Monday, Apr 28, 2025 by Pulumi