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

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.cdn.Endpoint

Explore with Pulumi AI

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.

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",
    }],
});
Copy
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=[{
        "name": "example",
        "host_name": "www.contoso.com",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/cdn"
	"github.com/pulumi/pulumi-azure/sdk/v6/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
	})
}
Copy
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",
            },
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var 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" },
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
endpoint_resource = azure.cdn.Endpoint("endpointResource",
    origins=[{
        "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={
        "cache_expiration_action": {
            "behavior": "string",
            "duration": "string",
        },
        "cache_key_query_string_action": {
            "behavior": "string",
            "parameters": "string",
        },
        "modify_request_header_actions": [{
            "action": "string",
            "name": "string",
            "value": "string",
        }],
        "modify_response_header_actions": [{
            "action": "string",
            "name": "string",
            "value": "string",
        }],
        "url_redirect_action": {
            "redirect_type": "string",
            "fragment": "string",
            "hostname": "string",
            "path": "string",
            "protocol": "string",
            "query_string": "string",
        },
        "url_rewrite_action": {
            "destination": "string",
            "source_pattern": "string",
            "preserve_unmatched_path": False,
        },
    },
    probe_path="string",
    geo_filters=[{
        "action": "string",
        "country_codes": ["string"],
        "relative_path": "string",
    }],
    querystring_caching_behaviour="string",
    delivery_rules=[{
        "name": "string",
        "order": 0,
        "query_string_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "remote_address_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
        }],
        "http_version_conditions": [{
            "match_values": ["string"],
            "negate_condition": False,
            "operator": "string",
        }],
        "modify_request_header_actions": [{
            "action": "string",
            "name": "string",
            "value": "string",
        }],
        "modify_response_header_actions": [{
            "action": "string",
            "name": "string",
            "value": "string",
        }],
        "cookies_conditions": [{
            "operator": "string",
            "selector": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "cache_key_query_string_action": {
            "behavior": "string",
            "parameters": "string",
        },
        "post_arg_conditions": [{
            "operator": "string",
            "selector": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "cache_expiration_action": {
            "behavior": "string",
            "duration": "string",
        },
        "device_condition": {
            "match_values": ["string"],
            "negate_condition": False,
            "operator": "string",
        },
        "request_body_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "request_header_conditions": [{
            "operator": "string",
            "selector": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "request_method_condition": {
            "match_values": ["string"],
            "negate_condition": False,
            "operator": "string",
        },
        "request_scheme_condition": {
            "match_values": ["string"],
            "negate_condition": False,
            "operator": "string",
        },
        "request_uri_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "url_file_extension_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "url_file_name_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "url_path_conditions": [{
            "operator": "string",
            "match_values": ["string"],
            "negate_condition": False,
            "transforms": ["string"],
        }],
        "url_redirect_action": {
            "redirect_type": "string",
            "fragment": "string",
            "hostname": "string",
            "path": "string",
            "protocol": "string",
            "query_string": "string",
        },
        "url_rewrite_action": {
            "destination": "string",
            "source_pattern": "string",
            "preserve_unmatched_path": False,
        },
    }],
    tags={
        "string": "string",
    })
Copy
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",
    },
});
Copy
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
Copy

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

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

The Endpoint resource accepts the following input properties:

Origins
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
string
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
[]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
This property is required.
Changes to this property will trigger replacement.
string
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
String
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
string
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
str
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
String
The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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)
resources:  _:    type: azure:cdn:Endpoint    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. []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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. string
The Name which should be used for this Delivery Rule.
Order This property is required. 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 This property is required. string
The Name which should be used for this Delivery Rule.
Order This property is required. 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 This property is required. String
The Name which should be used for this Delivery Rule.
order This property is required. 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 This property is required. string
The Name which should be used for this Delivery Rule.
order This property is required. 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 This property is required. str
The Name which should be used for this Delivery Rule.
order This property is required. 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 This property is required. String
The Name which should be used for this Delivery Rule.
order This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. str
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. List<string>
Valid values are Desktop and Mobile.
NegateCondition bool
Defaults to false.
Operator string
Valid values are Equal. Defaults to Equal.
MatchValues This property is required. []string
Valid values are Desktop and Mobile.
NegateCondition bool
Defaults to false.
Operator string
Valid values are Equal. Defaults to Equal.
matchValues This property is required. List<String>
Valid values are Desktop and Mobile.
negateCondition Boolean
Defaults to false.
operator String
Valid values are Equal. Defaults to Equal.
matchValues This property is required. string[]
Valid values are Desktop and Mobile.
negateCondition boolean
Defaults to false.
operator string
Valid values are Equal. Defaults to Equal.
match_values This property is required. Sequence[str]
Valid values are Desktop and Mobile.
negate_condition bool
Defaults to false.
operator str
Valid values are Equal. Defaults to Equal.
matchValues This property is required. 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 This property is required. 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 This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
Name This property is required. string
The header name.
Value string
The value of the header. Only needed when action is set to Append or overwrite.
Action This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
Name This property is required. string
The header name.
Value string
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. String
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. String
The header name.
value String
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. string
The header name.
value string
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. str
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. str
The header name.
value str
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. String
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. String
The header name.
value String
The value of the header. Only needed when action is set to Append or overwrite.

