azure-native.cdn.Endpoint
Explore with Pulumi AI
CDN endpoint is the entity within a CDN profile containing configuration information such as origin, protocol, content caching and delivery behavior. The CDN endpoint uses the URL format
Example Usage
Endpoints_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var endpoint = new AzureNative.Cdn.Endpoint("endpoint", new()
{
ContentTypesToCompress = new[]
{
"text/html",
"application/octet-stream",
},
DefaultOriginGroup = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1",
},
DeliveryPolicy = new AzureNative.Cdn.Inputs.EndpointPropertiesUpdateParametersDeliveryPolicyArgs
{
Description = "Test description for a policy.",
Rules = new[]
{
new AzureNative.Cdn.Inputs.DeliveryRuleArgs
{
Actions =
{
new AzureNative.Cdn.Inputs.DeliveryRuleCacheExpirationActionArgs
{
Name = "CacheExpiration",
Parameters = new AzureNative.Cdn.Inputs.CacheExpirationActionParametersArgs
{
CacheBehavior = "Override",
CacheDuration = "10:10:09",
CacheType = "All",
OdataType = "#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters",
},
},
new AzureNative.Cdn.Inputs.DeliveryRuleResponseHeaderActionArgs
{
Name = "ModifyResponseHeader",
Parameters = new AzureNative.Cdn.Inputs.HeaderActionParametersArgs
{
HeaderAction = "Overwrite",
HeaderName = "Access-Control-Allow-Origin",
OdataType = "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
Value = "*",
},
},
new AzureNative.Cdn.Inputs.DeliveryRuleRequestHeaderActionArgs
{
Name = "ModifyRequestHeader",
Parameters = new AzureNative.Cdn.Inputs.HeaderActionParametersArgs
{
HeaderAction = "Overwrite",
HeaderName = "Accept-Encoding",
OdataType = "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
Value = "gzip",
},
},
},
Conditions = new[]
{
new AzureNative.Cdn.Inputs.DeliveryRuleRemoteAddressConditionArgs
{
Name = "RemoteAddress",
Parameters = new AzureNative.Cdn.Inputs.RemoteAddressMatchConditionParametersArgs
{
MatchValues = new[]
{
"192.168.1.0/24",
"10.0.0.0/24",
},
NegateCondition = true,
OdataType = "#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters",
Operator = "IPMatch",
},
},
},
Name = "rule1",
Order = 1,
},
},
},
EndpointName = "endpoint1",
IsCompressionEnabled = true,
IsHttpAllowed = true,
IsHttpsAllowed = true,
Location = "WestUs",
OriginGroups = new[]
{
new AzureNative.Cdn.Inputs.DeepCreatedOriginGroupArgs
{
HealthProbeSettings = new AzureNative.Cdn.Inputs.HealthProbeParametersArgs
{
ProbeIntervalInSeconds = 120,
ProbePath = "/health.aspx",
ProbeProtocol = AzureNative.Cdn.ProbeProtocol.Http,
ProbeRequestType = AzureNative.Cdn.HealthProbeRequestType.GET,
},
Name = "originGroup1",
Origins = new[]
{
new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1",
},
new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2",
},
},
ResponseBasedOriginErrorDetectionSettings = new AzureNative.Cdn.Inputs.ResponseBasedOriginErrorDetectionParametersArgs
{
ResponseBasedDetectedErrorTypes = AzureNative.Cdn.ResponseBasedDetectedErrorTypes.TcpErrorsOnly,
ResponseBasedFailoverThresholdPercentage = 10,
},
},
},
OriginHostHeader = "www.bing.com",
OriginPath = "/photos",
Origins = new[]
{
new AzureNative.Cdn.Inputs.DeepCreatedOriginArgs
{
Enabled = true,
HostName = "www.someDomain1.net",
HttpPort = 80,
HttpsPort = 443,
Name = "origin1",
OriginHostHeader = "www.someDomain1.net",
Priority = 1,
Weight = 50,
},
new AzureNative.Cdn.Inputs.DeepCreatedOriginArgs
{
Enabled = true,
HostName = "www.someDomain2.net",
HttpPort = 80,
HttpsPort = 443,
Name = "origin2",
OriginHostHeader = "www.someDomain2.net",
Priority = 2,
Weight = 50,
},
},
ProfileName = "profile1",
QueryStringCachingBehavior = AzureNative.Cdn.QueryStringCachingBehavior.BypassCaching,
ResourceGroupName = "RG",
Tags =
{
{ "key1", "value1" },
},
});
});
package main
import (
cdn "github.com/pulumi/pulumi-azure-native-sdk/cdn"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cdn.NewEndpoint(ctx, "endpoint", &cdn.EndpointArgs{
ContentTypesToCompress: pulumi.StringArray{
pulumi.String("text/html"),
pulumi.String("application/octet-stream"),
},
DefaultOriginGroup: &cdn.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1"),
},
DeliveryPolicy: cdn.EndpointPropertiesUpdateParametersResponseDeliveryPolicy{
Description: pulumi.String("Test description for a policy."),
Rules: []cdn.DeliveryRuleArgs{
{
Actions: pulumi.AnyArray{
{
Name: "CacheExpiration",
Parameters: {
CacheBehavior: "Override",
CacheDuration: "10:10:09",
CacheType: "All",
OdataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters",
},
},
{
Name: "ModifyResponseHeader",
Parameters: {
HeaderAction: "Overwrite",
HeaderName: "Access-Control-Allow-Origin",
OdataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
Value: "*",
},
},
{
Name: "ModifyRequestHeader",
Parameters: {
HeaderAction: "Overwrite",
HeaderName: "Accept-Encoding",
OdataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
Value: "gzip",
},
},
},
Conditions: pulumi.AnyArray{
{
Name: "RemoteAddress",
Parameters: {
MatchValues: []string{
"192.168.1.0/24",
"10.0.0.0/24",
},
NegateCondition: true,
OdataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters",
Operator: "IPMatch",
},
},
},
Name: pulumi.String("rule1"),
Order: pulumi.Int(1),
},
},
},
EndpointName: pulumi.String("endpoint1"),
IsCompressionEnabled: pulumi.Bool(true),
IsHttpAllowed: pulumi.Bool(true),
IsHttpsAllowed: pulumi.Bool(true),
Location: pulumi.String("WestUs"),
OriginGroups: []cdn.DeepCreatedOriginGroupArgs{
{
HealthProbeSettings: {
ProbeIntervalInSeconds: pulumi.Int(120),
ProbePath: pulumi.String("/health.aspx"),
ProbeProtocol: cdn.ProbeProtocolHttp,
ProbeRequestType: cdn.HealthProbeRequestTypeGET,
},
Name: pulumi.String("originGroup1"),
Origins: cdn.ResourceReferenceArray{
{
Id: pulumi.String("/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1"),
},
{
Id: pulumi.String("/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2"),
},
},
ResponseBasedOriginErrorDetectionSettings: {
ResponseBasedDetectedErrorTypes: cdn.ResponseBasedDetectedErrorTypesTcpErrorsOnly,
ResponseBasedFailoverThresholdPercentage: pulumi.Int(10),
},
},
},
OriginHostHeader: pulumi.String("www.bing.com"),
OriginPath: pulumi.String("/photos"),
Origins: []cdn.DeepCreatedOriginArgs{
{
Enabled: pulumi.Bool(true),
HostName: pulumi.String("www.someDomain1.net"),
HttpPort: pulumi.Int(80),
HttpsPort: pulumi.Int(443),
Name: pulumi.String("origin1"),
OriginHostHeader: pulumi.String("www.someDomain1.net"),
Priority: pulumi.Int(1),
Weight: pulumi.Int(50),
},
{
Enabled: pulumi.Bool(true),
HostName: pulumi.String("www.someDomain2.net"),
HttpPort: pulumi.Int(80),
HttpsPort: pulumi.Int(443),
Name: pulumi.String("origin2"),
OriginHostHeader: pulumi.String("www.someDomain2.net"),
Priority: pulumi.Int(2),
Weight: pulumi.Int(50),
},
},
ProfileName: pulumi.String("profile1"),
QueryStringCachingBehavior: cdn.QueryStringCachingBehaviorBypassCaching,
ResourceGroupName: pulumi.String("RG"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cdn.Endpoint;
import com.pulumi.azurenative.cdn.EndpointArgs;
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 endpoint = new Endpoint("endpoint", EndpointArgs.builder()
.contentTypesToCompress(
"text/html",
"application/octet-stream")
.defaultOriginGroup(Map.of("id", "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1"))
.deliveryPolicy(Map.ofEntries(
Map.entry("description", "Test description for a policy."),
Map.entry("rules", Map.ofEntries(
Map.entry("actions",
Map.ofEntries(
Map.entry("name", "CacheExpiration"),
Map.entry("parameters", Map.ofEntries(
Map.entry("cacheBehavior", "Override"),
Map.entry("cacheDuration", "10:10:09"),
Map.entry("cacheType", "All"),
Map.entry("odataType", "#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters")
))
),
Map.ofEntries(
Map.entry("name", "ModifyResponseHeader"),
Map.entry("parameters", Map.ofEntries(
Map.entry("headerAction", "Overwrite"),
Map.entry("headerName", "Access-Control-Allow-Origin"),
Map.entry("odataType", "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters"),
Map.entry("value", "*")
))
),
Map.ofEntries(
Map.entry("name", "ModifyRequestHeader"),
Map.entry("parameters", Map.ofEntries(
Map.entry("headerAction", "Overwrite"),
Map.entry("headerName", "Accept-Encoding"),
Map.entry("odataType", "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters"),
Map.entry("value", "gzip")
))
)),
Map.entry("conditions", Map.ofEntries(
Map.entry("name", "RemoteAddress"),
Map.entry("parameters", Map.ofEntries(
Map.entry("matchValues",
"192.168.1.0/24",
"10.0.0.0/24"),
Map.entry("negateCondition", true),
Map.entry("odataType", "#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters"),
Map.entry("operator", "IPMatch")
))
)),
Map.entry("name", "rule1"),
Map.entry("order", 1)
))
))
.endpointName("endpoint1")
.isCompressionEnabled(true)
.isHttpAllowed(true)
.isHttpsAllowed(true)
.location("WestUs")
.originGroups(Map.ofEntries(
Map.entry("healthProbeSettings", Map.ofEntries(
Map.entry("probeIntervalInSeconds", 120),
Map.entry("probePath", "/health.aspx"),
Map.entry("probeProtocol", "Http"),
Map.entry("probeRequestType", "GET")
)),
Map.entry("name", "originGroup1"),
Map.entry("origins",
Map.of("id", "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1"),
Map.of("id", "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2")),
Map.entry("responseBasedOriginErrorDetectionSettings", Map.ofEntries(
Map.entry("responseBasedDetectedErrorTypes", "TcpErrorsOnly"),
Map.entry("responseBasedFailoverThresholdPercentage", 10)
))
))
.originHostHeader("www.bing.com")
.originPath("/photos")
.origins(
Map.ofEntries(
Map.entry("enabled", true),
Map.entry("hostName", "www.someDomain1.net"),
Map.entry("httpPort", 80),
Map.entry("httpsPort", 443),
Map.entry("name", "origin1"),
Map.entry("originHostHeader", "www.someDomain1.net"),
Map.entry("priority", 1),
Map.entry("weight", 50)
),
Map.ofEntries(
Map.entry("enabled", true),
Map.entry("hostName", "www.someDomain2.net"),
Map.entry("httpPort", 80),
Map.entry("httpsPort", 443),
Map.entry("name", "origin2"),
Map.entry("originHostHeader", "www.someDomain2.net"),
Map.entry("priority", 2),
Map.entry("weight", 50)
))
.profileName("profile1")
.queryStringCachingBehavior("BypassCaching")
.resourceGroupName("RG")
.tags(Map.of("key1", "value1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
endpoint = azure_native.cdn.Endpoint("endpoint",
content_types_to_compress=[
"text/html",
"application/octet-stream",
],
default_origin_group=azure_native.cdn.ResourceReferenceArgs(
id="/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1",
),
delivery_policy=azure_native.cdn.EndpointPropertiesUpdateParametersResponseDeliveryPolicyArgs(
description="Test description for a policy.",
rules=[{
"actions": [
azure_native.cdn.DeliveryRuleCacheExpirationActionArgs(
name="CacheExpiration",
parameters=azure_native.cdn.CacheExpirationActionParametersArgs(
cache_behavior="Override",
cache_duration="10:10:09",
cache_type="All",
odata_type="#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters",
),
),
azure_native.cdn.DeliveryRuleResponseHeaderActionArgs(
name="ModifyResponseHeader",
parameters=azure_native.cdn.HeaderActionParametersArgs(
header_action="Overwrite",
header_name="Access-Control-Allow-Origin",
odata_type="#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
value="*",
),
),
azure_native.cdn.DeliveryRuleRequestHeaderActionArgs(
name="ModifyRequestHeader",
parameters=azure_native.cdn.HeaderActionParametersArgs(
header_action="Overwrite",
header_name="Accept-Encoding",
odata_type="#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
value="gzip",
),
),
],
"conditions": [azure_native.cdn.DeliveryRuleRemoteAddressConditionArgs(
name="RemoteAddress",
parameters=azure_native.cdn.RemoteAddressMatchConditionParametersArgs(
match_values=[
"192.168.1.0/24",
"10.0.0.0/24",
],
negate_condition=True,
odata_type="#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters",
operator="IPMatch",
),
)],
"name": "rule1",
"order": 1,
}],
),
endpoint_name="endpoint1",
is_compression_enabled=True,
is_http_allowed=True,
is_https_allowed=True,
location="WestUs",
origin_groups=[{
"healthProbeSettings": azure_native.cdn.HealthProbeParametersArgs(
probe_interval_in_seconds=120,
probe_path="/health.aspx",
probe_protocol=azure_native.cdn.ProbeProtocol.HTTP,
probe_request_type=azure_native.cdn.HealthProbeRequestType.GET,
),
"name": "originGroup1",
"origins": [
azure_native.cdn.ResourceReferenceArgs(
id="/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1",
),
azure_native.cdn.ResourceReferenceArgs(
id="/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2",
),
],
"responseBasedOriginErrorDetectionSettings": azure_native.cdn.ResponseBasedOriginErrorDetectionParametersArgs(
response_based_detected_error_types=azure_native.cdn.ResponseBasedDetectedErrorTypes.TCP_ERRORS_ONLY,
response_based_failover_threshold_percentage=10,
),
}],
origin_host_header="www.bing.com",
origin_path="/photos",
origins=[
azure_native.cdn.DeepCreatedOriginArgs(
enabled=True,
host_name="www.someDomain1.net",
http_port=80,
https_port=443,
name="origin1",
origin_host_header="www.someDomain1.net",
priority=1,
weight=50,
),
azure_native.cdn.DeepCreatedOriginArgs(
enabled=True,
host_name="www.someDomain2.net",
http_port=80,
https_port=443,
name="origin2",
origin_host_header="www.someDomain2.net",
priority=2,
weight=50,
),
],
profile_name="profile1",
query_string_caching_behavior=azure_native.cdn.QueryStringCachingBehavior.BYPASS_CACHING,
resource_group_name="RG",
tags={
"key1": "value1",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const endpoint = new azure_native.cdn.Endpoint("endpoint", {
contentTypesToCompress: [
"text/html",
"application/octet-stream",
],
defaultOriginGroup: {
id: "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1",
},
deliveryPolicy: {
description: "Test description for a policy.",
rules: [{
actions: [
{
name: "CacheExpiration",
parameters: {
cacheBehavior: "Override",
cacheDuration: "10:10:09",
cacheType: "All",
odataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters",
},
},
{
name: "ModifyResponseHeader",
parameters: {
headerAction: "Overwrite",
headerName: "Access-Control-Allow-Origin",
odataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
value: "*",
},
},
{
name: "ModifyRequestHeader",
parameters: {
headerAction: "Overwrite",
headerName: "Accept-Encoding",
odataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters",
value: "gzip",
},
},
],
conditions: [{
name: "RemoteAddress",
parameters: {
matchValues: [
"192.168.1.0/24",
"10.0.0.0/24",
],
negateCondition: true,
odataType: "#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters",
operator: "IPMatch",
},
}],
name: "rule1",
order: 1,
}],
},
endpointName: "endpoint1",
isCompressionEnabled: true,
isHttpAllowed: true,
isHttpsAllowed: true,
location: "WestUs",
originGroups: [{
healthProbeSettings: {
probeIntervalInSeconds: 120,
probePath: "/health.aspx",
probeProtocol: azure_native.cdn.ProbeProtocol.Http,
probeRequestType: azure_native.cdn.HealthProbeRequestType.GET,
},
name: "originGroup1",
origins: [
{
id: "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1",
},
{
id: "/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2",
},
],
responseBasedOriginErrorDetectionSettings: {
responseBasedDetectedErrorTypes: azure_native.cdn.ResponseBasedDetectedErrorTypes.TcpErrorsOnly,
responseBasedFailoverThresholdPercentage: 10,
},
}],
originHostHeader: "www.bing.com",
originPath: "/photos",
origins: [
{
enabled: true,
hostName: "www.someDomain1.net",
httpPort: 80,
httpsPort: 443,
name: "origin1",
originHostHeader: "www.someDomain1.net",
priority: 1,
weight: 50,
},
{
enabled: true,
hostName: "www.someDomain2.net",
httpPort: 80,
httpsPort: 443,
name: "origin2",
originHostHeader: "www.someDomain2.net",
priority: 2,
weight: 50,
},
],
profileName: "profile1",
queryStringCachingBehavior: azure_native.cdn.QueryStringCachingBehavior.BypassCaching,
resourceGroupName: "RG",
tags: {
key1: "value1",
},
});
resources:
endpoint:
type: azure-native:cdn:Endpoint
properties:
contentTypesToCompress:
- text/html
- application/octet-stream
defaultOriginGroup:
id: /subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/originGroups/originGroup1
deliveryPolicy:
description: Test description for a policy.
rules:
- actions:
- name: CacheExpiration
parameters:
cacheBehavior: Override
cacheDuration: 10:10:09
cacheType: All
odataType: '#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters'
- name: ModifyResponseHeader
parameters:
headerAction: Overwrite
headerName: Access-Control-Allow-Origin
odataType: '#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters'
value: '*'
- name: ModifyRequestHeader
parameters:
headerAction: Overwrite
headerName: Accept-Encoding
odataType: '#Microsoft.Azure.Cdn.Models.DeliveryRuleHeaderActionParameters'
value: gzip
conditions:
- name: RemoteAddress
parameters:
matchValues:
- 192.168.1.0/24
- 10.0.0.0/24
negateCondition: true
odataType: '#Microsoft.Azure.Cdn.Models.DeliveryRuleRemoteAddressConditionParameters'
operator: IPMatch
name: rule1
order: 1
endpointName: endpoint1
isCompressionEnabled: true
isHttpAllowed: true
isHttpsAllowed: true
location: WestUs
originGroups:
- healthProbeSettings:
probeIntervalInSeconds: 120
probePath: /health.aspx
probeProtocol: Http
probeRequestType: GET
name: originGroup1
origins:
- id: /subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin1
- id: /subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/origins/origin2
responseBasedOriginErrorDetectionSettings:
responseBasedDetectedErrorTypes: TcpErrorsOnly
responseBasedFailoverThresholdPercentage: 10
originHostHeader: www.bing.com
originPath: /photos
origins:
- enabled: true
hostName: www.someDomain1.net
httpPort: 80
httpsPort: 443
name: origin1
originHostHeader: www.someDomain1.net
priority: 1
weight: 50
- enabled: true
hostName: www.someDomain2.net
httpPort: 80
httpsPort: 443
name: origin2
originHostHeader: www.someDomain2.net
priority: 2
weight: 50
profileName: profile1
queryStringCachingBehavior: BypassCaching
resourceGroupName: RG
tags:
key1: value1
Create Endpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
@overload
def Endpoint(resource_name: str,
args: EndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Endpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
origins: Optional[Sequence[DeepCreatedOriginArgs]] = None,
resource_group_name: Optional[str] = None,
profile_name: Optional[str] = None,
is_compression_enabled: Optional[bool] = None,
origin_path: Optional[str] = None,
content_types_to_compress: Optional[Sequence[str]] = None,
is_http_allowed: Optional[bool] = None,
is_https_allowed: Optional[bool] = None,
location: Optional[str] = None,
optimization_type: Optional[Union[str, OptimizationType]] = None,
origin_groups: Optional[Sequence[DeepCreatedOriginGroupArgs]] = None,
origin_host_header: Optional[str] = None,
geo_filters: Optional[Sequence[GeoFilterArgs]] = None,
endpoint_name: Optional[str] = None,
probe_path: Optional[str] = None,
delivery_policy: Optional[EndpointPropertiesUpdateParametersDeliveryPolicyArgs] = None,
query_string_caching_behavior: Optional[QueryStringCachingBehavior] = None,
default_origin_group: Optional[ResourceReferenceArgs] = None,
tags: Optional[Mapping[str, str]] = None,
url_signing_keys: Optional[Sequence[UrlSigningKeyArgs]] = None,
web_application_firewall_policy_link: Optional[EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLinkArgs] = 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-native:cdn:Endpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var endpointResource = new AzureNative.Cdn.Endpoint("endpointResource", new()
{
Origins = new[]
{
{
{ "hostName", "string" },
{ "name", "string" },
{ "enabled", false },
{ "httpPort", 0 },
{ "httpsPort", 0 },
{ "originHostHeader", "string" },
{ "priority", 0 },
{ "privateLinkAlias", "string" },
{ "privateLinkApprovalMessage", "string" },
{ "privateLinkLocation", "string" },
{ "privateLinkResourceId", "string" },
{ "weight", 0 },
},
},
ResourceGroupName = "string",
ProfileName = "string",
IsCompressionEnabled = false,
OriginPath = "string",
ContentTypesToCompress = new[]
{
"string",
},
IsHttpAllowed = false,
IsHttpsAllowed = false,
Location = "string",
OptimizationType = "string",
OriginGroups = new[]
{
{
{ "name", "string" },
{ "origins", new[]
{
{
{ "id", "string" },
},
} },
{ "healthProbeSettings",
{
{ "probeIntervalInSeconds", 0 },
{ "probePath", "string" },
{ "probeProtocol", "NotSet" },
{ "probeRequestType", "NotSet" },
} },
{ "responseBasedOriginErrorDetectionSettings",
{
{ "httpErrorRanges", new[]
{
{
{ "begin", 0 },
{ "end", 0 },
},
} },
{ "responseBasedDetectedErrorTypes", "None" },
{ "responseBasedFailoverThresholdPercentage", 0 },
} },
{ "trafficRestorationTimeToHealedOrNewEndpointsInMinutes", 0 },
},
},
OriginHostHeader = "string",
GeoFilters = new[]
{
{
{ "action", "Block" },
{ "countryCodes", new[]
{
"string",
} },
{ "relativePath", "string" },
},
},
EndpointName = "string",
ProbePath = "string",
DeliveryPolicy =
{
{ "rules", new[]
{
{
{ "actions", new[]
{
{
{ "name", "CacheExpiration" },
{ "parameters",
{
{ "cacheBehavior", "string" },
{ "cacheType", "string" },
{ "odataType", "string" },
{ "cacheDuration", "string" },
} },
},
} },
{ "order", 0 },
{ "conditions", new[]
{
{
{ "name", "Cookies" },
{ "parameters",
{
{ "odataType", "string" },
{ "operator", "string" },
{ "matchValues", new[]
{
"string",
} },
{ "negateCondition", false },
{ "selector", "string" },
{ "transforms", new[]
{
"string",
} },
} },
},
} },
{ "name", "string" },
},
} },
{ "description", "string" },
},
QueryStringCachingBehavior = "IgnoreQueryString",
DefaultOriginGroup =
{
{ "id", "string" },
},
Tags =
{
{ "string", "string" },
},
UrlSigningKeys = new[]
{
{
{ "keyId", "string" },
{ "keySourceParameters",
{
{ "odataType", "string" },
{ "resourceGroupName", "string" },
{ "secretName", "string" },
{ "secretVersion", "string" },
{ "subscriptionId", "string" },
{ "vaultName", "string" },
} },
},
},
WebApplicationFirewallPolicyLink =
{
{ "id", "string" },
},
});
example, err := cdn.NewEndpoint(ctx, "endpointResource", &cdn.EndpointArgs{
Origins: []map[string]interface{}{
map[string]interface{}{
"hostName": "string",
"name": "string",
"enabled": false,
"httpPort": 0,
"httpsPort": 0,
"originHostHeader": "string",
"priority": 0,
"privateLinkAlias": "string",
"privateLinkApprovalMessage": "string",
"privateLinkLocation": "string",
"privateLinkResourceId": "string",
"weight": 0,
},
},
ResourceGroupName: "string",
ProfileName: "string",
IsCompressionEnabled: false,
OriginPath: "string",
ContentTypesToCompress: []string{
"string",
},
IsHttpAllowed: false,
IsHttpsAllowed: false,
Location: "string",
OptimizationType: "string",
OriginGroups: []map[string]interface{}{
map[string]interface{}{
"name": "string",
"origins": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"healthProbeSettings": map[string]interface{}{
"probeIntervalInSeconds": 0,
"probePath": "string",
"probeProtocol": "NotSet",
"probeRequestType": "NotSet",
},
"responseBasedOriginErrorDetectionSettings": map[string]interface{}{
"httpErrorRanges": []map[string]interface{}{
map[string]interface{}{
"begin": 0,
"end": 0,
},
},
"responseBasedDetectedErrorTypes": "None",
"responseBasedFailoverThresholdPercentage": 0,
},
"trafficRestorationTimeToHealedOrNewEndpointsInMinutes": 0,
},
},
OriginHostHeader: "string",
GeoFilters: []map[string]interface{}{
map[string]interface{}{
"action": "Block",
"countryCodes": []string{
"string",
},
"relativePath": "string",
},
},
EndpointName: "string",
ProbePath: "string",
DeliveryPolicy: map[string]interface{}{
"rules": []map[string]interface{}{
map[string]interface{}{
"actions": []map[string]interface{}{
map[string]interface{}{
"name": "CacheExpiration",
"parameters": map[string]interface{}{
"cacheBehavior": "string",
"cacheType": "string",
"odataType": "string",
"cacheDuration": "string",
},
},
},
"order": 0,
"conditions": []map[string]interface{}{
map[string]interface{}{
"name": "Cookies",
"parameters": map[string]interface{}{
"odataType": "string",
"operator": "string",
"matchValues": []string{
"string",
},
"negateCondition": false,
"selector": "string",
"transforms": []string{
"string",
},
},
},
},
"name": "string",
},
},
"description": "string",
},
QueryStringCachingBehavior: "IgnoreQueryString",
DefaultOriginGroup: map[string]interface{}{
"id": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
UrlSigningKeys: []map[string]interface{}{
map[string]interface{}{
"keyId": "string",
"keySourceParameters": map[string]interface{}{
"odataType": "string",
"resourceGroupName": "string",
"secretName": "string",
"secretVersion": "string",
"subscriptionId": "string",
"vaultName": "string",
},
},
},
WebApplicationFirewallPolicyLink: map[string]interface{}{
"id": "string",
},
})
var endpointResource = new Endpoint("endpointResource", EndpointArgs.builder()
.origins(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.profileName("string")
.isCompressionEnabled(false)
.originPath("string")
.contentTypesToCompress("string")
.isHttpAllowed(false)
.isHttpsAllowed(false)
.location("string")
.optimizationType("string")
.originGroups(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.originHostHeader("string")
.geoFilters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.endpointName("string")
.probePath("string")
.deliveryPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.queryStringCachingBehavior("IgnoreQueryString")
.defaultOriginGroup(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.urlSigningKeys(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.webApplicationFirewallPolicyLink(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
endpoint_resource = azure_native.cdn.Endpoint("endpointResource",
origins=[{
hostName: string,
name: string,
enabled: False,
httpPort: 0,
httpsPort: 0,
originHostHeader: string,
priority: 0,
privateLinkAlias: string,
privateLinkApprovalMessage: string,
privateLinkLocation: string,
privateLinkResourceId: string,
weight: 0,
}],
resource_group_name=string,
profile_name=string,
is_compression_enabled=False,
origin_path=string,
content_types_to_compress=[string],
is_http_allowed=False,
is_https_allowed=False,
location=string,
optimization_type=string,
origin_groups=[{
name: string,
origins: [{
id: string,
}],
healthProbeSettings: {
probeIntervalInSeconds: 0,
probePath: string,
probeProtocol: NotSet,
probeRequestType: NotSet,
},
responseBasedOriginErrorDetectionSettings: {
httpErrorRanges: [{
begin: 0,
end: 0,
}],
responseBasedDetectedErrorTypes: None,
responseBasedFailoverThresholdPercentage: 0,
},
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 0,
}],
origin_host_header=string,
geo_filters=[{
action: Block,
countryCodes: [string],
relativePath: string,
}],
endpoint_name=string,
probe_path=string,
delivery_policy={
rules: [{
actions: [{
name: CacheExpiration,
parameters: {
cacheBehavior: string,
cacheType: string,
odataType: string,
cacheDuration: string,
},
}],
order: 0,
conditions: [{
name: Cookies,
parameters: {
odataType: string,
operator: string,
matchValues: [string],
negateCondition: False,
selector: string,
transforms: [string],
},
}],
name: string,
}],
description: string,
},
query_string_caching_behavior=IgnoreQueryString,
default_origin_group={
id: string,
},
tags={
string: string,
},
url_signing_keys=[{
keyId: string,
keySourceParameters: {
odataType: string,
resourceGroupName: string,
secretName: string,
secretVersion: string,
subscriptionId: string,
vaultName: string,
},
}],
web_application_firewall_policy_link={
id: string,
})
const endpointResource = new azure_native.cdn.Endpoint("endpointResource", {
origins: [{
hostName: "string",
name: "string",
enabled: false,
httpPort: 0,
httpsPort: 0,
originHostHeader: "string",
priority: 0,
privateLinkAlias: "string",
privateLinkApprovalMessage: "string",
privateLinkLocation: "string",
privateLinkResourceId: "string",
weight: 0,
}],
resourceGroupName: "string",
profileName: "string",
isCompressionEnabled: false,
originPath: "string",
contentTypesToCompress: ["string"],
isHttpAllowed: false,
isHttpsAllowed: false,
location: "string",
optimizationType: "string",
originGroups: [{
name: "string",
origins: [{
id: "string",
}],
healthProbeSettings: {
probeIntervalInSeconds: 0,
probePath: "string",
probeProtocol: "NotSet",
probeRequestType: "NotSet",
},
responseBasedOriginErrorDetectionSettings: {
httpErrorRanges: [{
begin: 0,
end: 0,
}],
responseBasedDetectedErrorTypes: "None",
responseBasedFailoverThresholdPercentage: 0,
},
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 0,
}],
originHostHeader: "string",
geoFilters: [{
action: "Block",
countryCodes: ["string"],
relativePath: "string",
}],
endpointName: "string",
probePath: "string",
deliveryPolicy: {
rules: [{
actions: [{
name: "CacheExpiration",
parameters: {
cacheBehavior: "string",
cacheType: "string",
odataType: "string",
cacheDuration: "string",
},
}],
order: 0,
conditions: [{
name: "Cookies",
parameters: {
odataType: "string",
operator: "string",
matchValues: ["string"],
negateCondition: false,
selector: "string",
transforms: ["string"],
},
}],
name: "string",
}],
description: "string",
},
queryStringCachingBehavior: "IgnoreQueryString",
defaultOriginGroup: {
id: "string",
},
tags: {
string: "string",
},
urlSigningKeys: [{
keyId: "string",
keySourceParameters: {
odataType: "string",
resourceGroupName: "string",
secretName: "string",
secretVersion: "string",
subscriptionId: "string",
vaultName: "string",
},
}],
webApplicationFirewallPolicyLink: {
id: "string",
},
});
type: azure-native:cdn:Endpoint
properties:
contentTypesToCompress:
- string
defaultOriginGroup:
id: string
deliveryPolicy:
description: string
rules:
- actions:
- name: CacheExpiration
parameters:
cacheBehavior: string
cacheDuration: string
cacheType: string
odataType: string
conditions:
- name: Cookies
parameters:
matchValues:
- string
negateCondition: false
odataType: string
operator: string
selector: string
transforms:
- string
name: string
order: 0
endpointName: string
geoFilters:
- action: Block
countryCodes:
- string
relativePath: string
isCompressionEnabled: false
isHttpAllowed: false
isHttpsAllowed: false
location: string
optimizationType: string
originGroups:
- healthProbeSettings:
probeIntervalInSeconds: 0
probePath: string
probeProtocol: NotSet
probeRequestType: NotSet
name: string
origins:
- id: string
responseBasedOriginErrorDetectionSettings:
httpErrorRanges:
- begin: 0
end: 0
responseBasedDetectedErrorTypes: None
responseBasedFailoverThresholdPercentage: 0
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 0
originHostHeader: string
originPath: string
origins:
- enabled: false
hostName: string
httpPort: 0
httpsPort: 0
name: string
originHostHeader: string
priority: 0
privateLinkAlias: string
privateLinkApprovalMessage: string
privateLinkLocation: string
privateLinkResourceId: string
weight: 0
probePath: string
profileName: string
queryStringCachingBehavior: IgnoreQueryString
resourceGroupName: string
tags:
string: string
urlSigningKeys:
- keyId: string
keySourceParameters:
odataType: string
resourceGroupName: string
secretName: string
secretVersion: string
subscriptionId: string
vaultName: string
webApplicationFirewallPolicyLink:
id: string
Endpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Endpoint resource accepts the following input properties:
- Origins
List<Pulumi.
Azure Native. Cdn. Inputs. Deep Created Origin> - The source of the content being delivered via CDN.
- Profile
Name string - Name of the CDN profile which is unique within the resource group.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Content
Types List<string>To Compress - List of content types on which compression applies. The value should be a valid MIME type.
- Default
Origin Pulumi.Group Azure Native. Cdn. Inputs. Resource Reference - A reference to the origin group.
- Delivery
Policy Pulumi.Azure Native. Cdn. Inputs. Endpoint Properties Update Parameters Delivery Policy - A policy that specifies the delivery rules to be used for an endpoint.
- Endpoint
Name string - Name of the endpoint under the profile which is unique globally.
- Geo
Filters List<Pulumi.Azure Native. Cdn. Inputs. Geo Filter> - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- Is
Compression boolEnabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- Is
Http boolAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- Is
Https boolAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- Location string
- Resource location.
- Optimization
Type string | Pulumi.Azure Native. Cdn. Optimization Type - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- Origin
Groups List<Pulumi.Azure Native. Cdn. Inputs. Deep Created Origin Group> - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- Origin
Host stringHeader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Origin
Path string - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- Probe
Path string - 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. This property is only relevant when using a single origin.
- Query
String Pulumi.Caching Behavior Azure Native. Cdn. Query String Caching Behavior - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- Dictionary<string, string>
- Resource tags.
- Url
Signing List<Pulumi.Keys Azure Native. Cdn. Inputs. Url Signing Key> - List of keys used to validate the signed URL hashes.
- Web
Application Pulumi.Firewall Policy Link Azure Native. Cdn. Inputs. Endpoint Properties Update Parameters Web Application Firewall Policy Link - Defines the Web Application Firewall policy for the endpoint (if applicable)
- Origins
[]Deep
Created Origin Args - The source of the content being delivered via CDN.
- Profile
Name string - Name of the CDN profile which is unique within the resource group.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Content
Types []stringTo Compress - List of content types on which compression applies. The value should be a valid MIME type.
- Default
Origin ResourceGroup Reference Args - A reference to the origin group.
- Delivery
Policy EndpointProperties Update Parameters Delivery Policy Args - A policy that specifies the delivery rules to be used for an endpoint.
- Endpoint
Name string - Name of the endpoint under the profile which is unique globally.
- Geo
Filters []GeoFilter Args - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- Is
Compression boolEnabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- Is
Http boolAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- Is
Https boolAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- Location string
- Resource location.
- Optimization
Type string | OptimizationType - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- Origin
Groups []DeepCreated Origin Group Args - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- Origin
Host stringHeader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Origin
Path string - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- Probe
Path string - 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. This property is only relevant when using a single origin.
- Query
String QueryCaching Behavior String Caching Behavior - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- map[string]string
- Resource tags.
- Url
Signing []UrlKeys Signing Key Args - List of keys used to validate the signed URL hashes.
- Web
Application EndpointFirewall Policy Link Properties Update Parameters Web Application Firewall Policy Link Args - Defines the Web Application Firewall policy for the endpoint (if applicable)
- origins
List<Deep
Created Origin> - The source of the content being delivered via CDN.
- profile
Name String - Name of the CDN profile which is unique within the resource group.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- content
Types List<String>To Compress - List of content types on which compression applies. The value should be a valid MIME type.
- default
Origin ResourceGroup Reference - A reference to the origin group.
- delivery
Policy EndpointProperties Update Parameters Delivery Policy - A policy that specifies the delivery rules to be used for an endpoint.
- endpoint
Name String - Name of the endpoint under the profile which is unique globally.
- geo
Filters List<GeoFilter> - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- is
Compression BooleanEnabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- is
Http BooleanAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- is
Https BooleanAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- location String
- Resource location.
- optimization
Type String | OptimizationType - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- origin
Groups List<DeepCreated Origin Group> - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- origin
Host StringHeader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- origin
Path String - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- probe
Path String - 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. This property is only relevant when using a single origin.
- query
String QueryCaching Behavior String Caching Behavior - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- Map<String,String>
- Resource tags.
- url
Signing List<UrlKeys Signing Key> - List of keys used to validate the signed URL hashes.
- web
Application EndpointFirewall Policy Link Properties Update Parameters Web Application Firewall Policy Link - Defines the Web Application Firewall policy for the endpoint (if applicable)
- origins
Deep
Created Origin[] - The source of the content being delivered via CDN.
- profile
Name string - Name of the CDN profile which is unique within the resource group.
- resource
Group stringName - Name of the Resource group within the Azure subscription.
- content
Types string[]To Compress - List of content types on which compression applies. The value should be a valid MIME type.
- default
Origin ResourceGroup Reference - A reference to the origin group.
- delivery
Policy EndpointProperties Update Parameters Delivery Policy - A policy that specifies the delivery rules to be used for an endpoint.
- endpoint
Name string - Name of the endpoint under the profile which is unique globally.
- geo
Filters GeoFilter[] - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- is
Compression booleanEnabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- is
Http booleanAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- is
Https booleanAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- location string
- Resource location.
- optimization
Type string | OptimizationType - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- origin
Groups DeepCreated Origin Group[] - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- origin
Host stringHeader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- origin
Path string - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- probe
Path string - 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. This property is only relevant when using a single origin.
- query
String QueryCaching Behavior String Caching Behavior - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- {[key: string]: string}
- Resource tags.
- url
Signing UrlKeys Signing Key[] - List of keys used to validate the signed URL hashes.
- web
Application EndpointFirewall Policy Link Properties Update Parameters Web Application Firewall Policy Link - Defines the Web Application Firewall policy for the endpoint (if applicable)
- origins
Sequence[Deep
Created Origin Args] - The source of the content being delivered via CDN.
- profile_
name str - Name of the CDN profile which is unique within the resource group.
- resource_
group_ strname - Name of the Resource group within the Azure subscription.
- content_
types_ Sequence[str]to_ compress - List of content types on which compression applies. The value should be a valid MIME type.
- default_
origin_ Resourcegroup Reference Args - A reference to the origin group.
- delivery_
policy EndpointProperties Update Parameters Delivery Policy Args - A policy that specifies the delivery rules to be used for an endpoint.
- endpoint_
name str - Name of the endpoint under the profile which is unique globally.
- geo_
filters Sequence[GeoFilter Args] - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- is_
compression_ boolenabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- is_
http_ boolallowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- is_
https_ boolallowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- location str
- Resource location.
- optimization_
type str | OptimizationType - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- origin_
groups Sequence[DeepCreated Origin Group Args] - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- origin_
host_ strheader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- origin_
path str - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- probe_
path str - 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. This property is only relevant when using a single origin.
- query_
string_ Querycaching_ behavior String Caching Behavior - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- Mapping[str, str]
- Resource tags.
- url_
signing_ Sequence[Urlkeys Signing Key Args] - List of keys used to validate the signed URL hashes.
- web_
application_ Endpointfirewall_ policy_ link Properties Update Parameters Web Application Firewall Policy Link Args - Defines the Web Application Firewall policy for the endpoint (if applicable)
- origins List<Property Map>
- The source of the content being delivered via CDN.
- profile
Name String - Name of the CDN profile which is unique within the resource group.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- content
Types List<String>To Compress - List of content types on which compression applies. The value should be a valid MIME type.
- default
Origin Property MapGroup - A reference to the origin group.
- delivery
Policy Property Map - A policy that specifies the delivery rules to be used for an endpoint.
- endpoint
Name String - Name of the endpoint under the profile which is unique globally.
- geo
Filters List<Property Map> - List of rules defining the user's geo access within a CDN endpoint. Each geo filter defines an access rule to a specified path or content, e.g. block APAC for path /pictures/
- is
Compression BooleanEnabled - Indicates whether content compression is enabled on CDN. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on CDN when requested content is smaller than 1 byte or larger than 1 MB.
- is
Http BooleanAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- is
Https BooleanAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
- location String
- Resource location.
- optimization
Type String | "GeneralWeb Delivery" | "General Media Streaming" | "Video On Demand Media Streaming" | "Large File Download" | "Dynamic Site Acceleration" - Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
- origin
Groups List<Property Map> - The origin groups comprising of origins that are used for load balancing the traffic based on availability.
- origin
Host StringHeader - The host header value sent to the origin with each request. This property at Endpoint is only allowed when endpoint uses single origin and can be overridden by the same property specified at origin.If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- origin
Path String - A directory path on the origin that CDN can use to retrieve content from, e.g. contoso.cloudapp.net/originpath.
- probe
Path String - 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. This property is only relevant when using a single origin.
- query
String "IgnoreCaching Behavior Query String" | "Bypass Caching" | "Use Query String" | "Not Set" - Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
- Map<String>
- Resource tags.
- url
Signing List<Property Map>Keys - List of keys used to validate the signed URL hashes.
- web
Application Property MapFirewall Policy Link - Defines the Web Application Firewall policy for the endpoint (if applicable)
Outputs
All input properties are implicitly available as output properties. Additionally, the Endpoint resource produces the following output properties:
- Host
Name string - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning status of the endpoint.
- Resource
State string - Resource status of the endpoint.
- System
Data Pulumi.Azure Native. Cdn. Outputs. System Data Response - Read only system data
- Type string
- Resource type.
- Host
Name string - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning status of the endpoint.
- Resource
State string - Resource status of the endpoint.
- System
Data SystemData Response - Read only system data
- Type string
- Resource type.
- host
Name String - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning status of the endpoint.
- resource
State String - Resource status of the endpoint.
- system
Data SystemData Response - Read only system data
- type String
- Resource type.
- host
Name string - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - Provisioning status of the endpoint.
- resource
State string - Resource status of the endpoint.
- system
Data SystemData Response - Read only system data
- type string
- Resource type.
- host_
name str - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - Provisioning status of the endpoint.
- resource_
state str - Resource status of the endpoint.
- system_
data SystemData Response - Read only system data
- type str
- Resource type.
- host
Name String - The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning status of the endpoint.
- resource
State String - Resource status of the endpoint.
- system
Data Property Map - Read only system data
- type String
- Resource type.
Supporting Types
Algorithm, AlgorithmArgs
- SHA256
- SHA256
- Algorithm
SHA256 - SHA256
- SHA256
- SHA256
- SHA256
- SHA256
- SHA256
- SHA256
- "SHA256"
- SHA256
CacheBehavior, CacheBehaviorArgs
- Bypass
Cache - BypassCache
- Override
- Override
- Set
If Missing - SetIfMissing
- Cache
Behavior Bypass Cache - BypassCache
- Cache
Behavior Override - Override
- Cache
Behavior Set If Missing - SetIfMissing
- Bypass
Cache - BypassCache
- Override
- Override
- Set
If Missing - SetIfMissing
- Bypass
Cache - BypassCache
- Override
- Override
- Set
If Missing - SetIfMissing
- BYPASS_CACHE
- BypassCache
- OVERRIDE
- Override
- SET_IF_MISSING
- SetIfMissing
- "Bypass
Cache" - BypassCache
- "Override"
- Override
- "Set
If Missing" - SetIfMissing
CacheExpirationActionParameters, CacheExpirationActionParametersArgs
- Cache
Behavior string | Pulumi.Azure Native. Cdn. Cache Behavior - Caching behavior for the requests
- Cache
Type string | Pulumi.Azure Native. Cdn. Cache Type - The level at which the content needs to be cached.
- Odata
Type string - Cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- Cache
Behavior string | CacheBehavior - Caching behavior for the requests
- Cache
Type string | CacheType - The level at which the content needs to be cached.
- Odata
Type string - Cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior String | CacheBehavior - Caching behavior for the requests
- cache
Type String | CacheType - The level at which the content needs to be cached.
- odata
Type String - cache
Duration String - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior string | CacheBehavior - Caching behavior for the requests
- cache
Type string | CacheType - The level at which the content needs to be cached.
- odata
Type string - cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache_
behavior str | CacheBehavior - Caching behavior for the requests
- cache_
type str | CacheType - The level at which the content needs to be cached.
- odata_
type str - cache_
duration str - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior String | "BypassCache" | "Override" | "Set If Missing" - Caching behavior for the requests
- cache
Type String | "All" - The level at which the content needs to be cached.
- odata
Type String - cache
Duration String - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
CacheExpirationActionParametersResponse, CacheExpirationActionParametersResponseArgs
- Cache
Behavior string - Caching behavior for the requests
- Cache
Type string - The level at which the content needs to be cached.
- Odata
Type string - Cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- Cache
Behavior string - Caching behavior for the requests
- Cache
Type string - The level at which the content needs to be cached.
- Odata
Type string - Cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior String - Caching behavior for the requests
- cache
Type String - The level at which the content needs to be cached.
- odata
Type String - cache
Duration String - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior string - Caching behavior for the requests
- cache
Type string - The level at which the content needs to be cached.
- odata
Type string - cache
Duration string - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache_
behavior str - Caching behavior for the requests
- cache_
type str - The level at which the content needs to be cached.
- odata_
type str - cache_
duration str - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
- cache
Behavior String - Caching behavior for the requests
- cache
Type String - The level at which the content needs to be cached.
- odata
Type String - cache
Duration String - The duration for which the content needs to be cached. Allowed format is [d.]hh:mm:ss
CacheKeyQueryStringActionParameters, CacheKeyQueryStringActionParametersArgs
- Odata
Type string - Query
String string | Pulumi.Behavior Azure Native. Cdn. Query String Behavior - Caching behavior for the requests
- Query
Parameters string - query parameters to include or exclude (comma separated).
- Odata
Type string - Query
String string | QueryBehavior String Behavior - Caching behavior for the requests
- Query
Parameters string - query parameters to include or exclude (comma separated).
- odata
Type String - query
String String | QueryBehavior String Behavior - Caching behavior for the requests
- query
Parameters String - query parameters to include or exclude (comma separated).
- odata
Type string - query
String string | QueryBehavior String Behavior - Caching behavior for the requests
- query
Parameters string - query parameters to include or exclude (comma separated).
- odata_
type str - query_
string_ str | Querybehavior String Behavior - Caching behavior for the requests
- query_
parameters str - query parameters to include or exclude (comma separated).
- odata
Type String - query
String String | "Include" | "IncludeBehavior All" | "Exclude" | "Exclude All" - Caching behavior for the requests
- query
Parameters String - query parameters to include or exclude (comma separated).
CacheKeyQueryStringActionParametersResponse, CacheKeyQueryStringActionParametersResponseArgs
- Odata
Type string - Query
String stringBehavior - Caching behavior for the requests
- Query
Parameters string - query parameters to include or exclude (comma separated).
- Odata
Type string - Query
String stringBehavior - Caching behavior for the requests
- Query
Parameters string - query parameters to include or exclude (comma separated).
- odata
Type String - query
String StringBehavior - Caching behavior for the requests
- query
Parameters String - query parameters to include or exclude (comma separated).
- odata
Type string - query
String stringBehavior - Caching behavior for the requests
- query
Parameters string - query parameters to include or exclude (comma separated).
- odata_
type str - query_
string_ strbehavior - Caching behavior for the requests
- query_
parameters str - query parameters to include or exclude (comma separated).
- odata
Type String - query
String StringBehavior - Caching behavior for the requests
- query
Parameters String - query parameters to include or exclude (comma separated).
CacheType, CacheTypeArgs
- All
- All
- Cache
Type All - All
- All
- All
- All
- All
- ALL
- All
- "All"
- All
CookiesMatchConditionParameters, CookiesMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Cookies Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Cookies to be matched
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Cookies
Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Cookies to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Cookies
Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Cookies to be matched
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Cookies
Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of Cookies to be matched
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Cookies
Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of Cookies to be matched
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Cookies to be matched
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
CookiesMatchConditionParametersResponse, CookiesMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Cookies to be matched
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Cookies to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Cookies to be matched
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of Cookies to be matched
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of Cookies to be matched
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Cookies to be matched
- transforms List<String>
- List of transforms
CookiesOperator, CookiesOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Cookies
Operator Any - Any
- Cookies
Operator Equal - Equal
- Cookies
Operator Contains - Contains
- Cookies
Operator Begins With - BeginsWith
- Cookies
Operator Ends With - EndsWith
- Cookies
Operator Less Than - LessThan
- Cookies
Operator Less Than Or Equal - LessThanOrEqual
- Cookies
Operator Greater Than - GreaterThan
- Cookies
Operator Greater Than Or Equal - GreaterThanOrEqual
- Cookies
Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
DeepCreatedOrigin, DeepCreatedOriginArgs
- Host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- Name string
- Origin name which must be unique within the endpoint.
- Enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- Http
Port int - The value of the HTTP port. Must be between 1 and 65535.
- Https
Port int - The value of the HTTPS port. Must be between 1 and 65535.
- Origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- Private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- Private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- Private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- Private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- Weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- Host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- Name string
- Origin name which must be unique within the endpoint.
- Enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- Http
Port int - The value of the HTTP port. Must be between 1 and 65535.
- Https
Port int - The value of the HTTPS port. Must be between 1 and 65535.
- Origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- Private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- Private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- Private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- Private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- Weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name String - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name String
- Origin name which must be unique within the endpoint.
- enabled Boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port Integer - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Integer - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority Integer
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link StringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link StringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link StringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link StringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight Integer
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name string
- Origin name which must be unique within the endpoint.
- enabled boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority number
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight number
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host_
name str - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name str
- Origin name which must be unique within the endpoint.
- enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http_
port int - The value of the HTTP port. Must be between 1 and 65535.
- https_
port int - The value of the HTTPS port. Must be between 1 and 65535.
- origin_
host_ strheader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private_
link_ stralias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private_
link_ strapproval_ message - A custom message to be included in the approval request to connect to the Private Link.
- private_
link_ strlocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private_
link_ strresource_ id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name String - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name String
- Origin name which must be unique within the endpoint.
- enabled Boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port Number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority Number
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link StringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link StringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link StringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link StringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight Number
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
DeepCreatedOriginGroup, DeepCreatedOriginGroupArgs
- Name string
- Origin group name which must be unique within the endpoint.
- Origins
List<Pulumi.
Azure Native. Cdn. Inputs. Resource Reference> - The source of the content being delivered via CDN within given origin group.
- Health
Probe Pulumi.Settings Azure Native. Cdn. Inputs. Health Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- Response
Based Pulumi.Origin Error Detection Settings Azure Native. Cdn. Inputs. Response Based Origin Error Detection Parameters - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- Name string
- Origin group name which must be unique within the endpoint.
- Origins
[]Resource
Reference - The source of the content being delivered via CDN within given origin group.
- Health
Probe HealthSettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- Response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name String
- Origin group name which must be unique within the endpoint.
- origins
List<Resource
Reference> - The source of the content being delivered via CDN within given origin group.
- health
Probe HealthSettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration IntegerTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name string
- Origin group name which must be unique within the endpoint.
- origins
Resource
Reference[] - The source of the content being delivered via CDN within given origin group.
- health
Probe HealthSettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration numberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name str
- Origin group name which must be unique within the endpoint.
- origins
Sequence[Resource
Reference] - The source of the content being delivered via CDN within given origin group.
- health_
probe_ Healthsettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- response_
based_ Responseorigin_ error_ detection_ settings Based Origin Error Detection Parameters - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic_
restoration_ inttime_ to_ healed_ or_ new_ endpoints_ in_ minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name String
- Origin group name which must be unique within the endpoint.
- origins List<Property Map>
- The source of the content being delivered via CDN within given origin group.
- health
Probe Property MapSettings - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based Property MapOrigin Error Detection Settings - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration NumberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
DeepCreatedOriginGroupResponse, DeepCreatedOriginGroupResponseArgs
- Name string
- Origin group name which must be unique within the endpoint.
- Origins
List<Pulumi.
Azure Native. Cdn. Inputs. Resource Reference Response> - The source of the content being delivered via CDN within given origin group.
- Health
Probe Pulumi.Settings Azure Native. Cdn. Inputs. Health Probe Parameters Response - Health probe settings to the origin that is used to determine the health of the origin.
- Response
Based Pulumi.Origin Error Detection Settings Azure Native. Cdn. Inputs. Response Based Origin Error Detection Parameters Response - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- Name string
- Origin group name which must be unique within the endpoint.
- Origins
[]Resource
Reference Response - The source of the content being delivered via CDN within given origin group.
- Health
Probe HealthSettings Probe Parameters Response - Health probe settings to the origin that is used to determine the health of the origin.
- Response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters Response - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name String
- Origin group name which must be unique within the endpoint.
- origins
List<Resource
Reference Response> - The source of the content being delivered via CDN within given origin group.
- health
Probe HealthSettings Probe Parameters Response - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters Response - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration IntegerTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name string
- Origin group name which must be unique within the endpoint.
- origins
Resource
Reference Response[] - The source of the content being delivered via CDN within given origin group.
- health
Probe HealthSettings Probe Parameters Response - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based ResponseOrigin Error Detection Settings Based Origin Error Detection Parameters Response - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration numberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name str
- Origin group name which must be unique within the endpoint.
- origins
Sequence[Resource
Reference Response] - The source of the content being delivered via CDN within given origin group.
- health_
probe_ Healthsettings Probe Parameters Response - Health probe settings to the origin that is used to determine the health of the origin.
- response_
based_ Responseorigin_ error_ detection_ settings Based Origin Error Detection Parameters Response - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic_
restoration_ inttime_ to_ healed_ or_ new_ endpoints_ in_ minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- name String
- Origin group name which must be unique within the endpoint.
- origins List<Property Map>
- The source of the content being delivered via CDN within given origin group.
- health
Probe Property MapSettings - Health probe settings to the origin that is used to determine the health of the origin.
- response
Based Property MapOrigin Error Detection Settings - The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
- traffic
Restoration NumberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
DeepCreatedOriginResponse, DeepCreatedOriginResponseArgs
- Host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- Name string
- Origin name which must be unique within the endpoint.
- Enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- Http
Port int - The value of the HTTP port. Must be between 1 and 65535.
- Https
Port int - The value of the HTTPS port. Must be between 1 and 65535.
- Origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- Private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- Private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- Private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- Private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- Weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- Host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- Name string
- Origin name which must be unique within the endpoint.
- Enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- Http
Port int - The value of the HTTP port. Must be between 1 and 65535.
- Https
Port int - The value of the HTTPS port. Must be between 1 and 65535.
- Origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- Priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- Private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- Private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- Private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- Private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- Weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name String - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name String
- Origin name which must be unique within the endpoint.
- enabled Boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port Integer - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Integer - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority Integer
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link StringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link StringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link StringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link StringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight Integer
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name string - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name string
- Origin name which must be unique within the endpoint.
- enabled boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host stringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority number
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link stringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link stringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link stringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link stringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight number
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host_
name str - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name str
- Origin name which must be unique within the endpoint.
- enabled bool
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http_
port int - The value of the HTTP port. Must be between 1 and 65535.
- https_
port int - The value of the HTTPS port. Must be between 1 and 65535.
- origin_
host_ strheader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority int
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private_
link_ stralias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private_
link_ strapproval_ message - A custom message to be included in the approval request to connect to the Private Link.
- private_
link_ strlocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private_
link_ strresource_ id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight int
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
- host
Name String - The address of the origin. It can be a domain name, IPv4 address, or IPv6 address. This should be unique across all origins in an endpoint.
- name String
- Origin name which must be unique within the endpoint.
- enabled Boolean
- Origin is enabled for load balancing or not. By default, origin is always enabled.
- http
Port Number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure CDN origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default.
- priority Number
- Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5.
- private
Link StringAlias - The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
- private
Link StringApproval Message - A custom message to be included in the approval request to connect to the Private Link.
- private
Link StringLocation - The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
- private
Link StringResource Id - The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
- weight Number
- Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
DeliveryRule, DeliveryRuleArgs
- Actions List<object>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- Order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- Conditions List<object>
- A list of conditions that must be matched for the actions to be executed
- Name string
- Name of the rule
- Actions []interface{}
- A list of actions that are executed when all the conditions of a rule are satisfied.
- Order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- Conditions []interface{}
- A list of conditions that must be matched for the actions to be executed
- Name string
- Name of the rule
- actions List<Object>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- order Integer
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions List<Object>
- A list of conditions that must be matched for the actions to be executed
- name String
- Name of the rule
- actions
(Delivery
Rule Cache Expiration Action | Delivery Rule Cache Key Query String Action | Delivery Rule Request Header Action | Delivery Rule Response Header Action | Origin Group Override Action | Url Redirect Action | Url Rewrite Action | Url Signing Action)[] - A list of actions that are executed when all the conditions of a rule are satisfied.
- order number
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions
(Delivery
Rule Cookies Condition | Delivery Rule Http Version Condition | Delivery Rule Is Device Condition | Delivery Rule Post Args Condition | Delivery Rule Query String Condition | Delivery Rule Remote Address Condition | Delivery Rule Request Body Condition | Delivery Rule Request Header Condition | Delivery Rule Request Method Condition | Delivery Rule Request Scheme Condition | Delivery Rule Request Uri Condition | Delivery Rule Url File Extension Condition | Delivery Rule Url File Name Condition | Delivery Rule Url Path Condition)[] - A list of conditions that must be matched for the actions to be executed
- name string
- Name of the rule
- actions
Sequence[Union[Delivery
Rule Cache Expiration Action, Delivery Rule Cache Key Query String Action, Delivery Rule Request Header Action, Delivery Rule Response Header Action, Origin Group Override Action, Url Redirect Action, Url Rewrite Action, Url Signing Action]] - A list of actions that are executed when all the conditions of a rule are satisfied.
- order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions
Sequence[Union[Delivery
Rule Cookies Condition, Delivery Rule Http Version Condition, Delivery Rule Is Device Condition, Delivery Rule Post Args Condition, Delivery Rule Query String Condition, Delivery Rule Remote Address Condition, Delivery Rule Request Body Condition, Delivery Rule Request Header Condition, Delivery Rule Request Method Condition, Delivery Rule Request Scheme Condition, Delivery Rule Request Uri Condition, Delivery Rule Url File Extension Condition, Delivery Rule Url File Name Condition, Delivery Rule Url Path Condition]] - A list of conditions that must be matched for the actions to be executed
- name str
- Name of the rule
- actions List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- order Number
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- A list of conditions that must be matched for the actions to be executed
- name String
- Name of the rule
DeliveryRuleCacheExpirationAction, DeliveryRuleCacheExpirationActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cache Expiration Action Parameters - Defines the parameters for the action.
- Parameters
Cache
Expiration Action Parameters - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleCacheExpirationActionResponse, DeliveryRuleCacheExpirationActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cache Expiration Action Parameters Response - Defines the parameters for the action.
- Parameters
Cache
Expiration Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Expiration Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleCacheKeyQueryStringAction, DeliveryRuleCacheKeyQueryStringActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cache Key Query String Action Parameters - Defines the parameters for the action.
- Parameters
Cache
Key Query String Action Parameters - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleCacheKeyQueryStringActionResponse, DeliveryRuleCacheKeyQueryStringActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cache Key Query String Action Parameters Response - Defines the parameters for the action.
- Parameters
Cache
Key Query String Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters Response - Defines the parameters for the action.
- parameters
Cache
Key Query String Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleCookiesCondition, DeliveryRuleCookiesConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cookies Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Cookies
Match Condition Parameters - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleCookiesConditionResponse, DeliveryRuleCookiesConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Cookies Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Cookies
Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Cookies
Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleHttpVersionCondition, DeliveryRuleHttpVersionConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Http Version Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Http
Version Match Condition Parameters - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleHttpVersionConditionResponse, DeliveryRuleHttpVersionConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Http Version Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Http
Version Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Http
Version Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleIsDeviceCondition, DeliveryRuleIsDeviceConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Is Device Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Is
Device Match Condition Parameters - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleIsDeviceConditionResponse, DeliveryRuleIsDeviceConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Is Device Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Is
Device Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Is
Device Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRulePostArgsCondition, DeliveryRulePostArgsConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Post Args Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Post
Args Match Condition Parameters - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRulePostArgsConditionResponse, DeliveryRulePostArgsConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Post Args Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Post
Args Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Post
Args Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleQueryStringCondition, DeliveryRuleQueryStringConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Query String Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Query
String Match Condition Parameters - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleQueryStringConditionResponse, DeliveryRuleQueryStringConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Query String Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Query
String Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Query
String Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRemoteAddressCondition, DeliveryRuleRemoteAddressConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Remote Address Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Remote
Address Match Condition Parameters - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRemoteAddressConditionResponse, DeliveryRuleRemoteAddressConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Remote Address Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Remote
Address Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Remote
Address Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestBodyCondition, DeliveryRuleRequestBodyConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Body Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Request
Body Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestBodyConditionResponse, DeliveryRuleRequestBodyConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Body Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Request
Body Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Body Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestHeaderAction, DeliveryRuleRequestHeaderActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Header Action Parameters - Defines the parameters for the action.
- Parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleRequestHeaderActionResponse, DeliveryRuleRequestHeaderActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Header Action Parameters Response - Defines the parameters for the action.
- Parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleRequestHeaderCondition, DeliveryRuleRequestHeaderConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Header Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Request
Header Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestHeaderConditionResponse, DeliveryRuleRequestHeaderConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Header Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Request
Header Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Header Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestMethodCondition, DeliveryRuleRequestMethodConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Method Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Request
Method Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestMethodConditionResponse, DeliveryRuleRequestMethodConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Method Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Request
Method Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Method Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestSchemeCondition, DeliveryRuleRequestSchemeConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Scheme Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Request
Scheme Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestSchemeConditionResponse, DeliveryRuleRequestSchemeConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Scheme Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Request
Scheme Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Scheme Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestUriCondition, DeliveryRuleRequestUriConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Uri Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Request
Uri Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleRequestUriConditionResponse, DeliveryRuleRequestUriConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Request Uri Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Request
Uri Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Request
Uri Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleResponse, DeliveryRuleResponseArgs
- Actions List<object>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- Order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- Conditions List<object>
- A list of conditions that must be matched for the actions to be executed
- Name string
- Name of the rule
- Actions []interface{}
- A list of actions that are executed when all the conditions of a rule are satisfied.
- Order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- Conditions []interface{}
- A list of conditions that must be matched for the actions to be executed
- Name string
- Name of the rule
- actions List<Object>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- order Integer
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions List<Object>
- A list of conditions that must be matched for the actions to be executed
- name String
- Name of the rule
- actions
(Delivery
Rule Cache Expiration Action Response | Delivery Rule Cache Key Query String Action Response | Delivery Rule Request Header Action Response | Delivery Rule Response Header Action Response | Origin Group Override Action Response | Url Redirect Action Response | Url Rewrite Action Response | Url Signing Action Response)[] - A list of actions that are executed when all the conditions of a rule are satisfied.
- order number
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions
(Delivery
Rule Cookies Condition Response | Delivery Rule Http Version Condition Response | Delivery Rule Is Device Condition Response | Delivery Rule Post Args Condition Response | Delivery Rule Query String Condition Response | Delivery Rule Remote Address Condition Response | Delivery Rule Request Body Condition Response | Delivery Rule Request Header Condition Response | Delivery Rule Request Method Condition Response | Delivery Rule Request Scheme Condition Response | Delivery Rule Request Uri Condition Response | Delivery Rule Url File Extension Condition Response | Delivery Rule Url File Name Condition Response | Delivery Rule Url Path Condition Response)[] - A list of conditions that must be matched for the actions to be executed
- name string
- Name of the rule
- actions
Sequence[Union[Delivery
Rule Cache Expiration Action Response, Delivery Rule Cache Key Query String Action Response, Delivery Rule Request Header Action Response, Delivery Rule Response Header Action Response, Origin Group Override Action Response, Url Redirect Action Response, Url Rewrite Action Response, Url Signing Action Response]] - A list of actions that are executed when all the conditions of a rule are satisfied.
- order int
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions
Sequence[Union[Delivery
Rule Cookies Condition Response, Delivery Rule Http Version Condition Response, Delivery Rule Is Device Condition Response, Delivery Rule Post Args Condition Response, Delivery Rule Query String Condition Response, Delivery Rule Remote Address Condition Response, Delivery Rule Request Body Condition Response, Delivery Rule Request Header Condition Response, Delivery Rule Request Method Condition Response, Delivery Rule Request Scheme Condition Response, Delivery Rule Request Uri Condition Response, Delivery Rule Url File Extension Condition Response, Delivery Rule Url File Name Condition Response, Delivery Rule Url Path Condition Response]] - A list of conditions that must be matched for the actions to be executed
- name str
- Name of the rule
- actions List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- A list of actions that are executed when all the conditions of a rule are satisfied.
- order Number
- The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.
- conditions List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- A list of conditions that must be matched for the actions to be executed
- name String
- Name of the rule
DeliveryRuleResponseHeaderAction, DeliveryRuleResponseHeaderActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Header Action Parameters - Defines the parameters for the action.
- Parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters
Header
Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleResponseHeaderActionResponse, DeliveryRuleResponseHeaderActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Header Action Parameters Response - Defines the parameters for the action.
- Parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters
Header
Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
DeliveryRuleUrlFileExtensionCondition, DeliveryRuleUrlFileExtensionConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url File Extension Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Url
File Extension Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleUrlFileExtensionConditionResponse, DeliveryRuleUrlFileExtensionConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url File Extension Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Url
File Extension Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Extension Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleUrlFileNameCondition, DeliveryRuleUrlFileNameConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url File Name Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Url
File Name Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleUrlFileNameConditionResponse, DeliveryRuleUrlFileNameConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url File Name Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Url
File Name Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
File Name Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleUrlPathCondition, DeliveryRuleUrlPathConditionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Path Match Condition Parameters - Defines the parameters for the condition.
- Parameters
Url
Path Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DeliveryRuleUrlPathConditionResponse, DeliveryRuleUrlPathConditionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Path Match Condition Parameters Response - Defines the parameters for the condition.
- Parameters
Url
Path Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters Response - Defines the parameters for the condition.
- parameters
Url
Path Match Condition Parameters Response - Defines the parameters for the condition.
- parameters Property Map
- Defines the parameters for the condition.
DestinationProtocol, DestinationProtocolArgs
- Match
Request - MatchRequest
- Http
- Http
- Https
- Https
- Destination
Protocol Match Request - MatchRequest
- Destination
Protocol Http - Http
- Destination
Protocol Https - Https
- Match
Request - MatchRequest
- Http
- Http
- Https
- Https
- Match
Request - MatchRequest
- Http
- Http
- Https
- Https
- MATCH_REQUEST
- MatchRequest
- HTTP
- Http
- HTTPS
- Https
- "Match
Request" - MatchRequest
- "Http"
- Http
- "Https"
- Https
EndpointPropertiesUpdateParametersDeliveryPolicy, EndpointPropertiesUpdateParametersDeliveryPolicyArgs
- Rules
List<Pulumi.
Azure Native. Cdn. Inputs. Delivery Rule> - A list of the delivery rules.
- Description string
- User-friendly description of the policy.
- Rules
[]Delivery
Rule - A list of the delivery rules.
- Description string
- User-friendly description of the policy.
- rules
List<Delivery
Rule> - A list of the delivery rules.
- description String
- User-friendly description of the policy.
- rules
Delivery
Rule[] - A list of the delivery rules.
- description string
- User-friendly description of the policy.
- rules
Sequence[Delivery
Rule] - A list of the delivery rules.
- description str
- User-friendly description of the policy.
- rules List<Property Map>
- A list of the delivery rules.
- description String
- User-friendly description of the policy.
EndpointPropertiesUpdateParametersResponseDeliveryPolicy, EndpointPropertiesUpdateParametersResponseDeliveryPolicyArgs
- Rules
List<Pulumi.
Azure Native. Cdn. Inputs. Delivery Rule Response> - A list of the delivery rules.
- Description string
- User-friendly description of the policy.
- Rules
[]Delivery
Rule Response - A list of the delivery rules.
- Description string
- User-friendly description of the policy.
- rules
List<Delivery
Rule Response> - A list of the delivery rules.
- description String
- User-friendly description of the policy.
- rules
Delivery
Rule Response[] - A list of the delivery rules.
- description string
- User-friendly description of the policy.
- rules
Sequence[Delivery
Rule Response] - A list of the delivery rules.
- description str
- User-friendly description of the policy.
- rules List<Property Map>
- A list of the delivery rules.
- description String
- User-friendly description of the policy.
EndpointPropertiesUpdateParametersResponseWebApplicationFirewallPolicyLink, EndpointPropertiesUpdateParametersResponseWebApplicationFirewallPolicyLinkArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLink, EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLinkArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
GeoFilter, GeoFilterArgs
- Action
Pulumi.
Azure Native. Cdn. Geo Filter Actions - Action of the geo filter, i.e. allow or block access.
- Country
Codes List<string> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- Relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- Action
Geo
Filter Actions - Action of the geo filter, i.e. allow or block access.
- Country
Codes []string - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- Relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action
Geo
Filter Actions - Action of the geo filter, i.e. allow or block access.
- country
Codes List<String> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path String - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action
Geo
Filter Actions - Action of the geo filter, i.e. allow or block access.
- country
Codes string[] - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action
Geo
Filter Actions - Action of the geo filter, i.e. allow or block access.
- country_
codes Sequence[str] - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative_
path str - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action "Block" | "Allow"
- Action of the geo filter, i.e. allow or block access.
- country
Codes List<String> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path String - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
GeoFilterActions, GeoFilterActionsArgs
- Block
- Block
- Allow
- Allow
- Geo
Filter Actions Block - Block
- Geo
Filter Actions Allow - Allow
- Block
- Block
- Allow
- Allow
- Block
- Block
- Allow
- Allow
- BLOCK
- Block
- ALLOW
- Allow
- "Block"
- Block
- "Allow"
- Allow
GeoFilterResponse, GeoFilterResponseArgs
- Action string
- Action of the geo filter, i.e. allow or block access.
- Country
Codes List<string> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- Relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- Action string
- Action of the geo filter, i.e. allow or block access.
- Country
Codes []string - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- Relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action String
- Action of the geo filter, i.e. allow or block access.
- country
Codes List<String> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path String - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action string
- Action of the geo filter, i.e. allow or block access.
- country
Codes string[] - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path string - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action str
- Action of the geo filter, i.e. allow or block access.
- country_
codes Sequence[str] - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative_
path str - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
- action String
- Action of the geo filter, i.e. allow or block access.
- country
Codes List<String> - Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
- relative
Path String - Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
HeaderAction, HeaderActionArgs
- Append
- Append
- Overwrite
- Overwrite
- Delete
- Delete
- Header
Action Append - Append
- Header
Action Overwrite - Overwrite
- Header
Action Delete - Delete
- Append
- Append
- Overwrite
- Overwrite
- Delete
- Delete
- Append
- Append
- Overwrite
- Overwrite
- Delete
- Delete
- APPEND
- Append
- OVERWRITE
- Overwrite
- DELETE
- Delete
- "Append"
- Append
- "Overwrite"
- Overwrite
- "Delete"
- Delete
HeaderActionParameters, HeaderActionParametersArgs
- Header
Action string | Pulumi.Azure Native. Cdn. Header Action - Action to perform
- Header
Name string - Name of the header to modify
- Odata
Type string - Value string
- Value for the specified action
- Header
Action string | HeaderAction - Action to perform
- Header
Name string - Name of the header to modify
- Odata
Type string - Value string
- Value for the specified action
- header
Action String | HeaderAction - Action to perform
- header
Name String - Name of the header to modify
- odata
Type String - value String
- Value for the specified action
- header
Action string | HeaderAction - Action to perform
- header
Name string - Name of the header to modify
- odata
Type string - value string
- Value for the specified action
- header_
action str | HeaderAction - Action to perform
- header_
name str - Name of the header to modify
- odata_
type str - value str
- Value for the specified action
- header
Action String | "Append" | "Overwrite" | "Delete" - Action to perform
- header
Name String - Name of the header to modify
- odata
Type String - value String
- Value for the specified action
HeaderActionParametersResponse, HeaderActionParametersResponseArgs
- Header
Action string - Action to perform
- Header
Name string - Name of the header to modify
- Odata
Type string - Value string
- Value for the specified action
- Header
Action string - Action to perform
- Header
Name string - Name of the header to modify
- Odata
Type string - Value string
- Value for the specified action
- header
Action String - Action to perform
- header
Name String - Name of the header to modify
- odata
Type String - value String
- Value for the specified action
- header
Action string - Action to perform
- header
Name string - Name of the header to modify
- odata
Type string - value string
- Value for the specified action
- header_
action str - Action to perform
- header_
name str - Name of the header to modify
- odata_
type str - value str
- Value for the specified action
- header
Action String - Action to perform
- header
Name String - Name of the header to modify
- odata
Type String - value String
- Value for the specified action
HealthProbeParameters, HealthProbeParametersArgs
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol Pulumi.Azure Native. Cdn. Probe Protocol - Protocol to use for health probe.
- Probe
Request Pulumi.Type Azure Native. Cdn. Health Probe Request Type - The type of health probe request that is made.
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol ProbeProtocol - Protocol to use for health probe.
- Probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe
Interval IntegerIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol ProbeProtocol - Protocol to use for health probe.
- probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe
Interval numberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol ProbeProtocol - Protocol to use for health probe.
- probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe_
interval_ intin_ seconds - The number of seconds between health probes.Default is 240sec.
- probe_
path str - The path relative to the origin that is used to determine the health of the origin.
- probe_
protocol ProbeProtocol - Protocol to use for health probe.
- probe_
request_ Healthtype Probe Request Type - The type of health probe request that is made.
- probe
Interval NumberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol "NotSet" | "Http" | "Https" - Protocol to use for health probe.
- probe
Request "NotType Set" | "GET" | "HEAD" - The type of health probe request that is made.
HealthProbeParametersResponse, HealthProbeParametersResponseArgs
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol string - Protocol to use for health probe.
- Probe
Request stringType - The type of health probe request that is made.
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol string - Protocol to use for health probe.
- Probe
Request stringType - The type of health probe request that is made.
- probe
Interval IntegerIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol String - Protocol to use for health probe.
- probe
Request StringType - The type of health probe request that is made.
- probe
Interval numberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol string - Protocol to use for health probe.
- probe
Request stringType - The type of health probe request that is made.
- probe_
interval_ intin_ seconds - The number of seconds between health probes.Default is 240sec.
- probe_
path str - The path relative to the origin that is used to determine the health of the origin.
- probe_
protocol str - Protocol to use for health probe.
- probe_
request_ strtype - The type of health probe request that is made.
- probe
Interval NumberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol String - Protocol to use for health probe.
- probe
Request StringType - The type of health probe request that is made.
HealthProbeRequestType, HealthProbeRequestTypeArgs
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- Health
Probe Request Type Not Set - NotSet
- Health
Probe Request Type GET - GET
- Health
Probe Request Type HEAD - HEAD
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- NOT_SET
- NotSet
- GET
- GET
- HEAD
- HEAD
- "Not
Set" - NotSet
- "GET"
- GET
- "HEAD"
- HEAD
HttpErrorRangeParameters, HttpErrorRangeParametersArgs
HttpErrorRangeParametersResponse, HttpErrorRangeParametersResponseArgs
HttpVersionMatchConditionParameters, HttpVersionMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Http Version Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator
string | Http
Version Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator
String | Http
Version Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator
string | Http
Version Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator
str | Http
Version Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String | "Equal"
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
HttpVersionMatchConditionParametersResponse, HttpVersionMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
HttpVersionOperator, HttpVersionOperatorArgs
- Equal
- Equal
- Http
Version Operator Equal - Equal
- Equal
- Equal
- Equal
- Equal
- EQUAL
- Equal
- "Equal"
- Equal
IsDeviceMatchConditionParameters, IsDeviceMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Is Device Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Is
Device Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Is
Device Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Is
Device Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Is
Device Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator String | "Equal"
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
IsDeviceMatchConditionParametersResponse, IsDeviceMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
IsDeviceOperator, IsDeviceOperatorArgs
- Equal
- Equal
- Is
Device Operator Equal - Equal
- Equal
- Equal
- Equal
- Equal
- EQUAL
- Equal
- "Equal"
- Equal
KeyVaultSigningKeyParameters, KeyVaultSigningKeyParametersArgs
- Odata
Type string - Resource
Group stringName - Resource group of the user's Key Vault containing the secret
- Secret
Name string - The name of secret in Key Vault.
- Secret
Version string - The version(GUID) of secret in Key Vault.
- Subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- Vault
Name string - The name of the user's Key Vault containing the secret
- Odata
Type string - Resource
Group stringName - Resource group of the user's Key Vault containing the secret
- Secret
Name string - The name of secret in Key Vault.
- Secret
Version string - The version(GUID) of secret in Key Vault.
- Subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- Vault
Name string - The name of the user's Key Vault containing the secret
- odata
Type String - resource
Group StringName - Resource group of the user's Key Vault containing the secret
- secret
Name String - The name of secret in Key Vault.
- secret
Version String - The version(GUID) of secret in Key Vault.
- subscription
Id String - Subscription Id of the user's Key Vault containing the secret
- vault
Name String - The name of the user's Key Vault containing the secret
- odata
Type string - resource
Group stringName - Resource group of the user's Key Vault containing the secret
- secret
Name string - The name of secret in Key Vault.
- secret
Version string - The version(GUID) of secret in Key Vault.
- subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- vault
Name string - The name of the user's Key Vault containing the secret
- odata_
type str - resource_
group_ strname - Resource group of the user's Key Vault containing the secret
- secret_
name str - The name of secret in Key Vault.
- secret_
version str - The version(GUID) of secret in Key Vault.
- subscription_
id str - Subscription Id of the user's Key Vault containing the secret
- vault_
name str - The name of the user's Key Vault containing the secret
- odata
Type String - resource
Group StringName - Resource group of the user's Key Vault containing the secret
- secret
Name String - The name of secret in Key Vault.
- secret
Version String - The version(GUID) of secret in Key Vault.
- subscription
Id String - Subscription Id of the user's Key Vault containing the secret
- vault
Name String - The name of the user's Key Vault containing the secret
KeyVaultSigningKeyParametersResponse, KeyVaultSigningKeyParametersResponseArgs
- Odata
Type string - Resource
Group stringName - Resource group of the user's Key Vault containing the secret
- Secret
Name string - The name of secret in Key Vault.
- Secret
Version string - The version(GUID) of secret in Key Vault.
- Subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- Vault
Name string - The name of the user's Key Vault containing the secret
- Odata
Type string - Resource
Group stringName - Resource group of the user's Key Vault containing the secret
- Secret
Name string - The name of secret in Key Vault.
- Secret
Version string - The version(GUID) of secret in Key Vault.
- Subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- Vault
Name string - The name of the user's Key Vault containing the secret
- odata
Type String - resource
Group StringName - Resource group of the user's Key Vault containing the secret
- secret
Name String - The name of secret in Key Vault.
- secret
Version String - The version(GUID) of secret in Key Vault.
- subscription
Id String - Subscription Id of the user's Key Vault containing the secret
- vault
Name String - The name of the user's Key Vault containing the secret
- odata
Type string - resource
Group stringName - Resource group of the user's Key Vault containing the secret
- secret
Name string - The name of secret in Key Vault.
- secret
Version string - The version(GUID) of secret in Key Vault.
- subscription
Id string - Subscription Id of the user's Key Vault containing the secret
- vault
Name string - The name of the user's Key Vault containing the secret
- odata_
type str - resource_
group_ strname - Resource group of the user's Key Vault containing the secret
- secret_
name str - The name of secret in Key Vault.
- secret_
version str - The version(GUID) of secret in Key Vault.
- subscription_
id str - Subscription Id of the user's Key Vault containing the secret
- vault_
name str - The name of the user's Key Vault containing the secret
- odata
Type String - resource
Group StringName - Resource group of the user's Key Vault containing the secret
- secret
Name String - The name of secret in Key Vault.
- secret
Version String - The version(GUID) of secret in Key Vault.
- subscription
Id String - Subscription Id of the user's Key Vault containing the secret
- vault
Name String - The name of the user's Key Vault containing the secret
OptimizationType, OptimizationTypeArgs
- General
Web Delivery - GeneralWebDelivery
- General
Media Streaming - GeneralMediaStreaming
- Video
On Demand Media Streaming - VideoOnDemandMediaStreaming
- Large
File Download - LargeFileDownload
- Dynamic
Site Acceleration - DynamicSiteAcceleration
- Optimization
Type General Web Delivery - GeneralWebDelivery
- Optimization
Type General Media Streaming - GeneralMediaStreaming
- Optimization
Type Video On Demand Media Streaming - VideoOnDemandMediaStreaming
- Optimization
Type Large File Download - LargeFileDownload
- Optimization
Type Dynamic Site Acceleration - DynamicSiteAcceleration
- General
Web Delivery - GeneralWebDelivery
- General
Media Streaming - GeneralMediaStreaming
- Video
On Demand Media Streaming - VideoOnDemandMediaStreaming
- Large
File Download - LargeFileDownload
- Dynamic
Site Acceleration - DynamicSiteAcceleration
- General
Web Delivery - GeneralWebDelivery
- General
Media Streaming - GeneralMediaStreaming
- Video
On Demand Media Streaming - VideoOnDemandMediaStreaming
- Large
File Download - LargeFileDownload
- Dynamic
Site Acceleration - DynamicSiteAcceleration
- GENERAL_WEB_DELIVERY
- GeneralWebDelivery
- GENERAL_MEDIA_STREAMING
- GeneralMediaStreaming
- VIDEO_ON_DEMAND_MEDIA_STREAMING
- VideoOnDemandMediaStreaming
- LARGE_FILE_DOWNLOAD
- LargeFileDownload
- DYNAMIC_SITE_ACCELERATION
- DynamicSiteAcceleration
- "General
Web Delivery" - GeneralWebDelivery
- "General
Media Streaming" - GeneralMediaStreaming
- "Video
On Demand Media Streaming" - VideoOnDemandMediaStreaming
- "Large
File Download" - LargeFileDownload
- "Dynamic
Site Acceleration" - DynamicSiteAcceleration
OriginGroupOverrideAction, OriginGroupOverrideActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Origin Group Override Action Parameters - Defines the parameters for the action.
- Parameters
Origin
Group Override Action Parameters - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
OriginGroupOverrideActionParameters, OriginGroupOverrideActionParametersArgs
- Odata
Type string - Origin
Group Pulumi.Azure Native. Cdn. Inputs. Resource Reference - defines the OriginGroup that would override the DefaultOriginGroup.
- Odata
Type string - Origin
Group ResourceReference - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type String - origin
Group ResourceReference - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type string - origin
Group ResourceReference - defines the OriginGroup that would override the DefaultOriginGroup.
- odata_
type str - origin_
group ResourceReference - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type String - origin
Group Property Map - defines the OriginGroup that would override the DefaultOriginGroup.
OriginGroupOverrideActionParametersResponse, OriginGroupOverrideActionParametersResponseArgs
- Odata
Type string - Origin
Group Pulumi.Azure Native. Cdn. Inputs. Resource Reference Response - defines the OriginGroup that would override the DefaultOriginGroup.
- Odata
Type string - Origin
Group ResourceReference Response - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type String - origin
Group ResourceReference Response - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type string - origin
Group ResourceReference Response - defines the OriginGroup that would override the DefaultOriginGroup.
- odata_
type str - origin_
group ResourceReference Response - defines the OriginGroup that would override the DefaultOriginGroup.
- odata
Type String - origin
Group Property Map - defines the OriginGroup that would override the DefaultOriginGroup.
OriginGroupOverrideActionResponse, OriginGroupOverrideActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Origin Group Override Action Parameters Response - Defines the parameters for the action.
- Parameters
Origin
Group Override Action Parameters Response - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters Response - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters Response - Defines the parameters for the action.
- parameters
Origin
Group Override Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
ParamIndicator, ParamIndicatorArgs
- Expires
- Expires
- Key
Id - KeyId
- Signature
- Signature
- Param
Indicator Expires - Expires
- Param
Indicator Key Id - KeyId
- Param
Indicator Signature - Signature
- Expires
- Expires
- Key
Id - KeyId
- Signature
- Signature
- Expires
- Expires
- Key
Id - KeyId
- Signature
- Signature
- EXPIRES
- Expires
- KEY_ID
- KeyId
- SIGNATURE
- Signature
- "Expires"
- Expires
- "Key
Id" - KeyId
- "Signature"
- Signature
PostArgsMatchConditionParameters, PostArgsMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Post Args Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of PostArg to be matched
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Post
Args Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of PostArg to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Post
Args Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of PostArg to be matched
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Post
Args Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of PostArg to be matched
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Post
Args Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of PostArg to be matched
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of PostArg to be matched
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
PostArgsMatchConditionParametersResponse, PostArgsMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of PostArg to be matched
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of PostArg to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of PostArg to be matched
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of PostArg to be matched
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of PostArg to be matched
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of PostArg to be matched
- transforms List<String>
- List of transforms
PostArgsOperator, PostArgsOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Post
Args Operator Any - Any
- Post
Args Operator Equal - Equal
- Post
Args Operator Contains - Contains
- Post
Args Operator Begins With - BeginsWith
- Post
Args Operator Ends With - EndsWith
- Post
Args Operator Less Than - LessThan
- Post
Args Operator Less Than Or Equal - LessThanOrEqual
- Post
Args Operator Greater Than - GreaterThan
- Post
Args Operator Greater Than Or Equal - GreaterThanOrEqual
- Post
Args Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
ProbeProtocol, ProbeProtocolArgs
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- Probe
Protocol Not Set - NotSet
- Probe
Protocol Http - Http
- Probe
Protocol Https - Https
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- NOT_SET
- NotSet
- HTTP
- Http
- HTTPS
- Https
- "Not
Set" - NotSet
- "Http"
- Http
- "Https"
- Https
QueryStringBehavior, QueryStringBehaviorArgs
- Include
- Include
- Include
All - IncludeAll
- Exclude
- Exclude
- Exclude
All - ExcludeAll
- Query
String Behavior Include - Include
- Query
String Behavior Include All - IncludeAll
- Query
String Behavior Exclude - Exclude
- Query
String Behavior Exclude All - ExcludeAll
- Include
- Include
- Include
All - IncludeAll
- Exclude
- Exclude
- Exclude
All - ExcludeAll
- Include
- Include
- Include
All - IncludeAll
- Exclude
- Exclude
- Exclude
All - ExcludeAll
- INCLUDE
- Include
- INCLUDE_ALL
- IncludeAll
- EXCLUDE
- Exclude
- EXCLUDE_ALL
- ExcludeAll
- "Include"
- Include
- "Include
All" - IncludeAll
- "Exclude"
- Exclude
- "Exclude
All" - ExcludeAll
QueryStringCachingBehavior, QueryStringCachingBehaviorArgs
- Ignore
Query String - IgnoreQueryString
- Bypass
Caching - BypassCaching
- Use
Query String - UseQueryString
- Not
Set - NotSet
- Query
String Caching Behavior Ignore Query String - IgnoreQueryString
- Query
String Caching Behavior Bypass Caching - BypassCaching
- Query
String Caching Behavior Use Query String - UseQueryString
- Query
String Caching Behavior Not Set - NotSet
- Ignore
Query String - IgnoreQueryString
- Bypass
Caching - BypassCaching
- Use
Query String - UseQueryString
- Not
Set - NotSet
- Ignore
Query String - IgnoreQueryString
- Bypass
Caching - BypassCaching
- Use
Query String - UseQueryString
- Not
Set - NotSet
- IGNORE_QUERY_STRING
- IgnoreQueryString
- BYPASS_CACHING
- BypassCaching
- USE_QUERY_STRING
- UseQueryString
- NOT_SET
- NotSet
- "Ignore
Query String" - IgnoreQueryString
- "Bypass
Caching" - BypassCaching
- "Use
Query String" - UseQueryString
- "Not
Set" - NotSet
QueryStringMatchConditionParameters, QueryStringMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Query String Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Query
String Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Query
String Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Query
String Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Query
String Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
QueryStringMatchConditionParametersResponse, QueryStringMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
QueryStringOperator, QueryStringOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Query
String Operator Any - Any
- Query
String Operator Equal - Equal
- Query
String Operator Contains - Contains
- Query
String Operator Begins With - BeginsWith
- Query
String Operator Ends With - EndsWith
- Query
String Operator Less Than - LessThan
- Query
String Operator Less Than Or Equal - LessThanOrEqual
- Query
String Operator Greater Than - GreaterThan
- Query
String Operator Greater Than Or Equal - GreaterThanOrEqual
- Query
String Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
RedirectType, RedirectTypeArgs
- Moved
- Moved
- Found
- Found
- Temporary
Redirect - TemporaryRedirect
- Permanent
Redirect - PermanentRedirect
- Redirect
Type Moved - Moved
- Redirect
Type Found - Found
- Redirect
Type Temporary Redirect - TemporaryRedirect
- Redirect
Type Permanent Redirect - PermanentRedirect
- Moved
- Moved
- Found
- Found
- Temporary
Redirect - TemporaryRedirect
- Permanent
Redirect - PermanentRedirect
- Moved
- Moved
- Found
- Found
- Temporary
Redirect - TemporaryRedirect
- Permanent
Redirect - PermanentRedirect
- MOVED
- Moved
- FOUND
- Found
- TEMPORARY_REDIRECT
- TemporaryRedirect
- PERMANENT_REDIRECT
- PermanentRedirect
- "Moved"
- Moved
- "Found"
- Found
- "Temporary
Redirect" - TemporaryRedirect
- "Permanent
Redirect" - PermanentRedirect
RemoteAddressMatchConditionParameters, RemoteAddressMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Remote Address Operator - Describes operator to be matched
- Match
Values List<string> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Remote
Address Operator - Describes operator to be matched
- Match
Values []string - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Remote
Address Operator - Describes operator to be matched
- match
Values List<String> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Remote
Address Operator - Describes operator to be matched
- match
Values string[] - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Remote
Address Operator - Describes operator to be matched
- match_
values Sequence[str] - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "IPMatch" | "Geo
Match" - Describes operator to be matched
- match
Values List<String> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
RemoteAddressMatchConditionParametersResponse, RemoteAddressMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - Match values to match against. The operator will apply to each value in here with OR semantics. If any of them match the variable with the given operator this match condition is considered a match.
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
RemoteAddressOperator, RemoteAddressOperatorArgs
- Any
- Any
- IPMatch
- IPMatch
- Geo
Match - GeoMatch
- Remote
Address Operator Any - Any
- Remote
Address Operator IPMatch - IPMatch
- Remote
Address Operator Geo Match - GeoMatch
- Any
- Any
- IPMatch
- IPMatch
- Geo
Match - GeoMatch
- Any
- Any
- IPMatch
- IPMatch
- Geo
Match - GeoMatch
- ANY
- Any
- IP_MATCH
- IPMatch
- GEO_MATCH
- GeoMatch
- "Any"
- Any
- "IPMatch"
- IPMatch
- "Geo
Match" - GeoMatch
RequestBodyMatchConditionParameters, RequestBodyMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Request Body Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Request
Body Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Request
Body Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Request
Body Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Request
Body Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
RequestBodyMatchConditionParametersResponse, RequestBodyMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
RequestBodyOperator, RequestBodyOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Request
Body Operator Any - Any
- Request
Body Operator Equal - Equal
- Request
Body Operator Contains - Contains
- Request
Body Operator Begins With - BeginsWith
- Request
Body Operator Ends With - EndsWith
- Request
Body Operator Less Than - LessThan
- Request
Body Operator Less Than Or Equal - LessThanOrEqual
- Request
Body Operator Greater Than - GreaterThan
- Request
Body Operator Greater Than Or Equal - GreaterThanOrEqual
- Request
Body Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
RequestHeaderMatchConditionParameters, RequestHeaderMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Request Header Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Header to be matched
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Request
Header Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Header to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Request
Header Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Header to be matched
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Request
Header Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of Header to be matched
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Request
Header Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of Header to be matched
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Header to be matched
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
RequestHeaderMatchConditionParametersResponse, RequestHeaderMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Header to be matched
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Selector string
- Name of Header to be matched
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Header to be matched
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- selector string
- Name of Header to be matched
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- selector str
- Name of Header to be matched
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- selector String
- Name of Header to be matched
- transforms List<String>
- List of transforms
RequestHeaderOperator, RequestHeaderOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Request
Header Operator Any - Any
- Request
Header Operator Equal - Equal
- Request
Header Operator Contains - Contains
- Request
Header Operator Begins With - BeginsWith
- Request
Header Operator Ends With - EndsWith
- Request
Header Operator Less Than - LessThan
- Request
Header Operator Less Than Or Equal - LessThanOrEqual
- Request
Header Operator Greater Than - GreaterThan
- Request
Header Operator Greater Than Or Equal - GreaterThanOrEqual
- Request
Header Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
RequestMethodMatchConditionParameters, RequestMethodMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Request Method Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator
string | Request
Method Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator
String | Request
Method Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator
string | Request
Method Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator
str | Request
Method Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String | "Equal"
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
RequestMethodMatchConditionParametersResponse, RequestMethodMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
RequestMethodOperator, RequestMethodOperatorArgs
- Equal
- Equal
- Request
Method Operator Equal - Equal
- Equal
- Equal
- Equal
- Equal
- EQUAL
- Equal
- "Equal"
- Equal
RequestSchemeMatchConditionParameters, RequestSchemeMatchConditionParametersArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
RequestSchemeMatchConditionParametersResponse, RequestSchemeMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
RequestUriMatchConditionParameters, RequestUriMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Request Uri Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Request
Uri Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Request
Uri Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Request
Uri Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Request
Uri Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
RequestUriMatchConditionParametersResponse, RequestUriMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
RequestUriOperator, RequestUriOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Request
Uri Operator Any - Any
- Request
Uri Operator Equal - Equal
- Request
Uri Operator Contains - Contains
- Request
Uri Operator Begins With - BeginsWith
- Request
Uri Operator Ends With - EndsWith
- Request
Uri Operator Less Than - LessThan
- Request
Uri Operator Less Than Or Equal - LessThanOrEqual
- Request
Uri Operator Greater Than - GreaterThan
- Request
Uri Operator Greater Than Or Equal - GreaterThanOrEqual
- Request
Uri Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
ResourceReference, ResourceReferenceArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
ResourceReferenceResponse, ResourceReferenceResponseArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
ResponseBasedDetectedErrorTypes, ResponseBasedDetectedErrorTypesArgs
- None
- None
- Tcp
Errors Only - TcpErrorsOnly
- Tcp
And Http Errors - TcpAndHttpErrors
- Response
Based Detected Error Types None - None
- Response
Based Detected Error Types Tcp Errors Only - TcpErrorsOnly
- Response
Based Detected Error Types Tcp And Http Errors - TcpAndHttpErrors
- None
- None
- Tcp
Errors Only - TcpErrorsOnly
- Tcp
And Http Errors - TcpAndHttpErrors
- None
- None
- Tcp
Errors Only - TcpErrorsOnly
- Tcp
And Http Errors - TcpAndHttpErrors
- NONE
- None
- TCP_ERRORS_ONLY
- TcpErrorsOnly
- TCP_AND_HTTP_ERRORS
- TcpAndHttpErrors
- "None"
- None
- "Tcp
Errors Only" - TcpErrorsOnly
- "Tcp
And Http Errors" - TcpAndHttpErrors
ResponseBasedOriginErrorDetectionParameters, ResponseBasedOriginErrorDetectionParametersArgs
- Http
Error List<Pulumi.Ranges Azure Native. Cdn. Inputs. Http Error Range Parameters> - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- Response
Based Pulumi.Detected Error Types Azure Native. Cdn. Response Based Detected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- Response
Based intFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- Http
Error []HttpRanges Error Range Parameters - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- Response
Based ResponseDetected Error Types Based Detected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- Response
Based intFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error List<HttpRanges Error Range Parameters> - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based ResponseDetected Error Types Based Detected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based IntegerFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error HttpRanges Error Range Parameters[] - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based ResponseDetected Error Types Based Detected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based numberFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http_
error_ Sequence[Httpranges Error Range Parameters] - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response_
based_ Responsedetected_ error_ types Based Detected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response_
based_ intfailover_ threshold_ percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error List<Property Map>Ranges - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based "None" | "TcpDetected Error Types Errors Only" | "Tcp And Http Errors" - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based NumberFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
ResponseBasedOriginErrorDetectionParametersResponse, ResponseBasedOriginErrorDetectionParametersResponseArgs
- Http
Error List<Pulumi.Ranges Azure Native. Cdn. Inputs. Http Error Range Parameters Response> - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- Response
Based stringDetected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- Response
Based intFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- Http
Error []HttpRanges Error Range Parameters Response - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- Response
Based stringDetected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- Response
Based intFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error List<HttpRanges Error Range Parameters Response> - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based StringDetected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based IntegerFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error HttpRanges Error Range Parameters Response[] - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based stringDetected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based numberFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
- http_
error_ Sequence[Httpranges Error Range Parameters Response] - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response_
based_ strdetected_ error_ types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response_
based_ intfailover_ threshold_ percentage - The percentage of failed requests in the sample where failover should trigger.
- http
Error List<Property Map>Ranges - The list of Http status code ranges that are considered as server errors for origin and it is marked as unhealthy.
- response
Based StringDetected Error Types - Type of response errors for real user requests for which origin will be deemed unhealthy
- response
Based NumberFailover Threshold Percentage - The percentage of failed requests in the sample where failover should trigger.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified stringBy Type - The type of identity that last modified the resource
- created_
at str - The timestamp of resource creation (UTC)
- created_
by str - An identifier for the identity that created the resource
- created_
by_ strtype - The type of identity that created the resource
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - An identifier for the identity that last modified the resource
- last_
modified_ strby_ type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
Transform, TransformArgs
- Lowercase
- Lowercase
- Uppercase
- Uppercase
- Trim
- Trim
- Url
Decode - UrlDecode
- Url
Encode - UrlEncode
- Remove
Nulls - RemoveNulls
- Transform
Lowercase - Lowercase
- Transform
Uppercase - Uppercase
- Transform
Trim - Trim
- Transform
Url Decode - UrlDecode
- Transform
Url Encode - UrlEncode
- Transform
Remove Nulls - RemoveNulls
- Lowercase
- Lowercase
- Uppercase
- Uppercase
- Trim
- Trim
- Url
Decode - UrlDecode
- Url
Encode - UrlEncode
- Remove
Nulls - RemoveNulls
- Lowercase
- Lowercase
- Uppercase
- Uppercase
- Trim
- Trim
- Url
Decode - UrlDecode
- Url
Encode - UrlEncode
- Remove
Nulls - RemoveNulls
- LOWERCASE
- Lowercase
- UPPERCASE
- Uppercase
- TRIM
- Trim
- URL_DECODE
- UrlDecode
- URL_ENCODE
- UrlEncode
- REMOVE_NULLS
- RemoveNulls
- "Lowercase"
- Lowercase
- "Uppercase"
- Uppercase
- "Trim"
- Trim
- "Url
Decode" - UrlDecode
- "Url
Encode" - UrlEncode
- "Remove
Nulls" - RemoveNulls
UrlFileExtensionMatchConditionParameters, UrlFileExtensionMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Url File Extension Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Url
File Extension Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Url
File Extension Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Url
File Extension Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Url
File Extension Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
UrlFileExtensionMatchConditionParametersResponse, UrlFileExtensionMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
UrlFileExtensionOperator, UrlFileExtensionOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Url
File Extension Operator Any - Any
- Url
File Extension Operator Equal - Equal
- Url
File Extension Operator Contains - Contains
- Url
File Extension Operator Begins With - BeginsWith
- Url
File Extension Operator Ends With - EndsWith
- Url
File Extension Operator Less Than - LessThan
- Url
File Extension Operator Less Than Or Equal - LessThanOrEqual
- Url
File Extension Operator Greater Than - GreaterThan
- Url
File Extension Operator Greater Than Or Equal - GreaterThanOrEqual
- Url
File Extension Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
UrlFileNameMatchConditionParameters, UrlFileNameMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Url File Name Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Url
File Name Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Url
File Name Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Url
File Name Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Url
File Name Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
UrlFileNameMatchConditionParametersResponse, UrlFileNameMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
UrlFileNameOperator, UrlFileNameOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Url
File Name Operator Any - Any
- Url
File Name Operator Equal - Equal
- Url
File Name Operator Contains - Contains
- Url
File Name Operator Begins With - BeginsWith
- Url
File Name Operator Ends With - EndsWith
- Url
File Name Operator Less Than - LessThan
- Url
File Name Operator Less Than Or Equal - LessThanOrEqual
- Url
File Name Operator Greater Than - GreaterThan
- Url
File Name Operator Greater Than Or Equal - GreaterThanOrEqual
- Url
File Name Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Reg
Ex" - RegEx
UrlPathMatchConditionParameters, UrlPathMatchConditionParametersArgs
- Odata
Type string - Operator
string | Pulumi.
Azure Native. Cdn. Url Path Operator - Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms
List<Union<string, Pulumi.
Azure Native. Cdn. Transform>> - List of transforms
- Odata
Type string - Operator
string | Url
Path Operator - Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator
String | Url
Path Operator - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<Either<String,Transform>>
- List of transforms
- odata
Type string - operator
string | Url
Path Operator - Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms (string | Transform)[]
- List of transforms
- odata_
type str - operator
str | Url
Path Operator - Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[Union[str, Transform]]
- List of transforms
- odata
Type String - operator
String | "Any" | "Equal" | "Contains" | "Begins
With" | "Ends With" | "Less Than" | "Less Than Or Equal" | "Greater Than" | "Greater Than Or Equal" | "Wildcard" | "Reg Ex" - Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms
List<String | "Lowercase" | "Uppercase" | "Trim" | "Url
Decode" | "Url Encode" | "Remove Nulls"> - List of transforms
UrlPathMatchConditionParametersResponse, UrlPathMatchConditionParametersResponseArgs
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values List<string> - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms List<string>
- List of transforms
- Odata
Type string - Operator string
- Describes operator to be matched
- Match
Values []string - The match value for the condition of the delivery rule
- Negate
Condition bool - Describes if this is negate condition or not
- Transforms []string
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
- odata
Type string - operator string
- Describes operator to be matched
- match
Values string[] - The match value for the condition of the delivery rule
- negate
Condition boolean - Describes if this is negate condition or not
- transforms string[]
- List of transforms
- odata_
type str - operator str
- Describes operator to be matched
- match_
values Sequence[str] - The match value for the condition of the delivery rule
- negate_
condition bool - Describes if this is negate condition or not
- transforms Sequence[str]
- List of transforms
- odata
Type String - operator String
- Describes operator to be matched
- match
Values List<String> - The match value for the condition of the delivery rule
- negate
Condition Boolean - Describes if this is negate condition or not
- transforms List<String>
- List of transforms
UrlPathOperator, UrlPathOperatorArgs
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Wildcard
- Wildcard
- Reg
Ex - RegEx
- Url
Path Operator Any - Any
- Url
Path Operator Equal - Equal
- Url
Path Operator Contains - Contains
- Url
Path Operator Begins With - BeginsWith
- Url
Path Operator Ends With - EndsWith
- Url
Path Operator Less Than - LessThan
- Url
Path Operator Less Than Or Equal - LessThanOrEqual
- Url
Path Operator Greater Than - GreaterThan
- Url
Path Operator Greater Than Or Equal - GreaterThanOrEqual
- Url
Path Operator Wildcard - Wildcard
- Url
Path Operator Reg Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Wildcard
- Wildcard
- Reg
Ex - RegEx
- Any
- Any
- Equal
- Equal
- Contains
- Contains
- Begins
With - BeginsWith
- Ends
With - EndsWith
- Less
Than - LessThan
- Less
Than Or Equal - LessThanOrEqual
- Greater
Than - GreaterThan
- Greater
Than Or Equal - GreaterThanOrEqual
- Wildcard
- Wildcard
- Reg
Ex - RegEx
- ANY
- Any
- EQUAL
- Equal
- CONTAINS
- Contains
- BEGINS_WITH
- BeginsWith
- ENDS_WITH
- EndsWith
- LESS_THAN
- LessThan
- LESS_THAN_OR_EQUAL
- LessThanOrEqual
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL
- GreaterThanOrEqual
- WILDCARD
- Wildcard
- REG_EX
- RegEx
- "Any"
- Any
- "Equal"
- Equal
- "Contains"
- Contains
- "Begins
With" - BeginsWith
- "Ends
With" - EndsWith
- "Less
Than" - LessThan
- "Less
Than Or Equal" - LessThanOrEqual
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal" - GreaterThanOrEqual
- "Wildcard"
- Wildcard
- "Reg
Ex" - RegEx
UrlRedirectAction, UrlRedirectActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Redirect Action Parameters - Defines the parameters for the action.
- Parameters
Url
Redirect Action Parameters - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlRedirectActionParameters, UrlRedirectActionParametersArgs
- Odata
Type string - Redirect
Type string | Pulumi.Azure Native. Cdn. Redirect Type - The redirect type the rule will use when redirecting traffic.
- Custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- Custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- Custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- Custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- Destination
Protocol string | Pulumi.Azure Native. Cdn. Destination Protocol - Protocol to use for the redirect. The default value is MatchRequest
- Odata
Type string - Redirect
Type string | RedirectType - The redirect type the rule will use when redirecting traffic.
- Custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- Custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- Custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- Custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- Destination
Protocol string | DestinationProtocol - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type String - redirect
Type String | RedirectType - The redirect type the rule will use when redirecting traffic.
- custom
Fragment String - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname String - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path String - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query StringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol String | DestinationProtocol - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type string - redirect
Type string | RedirectType - The redirect type the rule will use when redirecting traffic.
- custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol string | DestinationProtocol - Protocol to use for the redirect. The default value is MatchRequest
- odata_
type str - redirect_
type str | RedirectType - The redirect type the rule will use when redirecting traffic.
- custom_
fragment str - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom_
hostname str - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom_
path str - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom_
query_ strstring - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination_
protocol str | DestinationProtocol - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type String - redirect
Type String | "Moved" | "Found" | "TemporaryRedirect" | "Permanent Redirect" - The redirect type the rule will use when redirecting traffic.
- custom
Fragment String - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname String - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path String - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query StringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol String | "MatchRequest" | "Http" | "Https" - Protocol to use for the redirect. The default value is MatchRequest
UrlRedirectActionParametersResponse, UrlRedirectActionParametersResponseArgs
- Odata
Type string - Redirect
Type string - The redirect type the rule will use when redirecting traffic.
- Custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- Custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- Custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- Custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- Destination
Protocol string - Protocol to use for the redirect. The default value is MatchRequest
- Odata
Type string - Redirect
Type string - The redirect type the rule will use when redirecting traffic.
- Custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- Custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- Custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- Custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- Destination
Protocol string - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type String - redirect
Type String - The redirect type the rule will use when redirecting traffic.
- custom
Fragment String - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname String - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path String - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query StringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol String - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type string - redirect
Type string - The redirect type the rule will use when redirecting traffic.
- custom
Fragment string - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname string - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path string - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query stringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol string - Protocol to use for the redirect. The default value is MatchRequest
- odata_
type str - redirect_
type str - The redirect type the rule will use when redirecting traffic.
- custom_
fragment str - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom_
hostname str - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom_
path str - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom_
query_ strstring - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination_
protocol str - Protocol to use for the redirect. The default value is MatchRequest
- odata
Type String - redirect
Type String - The redirect type the rule will use when redirecting traffic.
- custom
Fragment String - Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.
- custom
Hostname String - Host to redirect. Leave empty to use the incoming host as the destination host.
- custom
Path String - The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.
- custom
Query StringString - The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. ? and & will be added automatically so do not include them.
- destination
Protocol String - Protocol to use for the redirect. The default value is MatchRequest
UrlRedirectActionResponse, UrlRedirectActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Redirect Action Parameters Response - Defines the parameters for the action.
- Parameters
Url
Redirect Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Redirect Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlRewriteAction, UrlRewriteActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Rewrite Action Parameters - Defines the parameters for the action.
- Parameters
Url
Rewrite Action Parameters - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlRewriteActionParameters, UrlRewriteActionParametersArgs
- Destination string
- Define the relative URL to which the above requests will be rewritten by.
- Odata
Type string - Source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- Preserve
Unmatched boolPath - Whether to preserve unmatched path. Default value is true.
- Destination string
- Define the relative URL to which the above requests will be rewritten by.
- Odata
Type string - Source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- Preserve
Unmatched boolPath - Whether to preserve unmatched path. Default value is true.
- destination String
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type String - source
Pattern String - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched BooleanPath - Whether to preserve unmatched path. Default value is true.
- destination string
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type string - source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched booleanPath - Whether to preserve unmatched path. Default value is true.
- destination str
- Define the relative URL to which the above requests will be rewritten by.
- odata_
type str - source_
pattern str - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve_
unmatched_ boolpath - Whether to preserve unmatched path. Default value is true.
- destination String
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type String - source
Pattern String - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched BooleanPath - Whether to preserve unmatched path. Default value is true.
UrlRewriteActionParametersResponse, UrlRewriteActionParametersResponseArgs
- Destination string
- Define the relative URL to which the above requests will be rewritten by.
- Odata
Type string - Source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- Preserve
Unmatched boolPath - Whether to preserve unmatched path. Default value is true.
- Destination string
- Define the relative URL to which the above requests will be rewritten by.
- Odata
Type string - Source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- Preserve
Unmatched boolPath - Whether to preserve unmatched path. Default value is true.
- destination String
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type String - source
Pattern String - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched BooleanPath - Whether to preserve unmatched path. Default value is true.
- destination string
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type string - source
Pattern string - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched booleanPath - Whether to preserve unmatched path. Default value is true.
- destination str
- Define the relative URL to which the above requests will be rewritten by.
- odata_
type str - source_
pattern str - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve_
unmatched_ boolpath - Whether to preserve unmatched path. Default value is true.
- destination String
- Define the relative URL to which the above requests will be rewritten by.
- odata
Type String - source
Pattern String - define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.
- preserve
Unmatched BooleanPath - Whether to preserve unmatched path. Default value is true.
UrlRewriteActionResponse, UrlRewriteActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Rewrite Action Parameters Response - Defines the parameters for the action.
- Parameters
Url
Rewrite Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Rewrite Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlSigningAction, UrlSigningActionArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Signing Action Parameters - Defines the parameters for the action.
- Parameters
Url
Signing Action Parameters - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlSigningActionParameters, UrlSigningActionParametersArgs
- Odata
Type string - Algorithm
string | Pulumi.
Azure Native. Cdn. Algorithm - Algorithm to use for URL signing
- Parameter
Name List<Pulumi.Override Azure Native. Cdn. Inputs. Url Signing Param Identifier> - Defines which query string parameters in the url to be considered for expires, key id etc.
- Odata
Type string - Algorithm string | Algorithm
- Algorithm to use for URL signing
- Parameter
Name []UrlOverride Signing Param Identifier - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type String - algorithm String | Algorithm
- Algorithm to use for URL signing
- parameter
Name List<UrlOverride Signing Param Identifier> - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type string - algorithm string | Algorithm
- Algorithm to use for URL signing
- parameter
Name UrlOverride Signing Param Identifier[] - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata_
type str - algorithm str | Algorithm
- Algorithm to use for URL signing
- parameter_
name_ Sequence[Urloverride Signing Param Identifier] - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type String - algorithm String | "SHA256"
- Algorithm to use for URL signing
- parameter
Name List<Property Map>Override - Defines which query string parameters in the url to be considered for expires, key id etc.
UrlSigningActionParametersResponse, UrlSigningActionParametersResponseArgs
- Odata
Type string - Algorithm string
- Algorithm to use for URL signing
- Parameter
Name List<Pulumi.Override Azure Native. Cdn. Inputs. Url Signing Param Identifier Response> - Defines which query string parameters in the url to be considered for expires, key id etc.
- Odata
Type string - Algorithm string
- Algorithm to use for URL signing
- Parameter
Name []UrlOverride Signing Param Identifier Response - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type String - algorithm String
- Algorithm to use for URL signing
- parameter
Name List<UrlOverride Signing Param Identifier Response> - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type string - algorithm string
- Algorithm to use for URL signing
- parameter
Name UrlOverride Signing Param Identifier Response[] - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata_
type str - algorithm str
- Algorithm to use for URL signing
- parameter_
name_ Sequence[Urloverride Signing Param Identifier Response] - Defines which query string parameters in the url to be considered for expires, key id etc.
- odata
Type String - algorithm String
- Algorithm to use for URL signing
- parameter
Name List<Property Map>Override - Defines which query string parameters in the url to be considered for expires, key id etc.
UrlSigningActionResponse, UrlSigningActionResponseArgs
- Parameters
Pulumi.
Azure Native. Cdn. Inputs. Url Signing Action Parameters Response - Defines the parameters for the action.
- Parameters
Url
Signing Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters Response - Defines the parameters for the action.
- parameters
Url
Signing Action Parameters Response - Defines the parameters for the action.
- parameters Property Map
- Defines the parameters for the action.
UrlSigningKey, UrlSigningKeyArgs
- Key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- Key
Source Pulumi.Parameters Azure Native. Cdn. Inputs. Key Vault Signing Key Parameters - Defines the parameters for using customer key vault for Url Signing Key.
- Key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- Key
Source KeyParameters Vault Signing Key Parameters - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id String - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source KeyParameters Vault Signing Key Parameters - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source KeyParameters Vault Signing Key Parameters - Defines the parameters for using customer key vault for Url Signing Key.
- key_
id str - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key_
source_ Keyparameters Vault Signing Key Parameters - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id String - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source Property MapParameters - Defines the parameters for using customer key vault for Url Signing Key.
UrlSigningKeyResponse, UrlSigningKeyResponseArgs
- Key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- Key
Source Pulumi.Parameters Azure Native. Cdn. Inputs. Key Vault Signing Key Parameters Response - Defines the parameters for using customer key vault for Url Signing Key.
- Key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- Key
Source KeyParameters Vault Signing Key Parameters Response - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id String - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source KeyParameters Vault Signing Key Parameters Response - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id string - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source KeyParameters Vault Signing Key Parameters Response - Defines the parameters for using customer key vault for Url Signing Key.
- key_
id str - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key_
source_ Keyparameters Vault Signing Key Parameters Response - Defines the parameters for using customer key vault for Url Signing Key.
- key
Id String - Defines the customer defined key Id. This id will exist in the incoming request to indicate the key used to form the hash.
- key
Source Property MapParameters - Defines the parameters for using customer key vault for Url Signing Key.
UrlSigningParamIdentifier, UrlSigningParamIdentifierArgs
- Param
Indicator string | Pulumi.Azure Native. Cdn. Param Indicator - Indicates the purpose of the parameter
- Param
Name string - Parameter name
- Param
Indicator string | ParamIndicator - Indicates the purpose of the parameter
- Param
Name string - Parameter name
- param
Indicator String | ParamIndicator - Indicates the purpose of the parameter
- param
Name String - Parameter name
- param
Indicator string | ParamIndicator - Indicates the purpose of the parameter
- param
Name string - Parameter name
- param_
indicator str | ParamIndicator - Indicates the purpose of the parameter
- param_
name str - Parameter name
- param
Indicator String | "Expires" | "KeyId" | "Signature" - Indicates the purpose of the parameter
- param
Name String - Parameter name
UrlSigningParamIdentifierResponse, UrlSigningParamIdentifierResponseArgs
- Param
Indicator string - Indicates the purpose of the parameter
- Param
Name string - Parameter name
- Param
Indicator string - Indicates the purpose of the parameter
- Param
Name string - Parameter name
- param
Indicator String - Indicates the purpose of the parameter
- param
Name String - Parameter name
- param
Indicator string - Indicates the purpose of the parameter
- param
Name string - Parameter name
- param_
indicator str - Indicates the purpose of the parameter
- param_
name str - Parameter name
- param
Indicator String - Indicates the purpose of the parameter
- param
Name String - Parameter name
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cdn:Endpoint endpoint4899 /subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0