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

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

azure.cdn.Endpoint

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

    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
    

    Example Usage

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

    Create Endpoint Resource

    new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
    @overload
    def Endpoint(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 content_types_to_compresses: Optional[Sequence[str]] = None,
                 delivery_rules: Optional[Sequence[EndpointDeliveryRuleArgs]] = 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)
    @overload
    def Endpoint(resource_name: str,
                 args: EndpointArgs,
                 opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Endpoint Resource Properties

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

    Inputs

    The Endpoint resource accepts the following input properties:

    Origins List<EndpointOrigin>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    ProfileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    ResourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    ContentTypesToCompresses List<string>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    DeliveryRules List<EndpointDeliveryRule>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    GeoFilters List<EndpointGeoFilter>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    GlobalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    IsCompressionEnabled bool

    Indicates whether compression is to be enabled.

    IsHttpAllowed bool

    Defaults to true.

    IsHttpsAllowed bool

    Defaults to true.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    Name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    OptimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    OriginHostHeader string

    The host header CDN provider will send along with content requests to origins.

    OriginPath string

    The path used at for origin requests.

    ProbePath string

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

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

    QuerystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    Origins []EndpointOriginArgs

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    ProfileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    ResourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    ContentTypesToCompresses []string

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    DeliveryRules []EndpointDeliveryRuleArgs

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    GeoFilters []EndpointGeoFilterArgs

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    GlobalDeliveryRule EndpointGlobalDeliveryRuleArgs

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    IsCompressionEnabled bool

    Indicates whether compression is to be enabled.

    IsHttpAllowed bool

    Defaults to true.

    IsHttpsAllowed bool

    Defaults to true.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    Name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    OptimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    OriginHostHeader string

    The host header CDN provider will send along with content requests to origins.

    OriginPath string

    The path used at for origin requests.

    ProbePath string

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

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

    QuerystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    origins List<EndpointOrigin>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    profileName String

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    resourceGroupName String

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    contentTypesToCompresses List<String>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules List<EndpointDeliveryRule>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    geoFilters List<EndpointGeoFilter>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled Boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed Boolean

    Defaults to true.

    isHttpsAllowed Boolean

    Defaults to true.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name String

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType String

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader String

    The host header CDN provider will send along with content requests to origins.

    originPath String

    The path used at for origin requests.

    probePath String

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

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

    querystringCachingBehaviour String

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    origins EndpointOrigin[]

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    profileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    resourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    contentTypesToCompresses string[]

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules EndpointDeliveryRule[]

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    geoFilters EndpointGeoFilter[]

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed boolean

    Defaults to true.

    isHttpsAllowed boolean

    Defaults to true.

    location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader string

    The host header CDN provider will send along with content requests to origins.

    originPath string

    The path used at for origin requests.

    probePath string

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

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

    querystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    origins Sequence[EndpointOriginArgs]

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    profile_name str

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    resource_group_name str

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    content_types_to_compresses Sequence[str]

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    delivery_rules Sequence[EndpointDeliveryRuleArgs]

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    geo_filters Sequence[EndpointGeoFilterArgs]

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    global_delivery_rule EndpointGlobalDeliveryRuleArgs

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    is_compression_enabled bool

    Indicates whether compression is to be enabled.

    is_http_allowed bool

    Defaults to true.

    is_https_allowed bool

    Defaults to true.

    location str

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name str

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimization_type str

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    origin_host_header str

    The host header CDN provider will send along with content requests to origins.

    origin_path str

    The path used at for origin requests.

    probe_path str

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

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

    querystring_caching_behaviour str

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    origins List<Property Map>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    profileName String

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    resourceGroupName String

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    contentTypesToCompresses List<String>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules List<Property Map>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    geoFilters List<Property Map>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule Property Map

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled Boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed Boolean

    Defaults to true.

    isHttpsAllowed Boolean

    Defaults to true.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name String

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType String

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader String

    The host header CDN provider will send along with content requests to origins.

    originPath String

    The path used at for origin requests.

    probePath String

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

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

    querystringCachingBehaviour String

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    tags Map<String>

    A mapping of tags to assign to the resource.

    Outputs

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

    Fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    Id string

    The provider-assigned unique ID for this managed resource.

    Fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    Id string

    The provider-assigned unique ID for this managed resource.

    fqdn String

    The Fully Qualified Domain Name of the CDN Endpoint.

    id String

    The provider-assigned unique ID for this managed resource.

    fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    id string

    The provider-assigned unique ID for this managed resource.

    fqdn str

    The Fully Qualified Domain Name of the CDN Endpoint.

    id str

    The provider-assigned unique ID for this managed resource.

    fqdn String

    The Fully Qualified Domain Name of the CDN Endpoint.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing Endpoint Resource

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

    public static get(name: string, id: Input<ID>, state?: EndpointState, opts?: CustomResourceOptions): Endpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            content_types_to_compresses: Optional[Sequence[str]] = None,
            delivery_rules: Optional[Sequence[EndpointDeliveryRuleArgs]] = None,
            fqdn: Optional[str] = None,
            geo_filters: Optional[Sequence[EndpointGeoFilterArgs]] = None,
            global_delivery_rule: Optional[EndpointGlobalDeliveryRuleArgs] = None,
            is_compression_enabled: Optional[bool] = None,
            is_http_allowed: Optional[bool] = None,
            is_https_allowed: Optional[bool] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            optimization_type: Optional[str] = None,
            origin_host_header: Optional[str] = None,
            origin_path: Optional[str] = None,
            origins: Optional[Sequence[EndpointOriginArgs]] = None,
            probe_path: Optional[str] = None,
            profile_name: Optional[str] = None,
            querystring_caching_behaviour: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Endpoint
    func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
    public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
    public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ContentTypesToCompresses List<string>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    DeliveryRules List<EndpointDeliveryRule>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    Fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    GeoFilters List<EndpointGeoFilter>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    GlobalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    IsCompressionEnabled bool

    Indicates whether compression is to be enabled.

    IsHttpAllowed bool

    Defaults to true.

    IsHttpsAllowed bool

    Defaults to true.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    Name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    OptimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    OriginHostHeader string

    The host header CDN provider will send along with content requests to origins.

    OriginPath string

    The path used at for origin requests.

    Origins List<EndpointOrigin>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    ProbePath string

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

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

    ProfileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    QuerystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    ResourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    ContentTypesToCompresses []string

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    DeliveryRules []EndpointDeliveryRuleArgs

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    Fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    GeoFilters []EndpointGeoFilterArgs

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    GlobalDeliveryRule EndpointGlobalDeliveryRuleArgs

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    IsCompressionEnabled bool

    Indicates whether compression is to be enabled.

    IsHttpAllowed bool

    Defaults to true.

    IsHttpsAllowed bool

    Defaults to true.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    Name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    OptimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    OriginHostHeader string

    The host header CDN provider will send along with content requests to origins.

    OriginPath string

    The path used at for origin requests.

    Origins []EndpointOriginArgs

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    ProbePath string

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

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

    ProfileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    QuerystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    ResourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    contentTypesToCompresses List<String>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules List<EndpointDeliveryRule>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    fqdn String

    The Fully Qualified Domain Name of the CDN Endpoint.

    geoFilters List<EndpointGeoFilter>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled Boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed Boolean

    Defaults to true.

    isHttpsAllowed Boolean

    Defaults to true.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name String

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType String

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader String

    The host header CDN provider will send along with content requests to origins.

    originPath String

    The path used at for origin requests.

    origins List<EndpointOrigin>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    probePath String

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

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

    profileName String

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    querystringCachingBehaviour String

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    resourceGroupName String

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    contentTypesToCompresses string[]

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules EndpointDeliveryRule[]

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    fqdn string

    The Fully Qualified Domain Name of the CDN Endpoint.

    geoFilters EndpointGeoFilter[]

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule EndpointGlobalDeliveryRule

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed boolean

    Defaults to true.

    isHttpsAllowed boolean

    Defaults to true.

    location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name string

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType string

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader string

    The host header CDN provider will send along with content requests to origins.

    originPath string

    The path used at for origin requests.

    origins EndpointOrigin[]

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    probePath string

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

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

    profileName string

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    querystringCachingBehaviour string

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    resourceGroupName string

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    content_types_to_compresses Sequence[str]

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    delivery_rules Sequence[EndpointDeliveryRuleArgs]

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    fqdn str

    The Fully Qualified Domain Name of the CDN Endpoint.

    geo_filters Sequence[EndpointGeoFilterArgs]

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    global_delivery_rule EndpointGlobalDeliveryRuleArgs

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    is_compression_enabled bool

    Indicates whether compression is to be enabled.

    is_http_allowed bool

    Defaults to true.

    is_https_allowed bool

    Defaults to true.

    location str

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name str

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimization_type str

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    origin_host_header str

    The host header CDN provider will send along with content requests to origins.

    origin_path str

    The path used at for origin requests.

    origins Sequence[EndpointOriginArgs]

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    probe_path str

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

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

    profile_name str

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    querystring_caching_behaviour str

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    resource_group_name str

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    contentTypesToCompresses List<String>

    An array of strings that indicates a content types on which compression will be applied. The value for the elements should be MIME types.

    deliveryRules List<Property Map>

    Rules for the rules engine. An endpoint can contain up until 4 of those rules that consist of conditions and actions. A delivery_rule blocks as defined below.

    fqdn String

    The Fully Qualified Domain Name of the CDN Endpoint.

    geoFilters List<Property Map>

    A set of Geo Filters for this CDN Endpoint. Each geo_filter block supports fields documented below.

    globalDeliveryRule Property Map

    Actions that are valid for all resources regardless of any conditions. A global_delivery_rule block as defined below.

    isCompressionEnabled Boolean

    Indicates whether compression is to be enabled.

    isHttpAllowed Boolean

    Defaults to true.

    isHttpsAllowed Boolean

    Defaults to true.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    name String

    Specifies the name of the CDN Endpoint. Changing this forces a new resource to be created.

    optimizationType String

    What types of optimization should this CDN Endpoint optimize for? Possible values include DynamicSiteAcceleration, GeneralMediaStreaming, GeneralWebDelivery, LargeFileDownload and VideoOnDemandMediaStreaming.

    originHostHeader String

    The host header CDN provider will send along with content requests to origins.

    originPath String

    The path used at for origin requests.

    origins List<Property Map>

    The set of origins of the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options. Each origin block supports fields documented below. Changing this forces a new resource to be created.

    probePath String

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

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

    profileName String

    The CDN Profile to which to attach the CDN Endpoint. Changing this forces a new resource to be created.

    querystringCachingBehaviour String

    Sets query string caching behavior. Allowed values are IgnoreQueryString, BypassCaching and UseQueryString. NotSet value can be used for Premium Verizon CDN profile. Defaults to IgnoreQueryString.

    resourceGroupName String

    The name of the resource group in which to create the CDN Endpoint. Changing this forces a new resource to be created.

    tags Map<String>

    A mapping of tags to assign to the resource.

    Supporting Types

    EndpointDeliveryRule, EndpointDeliveryRuleArgs

    Name string

    The Name which should be used for this Delivery Rule.

    Order int

    The order used for this rule. The order values should be sequential and begin at 1.

    CacheExpirationAction EndpointDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    CacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    CookiesConditions List<EndpointDeliveryRuleCookiesCondition>

    A cookies_condition block as defined above.

    DeviceCondition EndpointDeliveryRuleDeviceCondition

    A device_condition block as defined below.

    HttpVersionConditions List<EndpointDeliveryRuleHttpVersionCondition>

    A http_version_condition block as defined below.

    ModifyRequestHeaderActions List<EndpointDeliveryRuleModifyRequestHeaderAction>

    A modify_request_header_action block as defined below.

    ModifyResponseHeaderActions List<EndpointDeliveryRuleModifyResponseHeaderAction>

    A modify_response_header_action block as defined below.

    PostArgConditions List<EndpointDeliveryRulePostArgCondition>

    A post_arg_condition block as defined below.

    QueryStringConditions List<EndpointDeliveryRuleQueryStringCondition>

    A query_string_condition block as defined below.

    RemoteAddressConditions List<EndpointDeliveryRuleRemoteAddressCondition>

    A remote_address_condition block as defined below.

    RequestBodyConditions List<EndpointDeliveryRuleRequestBodyCondition>

    A request_body_condition block as defined below.

    RequestHeaderConditions List<EndpointDeliveryRuleRequestHeaderCondition>

    A request_header_condition block as defined below.

    RequestMethodCondition EndpointDeliveryRuleRequestMethodCondition

    A request_method_condition block as defined below.

    RequestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition

    A request_scheme_condition block as defined below.

    RequestUriConditions List<EndpointDeliveryRuleRequestUriCondition>

    A request_uri_condition block as defined below.

    UrlFileExtensionConditions List<EndpointDeliveryRuleUrlFileExtensionCondition>

    A url_file_extension_condition block as defined below.

    UrlFileNameConditions List<EndpointDeliveryRuleUrlFileNameCondition>

    A url_file_name_condition block as defined below.

    UrlPathConditions List<EndpointDeliveryRuleUrlPathCondition>

    A url_path_condition block as defined below.

    UrlRedirectAction EndpointDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    UrlRewriteAction EndpointDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    Name string

    The Name which should be used for this Delivery Rule.

    Order int

    The order used for this rule. The order values should be sequential and begin at 1.

    CacheExpirationAction EndpointDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    CacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    CookiesConditions []EndpointDeliveryRuleCookiesCondition

    A cookies_condition block as defined above.

    DeviceCondition EndpointDeliveryRuleDeviceCondition

    A device_condition block as defined below.

    HttpVersionConditions []EndpointDeliveryRuleHttpVersionCondition

    A http_version_condition block as defined below.

    ModifyRequestHeaderActions []EndpointDeliveryRuleModifyRequestHeaderAction

    A modify_request_header_action block as defined below.

    ModifyResponseHeaderActions []EndpointDeliveryRuleModifyResponseHeaderAction

    A modify_response_header_action block as defined below.

    PostArgConditions []EndpointDeliveryRulePostArgCondition

    A post_arg_condition block as defined below.

    QueryStringConditions []EndpointDeliveryRuleQueryStringCondition

    A query_string_condition block as defined below.

    RemoteAddressConditions []EndpointDeliveryRuleRemoteAddressCondition

    A remote_address_condition block as defined below.

    RequestBodyConditions []EndpointDeliveryRuleRequestBodyCondition

    A request_body_condition block as defined below.

    RequestHeaderConditions []EndpointDeliveryRuleRequestHeaderCondition

    A request_header_condition block as defined below.

    RequestMethodCondition EndpointDeliveryRuleRequestMethodCondition

    A request_method_condition block as defined below.

    RequestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition

    A request_scheme_condition block as defined below.

    RequestUriConditions []EndpointDeliveryRuleRequestUriCondition

    A request_uri_condition block as defined below.

    UrlFileExtensionConditions []EndpointDeliveryRuleUrlFileExtensionCondition

    A url_file_extension_condition block as defined below.

    UrlFileNameConditions []EndpointDeliveryRuleUrlFileNameCondition

    A url_file_name_condition block as defined below.

    UrlPathConditions []EndpointDeliveryRuleUrlPathCondition

    A url_path_condition block as defined below.

    UrlRedirectAction EndpointDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    UrlRewriteAction EndpointDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    name String

    The Name which should be used for this Delivery Rule.

    order Integer

    The order used for this rule. The order values should be sequential and begin at 1.

    cacheExpirationAction EndpointDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    cookiesConditions List<EndpointDeliveryRuleCookiesCondition>

    A cookies_condition block as defined above.

    deviceCondition EndpointDeliveryRuleDeviceCondition

    A device_condition block as defined below.

    httpVersionConditions List<EndpointDeliveryRuleHttpVersionCondition>

    A http_version_condition block as defined below.

    modifyRequestHeaderActions List<EndpointDeliveryRuleModifyRequestHeaderAction>

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions List<EndpointDeliveryRuleModifyResponseHeaderAction>

    A modify_response_header_action block as defined below.

    postArgConditions List<EndpointDeliveryRulePostArgCondition>

    A post_arg_condition block as defined below.

    queryStringConditions List<EndpointDeliveryRuleQueryStringCondition>

    A query_string_condition block as defined below.

    remoteAddressConditions List<EndpointDeliveryRuleRemoteAddressCondition>

    A remote_address_condition block as defined below.

    requestBodyConditions List<EndpointDeliveryRuleRequestBodyCondition>

    A request_body_condition block as defined below.

    requestHeaderConditions List<EndpointDeliveryRuleRequestHeaderCondition>

    A request_header_condition block as defined below.

    requestMethodCondition EndpointDeliveryRuleRequestMethodCondition

    A request_method_condition block as defined below.

    requestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition

    A request_scheme_condition block as defined below.

    requestUriConditions List<EndpointDeliveryRuleRequestUriCondition>

    A request_uri_condition block as defined below.

    urlFileExtensionConditions List<EndpointDeliveryRuleUrlFileExtensionCondition>

    A url_file_extension_condition block as defined below.

    urlFileNameConditions List<EndpointDeliveryRuleUrlFileNameCondition>

    A url_file_name_condition block as defined below.

    urlPathConditions List<EndpointDeliveryRuleUrlPathCondition>

    A url_path_condition block as defined below.

    urlRedirectAction EndpointDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    urlRewriteAction EndpointDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    name string

    The Name which should be used for this Delivery Rule.

    order number

    The order used for this rule. The order values should be sequential and begin at 1.

    cacheExpirationAction EndpointDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction EndpointDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    cookiesConditions EndpointDeliveryRuleCookiesCondition[]

    A cookies_condition block as defined above.

    deviceCondition EndpointDeliveryRuleDeviceCondition

    A device_condition block as defined below.

    httpVersionConditions EndpointDeliveryRuleHttpVersionCondition[]

    A http_version_condition block as defined below.

    modifyRequestHeaderActions EndpointDeliveryRuleModifyRequestHeaderAction[]

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions EndpointDeliveryRuleModifyResponseHeaderAction[]

    A modify_response_header_action block as defined below.

    postArgConditions EndpointDeliveryRulePostArgCondition[]

    A post_arg_condition block as defined below.

    queryStringConditions EndpointDeliveryRuleQueryStringCondition[]

    A query_string_condition block as defined below.

    remoteAddressConditions EndpointDeliveryRuleRemoteAddressCondition[]

    A remote_address_condition block as defined below.

    requestBodyConditions EndpointDeliveryRuleRequestBodyCondition[]

    A request_body_condition block as defined below.

    requestHeaderConditions EndpointDeliveryRuleRequestHeaderCondition[]

    A request_header_condition block as defined below.

    requestMethodCondition EndpointDeliveryRuleRequestMethodCondition

    A request_method_condition block as defined below.

    requestSchemeCondition EndpointDeliveryRuleRequestSchemeCondition

    A request_scheme_condition block as defined below.

    requestUriConditions EndpointDeliveryRuleRequestUriCondition[]

    A request_uri_condition block as defined below.

    urlFileExtensionConditions EndpointDeliveryRuleUrlFileExtensionCondition[]

    A url_file_extension_condition block as defined below.

    urlFileNameConditions EndpointDeliveryRuleUrlFileNameCondition[]

    A url_file_name_condition block as defined below.

    urlPathConditions EndpointDeliveryRuleUrlPathCondition[]

    A url_path_condition block as defined below.

    urlRedirectAction EndpointDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    urlRewriteAction EndpointDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    name str

    The Name which should be used for this Delivery Rule.

    order int

    The order used for this rule. The order values should be sequential and begin at 1.

    cache_expiration_action EndpointDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cache_key_query_string_action EndpointDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    cookies_conditions Sequence[EndpointDeliveryRuleCookiesCondition]

    A cookies_condition block as defined above.

    device_condition EndpointDeliveryRuleDeviceCondition

    A device_condition block as defined below.

    http_version_conditions Sequence[EndpointDeliveryRuleHttpVersionCondition]

    A http_version_condition block as defined below.

    modify_request_header_actions Sequence[EndpointDeliveryRuleModifyRequestHeaderAction]

    A modify_request_header_action block as defined below.

    modify_response_header_actions Sequence[EndpointDeliveryRuleModifyResponseHeaderAction]

    A modify_response_header_action block as defined below.

    post_arg_conditions Sequence[EndpointDeliveryRulePostArgCondition]

    A post_arg_condition block as defined below.

    query_string_conditions Sequence[EndpointDeliveryRuleQueryStringCondition]

    A query_string_condition block as defined below.

    remote_address_conditions Sequence[EndpointDeliveryRuleRemoteAddressCondition]

    A remote_address_condition block as defined below.

    request_body_conditions Sequence[EndpointDeliveryRuleRequestBodyCondition]

    A request_body_condition block as defined below.

    request_header_conditions Sequence[EndpointDeliveryRuleRequestHeaderCondition]

    A request_header_condition block as defined below.

    request_method_condition EndpointDeliveryRuleRequestMethodCondition

    A request_method_condition block as defined below.

    request_scheme_condition EndpointDeliveryRuleRequestSchemeCondition

    A request_scheme_condition block as defined below.

    request_uri_conditions Sequence[EndpointDeliveryRuleRequestUriCondition]

    A request_uri_condition block as defined below.

    url_file_extension_conditions Sequence[EndpointDeliveryRuleUrlFileExtensionCondition]

    A url_file_extension_condition block as defined below.

    url_file_name_conditions Sequence[EndpointDeliveryRuleUrlFileNameCondition]

    A url_file_name_condition block as defined below.

    url_path_conditions Sequence[EndpointDeliveryRuleUrlPathCondition]

    A url_path_condition block as defined below.

    url_redirect_action EndpointDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    url_rewrite_action EndpointDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    name String

    The Name which should be used for this Delivery Rule.

    order Number

    The order used for this rule. The order values should be sequential and begin at 1.

    cacheExpirationAction Property Map

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction Property Map

    A cache_key_query_string_action block as defined above.

    cookiesConditions List<Property Map>

    A cookies_condition block as defined above.

    deviceCondition Property Map

    A device_condition block as defined below.

    httpVersionConditions List<Property Map>

    A http_version_condition block as defined below.

    modifyRequestHeaderActions List<Property Map>

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions List<Property Map>

    A modify_response_header_action block as defined below.

    postArgConditions List<Property Map>

    A post_arg_condition block as defined below.

    queryStringConditions List<Property Map>

    A query_string_condition block as defined below.

    remoteAddressConditions List<Property Map>

    A remote_address_condition block as defined below.

    requestBodyConditions List<Property Map>

    A request_body_condition block as defined below.

    requestHeaderConditions List<Property Map>

    A request_header_condition block as defined below.

    requestMethodCondition Property Map

    A request_method_condition block as defined below.

    requestSchemeCondition Property Map

    A request_scheme_condition block as defined below.

    requestUriConditions List<Property Map>

    A request_uri_condition block as defined below.

    urlFileExtensionConditions List<Property Map>

    A url_file_extension_condition block as defined below.

    urlFileNameConditions List<Property Map>

    A url_file_name_condition block as defined below.

    urlPathConditions List<Property Map>

    A url_path_condition block as defined below.

    urlRedirectAction Property Map

    A url_redirect_action block as defined below.

    urlRewriteAction Property Map

    A url_rewrite_action block as defined below.

    EndpointDeliveryRuleCacheExpirationAction, EndpointDeliveryRuleCacheExpirationActionArgs

    Behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    Duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    Behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    Duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior String

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration String

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior str

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration str

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior String

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration String

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    EndpointDeliveryRuleCacheKeyQueryStringAction, EndpointDeliveryRuleCacheKeyQueryStringActionArgs

    Behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    Parameters string

    Comma separated list of parameter values.

    Behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    Parameters string

    Comma separated list of parameter values.

    behavior String

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters String

    Comma separated list of parameter values.

    behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters string

    Comma separated list of parameter values.

    behavior str

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters str

    Comma separated list of parameter values.

    behavior String

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters String

    Comma separated list of parameter values.

    EndpointDeliveryRuleCookiesCondition, EndpointDeliveryRuleCookiesConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Name of the cookie.

    MatchValues List<string>

    List of values for the cookie. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Name of the cookie.

    MatchValues []string

    List of values for the cookie. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Name of the cookie.

    matchValues List<String>

    List of values for the cookie. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector string

    Name of the cookie.

    matchValues string[]

    List of values for the cookie. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector str

    Name of the cookie.

    match_values Sequence[str]

    List of values for the cookie. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Name of the cookie.

    matchValues List<String>

    List of values for the cookie. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleDeviceCondition, EndpointDeliveryRuleDeviceConditionArgs

    MatchValues List<string>

    Valid values are Desktop and Mobile.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    MatchValues []string

    Valid values are Desktop and Mobile.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    matchValues List<String>

    Valid values are Desktop and Mobile.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    matchValues string[]

    Valid values are Desktop and Mobile.

    negateCondition boolean

    Defaults to false.

    operator string

    Valid values are Equal.

    match_values Sequence[str]

    Valid values are Desktop and Mobile.

    negate_condition bool

    Defaults to false.

    operator str

    Valid values are Equal.

    matchValues List<String>

    Valid values are Desktop and Mobile.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    EndpointDeliveryRuleHttpVersionCondition, EndpointDeliveryRuleHttpVersionConditionArgs

    MatchValues List<string>

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    MatchValues []string

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    matchValues List<String>

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    matchValues string[]

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    negateCondition boolean

    Defaults to false.

    operator string

    Valid values are Equal.

    match_values Sequence[str]

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    negate_condition bool

    Defaults to false.

    operator str

    Valid values are Equal.

    matchValues List<String>

    Valid values are 0.9, 1.0, 1.1 and 2.0.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    EndpointDeliveryRuleModifyRequestHeaderAction, EndpointDeliveryRuleModifyRequestHeaderActionArgs

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name string

    The header name.

    value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action str

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name str

    The header name.

    value str

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointDeliveryRuleModifyResponseHeaderAction, EndpointDeliveryRuleModifyResponseHeaderActionArgs

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name string

    The header name.

    value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action str

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name str

    The header name.

    value str

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointDeliveryRulePostArgCondition, EndpointDeliveryRulePostArgConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Name of the post arg.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Name of the post arg.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Name of the post arg.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector string

    Name of the post arg.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector str

    Name of the post arg.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Name of the post arg.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleQueryStringCondition, EndpointDeliveryRuleQueryStringConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRemoteAddressCondition, EndpointDeliveryRuleRemoteAddressConditionArgs

    Operator string

    Valid values are Any, GeoMatch and IPMatch.

    MatchValues List<string>

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Any, GeoMatch and IPMatch.

    MatchValues []string

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    operator String

    Valid values are Any, GeoMatch and IPMatch.

    matchValues List<String>

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    operator string

    Valid values are Any, GeoMatch and IPMatch.

    matchValues string[]

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    operator str

    Valid values are Any, GeoMatch and IPMatch.

    match_values Sequence[str]

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    operator String

    Valid values are Any, GeoMatch and IPMatch.

    matchValues List<String>

    List of string values. For GeoMatch operator this should be a list of country codes (e.g. US or DE). List of IP address if operator equals to IPMatch. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    EndpointDeliveryRuleRequestBodyCondition, EndpointDeliveryRuleRequestBodyConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRequestHeaderCondition, EndpointDeliveryRuleRequestHeaderConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Header name.

    MatchValues List<string>

    List of header values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    Selector string

    Header name.

    MatchValues []string

    List of header values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Header name.

    matchValues List<String>

    List of header values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector string

    Header name.

    matchValues string[]

    List of header values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector str

    Header name.

    match_values Sequence[str]

    List of header values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    selector String

    Header name.

    matchValues List<String>

    List of header values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleRequestMethodCondition, EndpointDeliveryRuleRequestMethodConditionArgs

    MatchValues List<string>

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    MatchValues []string

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    matchValues List<String>

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    matchValues string[]

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    negateCondition boolean

    Defaults to false.

    operator string

    Valid values are Equal.

    match_values Sequence[str]

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    negate_condition bool

    Defaults to false.

    operator str

    Valid values are Equal.

    matchValues List<String>

    Valid values are DELETE, GET, HEAD, OPTIONS, POST and PUT.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    EndpointDeliveryRuleRequestSchemeCondition, EndpointDeliveryRuleRequestSchemeConditionArgs

    MatchValues List<string>

    Valid values are HTTP and HTTPS.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    MatchValues []string

    Valid values are HTTP and HTTPS.

    NegateCondition bool

    Defaults to false.

    Operator string

    Valid values are Equal.

    matchValues List<String>

    Valid values are HTTP and HTTPS.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    matchValues string[]

    Valid values are HTTP and HTTPS.

    negateCondition boolean

    Defaults to false.

    operator string

    Valid values are Equal.

    match_values Sequence[str]

    Valid values are HTTP and HTTPS.

    negate_condition bool

    Defaults to false.

    operator str

    Valid values are Equal.

    matchValues List<String>

    Valid values are HTTP and HTTPS.

    negateCondition Boolean

    Defaults to false.

    operator String

    Valid values are Equal.

    EndpointDeliveryRuleRequestUriCondition, EndpointDeliveryRuleRequestUriConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlFileExtensionCondition, EndpointDeliveryRuleUrlFileExtensionConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlFileNameCondition, EndpointDeliveryRuleUrlFileNameConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan and LessThanOrEqual.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlPathCondition, EndpointDeliveryRuleUrlPathConditionArgs

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    MatchValues List<string>

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms List<string>

    A list of transforms. Valid values are Lowercase and Uppercase.

    Operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    MatchValues []string

    List of string values. This is required if operator is not Any.

    NegateCondition bool

    Defaults to false.

    Transforms []string

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator string

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    matchValues string[]

    List of string values. This is required if operator is not Any.

    negateCondition boolean

    Defaults to false.

    transforms string[]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator str

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    match_values Sequence[str]

    List of string values. This is required if operator is not Any.

    negate_condition bool

    Defaults to false.

    transforms Sequence[str]

    A list of transforms. Valid values are Lowercase and Uppercase.

    operator String

    Valid values are Any, BeginsWith, Contains, EndsWith, Equal, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual, RegEx and Wildcard.

    matchValues List<String>

    List of string values. This is required if operator is not Any.

    negateCondition Boolean

    Defaults to false.

    transforms List<String>

    A list of transforms. Valid values are Lowercase and Uppercase.

    EndpointDeliveryRuleUrlRedirectAction, EndpointDeliveryRuleUrlRedirectActionArgs

    RedirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    Fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    Hostname string

    Specifies the hostname part of the URL.

    Path string

    Specifies the path part of the URL. This value must begin with a /.

    Protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    QueryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    RedirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    Fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    Hostname string

    Specifies the hostname part of the URL.

    Path string

    Specifies the path part of the URL. This value must begin with a /.

    Protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    QueryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType String

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment String

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname String

    Specifies the hostname part of the URL.

    path String

    Specifies the path part of the URL. This value must begin with a /.

    protocol String

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString String

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname string

    Specifies the hostname part of the URL.

    path string

    Specifies the path part of the URL. This value must begin with a /.

    protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirect_type str

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment str

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname str

    Specifies the hostname part of the URL.

    path str

    Specifies the path part of the URL. This value must begin with a /.

    protocol str

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    query_string str

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType String

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment String

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname String

    Specifies the hostname part of the URL.

    path String

    Specifies the path part of the URL. This value must begin with a /.

    protocol String

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString String

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    EndpointDeliveryRuleUrlRewriteAction, EndpointDeliveryRuleUrlRewriteActionArgs

    Destination string

    This value must start with a / and can't be longer than 260 characters.

    SourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    PreserveUnmatchedPath bool

    Defaults to true.

    Destination string

    This value must start with a / and can't be longer than 260 characters.

    SourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    PreserveUnmatchedPath bool

    Defaults to true.

    destination String

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern String

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath Boolean

    Defaults to true.

    destination string

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath boolean

    Defaults to true.

    destination str

    This value must start with a / and can't be longer than 260 characters.

    source_pattern str

    This value must start with a / and can't be longer than 260 characters.

    preserve_unmatched_path bool

    Defaults to true.

    destination String

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern String

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath Boolean

    Defaults to true.

    EndpointGeoFilter, EndpointGeoFilterArgs

    Action string

    The Action of the Geo Filter. Possible values include Allow and Block.

    CountryCodes List<string>

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    RelativePath string

    The relative path applicable to geo filter.

    Action string

    The Action of the Geo Filter. Possible values include Allow and Block.

    CountryCodes []string

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    RelativePath string

    The relative path applicable to geo filter.

    action String

    The Action of the Geo Filter. Possible values include Allow and Block.

    countryCodes List<String>

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    relativePath String

    The relative path applicable to geo filter.

    action string

    The Action of the Geo Filter. Possible values include Allow and Block.

    countryCodes string[]

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    relativePath string

    The relative path applicable to geo filter.

    action str

    The Action of the Geo Filter. Possible values include Allow and Block.

    country_codes Sequence[str]

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    relative_path str

    The relative path applicable to geo filter.

    action String

    The Action of the Geo Filter. Possible values include Allow and Block.

    countryCodes List<String>

    A List of two letter country codes (e.g. US, GB) to be associated with this Geo Filter.

    relativePath String

    The relative path applicable to geo filter.

    EndpointGlobalDeliveryRule, EndpointGlobalDeliveryRuleArgs

    CacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    CacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    ModifyRequestHeaderActions List<EndpointGlobalDeliveryRuleModifyRequestHeaderAction>

    A modify_request_header_action block as defined below.

    ModifyResponseHeaderActions List<EndpointGlobalDeliveryRuleModifyResponseHeaderAction>

    A modify_response_header_action block as defined below.

    UrlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    UrlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    CacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    CacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    ModifyRequestHeaderActions []EndpointGlobalDeliveryRuleModifyRequestHeaderAction

    A modify_request_header_action block as defined below.

    ModifyResponseHeaderActions []EndpointGlobalDeliveryRuleModifyResponseHeaderAction

    A modify_response_header_action block as defined below.

    UrlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    UrlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    cacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    modifyRequestHeaderActions List<EndpointGlobalDeliveryRuleModifyRequestHeaderAction>

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions List<EndpointGlobalDeliveryRuleModifyResponseHeaderAction>

    A modify_response_header_action block as defined below.

    urlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    urlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    cacheExpirationAction EndpointGlobalDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction EndpointGlobalDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    modifyRequestHeaderActions EndpointGlobalDeliveryRuleModifyRequestHeaderAction[]

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions EndpointGlobalDeliveryRuleModifyResponseHeaderAction[]

    A modify_response_header_action block as defined below.

    urlRedirectAction EndpointGlobalDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    urlRewriteAction EndpointGlobalDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    cache_expiration_action EndpointGlobalDeliveryRuleCacheExpirationAction

    A cache_expiration_action block as defined above.

    cache_key_query_string_action EndpointGlobalDeliveryRuleCacheKeyQueryStringAction

    A cache_key_query_string_action block as defined above.

    modify_request_header_actions Sequence[EndpointGlobalDeliveryRuleModifyRequestHeaderAction]

    A modify_request_header_action block as defined below.

    modify_response_header_actions Sequence[EndpointGlobalDeliveryRuleModifyResponseHeaderAction]

    A modify_response_header_action block as defined below.

    url_redirect_action EndpointGlobalDeliveryRuleUrlRedirectAction

    A url_redirect_action block as defined below.

    url_rewrite_action EndpointGlobalDeliveryRuleUrlRewriteAction

    A url_rewrite_action block as defined below.

    cacheExpirationAction Property Map

    A cache_expiration_action block as defined above.

    cacheKeyQueryStringAction Property Map

    A cache_key_query_string_action block as defined above.

    modifyRequestHeaderActions List<Property Map>

    A modify_request_header_action block as defined below.

    modifyResponseHeaderActions List<Property Map>

    A modify_response_header_action block as defined below.

    urlRedirectAction Property Map

    A url_redirect_action block as defined below.

    urlRewriteAction Property Map

    A url_rewrite_action block as defined below.

    EndpointGlobalDeliveryRuleCacheExpirationAction, EndpointGlobalDeliveryRuleCacheExpirationActionArgs

    Behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    Duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    Behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    Duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior String

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration String

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior string

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration string

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior str

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration str

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    behavior String

    The behavior of the cache. Valid values are BypassCache, Override and SetIfMissing.

    duration String

    Duration of the cache. Only allowed when behavior is set to Override or SetIfMissing. Format: [d.]hh:mm:ss

    EndpointGlobalDeliveryRuleCacheKeyQueryStringAction, EndpointGlobalDeliveryRuleCacheKeyQueryStringActionArgs

    Behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    Parameters string

    Comma separated list of parameter values.

    Behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    Parameters string

    Comma separated list of parameter values.

    behavior String

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters String

    Comma separated list of parameter values.

    behavior string

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters string

    Comma separated list of parameter values.

    behavior str

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters str

    Comma separated list of parameter values.

    behavior String

    The behavior of the cache key for query strings. Valid values are Exclude, ExcludeAll, Include and IncludeAll.

    parameters String

    Comma separated list of parameter values.

    EndpointGlobalDeliveryRuleModifyRequestHeaderAction, EndpointGlobalDeliveryRuleModifyRequestHeaderActionArgs

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name string

    The header name.

    value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action str

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name str

    The header name.

    value str

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointGlobalDeliveryRuleModifyResponseHeaderAction, EndpointGlobalDeliveryRuleModifyResponseHeaderActionArgs

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    Action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    Name string

    The header name.

    Value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    action string

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name string

    The header name.

    value string

    The value of the header. Only needed when action is set to Append or overwrite.

    action str

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name str

    The header name.

    value str

    The value of the header. Only needed when action is set to Append or overwrite.

    action String

    Action to be executed on a header value. Valid values are Append, Delete and Overwrite.

    name String

    The header name.

    value String

    The value of the header. Only needed when action is set to Append or overwrite.

    EndpointGlobalDeliveryRuleUrlRedirectAction, EndpointGlobalDeliveryRuleUrlRedirectActionArgs

    RedirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    Fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    Hostname string

    Specifies the hostname part of the URL.

    Path string

    Specifies the path part of the URL. This value must begin with a /.

    Protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    QueryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    RedirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    Fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    Hostname string

    Specifies the hostname part of the URL.

    Path string

    Specifies the path part of the URL. This value must begin with a /.

    Protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    QueryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType String

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment String

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname String

    Specifies the hostname part of the URL.

    path String

    Specifies the path part of the URL. This value must begin with a /.

    protocol String

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString String

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType string

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment string

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname string

    Specifies the hostname part of the URL.

    path string

    Specifies the path part of the URL. This value must begin with a /.

    protocol string

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString string

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirect_type str

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment str

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname str

    Specifies the hostname part of the URL.

    path str

    Specifies the path part of the URL. This value must begin with a /.

    protocol str

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    query_string str

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    redirectType String

    Type of the redirect. Valid values are Found, Moved, PermanentRedirect and TemporaryRedirect.

    fragment String

    Specifies the fragment part of the URL. This value must not start with a #.

    hostname String

    Specifies the hostname part of the URL.

    path String

    Specifies the path part of the URL. This value must begin with a /.

    protocol String

    Specifies the protocol part of the URL. Valid values are MatchRequest, Http and Https.

    queryString String

    Specifies the query string part of the URL. This value must not start with a ? or & and must be in <key>=<value> format separated by &.

    EndpointGlobalDeliveryRuleUrlRewriteAction, EndpointGlobalDeliveryRuleUrlRewriteActionArgs

    Destination string

    This value must start with a / and can't be longer than 260 characters.

    SourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    PreserveUnmatchedPath bool

    Defaults to true.

    Destination string

    This value must start with a / and can't be longer than 260 characters.

    SourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    PreserveUnmatchedPath bool

    Defaults to true.

    destination String

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern String

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath Boolean

    Defaults to true.

    destination string

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern string

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath boolean

    Defaults to true.

    destination str

    This value must start with a / and can't be longer than 260 characters.

    source_pattern str

    This value must start with a / and can't be longer than 260 characters.

    preserve_unmatched_path bool

    Defaults to true.

    destination String

    This value must start with a / and can't be longer than 260 characters.

    sourcePattern String

    This value must start with a / and can't be longer than 260 characters.

    preserveUnmatchedPath Boolean

    Defaults to true.

    EndpointOrigin, EndpointOriginArgs

    HostName string

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    Name string

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    HttpPort int

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    HttpsPort int

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    HostName string

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    Name string

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    HttpPort int

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    HttpsPort int

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    hostName String

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    name String

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    httpPort Integer

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    httpsPort Integer

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    hostName string

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    name string

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    httpPort number

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    httpsPort number

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    host_name str

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    name str

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    http_port int

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    https_port int

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    hostName String

    A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

    name String

    The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

    httpPort Number

    The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

    httpsPort Number

    The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi