body_hash
stringlengths
64
64
body
stringlengths
23
109k
docstring
stringlengths
1
57k
path
stringlengths
4
198
name
stringlengths
1
115
repository_name
stringlengths
7
111
repository_stars
float64
0
191k
lang
stringclasses
1 value
body_without_docstring
stringlengths
14
108k
unified
stringlengths
45
133k
ac7801da2273cead66a3bdf31bb932cff0ca39db8735c4c75059288eb4e41882
@property @pulumi.getter(name='healthProbeSettings') def health_probe_settings(self) -> Optional['outputs.HealthProbeParametersResponse']: '\n Health probe settings to the origin that is used to determine the health of the origin.\n ' return pulumi.get(self, 'health_probe_settings')
Health probe settings to the origin that is used to determine the health of the origin.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
health_probe_settings
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='healthProbeSettings') def health_probe_settings(self) -> Optional['outputs.HealthProbeParametersResponse']: '\n \n ' return pulumi.get(self, 'health_probe_settings')
@property @pulumi.getter(name='healthProbeSettings') def health_probe_settings(self) -> Optional['outputs.HealthProbeParametersResponse']: '\n \n ' return pulumi.get(self, 'health_probe_settings')<|docstring|>Health probe settings to the origin that is used to determine the health of the origin.<|endoftext|>
936625c8be636e1c82ea7f248a73227a549fefebdd3924171c2a6b014faff16e
@property @pulumi.getter(name='responseBasedOriginErrorDetectionSettings') def response_based_origin_error_detection_settings(self) -> Optional['outputs.ResponseBasedOriginErrorDetectionParametersResponse']: '\n The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.\n ' return pulumi.get(self, 'response_based_origin_error_detection_settings')
The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
response_based_origin_error_detection_settings
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='responseBasedOriginErrorDetectionSettings') def response_based_origin_error_detection_settings(self) -> Optional['outputs.ResponseBasedOriginErrorDetectionParametersResponse']: '\n \n ' return pulumi.get(self, 'response_based_origin_error_detection_settings')
@property @pulumi.getter(name='responseBasedOriginErrorDetectionSettings') def response_based_origin_error_detection_settings(self) -> Optional['outputs.ResponseBasedOriginErrorDetectionParametersResponse']: '\n \n ' return pulumi.get(self, 'response_based_origin_error_detection_settings')<|docstring|>The JSON object that contains the properties to determine origin health using real requests/responses.This property is currently not supported.<|endoftext|>
aeb0d2a46f9afee67303dd111accd8ca8b2d7e37111a71e11f1df7b7e6dc21c3
@property @pulumi.getter(name='trafficRestorationTimeToHealedOrNewEndpointsInMinutes') def traffic_restoration_time_to_healed_or_new_endpoints_in_minutes(self) -> Optional[int]: '\n 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.\n ' return pulumi.get(self, 'traffic_restoration_time_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.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
traffic_restoration_time_to_healed_or_new_endpoints_in_minutes
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='trafficRestorationTimeToHealedOrNewEndpointsInMinutes') def traffic_restoration_time_to_healed_or_new_endpoints_in_minutes(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'traffic_restoration_time_to_healed_or_new_endpoints_in_minutes')
@property @pulumi.getter(name='trafficRestorationTimeToHealedOrNewEndpointsInMinutes') def traffic_restoration_time_to_healed_or_new_endpoints_in_minutes(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'traffic_restoration_time_to_healed_or_new_endpoints_in_minutes')<|docstring|>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.<|endoftext|>
a2ab52d409b67e20c03db3296c0d8b03ae872eff3dbe28f0c4db271f3d7378df
def __init__(__self__, *, host_name: str, name: str, enabled: Optional[bool]=None, http_port: Optional[int]=None, https_port: Optional[int]=None, origin_host_header: Optional[str]=None, priority: Optional[int]=None, weight: Optional[int]=None): '\n The main origin of CDN content which is added when creating a CDN endpoint.\n :param str host_name: 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.\n :param str name: Origin name which must be unique within the endpoint. \n :param bool enabled: Origin is enabled for load balancing or not. By default, origin is always enabled.\n :param int http_port: The value of the HTTP port. Must be between 1 and 65535.\n :param int https_port: The value of the HTTPS port. Must be between 1 and 65535.\n :param str origin_host_header: 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.\n :param int priority: 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.\n :param int weight: Weight of the origin in given origin group for load balancing. Must be between 1 and 1000\n ' pulumi.set(__self__, 'host_name', host_name) pulumi.set(__self__, 'name', name) if (enabled is not None): pulumi.set(__self__, 'enabled', enabled) if (http_port is not None): pulumi.set(__self__, 'http_port', http_port) if (https_port is not None): pulumi.set(__self__, 'https_port', https_port) if (origin_host_header is not None): pulumi.set(__self__, 'origin_host_header', origin_host_header) if (priority is not None): pulumi.set(__self__, 'priority', priority) if (weight is not None): pulumi.set(__self__, 'weight', weight)
The main origin of CDN content which is added when creating a CDN endpoint. :param str host_name: 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. :param str name: Origin name which must be unique within the endpoint. :param bool enabled: Origin is enabled for load balancing or not. By default, origin is always enabled. :param int http_port: The value of the HTTP port. Must be between 1 and 65535. :param int https_port: The value of the HTTPS port. Must be between 1 and 65535. :param str origin_host_header: 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered. :param int priority: 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. :param int weight: Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, host_name: str, name: str, enabled: Optional[bool]=None, http_port: Optional[int]=None, https_port: Optional[int]=None, origin_host_header: Optional[str]=None, priority: Optional[int]=None, weight: Optional[int]=None): '\n The main origin of CDN content which is added when creating a CDN endpoint.\n :param str host_name: 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.\n :param str name: Origin name which must be unique within the endpoint. \n :param bool enabled: Origin is enabled for load balancing or not. By default, origin is always enabled.\n :param int http_port: The value of the HTTP port. Must be between 1 and 65535.\n :param int https_port: The value of the HTTPS port. Must be between 1 and 65535.\n :param str origin_host_header: 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.\n :param int priority: 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.\n :param int weight: Weight of the origin in given origin group for load balancing. Must be between 1 and 1000\n ' pulumi.set(__self__, 'host_name', host_name) pulumi.set(__self__, 'name', name) if (enabled is not None): pulumi.set(__self__, 'enabled', enabled) if (http_port is not None): pulumi.set(__self__, 'http_port', http_port) if (https_port is not None): pulumi.set(__self__, 'https_port', https_port) if (origin_host_header is not None): pulumi.set(__self__, 'origin_host_header', origin_host_header) if (priority is not None): pulumi.set(__self__, 'priority', priority) if (weight is not None): pulumi.set(__self__, 'weight', weight)
def __init__(__self__, *, host_name: str, name: str, enabled: Optional[bool]=None, http_port: Optional[int]=None, https_port: Optional[int]=None, origin_host_header: Optional[str]=None, priority: Optional[int]=None, weight: Optional[int]=None): '\n The main origin of CDN content which is added when creating a CDN endpoint.\n :param str host_name: 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.\n :param str name: Origin name which must be unique within the endpoint. \n :param bool enabled: Origin is enabled for load balancing or not. By default, origin is always enabled.\n :param int http_port: The value of the HTTP port. Must be between 1 and 65535.\n :param int https_port: The value of the HTTPS port. Must be between 1 and 65535.\n :param str origin_host_header: 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.\n :param int priority: 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.\n :param int weight: Weight of the origin in given origin group for load balancing. Must be between 1 and 1000\n ' pulumi.set(__self__, 'host_name', host_name) pulumi.set(__self__, 'name', name) if (enabled is not None): pulumi.set(__self__, 'enabled', enabled) if (http_port is not None): pulumi.set(__self__, 'http_port', http_port) if (https_port is not None): pulumi.set(__self__, 'https_port', https_port) if (origin_host_header is not None): pulumi.set(__self__, 'origin_host_header', origin_host_header) if (priority is not None): pulumi.set(__self__, 'priority', priority) if (weight is not None): pulumi.set(__self__, 'weight', weight)<|docstring|>The main origin of CDN content which is added when creating a CDN endpoint. :param str host_name: 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. :param str name: Origin name which must be unique within the endpoint. :param bool enabled: Origin is enabled for load balancing or not. By default, origin is always enabled. :param int http_port: The value of the HTTP port. Must be between 1 and 65535. :param int https_port: The value of the HTTPS port. Must be between 1 and 65535. :param str origin_host_header: 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered. :param int priority: 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. :param int weight: Weight of the origin in given origin group for load balancing. Must be between 1 and 1000<|endoftext|>
e57517b70cbe50051b83c0f8bd101b0176d77521ca2f97165b6d4e831b57650e
@property @pulumi.getter(name='hostName') def host_name(self) -> str: '\n 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.\n ' return pulumi.get(self, 'host_name')
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.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
host_name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='hostName') def host_name(self) -> str: '\n \n ' return pulumi.get(self, 'host_name')
@property @pulumi.getter(name='hostName') def host_name(self) -> str: '\n \n ' return pulumi.get(self, 'host_name')<|docstring|>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.<|endoftext|>
9b7ddfc576223de6b53c154c749405f0c841736f68be8e63fda22884c094b7e9
@property @pulumi.getter def name(self) -> str: '\n Origin name which must be unique within the endpoint. \n ' return pulumi.get(self, 'name')
Origin name which must be unique within the endpoint.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: '\n \n ' return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: '\n \n ' return pulumi.get(self, 'name')<|docstring|>Origin name which must be unique within the endpoint.<|endoftext|>
3d58b05630f696ea36df514916f8ed1a30b29986b09eef039fafa0a6c1b4f949
@property @pulumi.getter def enabled(self) -> Optional[bool]: '\n Origin is enabled for load balancing or not. By default, origin is always enabled.\n ' return pulumi.get(self, 'enabled')
Origin is enabled for load balancing or not. By default, origin is always enabled.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
enabled
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def enabled(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'enabled')
@property @pulumi.getter def enabled(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'enabled')<|docstring|>Origin is enabled for load balancing or not. By default, origin is always enabled.<|endoftext|>
3a4e0213417c71101cd089027e5afdf2d0b0795e550115963cd84e003a069cc7
@property @pulumi.getter(name='httpPort') def http_port(self) -> Optional[int]: '\n The value of the HTTP port. Must be between 1 and 65535.\n ' return pulumi.get(self, 'http_port')
The value of the HTTP port. Must be between 1 and 65535.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
http_port
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='httpPort') def http_port(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'http_port')
@property @pulumi.getter(name='httpPort') def http_port(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'http_port')<|docstring|>The value of the HTTP port. Must be between 1 and 65535.<|endoftext|>
273ba28c6d617b60577aadcc9df8ff034180c4be45b592bfa669734b3c36acff
@property @pulumi.getter(name='httpsPort') def https_port(self) -> Optional[int]: '\n The value of the HTTPS port. Must be between 1 and 65535.\n ' return pulumi.get(self, 'https_port')
The value of the HTTPS port. Must be between 1 and 65535.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
https_port
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='httpsPort') def https_port(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'https_port')
@property @pulumi.getter(name='httpsPort') def https_port(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'https_port')<|docstring|>The value of the HTTPS port. Must be between 1 and 65535.<|endoftext|>
5b9694ffe1aaa4fbd5e896844ccbf9f4265c6d5d3984d07e1165f184b41510fd
@property @pulumi.getter(name='originHostHeader') def origin_host_header(self) -> Optional[str]: '\n 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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.\n ' return pulumi.get(self, 'origin_host_header')
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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
origin_host_header
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='originHostHeader') def origin_host_header(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'origin_host_header')
@property @pulumi.getter(name='originHostHeader') def origin_host_header(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'origin_host_header')<|docstring|>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. If endpoint uses multiple origins for load balancing, then the host header at endpoint is ignored and this one is considered.<|endoftext|>
c379a25fb2226423217c9bc603d7c5436ab64e0073ce4553a7245b48d8b90f55
@property @pulumi.getter def priority(self) -> Optional[int]: '\n 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.\n ' return pulumi.get(self, 'priority')
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.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
priority
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def priority(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'priority')
@property @pulumi.getter def priority(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'priority')<|docstring|>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.<|endoftext|>
2cf9e3e82aa4005cb714d8569b29690b8cf2efad7f0f366b52117238604322e0
@property @pulumi.getter def weight(self) -> Optional[int]: '\n Weight of the origin in given origin group for load balancing. Must be between 1 and 1000\n ' return pulumi.get(self, 'weight')
Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
weight
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def weight(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'weight')
@property @pulumi.getter def weight(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'weight')<|docstring|>Weight of the origin in given origin group for load balancing. Must be between 1 and 1000<|endoftext|>
4f44b58691baa98dd1a4f184a1021aaa37a6fa05735d4d6930b713b0ae337913
def __init__(__self__, *, name: str, parameters: 'outputs.CacheExpirationActionParametersResponse'): "\n Defines the cache expiration action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n :param 'CacheExpirationActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheExpiration') pulumi.set(__self__, 'parameters', parameters)
Defines the cache expiration action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'CacheExpiration'. :param 'CacheExpirationActionParametersResponseArgs' parameters: Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.CacheExpirationActionParametersResponse'): "\n Defines the cache expiration action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n :param 'CacheExpirationActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheExpiration') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.CacheExpirationActionParametersResponse'): "\n Defines the cache expiration action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n :param 'CacheExpirationActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheExpiration') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the cache expiration action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'CacheExpiration'. :param 'CacheExpirationActionParametersResponseArgs' parameters: Defines the parameters for the action.<|endoftext|>
eb3b039b5d38527843afac784646e0b4d573d0ceddd01d92839a061e6bc32a29
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n " return pulumi.get(self, 'name')
The name of the action for the delivery rule. Expected value is 'CacheExpiration'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheExpiration'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the action for the delivery rule. Expected value is 'CacheExpiration'.<|endoftext|>
2c01cac00caf16b21f303c58bbe4645c4d2fcc1ea81244c1b6ff40234b9a8737
@property @pulumi.getter def parameters(self) -> 'outputs.CacheExpirationActionParametersResponse': '\n Defines the parameters for the action.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.CacheExpirationActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.CacheExpirationActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the action.<|endoftext|>
436224dcf6f02a7e31978062495419e306279d2153d37828bd8c5d2c5d4faa7a
def __init__(__self__, *, name: str, parameters: 'outputs.CacheKeyQueryStringActionParametersResponse'): "\n Defines the cache-key query string action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n :param 'CacheKeyQueryStringActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheKeyQueryString') pulumi.set(__self__, 'parameters', parameters)
Defines the cache-key query string action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'CacheKeyQueryString'. :param 'CacheKeyQueryStringActionParametersResponseArgs' parameters: Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.CacheKeyQueryStringActionParametersResponse'): "\n Defines the cache-key query string action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n :param 'CacheKeyQueryStringActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheKeyQueryString') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.CacheKeyQueryStringActionParametersResponse'): "\n Defines the cache-key query string action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n :param 'CacheKeyQueryStringActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'CacheKeyQueryString') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the cache-key query string action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'CacheKeyQueryString'. :param 'CacheKeyQueryStringActionParametersResponseArgs' parameters: Defines the parameters for the action.<|endoftext|>
c357eb75af97487a55fd70f01196b6099a1ca281cbca79d02d7228f63ba53c59
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n " return pulumi.get(self, 'name')
The name of the action for the delivery rule. Expected value is 'CacheKeyQueryString'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'CacheKeyQueryString'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the action for the delivery rule. Expected value is 'CacheKeyQueryString'.<|endoftext|>
21cb404857b8beff81b5ce6aa9c72548b125e0b19837447770ef8145afbf60eb
@property @pulumi.getter def parameters(self) -> 'outputs.CacheKeyQueryStringActionParametersResponse': '\n Defines the parameters for the action.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.CacheKeyQueryStringActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.CacheKeyQueryStringActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the action.<|endoftext|>
57cb37fb25bf9c23c0b1081716051d949f893d2c178cdf5f7b012b940aa146bc
def __init__(__self__, *, name: str, parameters: 'outputs.CookiesMatchConditionParametersResponse'): "\n Defines the Cookies condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n :param 'CookiesMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'Cookies') pulumi.set(__self__, 'parameters', parameters)
Defines the Cookies condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'Cookies'. :param 'CookiesMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.CookiesMatchConditionParametersResponse'): "\n Defines the Cookies condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n :param 'CookiesMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'Cookies') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.CookiesMatchConditionParametersResponse'): "\n Defines the Cookies condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n :param 'CookiesMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'Cookies') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the Cookies condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'Cookies'. :param 'CookiesMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
0f23afa21064017d1a606b9e60eff9b0b65b45be80862e4bdea7f19d91e5be1d
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'Cookies'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'Cookies'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'Cookies'.<|endoftext|>
0206714a16af1a356e5fcfe49a3aa3479bd7e21ce1c4706e2a7db86e39e39b4d
@property @pulumi.getter def parameters(self) -> 'outputs.CookiesMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.CookiesMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.CookiesMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
8620ab722d7a28a7239af3a8211d47ce29f711c8a91d14e7565a384d6253587b
def __init__(__self__, *, name: str, parameters: 'outputs.HttpVersionMatchConditionParametersResponse'): "\n Defines the HttpVersion condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n :param 'HttpVersionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'HttpVersion') pulumi.set(__self__, 'parameters', parameters)
Defines the HttpVersion condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'HttpVersion'. :param 'HttpVersionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.HttpVersionMatchConditionParametersResponse'): "\n Defines the HttpVersion condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n :param 'HttpVersionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'HttpVersion') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.HttpVersionMatchConditionParametersResponse'): "\n Defines the HttpVersion condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n :param 'HttpVersionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'HttpVersion') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the HttpVersion condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'HttpVersion'. :param 'HttpVersionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
53fe4f0ba6a8b11bb4cc1f3c84dfc4517e3e317d587733382995d80efde7eee3
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'HttpVersion'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'HttpVersion'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'HttpVersion'.<|endoftext|>
afacd2d9523556134fb516f2c19124ee7ec0dbfca24c8aa4fa61cbfdc9e9efed
@property @pulumi.getter def parameters(self) -> 'outputs.HttpVersionMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.HttpVersionMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.HttpVersionMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
559e7cb20387297ff0409bf6a3bc3429f70ffe1178ff11779ad7f38f1387c130
def __init__(__self__, *, name: str, parameters: 'outputs.IsDeviceMatchConditionParametersResponse'): "\n Defines the IsDevice condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n :param 'IsDeviceMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'IsDevice') pulumi.set(__self__, 'parameters', parameters)
Defines the IsDevice condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'IsDevice'. :param 'IsDeviceMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.IsDeviceMatchConditionParametersResponse'): "\n Defines the IsDevice condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n :param 'IsDeviceMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'IsDevice') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.IsDeviceMatchConditionParametersResponse'): "\n Defines the IsDevice condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n :param 'IsDeviceMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'IsDevice') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the IsDevice condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'IsDevice'. :param 'IsDeviceMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
ea39ae145f8658684b39bfef09910928c58988e19aa3d6010141cc04466abcbb
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'IsDevice'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'IsDevice'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'IsDevice'.<|endoftext|>
3fadd083b62ef32d05b770ccd2935586bfdb790de50f435643ad70b687a9e482
@property @pulumi.getter def parameters(self) -> 'outputs.IsDeviceMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.IsDeviceMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.IsDeviceMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
0a6d7ce286a0313519cbaf22c996e1b3acc95938960f7e2c047dc36ec380701b
def __init__(__self__, *, name: str, parameters: 'outputs.PostArgsMatchConditionParametersResponse'): "\n Defines the PostArgs condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n :param 'PostArgsMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'PostArgs') pulumi.set(__self__, 'parameters', parameters)
Defines the PostArgs condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'PostArgs'. :param 'PostArgsMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.PostArgsMatchConditionParametersResponse'): "\n Defines the PostArgs condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n :param 'PostArgsMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'PostArgs') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.PostArgsMatchConditionParametersResponse'): "\n Defines the PostArgs condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n :param 'PostArgsMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'PostArgs') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the PostArgs condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'PostArgs'. :param 'PostArgsMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
4af572675763cda94aae6d15f5523455901239efe7400bdc5e15d4c46e3d65ee
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'PostArgs'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'PostArgs'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'PostArgs'.<|endoftext|>
76721806a0617abc96cacda95ef42611c57b9f5b912e7c5aa9dd279e4b92f504
@property @pulumi.getter def parameters(self) -> 'outputs.PostArgsMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.PostArgsMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.PostArgsMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
ccba3a0b6dbd042683d621128e02765a4d37760ced36622cd0bd9e27db5a0562
def __init__(__self__, *, name: str, parameters: 'outputs.QueryStringMatchConditionParametersResponse'): "\n Defines the QueryString condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n :param 'QueryStringMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'QueryString') pulumi.set(__self__, 'parameters', parameters)
Defines the QueryString condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'QueryString'. :param 'QueryStringMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.QueryStringMatchConditionParametersResponse'): "\n Defines the QueryString condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n :param 'QueryStringMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'QueryString') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.QueryStringMatchConditionParametersResponse'): "\n Defines the QueryString condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n :param 'QueryStringMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'QueryString') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the QueryString condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'QueryString'. :param 'QueryStringMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
cfed23bca09ea675c8d7cdba9dd3328ee59872d5b65731ce79c75724c217ee77
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'QueryString'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'QueryString'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'QueryString'.<|endoftext|>
73c4ff396f70577e0d792151e0048d387b93da94135e54d4c19f7d6457baa494
@property @pulumi.getter def parameters(self) -> 'outputs.QueryStringMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.QueryStringMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.QueryStringMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
76c7d24124b315b5faa5fdda555ca40d59a7b7eefa40e48e3e2eb5c7ab49189b
def __init__(__self__, *, name: str, parameters: 'outputs.RemoteAddressMatchConditionParametersResponse'): "\n Defines the RemoteAddress condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n :param 'RemoteAddressMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RemoteAddress') pulumi.set(__self__, 'parameters', parameters)
Defines the RemoteAddress condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RemoteAddress'. :param 'RemoteAddressMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RemoteAddressMatchConditionParametersResponse'): "\n Defines the RemoteAddress condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n :param 'RemoteAddressMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RemoteAddress') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RemoteAddressMatchConditionParametersResponse'): "\n Defines the RemoteAddress condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n :param 'RemoteAddressMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RemoteAddress') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RemoteAddress condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RemoteAddress'. :param 'RemoteAddressMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
dccd50bf9592a07134a919702a3d32bd9ec80897c7920db5f4ba9ff7910bfd3a
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RemoteAddress'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RemoteAddress'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RemoteAddress'.<|endoftext|>
4adb2754224cfa297259a049f5f17f7615d8392e6a86fb9ca96568df1db00c80
@property @pulumi.getter def parameters(self) -> 'outputs.RemoteAddressMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RemoteAddressMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RemoteAddressMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
1a4f715e2a15c0c113eec79047a76f8429d255a6ee0bb1b2a618cf719e939aaa
def __init__(__self__, *, name: str, parameters: 'outputs.RequestBodyMatchConditionParametersResponse'): "\n Defines the RequestBody condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n :param 'RequestBodyMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestBody') pulumi.set(__self__, 'parameters', parameters)
Defines the RequestBody condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestBody'. :param 'RequestBodyMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RequestBodyMatchConditionParametersResponse'): "\n Defines the RequestBody condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n :param 'RequestBodyMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestBody') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RequestBodyMatchConditionParametersResponse'): "\n Defines the RequestBody condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n :param 'RequestBodyMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestBody') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RequestBody condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestBody'. :param 'RequestBodyMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
ef4f933ed31add0354cd722b5b4b9e788fa703131d5c8adb39559a26216ab961
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RequestBody'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestBody'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RequestBody'.<|endoftext|>
3652379b1a5ab4c0e4502348b0829f83e5344a60de1e4723b14556c5cf9a78c1
@property @pulumi.getter def parameters(self) -> 'outputs.RequestBodyMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RequestBodyMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RequestBodyMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
aa97ab5c832f87673cbcff8c038d23682350eea773a37bc1dbc99cff2ba7a65a
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the request header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyRequestHeader') pulumi.set(__self__, 'parameters', parameters)
Defines the request header action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'ModifyRequestHeader'. :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the request header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyRequestHeader') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the request header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyRequestHeader') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the request header action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'ModifyRequestHeader'. :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.<|endoftext|>
a20740553bacd66343693f37f35413cb40b2e6314963e89cf0f2d06de23bf52b
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n " return pulumi.get(self, 'name')
The name of the action for the delivery rule. Expected value is 'ModifyRequestHeader'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyRequestHeader'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the action for the delivery rule. Expected value is 'ModifyRequestHeader'.<|endoftext|>
02134d3b0c99c2edae7b300f9b95ee16f200db3dd03e99e8086af8ba76fddca4
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n Defines the parameters for the action.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the action.<|endoftext|>
9071099e11d11a4b1a6ccf953edb6323d98ec15102848df2a605225a18dca2af
def __init__(__self__, *, name: str, parameters: 'outputs.RequestHeaderMatchConditionParametersResponse'): "\n Defines the RequestHeader condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n :param 'RequestHeaderMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestHeader') pulumi.set(__self__, 'parameters', parameters)
Defines the RequestHeader condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestHeader'. :param 'RequestHeaderMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RequestHeaderMatchConditionParametersResponse'): "\n Defines the RequestHeader condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n :param 'RequestHeaderMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestHeader') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RequestHeaderMatchConditionParametersResponse'): "\n Defines the RequestHeader condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n :param 'RequestHeaderMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestHeader') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RequestHeader condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestHeader'. :param 'RequestHeaderMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
ddeb8e63755d4bd407046f35877c9c913b175ec7c00c109c51eee83f4458d222
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RequestHeader'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestHeader'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RequestHeader'.<|endoftext|>
58adc8a14c715e9aa760a30c32184a2f9511723e3e6b56685484655860d63641
@property @pulumi.getter def parameters(self) -> 'outputs.RequestHeaderMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RequestHeaderMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RequestHeaderMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
7cb0cd725d479903b82f5aeca7d341966154782759b4589d742948f1778cc8c7
def __init__(__self__, *, name: str, parameters: 'outputs.RequestMethodMatchConditionParametersResponse'): "\n Defines the RequestMethod condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n :param 'RequestMethodMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestMethod') pulumi.set(__self__, 'parameters', parameters)
Defines the RequestMethod condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestMethod'. :param 'RequestMethodMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RequestMethodMatchConditionParametersResponse'): "\n Defines the RequestMethod condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n :param 'RequestMethodMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestMethod') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RequestMethodMatchConditionParametersResponse'): "\n Defines the RequestMethod condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n :param 'RequestMethodMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestMethod') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RequestMethod condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestMethod'. :param 'RequestMethodMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
939a72d18dce376faf2bfd3a556eb213c6f1ef6c248ec9490ce89a565b1ec88b
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RequestMethod'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestMethod'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RequestMethod'.<|endoftext|>
a8a7e27c150e07b0570aee84ee4d7530879416988b073fad3c1d96c51e9a1263
@property @pulumi.getter def parameters(self) -> 'outputs.RequestMethodMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RequestMethodMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RequestMethodMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
74b6caad5bcfbe2e52613c498982f05dbfe8101e6b4a1c9ee715661431cd86b0
def __init__(__self__, *, name: str, parameters: 'outputs.RequestSchemeMatchConditionParametersResponse'): "\n Defines the RequestScheme condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n :param 'RequestSchemeMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestScheme') pulumi.set(__self__, 'parameters', parameters)
Defines the RequestScheme condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestScheme'. :param 'RequestSchemeMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RequestSchemeMatchConditionParametersResponse'): "\n Defines the RequestScheme condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n :param 'RequestSchemeMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestScheme') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RequestSchemeMatchConditionParametersResponse'): "\n Defines the RequestScheme condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n :param 'RequestSchemeMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestScheme') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RequestScheme condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestScheme'. :param 'RequestSchemeMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
a1fa6b8e66f9a60f426b1f5ed0abe6ea5f9a7dafd216f04cea487c74318f86e7
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RequestScheme'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestScheme'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RequestScheme'.<|endoftext|>
04bffefd11b7269b82fb6f59adceea620114e2df7f80008425b47210e7cd82c1
@property @pulumi.getter def parameters(self) -> 'outputs.RequestSchemeMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RequestSchemeMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RequestSchemeMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
fb82bdcc3514a525dab0a894f72f679269fd911267e973cdb9cd68b069499f3f
def __init__(__self__, *, name: str, parameters: 'outputs.RequestUriMatchConditionParametersResponse'): "\n Defines the RequestUri condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n :param 'RequestUriMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestUri') pulumi.set(__self__, 'parameters', parameters)
Defines the RequestUri condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestUri'. :param 'RequestUriMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.RequestUriMatchConditionParametersResponse'): "\n Defines the RequestUri condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n :param 'RequestUriMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestUri') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.RequestUriMatchConditionParametersResponse'): "\n Defines the RequestUri condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n :param 'RequestUriMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'RequestUri') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the RequestUri condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'RequestUri'. :param 'RequestUriMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
6ad20d912e78cd1c322917382c1ac169e603da12751aa5091048eb4789204e71
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'RequestUri'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'RequestUri'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'RequestUri'.<|endoftext|>
856dfdf7cfd50066cfcd6942f87dedfbb92735f07d95a566cfe1058d1802c48b
@property @pulumi.getter def parameters(self) -> 'outputs.RequestUriMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.RequestUriMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.RequestUriMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
ccbc6446254bf7f5fefb430c6d1adf1eaf1ef623c212d5d4843702c3615200f0
def __init__(__self__, *, actions: Sequence[Any], order: int, conditions: Optional[Sequence[Any]]=None, name: Optional[str]=None): "\n A rule that specifies a set of actions and conditions\n :param Sequence[Union['DeliveryRuleCacheExpirationActionResponseArgs', 'DeliveryRuleCacheKeyQueryStringActionResponseArgs', 'DeliveryRuleRequestHeaderActionResponseArgs', 'DeliveryRuleResponseHeaderActionResponseArgs', 'OriginGroupOverrideActionResponseArgs', 'UrlRedirectActionResponseArgs', 'UrlRewriteActionResponseArgs']] actions: A list of actions that are executed when all the conditions of a rule are satisfied.\n :param int order: 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.\n :param Sequence[Union['DeliveryRuleCookiesConditionResponseArgs', 'DeliveryRuleHttpVersionConditionResponseArgs', 'DeliveryRuleIsDeviceConditionResponseArgs', 'DeliveryRulePostArgsConditionResponseArgs', 'DeliveryRuleQueryStringConditionResponseArgs', 'DeliveryRuleRemoteAddressConditionResponseArgs', 'DeliveryRuleRequestBodyConditionResponseArgs', 'DeliveryRuleRequestHeaderConditionResponseArgs', 'DeliveryRuleRequestMethodConditionResponseArgs', 'DeliveryRuleRequestSchemeConditionResponseArgs', 'DeliveryRuleRequestUriConditionResponseArgs', 'DeliveryRuleUrlFileExtensionConditionResponseArgs', 'DeliveryRuleUrlFileNameConditionResponseArgs', 'DeliveryRuleUrlPathConditionResponseArgs']] conditions: A list of conditions that must be matched for the actions to be executed\n :param str name: Name of the rule\n " pulumi.set(__self__, 'actions', actions) pulumi.set(__self__, 'order', order) if (conditions is not None): pulumi.set(__self__, 'conditions', conditions) if (name is not None): pulumi.set(__self__, 'name', name)
A rule that specifies a set of actions and conditions :param Sequence[Union['DeliveryRuleCacheExpirationActionResponseArgs', 'DeliveryRuleCacheKeyQueryStringActionResponseArgs', 'DeliveryRuleRequestHeaderActionResponseArgs', 'DeliveryRuleResponseHeaderActionResponseArgs', 'OriginGroupOverrideActionResponseArgs', 'UrlRedirectActionResponseArgs', 'UrlRewriteActionResponseArgs']] actions: A list of actions that are executed when all the conditions of a rule are satisfied. :param int order: 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. :param Sequence[Union['DeliveryRuleCookiesConditionResponseArgs', 'DeliveryRuleHttpVersionConditionResponseArgs', 'DeliveryRuleIsDeviceConditionResponseArgs', 'DeliveryRulePostArgsConditionResponseArgs', 'DeliveryRuleQueryStringConditionResponseArgs', 'DeliveryRuleRemoteAddressConditionResponseArgs', 'DeliveryRuleRequestBodyConditionResponseArgs', 'DeliveryRuleRequestHeaderConditionResponseArgs', 'DeliveryRuleRequestMethodConditionResponseArgs', 'DeliveryRuleRequestSchemeConditionResponseArgs', 'DeliveryRuleRequestUriConditionResponseArgs', 'DeliveryRuleUrlFileExtensionConditionResponseArgs', 'DeliveryRuleUrlFileNameConditionResponseArgs', 'DeliveryRuleUrlPathConditionResponseArgs']] conditions: A list of conditions that must be matched for the actions to be executed :param str name: Name of the rule
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, actions: Sequence[Any], order: int, conditions: Optional[Sequence[Any]]=None, name: Optional[str]=None): "\n A rule that specifies a set of actions and conditions\n :param Sequence[Union['DeliveryRuleCacheExpirationActionResponseArgs', 'DeliveryRuleCacheKeyQueryStringActionResponseArgs', 'DeliveryRuleRequestHeaderActionResponseArgs', 'DeliveryRuleResponseHeaderActionResponseArgs', 'OriginGroupOverrideActionResponseArgs', 'UrlRedirectActionResponseArgs', 'UrlRewriteActionResponseArgs']] actions: A list of actions that are executed when all the conditions of a rule are satisfied.\n :param int order: 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.\n :param Sequence[Union['DeliveryRuleCookiesConditionResponseArgs', 'DeliveryRuleHttpVersionConditionResponseArgs', 'DeliveryRuleIsDeviceConditionResponseArgs', 'DeliveryRulePostArgsConditionResponseArgs', 'DeliveryRuleQueryStringConditionResponseArgs', 'DeliveryRuleRemoteAddressConditionResponseArgs', 'DeliveryRuleRequestBodyConditionResponseArgs', 'DeliveryRuleRequestHeaderConditionResponseArgs', 'DeliveryRuleRequestMethodConditionResponseArgs', 'DeliveryRuleRequestSchemeConditionResponseArgs', 'DeliveryRuleRequestUriConditionResponseArgs', 'DeliveryRuleUrlFileExtensionConditionResponseArgs', 'DeliveryRuleUrlFileNameConditionResponseArgs', 'DeliveryRuleUrlPathConditionResponseArgs']] conditions: A list of conditions that must be matched for the actions to be executed\n :param str name: Name of the rule\n " pulumi.set(__self__, 'actions', actions) pulumi.set(__self__, 'order', order) if (conditions is not None): pulumi.set(__self__, 'conditions', conditions) if (name is not None): pulumi.set(__self__, 'name', name)
def __init__(__self__, *, actions: Sequence[Any], order: int, conditions: Optional[Sequence[Any]]=None, name: Optional[str]=None): "\n A rule that specifies a set of actions and conditions\n :param Sequence[Union['DeliveryRuleCacheExpirationActionResponseArgs', 'DeliveryRuleCacheKeyQueryStringActionResponseArgs', 'DeliveryRuleRequestHeaderActionResponseArgs', 'DeliveryRuleResponseHeaderActionResponseArgs', 'OriginGroupOverrideActionResponseArgs', 'UrlRedirectActionResponseArgs', 'UrlRewriteActionResponseArgs']] actions: A list of actions that are executed when all the conditions of a rule are satisfied.\n :param int order: 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.\n :param Sequence[Union['DeliveryRuleCookiesConditionResponseArgs', 'DeliveryRuleHttpVersionConditionResponseArgs', 'DeliveryRuleIsDeviceConditionResponseArgs', 'DeliveryRulePostArgsConditionResponseArgs', 'DeliveryRuleQueryStringConditionResponseArgs', 'DeliveryRuleRemoteAddressConditionResponseArgs', 'DeliveryRuleRequestBodyConditionResponseArgs', 'DeliveryRuleRequestHeaderConditionResponseArgs', 'DeliveryRuleRequestMethodConditionResponseArgs', 'DeliveryRuleRequestSchemeConditionResponseArgs', 'DeliveryRuleRequestUriConditionResponseArgs', 'DeliveryRuleUrlFileExtensionConditionResponseArgs', 'DeliveryRuleUrlFileNameConditionResponseArgs', 'DeliveryRuleUrlPathConditionResponseArgs']] conditions: A list of conditions that must be matched for the actions to be executed\n :param str name: Name of the rule\n " pulumi.set(__self__, 'actions', actions) pulumi.set(__self__, 'order', order) if (conditions is not None): pulumi.set(__self__, 'conditions', conditions) if (name is not None): pulumi.set(__self__, 'name', name)<|docstring|>A rule that specifies a set of actions and conditions :param Sequence[Union['DeliveryRuleCacheExpirationActionResponseArgs', 'DeliveryRuleCacheKeyQueryStringActionResponseArgs', 'DeliveryRuleRequestHeaderActionResponseArgs', 'DeliveryRuleResponseHeaderActionResponseArgs', 'OriginGroupOverrideActionResponseArgs', 'UrlRedirectActionResponseArgs', 'UrlRewriteActionResponseArgs']] actions: A list of actions that are executed when all the conditions of a rule are satisfied. :param int order: 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. :param Sequence[Union['DeliveryRuleCookiesConditionResponseArgs', 'DeliveryRuleHttpVersionConditionResponseArgs', 'DeliveryRuleIsDeviceConditionResponseArgs', 'DeliveryRulePostArgsConditionResponseArgs', 'DeliveryRuleQueryStringConditionResponseArgs', 'DeliveryRuleRemoteAddressConditionResponseArgs', 'DeliveryRuleRequestBodyConditionResponseArgs', 'DeliveryRuleRequestHeaderConditionResponseArgs', 'DeliveryRuleRequestMethodConditionResponseArgs', 'DeliveryRuleRequestSchemeConditionResponseArgs', 'DeliveryRuleRequestUriConditionResponseArgs', 'DeliveryRuleUrlFileExtensionConditionResponseArgs', 'DeliveryRuleUrlFileNameConditionResponseArgs', 'DeliveryRuleUrlPathConditionResponseArgs']] conditions: A list of conditions that must be matched for the actions to be executed :param str name: Name of the rule<|endoftext|>
de79389aea21a8075764928332f89c2f50b8661f7d9ce8d2f4882a06d1104f6d
@property @pulumi.getter def actions(self) -> Sequence[Any]: '\n A list of actions that are executed when all the conditions of a rule are satisfied.\n ' return pulumi.get(self, 'actions')
A list of actions that are executed when all the conditions of a rule are satisfied.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
actions
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def actions(self) -> Sequence[Any]: '\n \n ' return pulumi.get(self, 'actions')
@property @pulumi.getter def actions(self) -> Sequence[Any]: '\n \n ' return pulumi.get(self, 'actions')<|docstring|>A list of actions that are executed when all the conditions of a rule are satisfied.<|endoftext|>
6788fb32fac01d389bd827766a29d96b80411d9f2d89c7c150251c93ae30559a
@property @pulumi.getter def order(self) -> int: '\n 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.\n ' return pulumi.get(self, 'order')
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.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
order
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def order(self) -> int: '\n \n ' return pulumi.get(self, 'order')
@property @pulumi.getter def order(self) -> int: '\n \n ' return pulumi.get(self, 'order')<|docstring|>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.<|endoftext|>
654fe2602a2e664f0515bfd8a18926d84a4f4d2b884671658a176c9652517a13
@property @pulumi.getter def conditions(self) -> Optional[Sequence[Any]]: '\n A list of conditions that must be matched for the actions to be executed\n ' return pulumi.get(self, 'conditions')
A list of conditions that must be matched for the actions to be executed
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
conditions
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def conditions(self) -> Optional[Sequence[Any]]: '\n \n ' return pulumi.get(self, 'conditions')
@property @pulumi.getter def conditions(self) -> Optional[Sequence[Any]]: '\n \n ' return pulumi.get(self, 'conditions')<|docstring|>A list of conditions that must be matched for the actions to be executed<|endoftext|>
b0f3a1e392cc6cd8fc30f732b775ff9884bcf7b7e5830676103cfc162f8dbf2e
@property @pulumi.getter def name(self) -> Optional[str]: '\n Name of the rule\n ' return pulumi.get(self, 'name')
Name of the rule
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'name')<|docstring|>Name of the rule<|endoftext|>
3308f9d3e3b3e1ec04d17764f1e79a912e5b43d1c44141255f53a017b84c0a5e
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the response header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyResponseHeader') pulumi.set(__self__, 'parameters', parameters)
Defines the response header action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'ModifyResponseHeader'. :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the response header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyResponseHeader') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.HeaderActionParametersResponse'): "\n Defines the response header action for the delivery rule.\n :param str name: The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.\n " pulumi.set(__self__, 'name', 'ModifyResponseHeader') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the response header action for the delivery rule. :param str name: The name of the action for the delivery rule. Expected value is 'ModifyResponseHeader'. :param 'HeaderActionParametersResponseArgs' parameters: Defines the parameters for the action.<|endoftext|>
2eeb0550ea2b1c771ad938fdef048ce8bf96fb5073f8cb2fb0f4e817758c5eff
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n " return pulumi.get(self, 'name')
The name of the action for the delivery rule. Expected value is 'ModifyResponseHeader'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the action for the delivery rule.\n Expected value is 'ModifyResponseHeader'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the action for the delivery rule. Expected value is 'ModifyResponseHeader'.<|endoftext|>
02134d3b0c99c2edae7b300f9b95ee16f200db3dd03e99e8086af8ba76fddca4
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n Defines the parameters for the action.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the action.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.HeaderActionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the action.<|endoftext|>
07e339f5a581f28310578b5e726fd65b77e815528b363ba60d244aa5fa553378
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileExtensionMatchConditionParametersResponse'): "\n Defines the UrlFileExtension condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n :param 'UrlFileExtensionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileExtension') pulumi.set(__self__, 'parameters', parameters)
Defines the UrlFileExtension condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlFileExtension'. :param 'UrlFileExtensionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileExtensionMatchConditionParametersResponse'): "\n Defines the UrlFileExtension condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n :param 'UrlFileExtensionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileExtension') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileExtensionMatchConditionParametersResponse'): "\n Defines the UrlFileExtension condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n :param 'UrlFileExtensionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileExtension') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the UrlFileExtension condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlFileExtension'. :param 'UrlFileExtensionMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
903d19ee539b87a981e0c58044cc0aa60f2984905dd15dfaf096530a88c3553f
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'UrlFileExtension'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileExtension'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'UrlFileExtension'.<|endoftext|>
d286f833ab3fd6afa08c8de36f277e7a4fbc224263a2b04e65efee30aaea42a7
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileExtensionMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileExtensionMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileExtensionMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
739bf0b096f32742b653c7f1dc06a72fe0ac3dde5767ed66daf80516fbf5402a
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileNameMatchConditionParametersResponse'): "\n Defines the UrlFileName condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n :param 'UrlFileNameMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileName') pulumi.set(__self__, 'parameters', parameters)
Defines the UrlFileName condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlFileName'. :param 'UrlFileNameMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileNameMatchConditionParametersResponse'): "\n Defines the UrlFileName condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n :param 'UrlFileNameMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileName') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.UrlFileNameMatchConditionParametersResponse'): "\n Defines the UrlFileName condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n :param 'UrlFileNameMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlFileName') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the UrlFileName condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlFileName'. :param 'UrlFileNameMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
8c57f135af26b1f327f37d83db29fe638ea441837e1ceed531bf1c1b523c34ce
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'UrlFileName'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlFileName'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'UrlFileName'.<|endoftext|>
79b677e8d3d642e6d62852d52a4e2462f53f8138819cb666e91f0e9fe67eb956
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileNameMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileNameMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.UrlFileNameMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
619d5931d1053020293f53fe0f3464f9f7f2d5b773aa40890a25c2067b128778
def __init__(__self__, *, name: str, parameters: 'outputs.UrlPathMatchConditionParametersResponse'): "\n Defines the UrlPath condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n :param 'UrlPathMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlPath') pulumi.set(__self__, 'parameters', parameters)
Defines the UrlPath condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlPath'. :param 'UrlPathMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, name: str, parameters: 'outputs.UrlPathMatchConditionParametersResponse'): "\n Defines the UrlPath condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n :param 'UrlPathMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlPath') pulumi.set(__self__, 'parameters', parameters)
def __init__(__self__, *, name: str, parameters: 'outputs.UrlPathMatchConditionParametersResponse'): "\n Defines the UrlPath condition for the delivery rule.\n :param str name: The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n :param 'UrlPathMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.\n " pulumi.set(__self__, 'name', 'UrlPath') pulumi.set(__self__, 'parameters', parameters)<|docstring|>Defines the UrlPath condition for the delivery rule. :param str name: The name of the condition for the delivery rule. Expected value is 'UrlPath'. :param 'UrlPathMatchConditionParametersResponseArgs' parameters: Defines the parameters for the condition.<|endoftext|>
a6d1653786e6a1d897689a3a5429174cc6ffac50b916302f417ef0d6a240f0d8
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n " return pulumi.get(self, 'name')
The name of the condition for the delivery rule. Expected value is 'UrlPath'.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n " return pulumi.get(self, 'name')
@property @pulumi.getter def name(self) -> str: "\n The name of the condition for the delivery rule.\n Expected value is 'UrlPath'.\n " return pulumi.get(self, 'name')<|docstring|>The name of the condition for the delivery rule. Expected value is 'UrlPath'.<|endoftext|>
03073d448e15c958ac9df06a7661e22c7bc3b07463034436c4ee4d366aaf573f
@property @pulumi.getter def parameters(self) -> 'outputs.UrlPathMatchConditionParametersResponse': '\n Defines the parameters for the condition.\n ' return pulumi.get(self, 'parameters')
Defines the parameters for the condition.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
parameters
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def parameters(self) -> 'outputs.UrlPathMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')
@property @pulumi.getter def parameters(self) -> 'outputs.UrlPathMatchConditionParametersResponse': '\n \n ' return pulumi.get(self, 'parameters')<|docstring|>Defines the parameters for the condition.<|endoftext|>
7d2643fc5261dfc26d51613a5a6c7c9c4baa5d51e425c28a10d0f8ad7e120472
def __init__(__self__, *, rules: Sequence['outputs.DeliveryRuleResponse'], description: Optional[str]=None): "\n A policy that specifies the delivery rules to be used for an endpoint.\n :param Sequence['DeliveryRuleResponseArgs'] rules: A list of the delivery rules.\n :param str description: User-friendly description of the policy.\n " pulumi.set(__self__, 'rules', rules) if (description is not None): pulumi.set(__self__, 'description', description)
A policy that specifies the delivery rules to be used for an endpoint. :param Sequence['DeliveryRuleResponseArgs'] rules: A list of the delivery rules. :param str description: User-friendly description of the policy.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, rules: Sequence['outputs.DeliveryRuleResponse'], description: Optional[str]=None): "\n A policy that specifies the delivery rules to be used for an endpoint.\n :param Sequence['DeliveryRuleResponseArgs'] rules: A list of the delivery rules.\n :param str description: User-friendly description of the policy.\n " pulumi.set(__self__, 'rules', rules) if (description is not None): pulumi.set(__self__, 'description', description)
def __init__(__self__, *, rules: Sequence['outputs.DeliveryRuleResponse'], description: Optional[str]=None): "\n A policy that specifies the delivery rules to be used for an endpoint.\n :param Sequence['DeliveryRuleResponseArgs'] rules: A list of the delivery rules.\n :param str description: User-friendly description of the policy.\n " pulumi.set(__self__, 'rules', rules) if (description is not None): pulumi.set(__self__, 'description', description)<|docstring|>A policy that specifies the delivery rules to be used for an endpoint. :param Sequence['DeliveryRuleResponseArgs'] rules: A list of the delivery rules. :param str description: User-friendly description of the policy.<|endoftext|>
e71ba94750df058eecff161b8675e97ba2bb4a8d8a0dd779229c5ef2afda3f54
@property @pulumi.getter def rules(self) -> Sequence['outputs.DeliveryRuleResponse']: '\n A list of the delivery rules.\n ' return pulumi.get(self, 'rules')
A list of the delivery rules.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
rules
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def rules(self) -> Sequence['outputs.DeliveryRuleResponse']: '\n \n ' return pulumi.get(self, 'rules')
@property @pulumi.getter def rules(self) -> Sequence['outputs.DeliveryRuleResponse']: '\n \n ' return pulumi.get(self, 'rules')<|docstring|>A list of the delivery rules.<|endoftext|>
11aebd99b4183e7d9da70d7386f17dfef13039147e73267f38d7f90dcd0682ae
@property @pulumi.getter def description(self) -> Optional[str]: '\n User-friendly description of the policy.\n ' return pulumi.get(self, 'description')
User-friendly description of the policy.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
description
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def description(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'description')
@property @pulumi.getter def description(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'description')<|docstring|>User-friendly description of the policy.<|endoftext|>
a4538a2359e072bab71693d206abef9f219be20f6bf6bb55ccd30df7c332fcf2
def __init__(__self__, *, action: str, country_codes: Sequence[str], relative_path: str): "\n Rules defining user's geo access within a CDN endpoint.\n :param str action: Action of the geo filter, i.e. allow or block access.\n :param Sequence[str] country_codes: Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.\n :param str relative_path: Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)\n " pulumi.set(__self__, 'action', action) pulumi.set(__self__, 'country_codes', country_codes) pulumi.set(__self__, 'relative_path', relative_path)
Rules defining user's geo access within a CDN endpoint. :param str action: Action of the geo filter, i.e. allow or block access. :param Sequence[str] country_codes: Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US. :param str relative_path: Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, action: str, country_codes: Sequence[str], relative_path: str): "\n Rules defining user's geo access within a CDN endpoint.\n :param str action: Action of the geo filter, i.e. allow or block access.\n :param Sequence[str] country_codes: Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.\n :param str relative_path: Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)\n " pulumi.set(__self__, 'action', action) pulumi.set(__self__, 'country_codes', country_codes) pulumi.set(__self__, 'relative_path', relative_path)
def __init__(__self__, *, action: str, country_codes: Sequence[str], relative_path: str): "\n Rules defining user's geo access within a CDN endpoint.\n :param str action: Action of the geo filter, i.e. allow or block access.\n :param Sequence[str] country_codes: Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.\n :param str relative_path: Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)\n " pulumi.set(__self__, 'action', action) pulumi.set(__self__, 'country_codes', country_codes) pulumi.set(__self__, 'relative_path', relative_path)<|docstring|>Rules defining user's geo access within a CDN endpoint. :param str action: Action of the geo filter, i.e. allow or block access. :param Sequence[str] country_codes: Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US. :param str relative_path: Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)<|endoftext|>
01d9f821d2d6cbcd74363f9f3d7497ae80f47da22705997a198747b0a712f786
@property @pulumi.getter def action(self) -> str: '\n Action of the geo filter, i.e. allow or block access.\n ' return pulumi.get(self, 'action')
Action of the geo filter, i.e. allow or block access.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
action
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def action(self) -> str: '\n \n ' return pulumi.get(self, 'action')
@property @pulumi.getter def action(self) -> str: '\n \n ' return pulumi.get(self, 'action')<|docstring|>Action of the geo filter, i.e. allow or block access.<|endoftext|>
36e98bb69f65ebed3c0ccb3f7e0096f90ce153172b73cd127ce6249aa8339dd5
@property @pulumi.getter(name='countryCodes') def country_codes(self) -> Sequence[str]: '\n Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.\n ' return pulumi.get(self, 'country_codes')
Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
country_codes
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='countryCodes') def country_codes(self) -> Sequence[str]: '\n \n ' return pulumi.get(self, 'country_codes')
@property @pulumi.getter(name='countryCodes') def country_codes(self) -> Sequence[str]: '\n \n ' return pulumi.get(self, 'country_codes')<|docstring|>Two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.<|endoftext|>
50d417140d2992098b920df5eb044df71b1d909ff3b863dc47099df7b744b156
@property @pulumi.getter(name='relativePath') def relative_path(self) -> str: "\n Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)\n " return pulumi.get(self, 'relative_path')
Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
relative_path
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='relativePath') def relative_path(self) -> str: "\n \n " return pulumi.get(self, 'relative_path')
@property @pulumi.getter(name='relativePath') def relative_path(self) -> str: "\n \n " return pulumi.get(self, 'relative_path')<|docstring|>Relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.)<|endoftext|>
c056711a233e7a70d444b95e0f98ffc344d31a645c7c7a63d41e4cd948f5ef63
def __init__(__self__, *, header_action: str, header_name: str, odata_type: str, value: Optional[str]=None): '\n Defines the parameters for the request header action.\n :param str header_action: Action to perform\n :param str header_name: Name of the header to modify\n :param str value: Value for the specified action\n ' pulumi.set(__self__, 'header_action', header_action) pulumi.set(__self__, 'header_name', header_name) pulumi.set(__self__, 'odata_type', odata_type) if (value is not None): pulumi.set(__self__, 'value', value)
Defines the parameters for the request header action. :param str header_action: Action to perform :param str header_name: Name of the header to modify :param str value: Value for the specified action
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, header_action: str, header_name: str, odata_type: str, value: Optional[str]=None): '\n Defines the parameters for the request header action.\n :param str header_action: Action to perform\n :param str header_name: Name of the header to modify\n :param str value: Value for the specified action\n ' pulumi.set(__self__, 'header_action', header_action) pulumi.set(__self__, 'header_name', header_name) pulumi.set(__self__, 'odata_type', odata_type) if (value is not None): pulumi.set(__self__, 'value', value)
def __init__(__self__, *, header_action: str, header_name: str, odata_type: str, value: Optional[str]=None): '\n Defines the parameters for the request header action.\n :param str header_action: Action to perform\n :param str header_name: Name of the header to modify\n :param str value: Value for the specified action\n ' pulumi.set(__self__, 'header_action', header_action) pulumi.set(__self__, 'header_name', header_name) pulumi.set(__self__, 'odata_type', odata_type) if (value is not None): pulumi.set(__self__, 'value', value)<|docstring|>Defines the parameters for the request header action. :param str header_action: Action to perform :param str header_name: Name of the header to modify :param str value: Value for the specified action<|endoftext|>
c3041905eb4e0ef860c6ec17e3bccbf78121faa5248e481f9baa14759d5a9e68
@property @pulumi.getter(name='headerAction') def header_action(self) -> str: '\n Action to perform\n ' return pulumi.get(self, 'header_action')
Action to perform
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
header_action
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='headerAction') def header_action(self) -> str: '\n \n ' return pulumi.get(self, 'header_action')
@property @pulumi.getter(name='headerAction') def header_action(self) -> str: '\n \n ' return pulumi.get(self, 'header_action')<|docstring|>Action to perform<|endoftext|>
6c2afd248920cbea1a680a8619a3ddf87d3d9cbd456a6da1e9f85f69ce2eb917
@property @pulumi.getter(name='headerName') def header_name(self) -> str: '\n Name of the header to modify\n ' return pulumi.get(self, 'header_name')
Name of the header to modify
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
header_name
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='headerName') def header_name(self) -> str: '\n \n ' return pulumi.get(self, 'header_name')
@property @pulumi.getter(name='headerName') def header_name(self) -> str: '\n \n ' return pulumi.get(self, 'header_name')<|docstring|>Name of the header to modify<|endoftext|>
5cf3a0b1980d578bf1ed5348ce77852ccc6fb20e5c02d4c7d8b3af80ebe07d97
@property @pulumi.getter def value(self) -> Optional[str]: '\n Value for the specified action\n ' return pulumi.get(self, 'value')
Value for the specified action
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
value
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def value(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'value')
@property @pulumi.getter def value(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'value')<|docstring|>Value for the specified action<|endoftext|>
287861152c156f97c3f64c1762706d2c37e48f70b9a7f722123aead56daf076a
def __init__(__self__, *, probe_interval_in_seconds: Optional[int]=None, probe_path: Optional[str]=None, probe_protocol: Optional[str]=None, probe_request_type: Optional[str]=None): '\n The JSON object that contains the properties to send health probes to origin.\n :param int probe_interval_in_seconds: The number of seconds between health probes.Default is 240sec.\n :param str probe_path: The path relative to the origin that is used to determine the health of the origin.\n :param str probe_protocol: Protocol to use for health probe.\n :param str probe_request_type: The type of health probe request that is made.\n ' if (probe_interval_in_seconds is not None): pulumi.set(__self__, 'probe_interval_in_seconds', probe_interval_in_seconds) if (probe_path is not None): pulumi.set(__self__, 'probe_path', probe_path) if (probe_protocol is not None): pulumi.set(__self__, 'probe_protocol', probe_protocol) if (probe_request_type is not None): pulumi.set(__self__, 'probe_request_type', probe_request_type)
The JSON object that contains the properties to send health probes to origin. :param int probe_interval_in_seconds: The number of seconds between health probes.Default is 240sec. :param str probe_path: The path relative to the origin that is used to determine the health of the origin. :param str probe_protocol: Protocol to use for health probe. :param str probe_request_type: The type of health probe request that is made.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, probe_interval_in_seconds: Optional[int]=None, probe_path: Optional[str]=None, probe_protocol: Optional[str]=None, probe_request_type: Optional[str]=None): '\n The JSON object that contains the properties to send health probes to origin.\n :param int probe_interval_in_seconds: The number of seconds between health probes.Default is 240sec.\n :param str probe_path: The path relative to the origin that is used to determine the health of the origin.\n :param str probe_protocol: Protocol to use for health probe.\n :param str probe_request_type: The type of health probe request that is made.\n ' if (probe_interval_in_seconds is not None): pulumi.set(__self__, 'probe_interval_in_seconds', probe_interval_in_seconds) if (probe_path is not None): pulumi.set(__self__, 'probe_path', probe_path) if (probe_protocol is not None): pulumi.set(__self__, 'probe_protocol', probe_protocol) if (probe_request_type is not None): pulumi.set(__self__, 'probe_request_type', probe_request_type)
def __init__(__self__, *, probe_interval_in_seconds: Optional[int]=None, probe_path: Optional[str]=None, probe_protocol: Optional[str]=None, probe_request_type: Optional[str]=None): '\n The JSON object that contains the properties to send health probes to origin.\n :param int probe_interval_in_seconds: The number of seconds between health probes.Default is 240sec.\n :param str probe_path: The path relative to the origin that is used to determine the health of the origin.\n :param str probe_protocol: Protocol to use for health probe.\n :param str probe_request_type: The type of health probe request that is made.\n ' if (probe_interval_in_seconds is not None): pulumi.set(__self__, 'probe_interval_in_seconds', probe_interval_in_seconds) if (probe_path is not None): pulumi.set(__self__, 'probe_path', probe_path) if (probe_protocol is not None): pulumi.set(__self__, 'probe_protocol', probe_protocol) if (probe_request_type is not None): pulumi.set(__self__, 'probe_request_type', probe_request_type)<|docstring|>The JSON object that contains the properties to send health probes to origin. :param int probe_interval_in_seconds: The number of seconds between health probes.Default is 240sec. :param str probe_path: The path relative to the origin that is used to determine the health of the origin. :param str probe_protocol: Protocol to use for health probe. :param str probe_request_type: The type of health probe request that is made.<|endoftext|>
dd91ac418fe152349f4c460d015bd2b4af68f855a559c43bf4f7856a7b7f4d31
@property @pulumi.getter(name='probeIntervalInSeconds') def probe_interval_in_seconds(self) -> Optional[int]: '\n The number of seconds between health probes.Default is 240sec.\n ' return pulumi.get(self, 'probe_interval_in_seconds')
The number of seconds between health probes.Default is 240sec.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
probe_interval_in_seconds
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='probeIntervalInSeconds') def probe_interval_in_seconds(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'probe_interval_in_seconds')
@property @pulumi.getter(name='probeIntervalInSeconds') def probe_interval_in_seconds(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'probe_interval_in_seconds')<|docstring|>The number of seconds between health probes.Default is 240sec.<|endoftext|>
4de39962d83fbad27e75c355827a6cfc243d6ed2cfa821daf383a686a5569a9f
@property @pulumi.getter(name='probePath') def probe_path(self) -> Optional[str]: '\n The path relative to the origin that is used to determine the health of the origin.\n ' return pulumi.get(self, 'probe_path')
The path relative to the origin that is used to determine the health of the origin.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
probe_path
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='probePath') def probe_path(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_path')
@property @pulumi.getter(name='probePath') def probe_path(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_path')<|docstring|>The path relative to the origin that is used to determine the health of the origin.<|endoftext|>
4794bc256527dbcb826414380fe4a66f03cd5e486d213045b03f60460cf1e42e
@property @pulumi.getter(name='probeProtocol') def probe_protocol(self) -> Optional[str]: '\n Protocol to use for health probe.\n ' return pulumi.get(self, 'probe_protocol')
Protocol to use for health probe.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
probe_protocol
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='probeProtocol') def probe_protocol(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_protocol')
@property @pulumi.getter(name='probeProtocol') def probe_protocol(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_protocol')<|docstring|>Protocol to use for health probe.<|endoftext|>
2de93a4676d560da0c483dd5e25943ea6c4393a0cfec07b25e849c7c90a9ac11
@property @pulumi.getter(name='probeRequestType') def probe_request_type(self) -> Optional[str]: '\n The type of health probe request that is made.\n ' return pulumi.get(self, 'probe_request_type')
The type of health probe request that is made.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
probe_request_type
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='probeRequestType') def probe_request_type(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_request_type')
@property @pulumi.getter(name='probeRequestType') def probe_request_type(self) -> Optional[str]: '\n \n ' return pulumi.get(self, 'probe_request_type')<|docstring|>The type of health probe request that is made.<|endoftext|>
51c9da9e654bb61122da0ea335b80489e731e1026cf408d7d3d17ffc8d536fe7
def __init__(__self__, *, begin: Optional[int]=None, end: Optional[int]=None): '\n The JSON object that represents the range for http status codes\n :param int begin: The inclusive start of the http status code range.\n :param int end: The inclusive end of the http status code range.\n ' if (begin is not None): pulumi.set(__self__, 'begin', begin) if (end is not None): pulumi.set(__self__, 'end', end)
The JSON object that represents the range for http status codes :param int begin: The inclusive start of the http status code range. :param int end: The inclusive end of the http status code range.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, begin: Optional[int]=None, end: Optional[int]=None): '\n The JSON object that represents the range for http status codes\n :param int begin: The inclusive start of the http status code range.\n :param int end: The inclusive end of the http status code range.\n ' if (begin is not None): pulumi.set(__self__, 'begin', begin) if (end is not None): pulumi.set(__self__, 'end', end)
def __init__(__self__, *, begin: Optional[int]=None, end: Optional[int]=None): '\n The JSON object that represents the range for http status codes\n :param int begin: The inclusive start of the http status code range.\n :param int end: The inclusive end of the http status code range.\n ' if (begin is not None): pulumi.set(__self__, 'begin', begin) if (end is not None): pulumi.set(__self__, 'end', end)<|docstring|>The JSON object that represents the range for http status codes :param int begin: The inclusive start of the http status code range. :param int end: The inclusive end of the http status code range.<|endoftext|>
6b99c3cca9037ac07a764152c2d15e76da3ed633fcbb3ba880d332879054151e
@property @pulumi.getter def begin(self) -> Optional[int]: '\n The inclusive start of the http status code range.\n ' return pulumi.get(self, 'begin')
The inclusive start of the http status code range.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
begin
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def begin(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'begin')
@property @pulumi.getter def begin(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'begin')<|docstring|>The inclusive start of the http status code range.<|endoftext|>
59332276ef1c14a84c3259f6c64c5767d902bb4e15525d8609049bd473ce7d71
@property @pulumi.getter def end(self) -> Optional[int]: '\n The inclusive end of the http status code range.\n ' return pulumi.get(self, 'end')
The inclusive end of the http status code range.
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
end
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def end(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'end')
@property @pulumi.getter def end(self) -> Optional[int]: '\n \n ' return pulumi.get(self, 'end')<|docstring|>The inclusive end of the http status code range.<|endoftext|>
98a39b51eb4b25f5190a52c8d3b58dfdf8b1d4dd8c2c86c0d6ad8dd4de0f669f
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None): '\n Defines the parameters for HttpVersion match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition)
Defines the parameters for HttpVersion match conditions :param str operator: Describes operator to be matched :param Sequence[str] match_values: The match value for the condition of the delivery rule :param bool negate_condition: Describes if this is negate condition or not
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None): '\n Defines the parameters for HttpVersion match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition)
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None): '\n Defines the parameters for HttpVersion match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition)<|docstring|>Defines the parameters for HttpVersion match conditions :param str operator: Describes operator to be matched :param Sequence[str] match_values: The match value for the condition of the delivery rule :param bool negate_condition: Describes if this is negate condition or not<|endoftext|>
03b4694364f389b4c4a22b6baf22b56dde383de57c1cf997536aa34e452bd570
@property @pulumi.getter def operator(self) -> str: '\n Describes operator to be matched\n ' return pulumi.get(self, 'operator')
Describes operator to be matched
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
operator
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def operator(self) -> str: '\n \n ' return pulumi.get(self, 'operator')
@property @pulumi.getter def operator(self) -> str: '\n \n ' return pulumi.get(self, 'operator')<|docstring|>Describes operator to be matched<|endoftext|>
4a89b4d87551a581a0fba673cb73749627a97982f3b1609a08f38cca7e88078c
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n The match value for the condition of the delivery rule\n ' return pulumi.get(self, 'match_values')
The match value for the condition of the delivery rule
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
match_values
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'match_values')
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'match_values')<|docstring|>The match value for the condition of the delivery rule<|endoftext|>
721cadbb8fd9b3ca322eb4a51a0590628318061974e642eb27d1fc8770c15e24
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n Describes if this is negate condition or not\n ' return pulumi.get(self, 'negate_condition')
Describes if this is negate condition or not
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
negate_condition
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'negate_condition')
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'negate_condition')<|docstring|>Describes if this is negate condition or not<|endoftext|>
499cb8d992c63ae0b6040f9b214f11b359243e5aec86b0c7a9063fbd7f9e4047
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None, transforms: Optional[Sequence[str]]=None): '\n Defines the parameters for IsDevice match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n :param Sequence[str] transforms: List of transforms\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition) if (transforms is not None): pulumi.set(__self__, 'transforms', transforms)
Defines the parameters for IsDevice match conditions :param str operator: Describes operator to be matched :param Sequence[str] match_values: The match value for the condition of the delivery rule :param bool negate_condition: Describes if this is negate condition or not :param Sequence[str] transforms: List of transforms
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None, transforms: Optional[Sequence[str]]=None): '\n Defines the parameters for IsDevice match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n :param Sequence[str] transforms: List of transforms\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition) if (transforms is not None): pulumi.set(__self__, 'transforms', transforms)
def __init__(__self__, *, odata_type: str, operator: str, match_values: Optional[Sequence[str]]=None, negate_condition: Optional[bool]=None, transforms: Optional[Sequence[str]]=None): '\n Defines the parameters for IsDevice match conditions\n :param str operator: Describes operator to be matched\n :param Sequence[str] match_values: The match value for the condition of the delivery rule\n :param bool negate_condition: Describes if this is negate condition or not\n :param Sequence[str] transforms: List of transforms\n ' pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'operator', operator) if (match_values is not None): pulumi.set(__self__, 'match_values', match_values) if (negate_condition is not None): pulumi.set(__self__, 'negate_condition', negate_condition) if (transforms is not None): pulumi.set(__self__, 'transforms', transforms)<|docstring|>Defines the parameters for IsDevice match conditions :param str operator: Describes operator to be matched :param Sequence[str] match_values: The match value for the condition of the delivery rule :param bool negate_condition: Describes if this is negate condition or not :param Sequence[str] transforms: List of transforms<|endoftext|>
03b4694364f389b4c4a22b6baf22b56dde383de57c1cf997536aa34e452bd570
@property @pulumi.getter def operator(self) -> str: '\n Describes operator to be matched\n ' return pulumi.get(self, 'operator')
Describes operator to be matched
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
operator
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def operator(self) -> str: '\n \n ' return pulumi.get(self, 'operator')
@property @pulumi.getter def operator(self) -> str: '\n \n ' return pulumi.get(self, 'operator')<|docstring|>Describes operator to be matched<|endoftext|>
4a89b4d87551a581a0fba673cb73749627a97982f3b1609a08f38cca7e88078c
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n The match value for the condition of the delivery rule\n ' return pulumi.get(self, 'match_values')
The match value for the condition of the delivery rule
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
match_values
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'match_values')
@property @pulumi.getter(name='matchValues') def match_values(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'match_values')<|docstring|>The match value for the condition of the delivery rule<|endoftext|>
721cadbb8fd9b3ca322eb4a51a0590628318061974e642eb27d1fc8770c15e24
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n Describes if this is negate condition or not\n ' return pulumi.get(self, 'negate_condition')
Describes if this is negate condition or not
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
negate_condition
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'negate_condition')
@property @pulumi.getter(name='negateCondition') def negate_condition(self) -> Optional[bool]: '\n \n ' return pulumi.get(self, 'negate_condition')<|docstring|>Describes if this is negate condition or not<|endoftext|>
60802afed0a11a40b1580427551db5c17905ecbff5094d60eea135f145a9ab82
@property @pulumi.getter def transforms(self) -> Optional[Sequence[str]]: '\n List of transforms\n ' return pulumi.get(self, 'transforms')
List of transforms
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
transforms
pulumi-bot/pulumi-azure-native
31
python
@property @pulumi.getter def transforms(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'transforms')
@property @pulumi.getter def transforms(self) -> Optional[Sequence[str]]: '\n \n ' return pulumi.get(self, 'transforms')<|docstring|>List of transforms<|endoftext|>
4c6a5b91149474b8853b8d540bda1f74e4dc6f02087ebf014a530b2e2249e7e9
def __init__(__self__, *, odata_type: str, origin_group: 'outputs.ResourceReferenceResponse'): "\n Defines the parameters for the Origin Group override action.\n :param 'ResourceReferenceResponseArgs' origin_group: A reference to the origin group from where the content will be fetched from when CDN does not have it\n " pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'origin_group', origin_group)
Defines the parameters for the Origin Group override action. :param 'ResourceReferenceResponseArgs' origin_group: A reference to the origin group from where the content will be fetched from when CDN does not have it
sdk/python/pulumi_azure_native/cdn/v20191231/outputs.py
__init__
pulumi-bot/pulumi-azure-native
31
python
def __init__(__self__, *, odata_type: str, origin_group: 'outputs.ResourceReferenceResponse'): "\n Defines the parameters for the Origin Group override action.\n :param 'ResourceReferenceResponseArgs' origin_group: A reference to the origin group from where the content will be fetched from when CDN does not have it\n " pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'origin_group', origin_group)
def __init__(__self__, *, odata_type: str, origin_group: 'outputs.ResourceReferenceResponse'): "\n Defines the parameters for the Origin Group override action.\n :param 'ResourceReferenceResponseArgs' origin_group: A reference to the origin group from where the content will be fetched from when CDN does not have it\n " pulumi.set(__self__, 'odata_type', odata_type) pulumi.set(__self__, 'origin_group', origin_group)<|docstring|>Defines the parameters for the Origin Group override action. :param 'ResourceReferenceResponseArgs' origin_group: A reference to the origin group from where the content will be fetched from when CDN does not have it<|endoftext|>