EndpointDeliveryRuleModifyResponseHeaderAction
, EndpointDeliveryRuleModifyResponseHeaderActionArgs

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

EndpointDeliveryRulePostArgCondition
, EndpointDeliveryRulePostArgConditionArgs

Operator This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. str
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
Selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. string
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. str
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. String
Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.
selector This property is required. 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 This property is required. 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 This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. List<string>
Valid values are HTTP and HTTPS.
NegateCondition bool
Defaults to false.
Operator string
Valid values are Equal. Defaults to Equal.
MatchValues This property is required. []string
Valid values are HTTP and HTTPS.
NegateCondition bool
Defaults to false.
Operator string
Valid values are Equal. Defaults to Equal.
matchValues This property is required. List<String>
Valid values are HTTP and HTTPS.
negateCondition Boolean
Defaults to false.
operator String
Valid values are Equal. Defaults to Equal.
matchValues This property is required. string[]
Valid values are HTTP and HTTPS.
negateCondition boolean
Defaults to false.
operator string
Valid values are Equal. Defaults to Equal.
match_values This property is required. Sequence[str]
Valid values are HTTP and HTTPS.
negate_condition bool
Defaults to false.
operator str
Valid values are Equal. Defaults to Equal.
matchValues This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
SourcePattern This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
SourcePattern This property is required. 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 This property is required. String
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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 This property is required. str
This value must start with a / and can't be longer than 260 characters.
source_pattern This property is required. 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 This property is required. String
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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 This property is required. string
The Action of the Geo Filter. Possible values include Allow and Block.
CountryCodes This property is required. List<string>
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
RelativePath This property is required. string
The relative path applicable to geo filter.
Action This property is required. string
The Action of the Geo Filter. Possible values include Allow and Block.
CountryCodes This property is required. []string
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
RelativePath This property is required. string
The relative path applicable to geo filter.
action This property is required. String
The Action of the Geo Filter. Possible values include Allow and Block.
countryCodes This property is required. List<String>
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
relativePath This property is required. String
The relative path applicable to geo filter.
action This property is required. string
The Action of the Geo Filter. Possible values include Allow and Block.
countryCodes This property is required. string[]
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
relativePath This property is required. string
The relative path applicable to geo filter.
action This property is required. str
The Action of the Geo Filter. Possible values include Allow and Block.
country_codes This property is required. Sequence[str]
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
relative_path This property is required. str
The relative path applicable to geo filter.
action This property is required. String
The Action of the Geo Filter. Possible values include Allow and Block.
countryCodes This property is required. List<String>
A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.
relativePath This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
Name This property is required. string
The header name.
Value string
The value of the header. Only needed when action is set to Append or overwrite.
Action This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
Name This property is required. string
The header name.
Value string
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. String
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. String
The header name.
value String
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. string
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. string
The header name.
value string
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. str
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. str
The header name.
value str
The value of the header. Only needed when action is set to Append or overwrite.
action This property is required. String
Action to be executed on a header value. Valid values are Append, Delete and Overwrite.
name This property is required. String
The header name.
value String
The value of the header. Only needed when action is set to Append or overwrite.

EndpointGlobalDeliveryRuleModifyResponseHeaderAction
, EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs

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

EndpointGlobalDeliveryRuleUrlRedirectAction
, EndpointGlobalDeliveryRuleUrlRedirectActionArgs

RedirectType This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
SourcePattern This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
SourcePattern This property is required. 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 This property is required. String
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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 This property is required. string
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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 This property is required. str
This value must start with a / and can't be longer than 260 characters.
source_pattern This property is required. 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 This property is required. String
This value must start with a / and can't be longer than 260 characters.
sourcePattern This property is required. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. int
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
HttpsPort Changes to this property will trigger replacement. int
The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
HostName
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. int
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
HttpsPort Changes to this property will trigger replacement. int
The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
hostName
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. Integer
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
httpsPort Changes to this property will trigger replacement. Integer
The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
hostName
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. number
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
httpsPort Changes to this property will trigger replacement. number
The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
host_name
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. int
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
https_port Changes to this property will trigger replacement. int
The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.
hostName
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. Number
The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.
httpsPort Changes to this property will trigger replacement. 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
Copy

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.