1. Packages
  2. Azure Classic
  3. API Docs
  4. cdn
  5. Endpoint

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.cdn.Endpoint

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    A CDN Endpoint is the entity within a CDN Profile containing configuration information regarding caching behaviours and origins. The CDN Endpoint is exposed using the URL format <endpointname>.azureedge.net.

    !> Be Aware: Azure is rolling out a breaking change on Friday 9th April 2021 which may cause issues with the CDN/FrontDoor resources. More information is available in this GitHub issue as the necessary changes are identified.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleProfile = new azure.cdn.Profile("example", {
        name: "example-cdn",
        location: example.location,
        resourceGroupName: example.name,
        sku: "Standard_Verizon",
    });
    const exampleEndpoint = new azure.cdn.Endpoint("example", {
        name: "example",
        profileName: exampleProfile.name,
        location: example.location,
        resourceGroupName: example.name,
        origins: [{
            name: "example",
            hostName: "www.contoso.com",
        }],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_profile = azure.cdn.Profile("example",
        name="example-cdn",
        location=example.location,
        resource_group_name=example.name,
        sku="Standard_Verizon")
    example_endpoint = azure.cdn.Endpoint("example",
        name="example",
        profile_name=example_profile.name,
        location=example.location,
        resource_group_name=example.name,
        origins=[azure.cdn.EndpointOriginArgs(
            name="example",
            host_name="www.contoso.com",
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/cdn"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleProfile, err := cdn.NewProfile(ctx, "example", &cdn.ProfileArgs{
    			Name:              pulumi.String("example-cdn"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			Sku:               pulumi.String("Standard_Verizon"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cdn.NewEndpoint(ctx, "example", &cdn.EndpointArgs{
    			Name:              pulumi.String("example"),
    			ProfileName:       exampleProfile.Name,
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			Origins: cdn.EndpointOriginArray{
    				&cdn.EndpointOriginArgs{
    					Name:     pulumi.String("example"),
    					HostName: pulumi.String("www.contoso.com"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleProfile = new Azure.Cdn.Profile("example", new()
        {
            Name = "example-cdn",
            Location = example.Location,
            ResourceGroupName = example.Name,
            Sku = "Standard_Verizon",
        });
    
        var exampleEndpoint = new Azure.Cdn.Endpoint("example", new()
        {
            Name = "example",
            ProfileName = exampleProfile.Name,
            Location = example.Location,
            ResourceGroupName = example.Name,
            Origins = new[]
            {
                new Azure.Cdn.Inputs.EndpointOriginArgs
                {
                    Name = "example",
                    HostName = "www.contoso.com",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.cdn.Profile;
    import com.pulumi.azure.cdn.ProfileArgs;
    import com.pulumi.azure.cdn.Endpoint;
    import com.pulumi.azure.cdn.EndpointArgs;
    import com.pulumi.azure.cdn.inputs.EndpointOriginArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleProfile = new Profile("exampleProfile", ProfileArgs.builder()        
                .name("example-cdn")
                .location(example.location())
                .resourceGroupName(example.name())
                .sku("Standard_Verizon")
                .build());
    
            var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()        
                .name("example")
                .profileName(exampleProfile.name())
                .location(example.location())
                .resourceGroupName(example.name())
                .origins(EndpointOriginArgs.builder()
                    .name("example")
                    .hostName("www.contoso.com")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleProfile:
        type: azure:cdn:Profile
        name: example
        properties:
          name: example-cdn
          location: ${example.location}
          resourceGroupName: ${example.name}
          sku: Standard_Verizon
      exampleEndpoint:
        type: azure:cdn:Endpoint
        name: example
        properties:
          name: example
          profileName: ${exampleProfile.name}
          location: ${example.location}
          resourceGroupName: ${example.name}
          origins:
            - name: example
              hostName: www.contoso.com
    

    Create Endpoint Resource

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

    Constructor syntax

    new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
    @overload
    def Endpoint(resource_name: str,
                 args: EndpointArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Endpoint(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 origins: Optional[Sequence[EndpointOriginArgs]] = None,
                 resource_group_name: Optional[str] = None,
                 profile_name: Optional[str] = None,
                 is_compression_enabled: Optional[bool] = None,
                 origin_host_header: Optional[str] = None,
                 is_http_allowed: Optional[bool] = None,
                 is_https_allowed: Optional[bool] = None,
                 location: Optional[str] = None,
                 name: Optional[str] = None,
                 optimization_type: Optional[str] = None,
                 content_types_to_compresses: Optional[Sequence[str]] = None,
                 origin_path: Optional[str] = None,
                 global_delivery_rule: Optional[EndpointGlobalDeliveryRuleArgs] = None,
                 probe_path: Optional[str] = None,
                 geo_filters: Optional[Sequence[EndpointGeoFilterArgs]] = None,
                 querystring_caching_behaviour: Optional[str] = None,
                 delivery_rules: Optional[Sequence[EndpointDeliveryRuleArgs]] = None,
                 tags: Optional[Mapping[str, str]] = None)
    func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
    public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
    public Endpoint(String name, EndpointArgs args)
    public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
    
    type: azure:cdn:Endpoint
    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 EndpointArgs
    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 EndpointArgs
    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 EndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var endpointResource = new Azure.Cdn.Endpoint("endpointResource", new()
    {
        Origins = new[]
        {
            new Azure.Cdn.Inputs.EndpointOriginArgs
            {
                HostName = "string",
                Name = "string",
                HttpPort = 0,
                HttpsPort = 0,
            },
        },
        ResourceGroupName = "string",
        ProfileName = "string",
        IsCompressionEnabled = false,
        OriginHostHeader = "string",
        IsHttpAllowed = false,
        IsHttpsAllowed = false,
        Location = "string",
        Name = "string",
        OptimizationType = "string",
        ContentTypesToCompresses = new[]
        {
            "string",
        },
        OriginPath = "string",
        GlobalDeliveryRule = new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleArgs
        {
            CacheExpirationAction = new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleCacheExpirationActionArgs
            {
                Behavior = "string",
                Duration = "string",
            },
            CacheKeyQueryStringAction = new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs
            {
                Behavior = "string",
                Parameters = "string",
            },
            ModifyRequestHeaderActions = new[]
            {
                new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs
                {
                    Action = "string",
                    Name = "string",
                    Value = "string",
                },
            },
            ModifyResponseHeaderActions = new[]
            {
                new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs
                {
                    Action = "string",
                    Name = "string",
                    Value = "string",
                },
            },
            UrlRedirectAction = new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleUrlRedirectActionArgs
            {
                RedirectType = "string",
                Fragment = "string",
                Hostname = "string",
                Path = "string",
                Protocol = "string",
                QueryString = "string",
            },
            UrlRewriteAction = new Azure.Cdn.Inputs.EndpointGlobalDeliveryRuleUrlRewriteActionArgs
            {
                Destination = "string",
                SourcePattern = "string",
                PreserveUnmatchedPath = false,
            },
        },
        ProbePath = "string",
        GeoFilters = new[]
        {
            new Azure.Cdn.Inputs.EndpointGeoFilterArgs
            {
                Action = "string",
                CountryCodes = new[]
                {
                    "string",
                },
                RelativePath = "string",
            },
        },
        QuerystringCachingBehaviour = "string",
        DeliveryRules = new[]
        {
            new Azure.Cdn.Inputs.EndpointDeliveryRuleArgs
            {
                Name = "string",
                Order = 0,
                QueryStringConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleQueryStringConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                RemoteAddressConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleRemoteAddressConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                    },
                },
                HttpVersionConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleHttpVersionConditionArgs
                    {
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Operator = "string",
                    },
                },
                ModifyRequestHeaderActions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleModifyRequestHeaderActionArgs
                    {
                        Action = "string",
                        Name = "string",
                        Value = "string",
                    },
                },
                ModifyResponseHeaderActions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleModifyResponseHeaderActionArgs
                    {
                        Action = "string",
                        Name = "string",
                        Value = "string",
                    },
                },
                CookiesConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleCookiesConditionArgs
                    {
                        Operator = "string",
                        Selector = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                CacheKeyQueryStringAction = new Azure.Cdn.Inputs.EndpointDeliveryRuleCacheKeyQueryStringActionArgs
                {
                    Behavior = "string",
                    Parameters = "string",
                },
                PostArgConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRulePostArgConditionArgs
                    {
                        Operator = "string",
                        Selector = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                CacheExpirationAction = new Azure.Cdn.Inputs.EndpointDeliveryRuleCacheExpirationActionArgs
                {
                    Behavior = "string",
                    Duration = "string",
                },
                DeviceCondition = new Azure.Cdn.Inputs.EndpointDeliveryRuleDeviceConditionArgs
                {
                    MatchValues = new[]
                    {
                        "string",
                    },
                    NegateCondition = false,
                    Operator = "string",
                },
                RequestBodyConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleRequestBodyConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                RequestHeaderConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleRequestHeaderConditionArgs
                    {
                        Operator = "string",
                        Selector = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                RequestMethodCondition = new Azure.Cdn.Inputs.EndpointDeliveryRuleRequestMethodConditionArgs
                {
                    MatchValues = new[]
                    {
                        "string",
                    },
                    NegateCondition = false,
                    Operator = "string",
                },
                RequestSchemeCondition = new Azure.Cdn.Inputs.EndpointDeliveryRuleRequestSchemeConditionArgs
                {
                    MatchValues = new[]
                    {
                        "string",
                    },
                    NegateCondition = false,
                    Operator = "string",
                },
                RequestUriConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleRequestUriConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                UrlFileExtensionConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleUrlFileExtensionConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                UrlFileNameConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleUrlFileNameConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                UrlPathConditions = new[]
                {
                    new Azure.Cdn.Inputs.EndpointDeliveryRuleUrlPathConditionArgs
                    {
                        Operator = "string",
                        MatchValues = new[]
                        {
                            "string",
                        },
                        NegateCondition = false,
                        Transforms = new[]
                        {
                            "string",
                        },
                    },
                },
                UrlRedirectAction = new Azure.Cdn.Inputs.EndpointDeliveryRuleUrlRedirectActionArgs
                {
                    RedirectType = "string",
                    Fragment = "string",
                    Hostname = "string",
                    Path = "string",
                    Protocol = "string",
                    QueryString = "string",
                },
                UrlRewriteAction = new Azure.Cdn.Inputs.EndpointDeliveryRuleUrlRewriteActionArgs
                {
                    Destination = "string",
                    SourcePattern = "string",
                    PreserveUnmatchedPath = false,
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cdn.NewEndpoint(ctx, "endpointResource", &cdn.EndpointArgs{
    	Origins: cdn.EndpointOriginArray{
    		&cdn.EndpointOriginArgs{
    			HostName:  pulumi.String("string"),
    			Name:      pulumi.String("string"),
    			HttpPort:  pulumi.Int(0),
    			HttpsPort: pulumi.Int(0),
    		},
    	},
    	ResourceGroupName:    pulumi.String("string"),
    	ProfileName:          pulumi.String("string"),
    	IsCompressionEnabled: pulumi.Bool(false),
    	OriginHostHeader:     pulumi.String("string"),
    	IsHttpAllowed:        pulumi.Bool(false),
    	IsHttpsAllowed:       pulumi.Bool(false),
    	Location:             pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	OptimizationType:     pulumi.String("string"),
    	ContentTypesToCompresses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OriginPath: pulumi.String("string"),
    	GlobalDeliveryRule: &cdn.EndpointGlobalDeliveryRuleArgs{
    		CacheExpirationAction: &cdn.EndpointGlobalDeliveryRuleCacheExpirationActionArgs{
    			Behavior: pulumi.String("string"),
    			Duration: pulumi.String("string"),
    		},
    		CacheKeyQueryStringAction: &cdn.EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs{
    			Behavior:   pulumi.String("string"),
    			Parameters: pulumi.String("string"),
    		},
    		ModifyRequestHeaderActions: cdn.EndpointGlobalDeliveryRuleModifyRequestHeaderActionArray{
    			&cdn.EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs{
    				Action: pulumi.String("string"),
    				Name:   pulumi.String("string"),
    				Value:  pulumi.String("string"),
    			},
    		},
    		ModifyResponseHeaderActions: cdn.EndpointGlobalDeliveryRuleModifyResponseHeaderActionArray{
    			&cdn.EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs{
    				Action: pulumi.String("string"),
    				Name:   pulumi.String("string"),
    				Value:  pulumi.String("string"),
    			},
    		},
    		UrlRedirectAction: &cdn.EndpointGlobalDeliveryRuleUrlRedirectActionArgs{
    			RedirectType: pulumi.String("string"),
    			Fragment:     pulumi.String("string"),
    			Hostname:     pulumi.String("string"),
    			Path:         pulumi.String("string"),
    			Protocol:     pulumi.String("string"),
    			QueryString:  pulumi.String("string"),
    		},
    		UrlRewriteAction: &cdn.EndpointGlobalDeliveryRuleUrlRewriteActionArgs{
    			Destination:           pulumi.String("string"),
    			SourcePattern:         pulumi.String("string"),
    			PreserveUnmatchedPath: pulumi.Bool(false),
    		},
    	},
    	ProbePath: pulumi.String("string"),
    	GeoFilters: cdn.EndpointGeoFilterArray{
    		&cdn.EndpointGeoFilterArgs{
    			Action: pulumi.String("string"),
    			CountryCodes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			RelativePath: pulumi.String("string"),
    		},
    	},
    	QuerystringCachingBehaviour: pulumi.String("string"),
    	DeliveryRules: cdn.EndpointDeliveryRuleArray{
    		&cdn.EndpointDeliveryRuleArgs{
    			Name:  pulumi.String("string"),
    			Order: pulumi.Int(0),
    			QueryStringConditions: cdn.EndpointDeliveryRuleQueryStringConditionArray{
    				&cdn.EndpointDeliveryRuleQueryStringConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			RemoteAddressConditions: cdn.EndpointDeliveryRuleRemoteAddressConditionArray{
    				&cdn.EndpointDeliveryRuleRemoteAddressConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    				},
    			},
    			HttpVersionConditions: cdn.EndpointDeliveryRuleHttpVersionConditionArray{
    				&cdn.EndpointDeliveryRuleHttpVersionConditionArgs{
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Operator:        pulumi.String("string"),
    				},
    			},
    			ModifyRequestHeaderActions: cdn.EndpointDeliveryRuleModifyRequestHeaderActionArray{
    				&cdn.EndpointDeliveryRuleModifyRequestHeaderActionArgs{
    					Action: pulumi.String("string"),
    					Name:   pulumi.String("string"),
    					Value:  pulumi.String("string"),
    				},
    			},
    			ModifyResponseHeaderActions: cdn.EndpointDeliveryRuleModifyResponseHeaderActionArray{
    				&cdn.EndpointDeliveryRuleModifyResponseHeaderActionArgs{
    					Action: pulumi.String("string"),
    					Name:   pulumi.String("string"),
    					Value:  pulumi.String("string"),
    				},
    			},
    			CookiesConditions: cdn.EndpointDeliveryRuleCookiesConditionArray{
    				&cdn.EndpointDeliveryRuleCookiesConditionArgs{
    					Operator: pulumi.String("string"),
    					Selector: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			CacheKeyQueryStringAction: &cdn.EndpointDeliveryRuleCacheKeyQueryStringActionArgs{
    				Behavior:   pulumi.String("string"),
    				Parameters: pulumi.String("string"),
    			},
    			PostArgConditions: cdn.EndpointDeliveryRulePostArgConditionArray{
    				&cdn.EndpointDeliveryRulePostArgConditionArgs{
    					Operator: pulumi.String("string"),
    					Selector: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			CacheExpirationAction: &cdn.EndpointDeliveryRuleCacheExpirationActionArgs{
    				Behavior: pulumi.String("string"),
    				Duration: pulumi.String("string"),
    			},
    			DeviceCondition: &cdn.EndpointDeliveryRuleDeviceConditionArgs{
    				MatchValues: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				NegateCondition: pulumi.Bool(false),
    				Operator:        pulumi.String("string"),
    			},
    			RequestBodyConditions: cdn.EndpointDeliveryRuleRequestBodyConditionArray{
    				&cdn.EndpointDeliveryRuleRequestBodyConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			RequestHeaderConditions: cdn.EndpointDeliveryRuleRequestHeaderConditionArray{
    				&cdn.EndpointDeliveryRuleRequestHeaderConditionArgs{
    					Operator: pulumi.String("string"),
    					Selector: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			RequestMethodCondition: &cdn.EndpointDeliveryRuleRequestMethodConditionArgs{
    				MatchValues: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				NegateCondition: pulumi.Bool(false),
    				Operator:        pulumi.String("string"),
    			},
    			RequestSchemeCondition: &cdn.EndpointDeliveryRuleRequestSchemeConditionArgs{
    				MatchValues: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				NegateCondition: pulumi.Bool(false),
    				Operator:        pulumi.String("string"),
    			},
    			RequestUriConditions: cdn.EndpointDeliveryRuleRequestUriConditionArray{
    				&cdn.EndpointDeliveryRuleRequestUriConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			UrlFileExtensionConditions: cdn.EndpointDeliveryRuleUrlFileExtensionConditionArray{
    				&cdn.EndpointDeliveryRuleUrlFileExtensionConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			UrlFileNameConditions: cdn.EndpointDeliveryRuleUrlFileNameConditionArray{
    				&cdn.EndpointDeliveryRuleUrlFileNameConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			UrlPathConditions: cdn.EndpointDeliveryRuleUrlPathConditionArray{
    				&cdn.EndpointDeliveryRuleUrlPathConditionArgs{
    					Operator: pulumi.String("string"),
    					MatchValues: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					NegateCondition: pulumi.Bool(false),
    					Transforms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			UrlRedirectAction: &cdn.EndpointDeliveryRuleUrlRedirectActionArgs{
    				RedirectType: pulumi.String("string"),
    				Fragment:     pulumi.String("string"),
    				Hostname:     pulumi.String("string"),
    				Path:         pulumi.String("string"),
    				Protocol:     pulumi.String("string"),
    				QueryString:  pulumi.String("string"),
    			},
    			UrlRewriteAction: &cdn.EndpointDeliveryRuleUrlRewriteActionArgs{
    				Destination:           pulumi.String("string"),
    				SourcePattern:         pulumi.String("string"),
    				PreserveUnmatchedPath: pulumi.Bool(false),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var endpointResource = new Endpoint("endpointResource", EndpointArgs.builder()        
        .origins(EndpointOriginArgs.builder()
            .hostName("string")
            .name("string")
            .httpPort(0)
            .httpsPort(0)
            .build())
        .resourceGroupName("string")
        .profileName("string")
        .isCompressionEnabled(false)
        .originHostHeader("string")
        .isHttpAllowed(false)
        .isHttpsAllowed(false)
        .location("string")
        .name("string")
        .optimizationType("string")
        .contentTypesToCompresses("string")
        .originPath("string")
        .globalDeliveryRule(EndpointGlobalDeliveryRuleArgs.builder()
            .cacheExpirationAction(EndpointGlobalDeliveryRuleCacheExpirationActionArgs.builder()
                .behavior("string")
                .duration("string")
                .build())
            .cacheKeyQueryStringAction(EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs.builder()
                .behavior("string")
                .parameters("string")
                .build())
            .modifyRequestHeaderActions(EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs.builder()
                .action("string")
                .name("string")
                .value("string")
                .build())
            .modifyResponseHeaderActions(EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs.builder()
                .action("string")
                .name("string")
                .value("string")
                .build())
            .urlRedirectAction(EndpointGlobalDeliveryRuleUrlRedirectActionArgs.builder()
                .redirectType("string")
                .fragment("string")
                .hostname("string")
                .path("string")
                .protocol("string")
                .queryString("string")
                .build())
            .urlRewriteAction(EndpointGlobalDeliveryRuleUrlRewriteActionArgs.builder()
                .destination("string")
                .sourcePattern("string")
                .preserveUnmatchedPath(false)
                .build())
            .build())
        .probePath("string")
        .geoFilters(EndpointGeoFilterArgs.builder()
            .action("string")
            .countryCodes("string")
            .relativePath("string")
            .build())
        .querystringCachingBehaviour("string")
        .deliveryRules(EndpointDeliveryRuleArgs.builder()
            .name("string")
            .order(0)
            .queryStringConditions(EndpointDeliveryRuleQueryStringConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .remoteAddressConditions(EndpointDeliveryRuleRemoteAddressConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .build())
            .httpVersionConditions(EndpointDeliveryRuleHttpVersionConditionArgs.builder()
                .matchValues("string")
                .negateCondition(false)
                .operator("string")
                .build())
            .modifyRequestHeaderActions(EndpointDeliveryRuleModifyRequestHeaderActionArgs.builder()
                .action("string")
                .name("string")
                .value("string")
                .build())
            .modifyResponseHeaderActions(EndpointDeliveryRuleModifyResponseHeaderActionArgs.builder()
                .action("string")
                .name("string")
                .value("string")
                .build())
            .cookiesConditions(EndpointDeliveryRuleCookiesConditionArgs.builder()
                .operator("string")
                .selector("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .cacheKeyQueryStringAction(EndpointDeliveryRuleCacheKeyQueryStringActionArgs.builder()
                .behavior("string")
                .parameters("string")
                .build())
            .postArgConditions(EndpointDeliveryRulePostArgConditionArgs.builder()
                .operator("string")
                .selector("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .cacheExpirationAction(EndpointDeliveryRuleCacheExpirationActionArgs.builder()
                .behavior("string")
                .duration("string")
                .build())
            .deviceCondition(EndpointDeliveryRuleDeviceConditionArgs.builder()
                .matchValues("string")
                .negateCondition(false)
                .operator("string")
                .build())
            .requestBodyConditions(EndpointDeliveryRuleRequestBodyConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .requestHeaderConditions(EndpointDeliveryRuleRequestHeaderConditionArgs.builder()
                .operator("string")
                .selector("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .requestMethodCondition(EndpointDeliveryRuleRequestMethodConditionArgs.builder()
                .matchValues("string")
                .negateCondition(false)
                .operator("string")
                .build())
            .requestSchemeCondition(EndpointDeliveryRuleRequestSchemeConditionArgs.builder()
                .matchValues("string")
                .negateCondition(false)
                .operator("string")
                .build())
            .requestUriConditions(EndpointDeliveryRuleRequestUriConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .urlFileExtensionConditions(EndpointDeliveryRuleUrlFileExtensionConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .urlFileNameConditions(EndpointDeliveryRuleUrlFileNameConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .urlPathConditions(EndpointDeliveryRuleUrlPathConditionArgs.builder()
                .operator("string")
                .matchValues("string")
                .negateCondition(false)
                .transforms("string")
                .build())
            .urlRedirectAction(EndpointDeliveryRuleUrlRedirectActionArgs.builder()
                .redirectType("string")
                .fragment("string")
                .hostname("string")
                .path("string")
                .protocol("string")
                .queryString("string")
                .build())
            .urlRewriteAction(EndpointDeliveryRuleUrlRewriteActionArgs.builder()
                .destination("string")
                .sourcePattern("string")
                .preserveUnmatchedPath(false)
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    endpoint_resource = azure.cdn.Endpoint("endpointResource",
        origins=[azure.cdn.EndpointOriginArgs(
            host_name="string",
            name="string",
            http_port=0,
            https_port=0,
        )],
        resource_group_name="string",
        profile_name="string",
        is_compression_enabled=False,
        origin_host_header="string",
        is_http_allowed=False,
        is_https_allowed=False,
        location="string",
        name="string",
        optimization_type="string",
        content_types_to_compresses=["string"],
        origin_path="string",
        global_delivery_rule=azure.cdn.EndpointGlobalDeliveryRuleArgs(
            cache_expiration_action=azure.cdn.EndpointGlobalDeliveryRuleCacheExpirationActionArgs(
                behavior="string",
                duration="string",
            ),
            cache_key_query_string_action=azure.cdn.EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs(
                behavior="string",
                parameters="string",
            ),
            modify_request_header_actions=[azure.cdn.EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs(
                action="string",
                name="string",
                value="string",
            )],
            modify_response_header_actions=[azure.cdn.EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs(
                action="string",
                name="string",
                value="string",
            )],
            url_redirect_action=azure.cdn.EndpointGlobalDeliveryRuleUrlRedirectActionArgs(
                redirect_type="string",
                fragment="string",
                hostname="string",
                path="string",
                protocol="string",
                query_string="string",
            ),
            url_rewrite_action=azure.cdn.EndpointGlobalDeliveryRuleUrlRewriteActionArgs(
                destination="string",
                source_pattern="string",
                preserve_unmatched_path=False,
            ),
        ),
        probe_path="string",
        geo_filters=[azure.cdn.EndpointGeoFilterArgs(
            action="string",
            country_codes=["string"],
            relative_path="string",
        )],
        querystring_caching_behaviour="string",
        delivery_rules=[azure.cdn.EndpointDeliveryRuleArgs(
            name="string",
            order=0,
            query_string_conditions=[azure.cdn.EndpointDeliveryRuleQueryStringConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            remote_address_conditions=[azure.cdn.EndpointDeliveryRuleRemoteAddressConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
            )],
            http_version_conditions=[azure.cdn.EndpointDeliveryRuleHttpVersionConditionArgs(
                match_values=["string"],
                negate_condition=False,
                operator="string",
            )],
            modify_request_header_actions=[azure.cdn.EndpointDeliveryRuleModifyRequestHeaderActionArgs(
                action="string",
                name="string",
                value="string",
            )],
            modify_response_header_actions=[azure.cdn.EndpointDeliveryRuleModifyResponseHeaderActionArgs(
                action="string",
                name="string",
                value="string",
            )],
            cookies_conditions=[azure.cdn.EndpointDeliveryRuleCookiesConditionArgs(
                operator="string",
                selector="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            cache_key_query_string_action=azure.cdn.EndpointDeliveryRuleCacheKeyQueryStringActionArgs(
                behavior="string",
                parameters="string",
            ),
            post_arg_conditions=[azure.cdn.EndpointDeliveryRulePostArgConditionArgs(
                operator="string",
                selector="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            cache_expiration_action=azure.cdn.EndpointDeliveryRuleCacheExpirationActionArgs(
                behavior="string",
                duration="string",
            ),
            device_condition=azure.cdn.EndpointDeliveryRuleDeviceConditionArgs(
                match_values=["string"],
                negate_condition=False,
                operator="string",
            ),
            request_body_conditions=[azure.cdn.EndpointDeliveryRuleRequestBodyConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            request_header_conditions=[azure.cdn.EndpointDeliveryRuleRequestHeaderConditionArgs(
                operator="string",
                selector="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            request_method_condition=azure.cdn.EndpointDeliveryRuleRequestMethodConditionArgs(
                match_values=["string"],
                negate_condition=False,
                operator="string",
            ),
            request_scheme_condition=azure.cdn.EndpointDeliveryRuleRequestSchemeConditionArgs(
                match_values=["string"],
                negate_condition=False,
                operator="string",
            ),
            request_uri_conditions=[azure.cdn.EndpointDeliveryRuleRequestUriConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            url_file_extension_conditions=[azure.cdn.EndpointDeliveryRuleUrlFileExtensionConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            url_file_name_conditions=[azure.cdn.EndpointDeliveryRuleUrlFileNameConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            url_path_conditions=[azure.cdn.EndpointDeliveryRuleUrlPathConditionArgs(
                operator="string",
                match_values=["string"],
                negate_condition=False,
                transforms=["string"],
            )],
            url_redirect_action=azure.cdn.EndpointDeliveryRuleUrlRedirectActionArgs(
                redirect_type="string",
                fragment="string",
                hostname="string",
                path="string",
                protocol="string",
                query_string="string",
            ),
            url_rewrite_action=azure.cdn.EndpointDeliveryRuleUrlRewriteActionArgs(
                destination="string",
                source_pattern="string",
                preserve_unmatched_path=False,
            ),
        )],
        tags={
            "string": "string",
        })
    
    const endpointResource = new azure.cdn.Endpoint("endpointResource", {
        origins: [{
            hostName: "string",
            name: "string",
            httpPort: 0,
            httpsPort: 0,
        }],
        resourceGroupName: "string",
        profileName: "string",
        isCompressionEnabled: false,
        originHostHeader: "string",
        isHttpAllowed: false,
        isHttpsAllowed: false,
        location: "string",
        name: "string",
        optimizationType: "string",
        contentTypesToCompresses: ["string"],
        originPath: "string",
        globalDeliveryRule: {
            cacheExpirationAction: {
                behavior: "string",
                duration: "string",
            },
            cacheKeyQueryStringAction: {
                behavior: "string",
                parameters: "string",
            },
            modifyRequestHeaderActions: [{
                action: "string",
                name: "string",
                value: "string",
            }],
            modifyResponseHeaderActions: [{
                action: "string",
                name: "string",
                value: "string",
            }],
            urlRedirectAction: {
                redirectType: "string",
                fragment: "string",
                hostname: "string",
                path: "string",
                protocol: "string",
                queryString: "string",
            },
            urlRewriteAction: {
                destination: "string",
                sourcePattern: "string",
                preserveUnmatchedPath: false,
            },
        },
        probePath: "string",
        geoFilters: [{
            action: "string",
            countryCodes: ["string"],
            relativePath: "string",
        }],
        querystringCachingBehaviour: "string",
        deliveryRules: [{
            name: "string",
            order: 0,
            queryStringConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            remoteAddressConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
            }],
            httpVersionConditions: [{
                matchValues: ["string"],
                negateCondition: false,
                operator: "string",
            }],
            modifyRequestHeaderActions: [{
                action: "string",
                name: "string",
                value: "string",
            }],
            modifyResponseHeaderActions: [{
                action: "string",
                name: "string",
                value: "string",
            }],
            cookiesConditions: [{
                operator: "string",
                selector: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            cacheKeyQueryStringAction: {
                behavior: "string",
                parameters: "string",
            },
            postArgConditions: [{
                operator: "string",
                selector: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            cacheExpirationAction: {
                behavior: "string",
                duration: "string",
            },
            deviceCondition: {
                matchValues: ["string"],
                negateCondition: false,
                operator: "string",
            },
            requestBodyConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            requestHeaderConditions: [{
                operator: "string",
                selector: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            requestMethodCondition: {
                matchValues: ["string"],
                negateCondition: false,
                operator: "string",
            },
            requestSchemeCondition: {
                matchValues: ["string"],
                negateCondition: false,
                operator: "string",
            },
            requestUriConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            urlFileExtensionConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            urlFileNameConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            urlPathConditions: [{
                operator: "string",
                matchValues: ["string"],
                negateCondition: false,
                transforms: ["string"],
            }],
            urlRedirectAction: {
                redirectType: "string",
                fragment: "string",
                hostname: "string",
                path: "string",
                protocol: "string",
                queryString: "string",
            },
            urlRewriteAction: {
                destination: "string",
                sourcePattern: "string",
                preserveUnmatchedPath: false,
            },
        }],
        tags: {
            string: "string",
        },
    });
    
    type: azure:cdn:Endpoint
    properties:
        contentTypesToCompresses:
            - string
        deliveryRules:
            - cacheExpirationAction:
                behavior: string
                duration: string
              cacheKeyQueryStringAction:
                behavior: string
                parameters: string
              cookiesConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  selector: string
                  transforms:
                    - string
              deviceCondition:
                matchValues:
                    - string
                negateCondition: false
                operator: string
              httpVersionConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
              modifyRequestHeaderActions:
                - action: string
                  name: string
                  value: string
              modifyResponseHeaderActions:
                - action: string
                  name: string
                  value: string
              name: string
              order: 0
              postArgConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  selector: string
                  transforms:
                    - string
              queryStringConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              remoteAddressConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
              requestBodyConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              requestHeaderConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  selector: string
                  transforms:
                    - string
              requestMethodCondition:
                matchValues:
                    - string
                negateCondition: false
                operator: string
              requestSchemeCondition:
                matchValues:
                    - string
                negateCondition: false
                operator: string
              requestUriConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              urlFileExtensionConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              urlFileNameConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              urlPathConditions:
                - matchValues:
                    - string
                  negateCondition: false
                  operator: string
                  transforms:
                    - string
              urlRedirectAction:
                fragment: string
                hostname: string
                path: string
                protocol: string
                queryString: string
                redirectType: string
              urlRewriteAction:
                destination: string
                preserveUnmatchedPath: false
                sourcePattern: string
        geoFilters:
            - action: string
              countryCodes:
                - string
              relativePath: string
        globalDeliveryRule:
            cacheExpirationAction:
                behavior: string
                duration: string
            cacheKeyQueryStringAction:
                behavior: string
                parameters: string
            modifyRequestHeaderActions:
                - action: string
                  name: string
                  value: string
            modifyResponseHeaderActions:
                - action: string
                  name: string
                  value: string
            urlRedirectAction:
                fragment: string
                hostname: string
                path: string
                protocol: string
                queryString: string
                redirectType: string
            urlRewriteAction:
                destination: string
                preserveUnmatchedPath: false
                sourcePattern: string
        isCompressionEnabled: false
        isHttpAllowed: false
        isHttpsAllowed: false
        location: string
        name: string
        optimizationType: string
        originHostHeader: string
        originPath: string
        origins:
            - hostName: string
              httpPort: 0
              httpsPort: 0
              name: string
        probePath: string
        profileName: string
        querystringCachingBehaviour: string
        resourceGroupName: string
        tags:
            string: string
    

    Endpoint Resource Properties

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

    Inputs

    The Endpoint resource accepts the following input properties:

    Origins List<EndpointOrigin>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    ProfileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    ContentTypesToCompresses List<string>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    DeliveryRules List<EndpointDeliveryRule>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    GeoFilters List<EndpointGeoFilter>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    GlobalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    IsCompressionEnabled bool
    Indicates whether compression is to be enabled.
    IsHttpAllowed bool
    Specifies if http allowed. Defaults to true.
    IsHttpsAllowed bool
    Specifies if https allowed. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    OptimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    OriginHostHeader string
    The host header CDN provider will send along with content requests to origins.
    OriginPath string
    The path used at for origin requests.
    ProbePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    QuerystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Origins []EndpointOriginArgs
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    ProfileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    ContentTypesToCompresses []string
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    DeliveryRules []EndpointDeliveryRuleArgs
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    GeoFilters []EndpointGeoFilterArgs
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    GlobalDeliveryRule EndpointGlobalDeliveryRuleArgs
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    IsCompressionEnabled bool
    Indicates whether compression is to be enabled.
    IsHttpAllowed bool
    Specifies if http allowed. Defaults to true.
    IsHttpsAllowed bool
    Specifies if https allowed. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    OptimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    OriginHostHeader string
    The host header CDN provider will send along with content requests to origins.
    OriginPath string
    The path used at for origin requests.
    ProbePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    QuerystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    origins List<EndpointOrigin>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    profileName String
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    contentTypesToCompresses List<String>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules List<EndpointDeliveryRule>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    geoFilters List<EndpointGeoFilter>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled Boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed Boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed Boolean
    Specifies if https allowed. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType String
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader String
    The host header CDN provider will send along with content requests to origins.
    originPath String
    The path used at for origin requests.
    probePath String

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    querystringCachingBehaviour String
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    origins EndpointOrigin[]
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    profileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    contentTypesToCompresses string[]
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules EndpointDeliveryRule[]
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    geoFilters EndpointGeoFilter[]
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed boolean
    Specifies if https allowed. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader string
    The host header CDN provider will send along with content requests to origins.
    originPath string
    The path used at for origin requests.
    probePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    querystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    origins Sequence[EndpointOriginArgs]
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    profile_name str
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    content_types_to_compresses Sequence[str]
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    delivery_rules Sequence[EndpointDeliveryRuleArgs]
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    geo_filters Sequence[EndpointGeoFilterArgs]
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    global_delivery_rule EndpointGlobalDeliveryRuleArgs
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    is_compression_enabled bool
    Indicates whether compression is to be enabled.
    is_http_allowed bool
    Specifies if http allowed. Defaults to true.
    is_https_allowed bool
    Specifies if https allowed. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimization_type str
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    origin_host_header str
    The host header CDN provider will send along with content requests to origins.
    origin_path str
    The path used at for origin requests.
    probe_path str

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    querystring_caching_behaviour str
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    origins List<Property Map>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    profileName String
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    contentTypesToCompresses List<String>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules List<Property Map>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    geoFilters List<Property Map>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule Property Map
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled Boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed Boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed Boolean
    Specifies if https allowed. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType String
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader String
    The host header CDN provider will send along with content requests to origins.
    originPath String
    The path used at for origin requests.
    probePath String

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    querystringCachingBehaviour String
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

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

    Fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    Id string
    The provider-assigned unique ID for this managed resource.
    Fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    Id string
    The provider-assigned unique ID for this managed resource.
    fqdn String
    The Fully Qualified Domain Name of the CDN Endpoint.
    id String
    The provider-assigned unique ID for this managed resource.
    fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    id string
    The provider-assigned unique ID for this managed resource.
    fqdn str
    The Fully Qualified Domain Name of the CDN Endpoint.
    id str
    The provider-assigned unique ID for this managed resource.
    fqdn String
    The Fully Qualified Domain Name of the CDN Endpoint.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Endpoint Resource

    Get an existing Endpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EndpointState, opts?: CustomResourceOptions): Endpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            content_types_to_compresses: Optional[Sequence[str]] = None,
            delivery_rules: Optional[Sequence[EndpointDeliveryRuleArgs]] = None,
            fqdn: Optional[str] = None,
            geo_filters: Optional[Sequence[EndpointGeoFilterArgs]] = None,
            global_delivery_rule: Optional[EndpointGlobalDeliveryRuleArgs] = None,
            is_compression_enabled: Optional[bool] = None,
            is_http_allowed: Optional[bool] = None,
            is_https_allowed: Optional[bool] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            optimization_type: Optional[str] = None,
            origin_host_header: Optional[str] = None,
            origin_path: Optional[str] = None,
            origins: Optional[Sequence[EndpointOriginArgs]] = None,
            probe_path: Optional[str] = None,
            profile_name: Optional[str] = None,
            querystring_caching_behaviour: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Endpoint
    func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
    public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
    public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ContentTypesToCompresses List<string>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    DeliveryRules List<EndpointDeliveryRule>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    Fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    GeoFilters List<EndpointGeoFilter>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    GlobalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    IsCompressionEnabled bool
    Indicates whether compression is to be enabled.
    IsHttpAllowed bool
    Specifies if http allowed. Defaults to true.
    IsHttpsAllowed bool
    Specifies if https allowed. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    OptimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    OriginHostHeader string
    The host header CDN provider will send along with content requests to origins.
    OriginPath string
    The path used at for origin requests.
    Origins List<EndpointOrigin>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    ProbePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    ProfileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    QuerystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    ResourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ContentTypesToCompresses []string
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    DeliveryRules []EndpointDeliveryRuleArgs
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    Fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    GeoFilters []EndpointGeoFilterArgs
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    GlobalDeliveryRule EndpointGlobalDeliveryRuleArgs
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    IsCompressionEnabled bool
    Indicates whether compression is to be enabled.
    IsHttpAllowed bool
    Specifies if http allowed. Defaults to true.
    IsHttpsAllowed bool
    Specifies if https allowed. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    OptimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    OriginHostHeader string
    The host header CDN provider will send along with content requests to origins.
    OriginPath string
    The path used at for origin requests.
    Origins []EndpointOriginArgs
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    ProbePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    ProfileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    QuerystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    ResourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    contentTypesToCompresses List<String>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules List<EndpointDeliveryRule>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    fqdn String
    The Fully Qualified Domain Name of the CDN Endpoint.
    geoFilters List<EndpointGeoFilter>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled Boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed Boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed Boolean
    Specifies if https allowed. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType String
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader String
    The host header CDN provider will send along with content requests to origins.
    originPath String
    The path used at for origin requests.
    origins List<EndpointOrigin>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    probePath String

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    profileName String
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    querystringCachingBehaviour String
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    resourceGroupName String
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    contentTypesToCompresses string[]
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules EndpointDeliveryRule[]
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    fqdn string
    The Fully Qualified Domain Name of the CDN Endpoint.
    geoFilters EndpointGeoFilter[]
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule EndpointGlobalDeliveryRule
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed boolean
    Specifies if https allowed. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType string
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader string
    The host header CDN provider will send along with content requests to origins.
    originPath string
    The path used at for origin requests.
    origins EndpointOrigin[]
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    probePath string

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    profileName string
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    querystringCachingBehaviour string
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    resourceGroupName string
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    content_types_to_compresses Sequence[str]
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    delivery_rules Sequence[EndpointDeliveryRuleArgs]
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    fqdn str
    The Fully Qualified Domain Name of the CDN Endpoint.
    geo_filters Sequence[EndpointGeoFilterArgs]
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    global_delivery_rule EndpointGlobalDeliveryRuleArgs
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    is_compression_enabled bool
    Indicates whether compression is to be enabled.
    is_http_allowed bool
    Specifies if http allowed. Defaults to true.
    is_https_allowed bool
    Specifies if https allowed. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimization_type str
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    origin_host_header str
    The host header CDN provider will send along with content requests to origins.
    origin_path str
    The path used at for origin requests.
    origins Sequence[EndpointOriginArgs]
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    probe_path str

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    profile_name str
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    querystring_caching_behaviour str
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    resource_group_name str
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    contentTypesToCompresses List<String>
    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.
    deliveryRules List<Property Map>
    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.
    fqdn String
    The Fully Qualified Domain Name of the CDN Endpoint.
    geoFilters List<Property Map>
    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.
    globalDeliveryRule Property Map
    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.
    isCompressionEnabled Boolean
    Indicates whether compression is to be enabled.
    isHttpAllowed Boolean
    Specifies if http allowed. Defaults to true.
    isHttpsAllowed Boolean
    Specifies if https allowed. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.
    optimizationType String
    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.
    originHostHeader String
    The host header CDN provider will send along with content requests to origins.
    originPath String
    The path used at for origin requests.
    origins List<Property Map>
    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.
    probePath String

    the path to a file hosted on the origin which helps accelerate delivery of the dynamic content and calculate the most optimal routes for the CDN. This is relative to the origin_path.

    NOTE: global_delivery_rule and delivery_rule are currently only available for Microsoft_Standard CDN profiles.

    profileName String
    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
    querystringCachingBehaviour String
    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.
    resourceGroupName String
    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    EndpointDeliveryRule, EndpointDeliveryRuleArgs

    Name string
    The Name which should be used for this Delivery Rule.
    Order int
    The order used for this rule. The order values should be sequential and begin at 1.
    CacheExpirationAction EndpointDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    CacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    CookiesConditions List<EndpointDeliveryRuleCookiesCondition>
    A cookies_condition block as defined above.
    DeviceCondition EndpointDeliveryRuleDeviceCondition
    A device_condition block as defined below.
    HttpVersionConditions List<EndpointDeliveryRuleHttpVersionCondition>
    A http_version_condition block as defined below.
    ModifyRequestHeaderActions List<EndpointDeliveryRuleModifyRequestHeaderAction>
    A modify_request_header_action block as defined below.
    ModifyResponseHeaderActions List<EndpointDeliveryRuleModifyResponseHeaderAction>
    A modify_response_header_action block as defined below.
    PostArgConditions List<EndpointDeliveryRulePostArgCondition>
    A post_arg_condition block as defined below.
    QueryStringConditions List<EndpointDeliveryRuleQueryStringCondition>
    A query_string_condition block as defined below.
    RemoteAddressConditions List<EndpointDeliveryRuleRemoteAddressCondition>
    A remote_address_condition block as defined below.
    RequestBodyConditions List<EndpointDeliveryRuleRequestBodyCondition>
    A request_body_condition block as defined below.
    RequestHeaderConditions List<EndpointDeliveryRuleRequestHeaderCondition>
    A request_header_condition block as defined below.
    RequestMethodCondition EndpointDeliveryRuleRequestMethodCondition
    A request_method_condition block as defined below.
    RequestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition
    A request_scheme_condition block as defined below.
    RequestUriConditions List<EndpointDeliveryRuleRequestUriCondition>
    A request_uri_condition block as defined below.
    UrlFileExtensionConditions List<EndpointDeliveryRuleUrlFileExtensionCondition>
    A url_file_extension_condition block as defined below.
    UrlFileNameConditions List<EndpointDeliveryRuleUrlFileNameCondition>
    A url_file_name_condition block as defined below.
    UrlPathConditions List<EndpointDeliveryRuleUrlPathCondition>
    A url_path_condition block as defined below.
    UrlRedirectAction EndpointDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    UrlRewriteAction EndpointDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    Name string
    The Name which should be used for this Delivery Rule.
    Order int
    The order used for this rule. The order values should be sequential and begin at 1.
    CacheExpirationAction EndpointDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    CacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    CookiesConditions []EndpointDeliveryRuleCookiesCondition
    A cookies_condition block as defined above.
    DeviceCondition EndpointDeliveryRuleDeviceCondition
    A device_condition block as defined below.
    HttpVersionConditions []EndpointDeliveryRuleHttpVersionCondition
    A http_version_condition block as defined below.
    ModifyRequestHeaderActions []EndpointDeliveryRuleModifyRequestHeaderAction
    A modify_request_header_action block as defined below.
    ModifyResponseHeaderActions []EndpointDeliveryRuleModifyResponseHeaderAction
    A modify_response_header_action block as defined below.
    PostArgConditions []EndpointDeliveryRulePostArgCondition
    A post_arg_condition block as defined below.
    QueryStringConditions []EndpointDeliveryRuleQueryStringCondition
    A query_string_condition block as defined below.
    RemoteAddressConditions []EndpointDeliveryRuleRemoteAddressCondition
    A remote_address_condition block as defined below.
    RequestBodyConditions []EndpointDeliveryRuleRequestBodyCondition
    A request_body_condition block as defined below.
    RequestHeaderConditions []EndpointDeliveryRuleRequestHeaderCondition
    A request_header_condition block as defined below.
    RequestMethodCondition EndpointDeliveryRuleRequestMethodCondition
    A request_method_condition block as defined below.
    RequestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition
    A request_scheme_condition block as defined below.
    RequestUriConditions []EndpointDeliveryRuleRequestUriCondition
    A request_uri_condition block as defined below.
    UrlFileExtensionConditions []EndpointDeliveryRuleUrlFileExtensionCondition
    A url_file_extension_condition block as defined below.
    UrlFileNameConditions []EndpointDeliveryRuleUrlFileNameCondition
    A url_file_name_condition block as defined below.
    UrlPathConditions []EndpointDeliveryRuleUrlPathCondition
    A url_path_condition block as defined below.
    UrlRedirectAction EndpointDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    UrlRewriteAction EndpointDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    name String
    The Name which should be used for this Delivery Rule.
    order Integer
    The order used for this rule. The order values should be sequential and begin at 1.
    cacheExpirationAction EndpointDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    cookiesConditions List<EndpointDeliveryRuleCookiesCondition>
    A cookies_condition block as defined above.
    deviceCondition EndpointDeliveryRuleDeviceCondition
    A device_condition block as defined below.
    httpVersionConditions List<EndpointDeliveryRuleHttpVersionCondition>
    A http_version_condition block as defined below.
    modifyRequestHeaderActions List<EndpointDeliveryRuleModifyRequestHeaderAction>
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions List<EndpointDeliveryRuleModifyResponseHeaderAction>
    A modify_response_header_action block as defined below.
    postArgConditions List<EndpointDeliveryRulePostArgCondition>
    A post_arg_condition block as defined below.
    queryStringConditions List<EndpointDeliveryRuleQueryStringCondition>
    A query_string_condition block as defined below.
    remoteAddressConditions List<EndpointDeliveryRuleRemoteAddressCondition>
    A remote_address_condition block as defined below.
    requestBodyConditions List<EndpointDeliveryRuleRequestBodyCondition>
    A request_body_condition block as defined below.
    requestHeaderConditions List<EndpointDeliveryRuleRequestHeaderCondition>
    A request_header_condition block as defined below.
    requestMethodCondition EndpointDeliveryRuleRequestMethodCondition
    A request_method_condition block as defined below.
    requestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition
    A request_scheme_condition block as defined below.
    requestUriConditions List<EndpointDeliveryRuleRequestUriCondition>
    A request_uri_condition block as defined below.
    urlFileExtensionConditions List<EndpointDeliveryRuleUrlFileExtensionCondition>
    A url_file_extension_condition block as defined below.
    urlFileNameConditions List<EndpointDeliveryRuleUrlFileNameCondition>
    A url_file_name_condition block as defined below.
    urlPathConditions List<EndpointDeliveryRuleUrlPathCondition>
    A url_path_condition block as defined below.
    urlRedirectAction EndpointDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    urlRewriteAction EndpointDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    name string
    The Name which should be used for this Delivery Rule.
    order number
    The order used for this rule. The order values should be sequential and begin at 1.
    cacheExpirationAction EndpointDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    cookiesConditions EndpointDeliveryRuleCookiesCondition[]
    A cookies_condition block as defined above.
    deviceCondition EndpointDeliveryRuleDeviceCondition
    A device_condition block as defined below.
    httpVersionConditions EndpointDeliveryRuleHttpVersionCondition[]
    A http_version_condition block as defined below.
    modifyRequestHeaderActions EndpointDeliveryRuleModifyRequestHeaderAction[]
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions EndpointDeliveryRuleModifyResponseHeaderAction[]
    A modify_response_header_action block as defined below.
    postArgConditions EndpointDeliveryRulePostArgCondition[]
    A post_arg_condition block as defined below.
    queryStringConditions EndpointDeliveryRuleQueryStringCondition[]
    A query_string_condition block as defined below.
    remoteAddressConditions EndpointDeliveryRuleRemoteAddressCondition[]
    A remote_address_condition block as defined below.
    requestBodyConditions EndpointDeliveryRuleRequestBodyCondition[]
    A request_body_condition block as defined below.
    requestHeaderConditions EndpointDeliveryRuleRequestHeaderCondition[]
    A request_header_condition block as defined below.
    requestMethodCondition EndpointDeliveryRuleRequestMethodCondition
    A request_method_condition block as defined below.
    requestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition
    A request_scheme_condition block as defined below.
    requestUriConditions EndpointDeliveryRuleRequestUriCondition[]
    A request_uri_condition block as defined below.
    urlFileExtensionConditions EndpointDeliveryRuleUrlFileExtensionCondition[]
    A url_file_extension_condition block as defined below.
    urlFileNameConditions EndpointDeliveryRuleUrlFileNameCondition[]
    A url_file_name_condition block as defined below.
    urlPathConditions EndpointDeliveryRuleUrlPathCondition[]
    A url_path_condition block as defined below.
    urlRedirectAction EndpointDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    urlRewriteAction EndpointDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    name str
    The Name which should be used for this Delivery Rule.
    order int
    The order used for this rule. The order values should be sequential and begin at 1.
    cache_expiration_action EndpointDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cache_key_query_string_action EndpointDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    cookies_conditions Sequence[EndpointDeliveryRuleCookiesCondition]
    A cookies_condition block as defined above.
    device_condition EndpointDeliveryRuleDeviceCondition
    A device_condition block as defined below.
    http_version_conditions Sequence[EndpointDeliveryRuleHttpVersionCondition]
    A http_version_condition block as defined below.
    modify_request_header_actions Sequence[EndpointDeliveryRuleModifyRequestHeaderAction]
    A modify_request_header_action block as defined below.
    modify_response_header_actions Sequence[EndpointDeliveryRuleModifyResponseHeaderAction]
    A modify_response_header_action block as defined below.
    post_arg_conditions Sequence[EndpointDeliveryRulePostArgCondition]
    A post_arg_condition block as defined below.
    query_string_conditions Sequence[EndpointDeliveryRuleQueryStringCondition]
    A query_string_condition block as defined below.
    remote_address_conditions Sequence[EndpointDeliveryRuleRemoteAddressCondition]
    A remote_address_condition block as defined below.
    request_body_conditions Sequence[EndpointDeliveryRuleRequestBodyCondition]
    A request_body_condition block as defined below.
    request_header_conditions Sequence[EndpointDeliveryRuleRequestHeaderCondition]
    A request_header_condition block as defined below.
    request_method_condition EndpointDeliveryRuleRequestMethodCondition
    A request_method_condition block as defined below.
    request_scheme_condition EndpointDeliveryRuleRequestSchemeCondition
    A request_scheme_condition block as defined below.
    request_uri_conditions Sequence[EndpointDeliveryRuleRequestUriCondition]
    A request_uri_condition block as defined below.
    url_file_extension_conditions Sequence[EndpointDeliveryRuleUrlFileExtensionCondition]
    A url_file_extension_condition block as defined below.
    url_file_name_conditions Sequence[EndpointDeliveryRuleUrlFileNameCondition]
    A url_file_name_condition block as defined below.
    url_path_conditions Sequence[EndpointDeliveryRuleUrlPathCondition]
    A url_path_condition block as defined below.
    url_redirect_action EndpointDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    url_rewrite_action EndpointDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    name String
    The Name which should be used for this Delivery Rule.
    order Number
    The order used for this rule. The order values should be sequential and begin at 1.
    cacheExpirationAction Property Map
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction Property Map
    A cache_key_query_string_action block as defined above.
    cookiesConditions List<Property Map>
    A cookies_condition block as defined above.
    deviceCondition Property Map
    A device_condition block as defined below.
    httpVersionConditions List<Property Map>
    A http_version_condition block as defined below.
    modifyRequestHeaderActions List<Property Map>
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions List<Property Map>
    A modify_response_header_action block as defined below.
    postArgConditions List<Property Map>
    A post_arg_condition block as defined below.
    queryStringConditions List<Property Map>
    A query_string_condition block as defined below.
    remoteAddressConditions List<Property Map>
    A remote_address_condition block as defined below.
    requestBodyConditions List<Property Map>
    A request_body_condition block as defined below.
    requestHeaderConditions List<Property Map>
    A request_header_condition block as defined below.
    requestMethodCondition Property Map
    A request_method_condition block as defined below.
    requestSchemeCondition Property Map
    A request_scheme_condition block as defined below.
    requestUriConditions List<Property Map>
    A request_uri_condition block as defined below.
    urlFileExtensionConditions List<Property Map>
    A url_file_extension_condition block as defined below.
    urlFileNameConditions List<Property Map>
    A url_file_name_condition block as defined below.
    urlPathConditions List<Property Map>
    A url_path_condition block as defined below.
    urlRedirectAction Property Map
    A url_redirect_action block as defined below.
    urlRewriteAction Property Map
    A url_rewrite_action block as defined below.

    EndpointDeliveryRuleCacheExpirationAction, EndpointDeliveryRuleCacheExpirationActionArgs

    Behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    Duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    Behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    Duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior String
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration String
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior str
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration str
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior String
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration String
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    EndpointDeliveryRuleCacheKeyQueryStringAction, EndpointDeliveryRuleCacheKeyQueryStringActionArgs

    Behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    Parameters string
    Comma separated list of parameter values.
    Behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    Parameters string
    Comma separated list of parameter values.
    behavior String
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters String
    Comma separated list of parameter values.
    behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters string
    Comma separated list of parameter values.
    behavior str
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters str
    Comma separated list of parameter values.
    behavior String
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters String
    Comma separated list of parameter values.

    EndpointDeliveryRuleCookiesCondition, EndpointDeliveryRuleCookiesConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Name of the cookie.
    MatchValues List<string>
    List of values for the cookie. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Name of the cookie.
    MatchValues []string
    List of values for the cookie. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Name of the cookie.
    matchValues List<String>
    List of values for the cookie. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector string
    Name of the cookie.
    matchValues string[]
    List of values for the cookie. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector str
    Name of the cookie.
    match_values Sequence[str]
    List of values for the cookie. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Name of the cookie.
    matchValues List<String>
    List of values for the cookie. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleDeviceCondition, EndpointDeliveryRuleDeviceConditionArgs

    MatchValues List<string>
    Valid values are Desktop and Mobile.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    MatchValues []string
    Valid values are Desktop and Mobile.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are Desktop and Mobile.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.
    matchValues string[]
    Valid values are Desktop and Mobile.
    negateCondition boolean
    Defaults to false.
    operator string
    Valid values are Equal. Defaults to Equal.
    match_values Sequence[str]
    Valid values are Desktop and Mobile.
    negate_condition bool
    Defaults to false.
    operator str
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are Desktop and Mobile.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.

    EndpointDeliveryRuleHttpVersionCondition, EndpointDeliveryRuleHttpVersionConditionArgs

    MatchValues List<string>
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    MatchValues []string
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.
    matchValues string[]
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    negateCondition boolean
    Defaults to false.
    operator string
    Valid values are Equal. Defaults to Equal.
    match_values Sequence[str]
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    negate_condition bool
    Defaults to false.
    operator str
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are 0.9, 1.0, 1.1 and 2.0.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.

    EndpointDeliveryRuleModifyRequestHeaderAction, EndpointDeliveryRuleModifyRequestHeaderActionArgs

    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.
    action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name string
    The header name.
    value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action str
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name str
    The header name.
    value str
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointDeliveryRuleModifyResponseHeaderAction, EndpointDeliveryRuleModifyResponseHeaderActionArgs

    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.
    action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name string
    The header name.
    value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action str
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name str
    The header name.
    value str
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointDeliveryRulePostArgCondition, EndpointDeliveryRulePostArgConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Name of the post arg.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Name of the post arg.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Name of the post arg.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector string
    Name of the post arg.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector str
    Name of the post arg.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Name of the post arg.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleQueryStringCondition, EndpointDeliveryRuleQueryStringConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRemoteAddressCondition, EndpointDeliveryRuleRemoteAddressConditionArgs

    Operator string
    Valid values are Any, GeoMatch and IPMatch.
    MatchValues List<string>
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Any, GeoMatch and IPMatch.
    MatchValues []string
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    operator String
    Valid values are Any, GeoMatch and IPMatch.
    matchValues List<String>
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    operator string
    Valid values are Any, GeoMatch and IPMatch.
    matchValues string[]
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    operator str
    Valid values are Any, GeoMatch and IPMatch.
    match_values Sequence[str]
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    operator String
    Valid values are Any, GeoMatch and IPMatch.
    matchValues List<String>
    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.

    EndpointDeliveryRuleRequestBodyCondition, EndpointDeliveryRuleRequestBodyConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRequestHeaderCondition, EndpointDeliveryRuleRequestHeaderConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Header name.
    MatchValues List<string>
    List of header values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    Selector string
    Header name.
    MatchValues []string
    List of header values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Header name.
    matchValues List<String>
    List of header values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector string
    Header name.
    matchValues string[]
    List of header values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector str
    Header name.
    match_values Sequence[str]
    List of header values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    selector String
    Header name.
    matchValues List<String>
    List of header values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRequestMethodCondition, EndpointDeliveryRuleRequestMethodConditionArgs

    MatchValues List<string>
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    MatchValues []string
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.
    matchValues string[]
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    negateCondition boolean
    Defaults to false.
    operator string
    Valid values are Equal. Defaults to Equal.
    match_values Sequence[str]
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    negate_condition bool
    Defaults to false.
    operator str
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.

    EndpointDeliveryRuleRequestSchemeCondition, EndpointDeliveryRuleRequestSchemeConditionArgs

    MatchValues List<string>
    Valid values are HTTP and HTTPS.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    MatchValues []string
    Valid values are HTTP and HTTPS.
    NegateCondition bool
    Defaults to false.
    Operator string
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are HTTP and HTTPS.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.
    matchValues string[]
    Valid values are HTTP and HTTPS.
    negateCondition boolean
    Defaults to false.
    operator string
    Valid values are Equal. Defaults to Equal.
    match_values Sequence[str]
    Valid values are HTTP and HTTPS.
    negate_condition bool
    Defaults to false.
    operator str
    Valid values are Equal. Defaults to Equal.
    matchValues List<String>
    Valid values are HTTP and HTTPS.
    negateCondition Boolean
    Defaults to false.
    operator String
    Valid values are Equal. Defaults to Equal.

    EndpointDeliveryRuleRequestUriCondition, EndpointDeliveryRuleRequestUriConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlFileExtensionCondition, EndpointDeliveryRuleUrlFileExtensionConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlFileNameCondition, EndpointDeliveryRuleUrlFileNameConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlPathCondition, EndpointDeliveryRuleUrlPathConditionArgs

    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    MatchValues List<string>
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms List<string>
    A list of transforms. Valid values are Lowercase and Uppercase.
    Operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    MatchValues []string
    List of string values. This is required if operator is not Any.
    NegateCondition bool
    Defaults to false.
    Transforms []string
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator string
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    matchValues string[]
    List of string values. This is required if operator is not Any.
    negateCondition boolean
    Defaults to false.
    transforms string[]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator str
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    match_values Sequence[str]
    List of string values. This is required if operator is not Any.
    negate_condition bool
    Defaults to false.
    transforms Sequence[str]
    A list of transforms. Valid values are Lowercase and Uppercase.
    operator String
    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.
    matchValues List<String>
    List of string values. This is required if operator is not Any.
    negateCondition Boolean
    Defaults to false.
    transforms List<String>
    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlRedirectAction, EndpointDeliveryRuleUrlRedirectActionArgs

    RedirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    Fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    Hostname string
    Specifies the hostname part of the URL.
    Path string
    Specifies the path part of the URL. This value must begin with a /.
    Protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    QueryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    RedirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    Fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    Hostname string
    Specifies the hostname part of the URL.
    Path string
    Specifies the path part of the URL. This value must begin with a /.
    Protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    QueryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType String
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment String
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname String
    Specifies the hostname part of the URL.
    path String
    Specifies the path part of the URL. This value must begin with a /.
    protocol String
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString String
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname string
    Specifies the hostname part of the URL.
    path string
    Specifies the path part of the URL. This value must begin with a /.
    protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirect_type str
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment str
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname str
    Specifies the hostname part of the URL.
    path str
    Specifies the path part of the URL. This value must begin with a /.
    protocol str
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    query_string str
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType String
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment String
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname String
    Specifies the hostname part of the URL.
    path String
    Specifies the path part of the URL. This value must begin with a /.
    protocol String
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString String
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    EndpointDeliveryRuleUrlRewriteAction, EndpointDeliveryRuleUrlRewriteActionArgs

    Destination string
    This value must start with a / and can't be longer than 260 characters.
    SourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    PreserveUnmatchedPath bool
    Whether preserve an unmatched path. Defaults to true.
    Destination string
    This value must start with a / and can't be longer than 260 characters.
    SourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    PreserveUnmatchedPath bool
    Whether preserve an unmatched path. Defaults to true.
    destination String
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern String
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath Boolean
    Whether preserve an unmatched path. Defaults to true.
    destination string
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath boolean
    Whether preserve an unmatched path. Defaults to true.
    destination str
    This value must start with a / and can't be longer than 260 characters.
    source_pattern str
    This value must start with a / and can't be longer than 260 characters.
    preserve_unmatched_path bool
    Whether preserve an unmatched path. Defaults to true.
    destination String
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern String
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath Boolean
    Whether preserve an unmatched path. Defaults to true.

    EndpointGeoFilter, EndpointGeoFilterArgs

    Action string
    The Action of the Geo Filter. Possible values include Allow and Block.
    CountryCodes List<string>
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    RelativePath string
    The relative path applicable to geo filter.
    Action string
    The Action of the Geo Filter. Possible values include Allow and Block.
    CountryCodes []string
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    RelativePath string
    The relative path applicable to geo filter.
    action String
    The Action of the Geo Filter. Possible values include Allow and Block.
    countryCodes List<String>
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    relativePath String
    The relative path applicable to geo filter.
    action string
    The Action of the Geo Filter. Possible values include Allow and Block.
    countryCodes string[]
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    relativePath string
    The relative path applicable to geo filter.
    action str
    The Action of the Geo Filter. Possible values include Allow and Block.
    country_codes Sequence[str]
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    relative_path str
    The relative path applicable to geo filter.
    action String
    The Action of the Geo Filter. Possible values include Allow and Block.
    countryCodes List<String>
    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
    relativePath String
    The relative path applicable to geo filter.

    EndpointGlobalDeliveryRule, EndpointGlobalDeliveryRuleArgs

    CacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    CacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    ModifyRequestHeaderActions List<EndpointGlobalDeliveryRuleModifyRequestHeaderAction>
    A modify_request_header_action block as defined below.
    ModifyResponseHeaderActions List<EndpointGlobalDeliveryRuleModifyResponseHeaderAction>
    A modify_response_header_action block as defined below.
    UrlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    UrlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    CacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    CacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    ModifyRequestHeaderActions []EndpointGlobalDeliveryRuleModifyRequestHeaderAction
    A modify_request_header_action block as defined below.
    ModifyResponseHeaderActions []EndpointGlobalDeliveryRuleModifyResponseHeaderAction
    A modify_response_header_action block as defined below.
    UrlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    UrlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    cacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    modifyRequestHeaderActions List<EndpointGlobalDeliveryRuleModifyRequestHeaderAction>
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions List<EndpointGlobalDeliveryRuleModifyResponseHeaderAction>
    A modify_response_header_action block as defined below.
    urlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    urlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    cacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    modifyRequestHeaderActions EndpointGlobalDeliveryRuleModifyRequestHeaderAction[]
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions EndpointGlobalDeliveryRuleModifyResponseHeaderAction[]
    A modify_response_header_action block as defined below.
    urlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    urlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    cache_expiration_action EndpointGlobalDeliveryRuleCacheExpirationAction
    A cache_expiration_action block as defined above.
    cache_key_query_string_action EndpointGlobalDeliveryRuleCacheKeyQueryStringAction
    A cache_key_query_string_action block as defined above.
    modify_request_header_actions Sequence[EndpointGlobalDeliveryRuleModifyRequestHeaderAction]
    A modify_request_header_action block as defined below.
    modify_response_header_actions Sequence[EndpointGlobalDeliveryRuleModifyResponseHeaderAction]
    A modify_response_header_action block as defined below.
    url_redirect_action EndpointGlobalDeliveryRuleUrlRedirectAction
    A url_redirect_action block as defined below.
    url_rewrite_action EndpointGlobalDeliveryRuleUrlRewriteAction
    A url_rewrite_action block as defined below.
    cacheExpirationAction Property Map
    A cache_expiration_action block as defined above.
    cacheKeyQueryStringAction Property Map
    A cache_key_query_string_action block as defined above.
    modifyRequestHeaderActions List<Property Map>
    A modify_request_header_action block as defined below.
    modifyResponseHeaderActions List<Property Map>
    A modify_response_header_action block as defined below.
    urlRedirectAction Property Map
    A url_redirect_action block as defined below.
    urlRewriteAction Property Map
    A url_rewrite_action block as defined below.

    EndpointGlobalDeliveryRuleCacheExpirationAction, EndpointGlobalDeliveryRuleCacheExpirationActionArgs

    Behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    Duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    Behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    Duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior String
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration String
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior string
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration string
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior str
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration str
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss
    behavior String
    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.
    duration String
    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    EndpointGlobalDeliveryRuleCacheKeyQueryStringAction, EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs

    Behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    Parameters string
    Comma separated list of parameter values.
    Behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    Parameters string
    Comma separated list of parameter values.
    behavior String
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters String
    Comma separated list of parameter values.
    behavior string
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters string
    Comma separated list of parameter values.
    behavior str
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters str
    Comma separated list of parameter values.
    behavior String
    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.
    parameters String
    Comma separated list of parameter values.

    EndpointGlobalDeliveryRuleModifyRequestHeaderAction, EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs

    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.
    action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name string
    The header name.
    value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action str
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name str
    The header name.
    value str
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointGlobalDeliveryRuleModifyResponseHeaderAction, EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs

    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    Action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    Name string
    The header name.
    Value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.
    action string
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name string
    The header name.
    value string
    The value of the header. Only needed when action is set to Append or overwrite.
    action str
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name str
    The header name.
    value str
    The value of the header. Only needed when action is set to Append or overwrite.
    action String
    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
    name String
    The header name.
    value String
    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointGlobalDeliveryRuleUrlRedirectAction, EndpointGlobalDeliveryRuleUrlRedirectActionArgs

    RedirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    Fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    Hostname string
    Specifies the hostname part of the URL.
    Path string
    Specifies the path part of the URL. This value must begin with a /.
    Protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    QueryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    RedirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    Fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    Hostname string
    Specifies the hostname part of the URL.
    Path string
    Specifies the path part of the URL. This value must begin with a /.
    Protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    QueryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType String
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment String
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname String
    Specifies the hostname part of the URL.
    path String
    Specifies the path part of the URL. This value must begin with a /.
    protocol String
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString String
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType string
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment string
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname string
    Specifies the hostname part of the URL.
    path string
    Specifies the path part of the URL. This value must begin with a /.
    protocol string
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString string
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirect_type str
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment str
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname str
    Specifies the hostname part of the URL.
    path str
    Specifies the path part of the URL. This value must begin with a /.
    protocol str
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    query_string str
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.
    redirectType String
    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.
    fragment String
    Specifies the fragment part of the URL. This value must not start with a #.
    hostname String
    Specifies the hostname part of the URL.
    path String
    Specifies the path part of the URL. This value must begin with a /.
    protocol String
    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https. Defaults to MatchRequest.
    queryString String
    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    EndpointGlobalDeliveryRuleUrlRewriteAction, EndpointGlobalDeliveryRuleUrlRewriteActionArgs

    Destination string
    This value must start with a / and can't be longer than 260 characters.
    SourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    PreserveUnmatchedPath bool
    Whether preserve an unmatched path. Defaults to true.
    Destination string
    This value must start with a / and can't be longer than 260 characters.
    SourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    PreserveUnmatchedPath bool
    Whether preserve an unmatched path. Defaults to true.
    destination String
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern String
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath Boolean
    Whether preserve an unmatched path. Defaults to true.
    destination string
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern string
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath boolean
    Whether preserve an unmatched path. Defaults to true.
    destination str
    This value must start with a / and can't be longer than 260 characters.
    source_pattern str
    This value must start with a / and can't be longer than 260 characters.
    preserve_unmatched_path bool
    Whether preserve an unmatched path. Defaults to true.
    destination String
    This value must start with a / and can't be longer than 260 characters.
    sourcePattern String
    This value must start with a / and can't be longer than 260 characters.
    preserveUnmatchedPath Boolean
    Whether preserve an unmatched path. Defaults to true.

    EndpointOrigin, EndpointOriginArgs

    HostName string
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    Name string
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    HttpPort int
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    HttpsPort int
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
    HostName string
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    Name string
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    HttpPort int
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    HttpsPort int
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
    hostName String
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    name String
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    httpPort Integer
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    httpsPort Integer
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
    hostName string
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    name string
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    httpPort number
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    httpsPort number
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
    host_name str
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    name str
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    http_port int
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    https_port int
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
    hostName String
    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.
    name String
    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.
    httpPort Number
    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
    httpsPort Number
    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    Import

    CDN Endpoints can be imported using the resource id, e.g.

    $ pulumi import azure:cdn/endpoint:Endpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Cdn/profiles/myprofile1/endpoints/myendpoint1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi