pulumi-azure-native 2.55.0a1723186763__py3-none-any.whl → 2.56.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (278) hide show
  1. pulumi_azure_native/__init__.py +62 -1
  2. pulumi_azure_native/cdn/__init__.py +7 -0
  3. pulumi_azure_native/cdn/_enums.py +8 -0
  4. pulumi_azure_native/cdn/_inputs.py +58 -0
  5. pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
  6. pulumi_azure_native/cdn/afd_endpoint.py +3 -3
  7. pulumi_azure_native/cdn/afd_origin.py +3 -3
  8. pulumi_azure_native/cdn/afd_origin_group.py +3 -3
  9. pulumi_azure_native/cdn/afd_target_group.py +240 -0
  10. pulumi_azure_native/cdn/custom_domain.py +3 -3
  11. pulumi_azure_native/cdn/endpoint.py +3 -3
  12. pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
  13. pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
  14. pulumi_azure_native/cdn/get_afd_origin.py +2 -2
  15. pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
  16. pulumi_azure_native/cdn/get_afd_target_group.py +166 -0
  17. pulumi_azure_native/cdn/get_custom_domain.py +2 -2
  18. pulumi_azure_native/cdn/get_endpoint.py +2 -2
  19. pulumi_azure_native/cdn/get_key_group.py +2 -2
  20. pulumi_azure_native/cdn/get_origin.py +2 -2
  21. pulumi_azure_native/cdn/get_origin_group.py +2 -2
  22. pulumi_azure_native/cdn/get_policy.py +2 -2
  23. pulumi_azure_native/cdn/get_profile.py +2 -2
  24. pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
  25. pulumi_azure_native/cdn/get_route.py +2 -2
  26. pulumi_azure_native/cdn/get_rule.py +2 -2
  27. pulumi_azure_native/cdn/get_rule_set.py +2 -2
  28. pulumi_azure_native/cdn/get_secret.py +2 -2
  29. pulumi_azure_native/cdn/get_security_policy.py +2 -2
  30. pulumi_azure_native/cdn/get_tunnel_policy.py +192 -0
  31. pulumi_azure_native/cdn/key_group.py +3 -3
  32. pulumi_azure_native/cdn/origin.py +3 -3
  33. pulumi_azure_native/cdn/origin_group.py +3 -3
  34. pulumi_azure_native/cdn/outputs.py +53 -0
  35. pulumi_azure_native/cdn/policy.py +3 -3
  36. pulumi_azure_native/cdn/profile.py +3 -3
  37. pulumi_azure_native/cdn/route.py +3 -3
  38. pulumi_azure_native/cdn/rule.py +3 -3
  39. pulumi_azure_native/cdn/rule_set.py +3 -3
  40. pulumi_azure_native/cdn/secret.py +3 -3
  41. pulumi_azure_native/cdn/security_policy.py +3 -3
  42. pulumi_azure_native/cdn/tunnel_policy.py +299 -0
  43. pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
  44. pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
  45. pulumi_azure_native/cdn/v20200901/profile.py +1 -1
  46. pulumi_azure_native/cdn/v20200901/route.py +1 -1
  47. pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
  48. pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
  49. pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
  50. pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
  51. pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
  52. pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
  53. pulumi_azure_native/cdn/v20230501/origin.py +1 -1
  54. pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
  55. pulumi_azure_native/cdn/v20230501/policy.py +1 -1
  56. pulumi_azure_native/cdn/v20230501/profile.py +1 -1
  57. pulumi_azure_native/cdn/v20230501/route.py +1 -1
  58. pulumi_azure_native/cdn/v20230501/rule.py +1 -1
  59. pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
  60. pulumi_azure_native/cdn/v20230501/secret.py +1 -1
  61. pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
  62. pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
  63. pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
  64. pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
  65. pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
  66. pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
  67. pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
  68. pulumi_azure_native/cdn/v20230701preview/key_group.py +1 -1
  69. pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
  70. pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
  71. pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
  72. pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
  73. pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
  74. pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
  75. pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
  76. pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
  77. pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
  78. pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +1 -1
  79. pulumi_azure_native/cdn/v20240201/afd_endpoint.py +1 -1
  80. pulumi_azure_native/cdn/v20240201/afd_origin.py +1 -1
  81. pulumi_azure_native/cdn/v20240201/afd_origin_group.py +1 -1
  82. pulumi_azure_native/cdn/v20240201/custom_domain.py +1 -1
  83. pulumi_azure_native/cdn/v20240201/endpoint.py +1 -1
  84. pulumi_azure_native/cdn/v20240201/origin.py +1 -1
  85. pulumi_azure_native/cdn/v20240201/origin_group.py +1 -1
  86. pulumi_azure_native/cdn/v20240201/policy.py +1 -1
  87. pulumi_azure_native/cdn/v20240201/profile.py +1 -1
  88. pulumi_azure_native/cdn/v20240201/route.py +1 -1
  89. pulumi_azure_native/cdn/v20240201/rule.py +1 -1
  90. pulumi_azure_native/cdn/v20240201/rule_set.py +1 -1
  91. pulumi_azure_native/cdn/v20240201/secret.py +1 -1
  92. pulumi_azure_native/cdn/v20240201/security_policy.py +1 -1
  93. pulumi_azure_native/cdn/v20240501preview/afd_custom_domain.py +1 -1
  94. pulumi_azure_native/cdn/v20240501preview/afd_endpoint.py +1 -1
  95. pulumi_azure_native/cdn/v20240501preview/afd_origin.py +1 -1
  96. pulumi_azure_native/cdn/v20240501preview/afd_origin_group.py +1 -1
  97. pulumi_azure_native/cdn/v20240501preview/custom_domain.py +1 -1
  98. pulumi_azure_native/cdn/v20240501preview/endpoint.py +1 -1
  99. pulumi_azure_native/cdn/v20240501preview/key_group.py +1 -1
  100. pulumi_azure_native/cdn/v20240501preview/origin.py +1 -1
  101. pulumi_azure_native/cdn/v20240501preview/origin_group.py +1 -1
  102. pulumi_azure_native/cdn/v20240501preview/policy.py +1 -1
  103. pulumi_azure_native/cdn/v20240501preview/profile.py +1 -1
  104. pulumi_azure_native/cdn/v20240501preview/route.py +1 -1
  105. pulumi_azure_native/cdn/v20240501preview/rule.py +1 -1
  106. pulumi_azure_native/cdn/v20240501preview/rule_set.py +1 -1
  107. pulumi_azure_native/cdn/v20240501preview/secret.py +1 -1
  108. pulumi_azure_native/cdn/v20240501preview/security_policy.py +1 -1
  109. pulumi_azure_native/cdn/v20240601preview/__init__.py +47 -0
  110. pulumi_azure_native/cdn/v20240601preview/_enums.py +910 -0
  111. pulumi_azure_native/cdn/v20240601preview/_inputs.py +8517 -0
  112. pulumi_azure_native/cdn/v20240601preview/afd_custom_domain.py +423 -0
  113. pulumi_azure_native/cdn/v20240601preview/afd_endpoint.py +343 -0
  114. pulumi_azure_native/cdn/v20240601preview/afd_origin.py +542 -0
  115. pulumi_azure_native/cdn/v20240601preview/afd_origin_group.py +334 -0
  116. pulumi_azure_native/cdn/v20240601preview/afd_target_group.py +238 -0
  117. pulumi_azure_native/cdn/v20240601preview/custom_domain.py +301 -0
  118. pulumi_azure_native/cdn/v20240601preview/endpoint.py +767 -0
  119. pulumi_azure_native/cdn/v20240601preview/get_afd_custom_domain.py +281 -0
  120. pulumi_azure_native/cdn/v20240601preview/get_afd_endpoint.py +229 -0
  121. pulumi_azure_native/cdn/v20240601preview/get_afd_origin.py +299 -0
  122. pulumi_azure_native/cdn/v20240601preview/get_afd_origin_group.py +216 -0
  123. pulumi_azure_native/cdn/v20240601preview/get_afd_target_group.py +164 -0
  124. pulumi_azure_native/cdn/v20240601preview/get_custom_domain.py +224 -0
  125. pulumi_azure_native/cdn/v20240601preview/get_endpoint.py +414 -0
  126. pulumi_azure_native/cdn/v20240601preview/get_key_group.py +164 -0
  127. pulumi_azure_native/cdn/v20240601preview/get_origin.py +315 -0
  128. pulumi_azure_native/cdn/v20240601preview/get_origin_group.py +211 -0
  129. pulumi_azure_native/cdn/v20240601preview/get_policy.py +276 -0
  130. pulumi_azure_native/cdn/v20240601preview/get_profile.py +266 -0
  131. pulumi_azure_native/cdn/v20240601preview/get_profile_supported_optimization_types.py +83 -0
  132. pulumi_azure_native/cdn/v20240601preview/get_route.py +325 -0
  133. pulumi_azure_native/cdn/v20240601preview/get_rule.py +221 -0
  134. pulumi_azure_native/cdn/v20240601preview/get_rule_set.py +164 -0
  135. pulumi_azure_native/cdn/v20240601preview/get_secret.py +177 -0
  136. pulumi_azure_native/cdn/v20240601preview/get_security_policy.py +177 -0
  137. pulumi_azure_native/cdn/v20240601preview/get_tunnel_policy.py +190 -0
  138. pulumi_azure_native/cdn/v20240601preview/key_group.py +237 -0
  139. pulumi_azure_native/cdn/v20240601preview/origin.py +561 -0
  140. pulumi_azure_native/cdn/v20240601preview/origin_group.py +350 -0
  141. pulumi_azure_native/cdn/v20240601preview/outputs.py +7442 -0
  142. pulumi_azure_native/cdn/v20240601preview/policy.py +441 -0
  143. pulumi_azure_native/cdn/v20240601preview/profile.py +396 -0
  144. pulumi_azure_native/cdn/v20240601preview/route.py +600 -0
  145. pulumi_azure_native/cdn/v20240601preview/rule.py +361 -0
  146. pulumi_azure_native/cdn/v20240601preview/rule_set.py +216 -0
  147. pulumi_azure_native/cdn/v20240601preview/secret.py +246 -0
  148. pulumi_azure_native/cdn/v20240601preview/security_policy.py +246 -0
  149. pulumi_azure_native/cdn/v20240601preview/tunnel_policy.py +297 -0
  150. pulumi_azure_native/confidentialledger/__init__.py +3 -0
  151. pulumi_azure_native/confidentialledger/get_ledger.py +2 -2
  152. pulumi_azure_native/confidentialledger/get_managed_ccf.py +2 -2
  153. pulumi_azure_native/confidentialledger/ledger.py +3 -3
  154. pulumi_azure_native/confidentialledger/managed_ccf.py +3 -3
  155. pulumi_azure_native/confidentialledger/v20220513/ledger.py +1 -1
  156. pulumi_azure_native/confidentialledger/v20230126preview/ledger.py +1 -1
  157. pulumi_azure_native/confidentialledger/v20230126preview/managed_ccf.py +1 -1
  158. pulumi_azure_native/confidentialledger/v20230628preview/ledger.py +1 -1
  159. pulumi_azure_native/confidentialledger/v20230628preview/managed_ccf.py +1 -1
  160. pulumi_azure_native/confidentialledger/v20240709preview/__init__.py +14 -0
  161. pulumi_azure_native/confidentialledger/v20240709preview/_enums.py +59 -0
  162. pulumi_azure_native/confidentialledger/v20240709preview/_inputs.py +621 -0
  163. pulumi_azure_native/confidentialledger/v20240709preview/get_ledger.py +162 -0
  164. pulumi_azure_native/confidentialledger/v20240709preview/get_managed_ccf.py +162 -0
  165. pulumi_azure_native/confidentialledger/v20240709preview/ledger.py +258 -0
  166. pulumi_azure_native/confidentialledger/v20240709preview/managed_ccf.py +258 -0
  167. pulumi_azure_native/confidentialledger/v20240709preview/outputs.py +730 -0
  168. pulumi_azure_native/documentdb/__init__.py +3 -0
  169. pulumi_azure_native/documentdb/firewall_rule.py +5 -1
  170. pulumi_azure_native/documentdb/get_firewall_rule.py +4 -0
  171. pulumi_azure_native/documentdb/get_mongo_cluster.py +2 -2
  172. pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
  173. pulumi_azure_native/documentdb/list_mongo_cluster_connection_strings.py +2 -2
  174. pulumi_azure_native/documentdb/mongo_cluster.py +3 -3
  175. pulumi_azure_native/documentdb/mongo_cluster_firewall_rule.py +1 -1
  176. pulumi_azure_native/documentdb/private_endpoint_connection.py +2 -2
  177. pulumi_azure_native/documentdb/v20230315preview/mongo_cluster.py +1 -1
  178. pulumi_azure_native/documentdb/v20230315preview/mongo_cluster_firewall_rule.py +1 -1
  179. pulumi_azure_native/documentdb/v20230915preview/mongo_cluster.py +1 -1
  180. pulumi_azure_native/documentdb/v20230915preview/mongo_cluster_firewall_rule.py +1 -1
  181. pulumi_azure_native/documentdb/v20231115preview/mongo_cluster.py +1 -1
  182. pulumi_azure_native/documentdb/v20231115preview/mongo_cluster_firewall_rule.py +1 -1
  183. pulumi_azure_native/documentdb/v20240215preview/mongo_cluster.py +1 -1
  184. pulumi_azure_native/documentdb/v20240215preview/mongo_cluster_firewall_rule.py +1 -1
  185. pulumi_azure_native/documentdb/v20240301preview/firewall_rule.py +1 -1
  186. pulumi_azure_native/documentdb/v20240301preview/mongo_cluster.py +1 -1
  187. pulumi_azure_native/documentdb/v20240301preview/private_endpoint_connection.py +2 -0
  188. pulumi_azure_native/documentdb/v20240601preview/__init__.py +17 -0
  189. pulumi_azure_native/documentdb/v20240601preview/_enums.py +78 -0
  190. pulumi_azure_native/documentdb/v20240601preview/_inputs.py +332 -0
  191. pulumi_azure_native/documentdb/v20240601preview/firewall_rule.py +260 -0
  192. pulumi_azure_native/documentdb/v20240601preview/get_firewall_rule.py +167 -0
  193. pulumi_azure_native/documentdb/v20240601preview/get_mongo_cluster.py +305 -0
  194. pulumi_azure_native/documentdb/v20240601preview/get_private_endpoint_connection.py +180 -0
  195. pulumi_azure_native/documentdb/v20240601preview/list_mongo_cluster_connection_strings.py +84 -0
  196. pulumi_azure_native/documentdb/v20240601preview/mongo_cluster.py +524 -0
  197. pulumi_azure_native/documentdb/v20240601preview/outputs.py +537 -0
  198. pulumi_azure_native/documentdb/v20240601preview/private_endpoint_connection.py +252 -0
  199. pulumi_azure_native/machinelearningservices/v20240401preview/outputs.py +55 -11
  200. pulumi_azure_native/machinelearningservices/v20240701preview/_inputs.py +10 -10
  201. pulumi_azure_native/machinelearningservices/v20240701preview/outputs.py +60 -18
  202. pulumi_azure_native/monitor/_enums.py +6 -2
  203. pulumi_azure_native/monitor/_inputs.py +56 -56
  204. pulumi_azure_native/monitor/get_pipeline_group.py +1 -1
  205. pulumi_azure_native/monitor/outputs.py +34 -34
  206. pulumi_azure_native/monitor/pipeline_group.py +8 -8
  207. pulumi_azure_native/monitor/v20231001preview/_enums.py +6 -2
  208. pulumi_azure_native/monitor/v20231001preview/_inputs.py +56 -56
  209. pulumi_azure_native/monitor/v20231001preview/get_pipeline_group.py +1 -1
  210. pulumi_azure_native/monitor/v20231001preview/outputs.py +34 -34
  211. pulumi_azure_native/monitor/v20231001preview/pipeline_group.py +8 -8
  212. pulumi_azure_native/pulumi-plugin.json +1 -1
  213. pulumi_azure_native/resources/__init__.py +3 -0
  214. pulumi_azure_native/resources/deployment.py +3 -3
  215. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  216. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  217. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  218. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  219. pulumi_azure_native/resources/get_deployment.py +2 -2
  220. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  221. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  222. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  223. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  224. pulumi_azure_native/resources/get_resource.py +2 -2
  225. pulumi_azure_native/resources/get_resource_group.py +2 -2
  226. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  227. pulumi_azure_native/resources/resource.py +3 -3
  228. pulumi_azure_native/resources/resource_group.py +3 -3
  229. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  230. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  231. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  232. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  233. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  234. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  235. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  236. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  237. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  238. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  239. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  240. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  241. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  242. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  243. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  244. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  245. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  246. pulumi_azure_native/resources/v20240301/deployment.py +1 -1
  247. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +1 -1
  248. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +1 -1
  249. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +1 -1
  250. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +1 -1
  251. pulumi_azure_native/resources/v20240301/resource.py +1 -1
  252. pulumi_azure_native/resources/v20240301/resource_group.py +1 -1
  253. pulumi_azure_native/resources/v20240301/tag_at_scope.py +1 -1
  254. pulumi_azure_native/resources/v20240701/__init__.py +26 -0
  255. pulumi_azure_native/resources/v20240701/_enums.py +55 -0
  256. pulumi_azure_native/resources/v20240701/_inputs.py +1082 -0
  257. pulumi_azure_native/resources/v20240701/deployment.py +249 -0
  258. pulumi_azure_native/resources/v20240701/deployment_at_management_group_scope.py +249 -0
  259. pulumi_azure_native/resources/v20240701/deployment_at_scope.py +249 -0
  260. pulumi_azure_native/resources/v20240701/deployment_at_subscription_scope.py +228 -0
  261. pulumi_azure_native/resources/v20240701/deployment_at_tenant_scope.py +228 -0
  262. pulumi_azure_native/resources/v20240701/get_deployment.py +149 -0
  263. pulumi_azure_native/resources/v20240701/get_deployment_at_management_group_scope.py +149 -0
  264. pulumi_azure_native/resources/v20240701/get_deployment_at_scope.py +149 -0
  265. pulumi_azure_native/resources/v20240701/get_deployment_at_subscription_scope.py +144 -0
  266. pulumi_azure_native/resources/v20240701/get_deployment_at_tenant_scope.py +144 -0
  267. pulumi_azure_native/resources/v20240701/get_resource.py +242 -0
  268. pulumi_azure_native/resources/v20240701/get_resource_group.py +157 -0
  269. pulumi_azure_native/resources/v20240701/get_tag_at_scope.py +118 -0
  270. pulumi_azure_native/resources/v20240701/outputs.py +1938 -0
  271. pulumi_azure_native/resources/v20240701/resource.py +485 -0
  272. pulumi_azure_native/resources/v20240701/resource_group.py +235 -0
  273. pulumi_azure_native/resources/v20240701/tag_at_scope.py +170 -0
  274. pulumi_azure_native/storage/blob.py +3 -3
  275. {pulumi_azure_native-2.55.0a1723186763.dist-info → pulumi_azure_native-2.56.0.dist-info}/METADATA +1 -1
  276. {pulumi_azure_native-2.55.0a1723186763.dist-info → pulumi_azure_native-2.56.0.dist-info}/RECORD +278 -194
  277. {pulumi_azure_native-2.55.0a1723186763.dist-info → pulumi_azure_native-2.56.0.dist-info}/WHEEL +1 -1
  278. {pulumi_azure_native-2.55.0a1723186763.dist-info → pulumi_azure_native-2.56.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,910 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'AFDEndpointProtocols',
9
+ 'AFDRouteGrpcState',
10
+ 'ActionType',
11
+ 'AfdCertificateType',
12
+ 'AfdCipherSuiteSetType',
13
+ 'AfdCustomizedCipherSuiteForTls10',
14
+ 'AfdCustomizedCipherSuiteForTls12',
15
+ 'AfdCustomizedCipherSuiteForTls13',
16
+ 'AfdMinimumTlsVersion',
17
+ 'AfdQueryStringCachingBehavior',
18
+ 'Algorithm',
19
+ 'AutoGeneratedDomainNameLabelScope',
20
+ 'CacheBehavior',
21
+ 'CacheType',
22
+ 'ClientPortOperator',
23
+ 'CookiesOperator',
24
+ 'CustomRuleEnabledState',
25
+ 'DeliveryRuleActionName',
26
+ 'DeliveryRuleActionParametersType',
27
+ 'DeliveryRuleConditionParametersType',
28
+ 'DestinationProtocol',
29
+ 'EnabledState',
30
+ 'ForwardingProtocol',
31
+ 'GeoFilterActions',
32
+ 'HeaderAction',
33
+ 'HealthProbeRequestType',
34
+ 'HostNameOperator',
35
+ 'HttpVersionOperator',
36
+ 'HttpsRedirect',
37
+ 'IsDeviceMatchValue',
38
+ 'IsDeviceOperator',
39
+ 'KeyVaultSigningKeyParametersType',
40
+ 'LinkToDefaultDomain',
41
+ 'ManagedRuleEnabledState',
42
+ 'ManagedServiceIdentityType',
43
+ 'MatchProcessingBehavior',
44
+ 'MatchVariable',
45
+ 'Operator',
46
+ 'OptimizationType',
47
+ 'ParamIndicator',
48
+ 'PolicyEnabledState',
49
+ 'PolicyMode',
50
+ 'PostArgsOperator',
51
+ 'ProbeProtocol',
52
+ 'ProfileScrubbingState',
53
+ 'QueryStringBehavior',
54
+ 'QueryStringCachingBehavior',
55
+ 'QueryStringOperator',
56
+ 'RedirectType',
57
+ 'RemoteAddressOperator',
58
+ 'RequestBodyOperator',
59
+ 'RequestHeaderOperator',
60
+ 'RequestMethodMatchValue',
61
+ 'RequestMethodOperator',
62
+ 'RequestSchemeMatchValue',
63
+ 'RequestUriOperator',
64
+ 'ResponseBasedDetectedErrorTypes',
65
+ 'RuleCacheBehavior',
66
+ 'RuleIsCompressionEnabled',
67
+ 'RuleQueryStringCachingBehavior',
68
+ 'ScrubbingRuleEntryMatchOperator',
69
+ 'ScrubbingRuleEntryMatchVariable',
70
+ 'ScrubbingRuleEntryState',
71
+ 'SecretType',
72
+ 'SecurityPolicyType',
73
+ 'ServerPortOperator',
74
+ 'SharedPrivateLinkResourceStatus',
75
+ 'SkuName',
76
+ 'SocketAddrOperator',
77
+ 'SslProtocol',
78
+ 'SslProtocolOperator',
79
+ 'Transform',
80
+ 'TransformType',
81
+ 'TunnelType',
82
+ 'UrlFileExtensionOperator',
83
+ 'UrlFileNameOperator',
84
+ 'UrlPathOperator',
85
+ 'WafMatchVariable',
86
+ ]
87
+
88
+
89
+ class AFDEndpointProtocols(str, Enum):
90
+ """
91
+ Supported protocols for the customer's endpoint.
92
+ """
93
+ HTTP = "Http"
94
+ HTTPS = "Https"
95
+
96
+
97
+ class AFDRouteGrpcState(str, Enum):
98
+ """
99
+ Whether or not gRPC is enabled on this route. Permitted values are 'Enabled' or 'Disabled'
100
+ """
101
+ ENABLED = "Enabled"
102
+ DISABLED = "Disabled"
103
+
104
+
105
+ class ActionType(str, Enum):
106
+ """
107
+ Describes what action to be applied when rule matches
108
+ """
109
+ ALLOW = "Allow"
110
+ BLOCK = "Block"
111
+ LOG = "Log"
112
+ REDIRECT = "Redirect"
113
+
114
+
115
+ class AfdCertificateType(str, Enum):
116
+ """
117
+ Defines the source of the SSL certificate.
118
+ """
119
+ CUSTOMER_CERTIFICATE = "CustomerCertificate"
120
+ MANAGED_CERTIFICATE = "ManagedCertificate"
121
+ AZURE_FIRST_PARTY_MANAGED_CERTIFICATE = "AzureFirstPartyManagedCertificate"
122
+
123
+
124
+ class AfdCipherSuiteSetType(str, Enum):
125
+ """
126
+ cipher suite set type that will be used for Https
127
+ """
128
+ CUSTOMIZED = "Customized"
129
+ TLS10_2019 = "TLS10_2019"
130
+ TLS12_2022 = "TLS12_2022"
131
+ TLS12_2023 = "TLS12_2023"
132
+
133
+
134
+ class AfdCustomizedCipherSuiteForTls10(str, Enum):
135
+ ECDH_E_RS_A_AES128_SHA = "ECDHE_RSA_AES128_SHA"
136
+ ECDH_E_RS_A_AES256_SHA = "ECDHE_RSA_AES256_SHA"
137
+ AES256_SHA = "AES256_SHA"
138
+ AES128_SHA = "AES128_SHA"
139
+
140
+
141
+ class AfdCustomizedCipherSuiteForTls12(str, Enum):
142
+ ECDH_E_RS_A_AES128_GC_M_SHA256 = "ECDHE_RSA_AES128_GCM_SHA256"
143
+ ECDH_E_RS_A_AES256_GC_M_SHA384 = "ECDHE_RSA_AES256_GCM_SHA384"
144
+ DH_E_RS_A_AES256_GC_M_SHA384 = "DHE_RSA_AES256_GCM_SHA384"
145
+ DH_E_RS_A_AES128_GC_M_SHA256 = "DHE_RSA_AES128_GCM_SHA256"
146
+ ECDH_E_RS_A_AES128_SHA256 = "ECDHE_RSA_AES128_SHA256"
147
+ ECDH_E_RS_A_AES256_SHA384 = "ECDHE_RSA_AES256_SHA384"
148
+ AES256_GC_M_SHA384 = "AES256_GCM_SHA384"
149
+ AES128_GC_M_SHA256 = "AES128_GCM_SHA256"
150
+ AES256_SHA256 = "AES256_SHA256"
151
+ AES128_SHA256 = "AES128_SHA256"
152
+
153
+
154
+ class AfdCustomizedCipherSuiteForTls13(str, Enum):
155
+ TL_S_AE_S_128_GC_M_SHA256 = "TLS_AES_128_GCM_SHA256"
156
+ TL_S_AE_S_256_GC_M_SHA384 = "TLS_AES_256_GCM_SHA384"
157
+
158
+
159
+ class AfdMinimumTlsVersion(str, Enum):
160
+ """
161
+ TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
162
+ """
163
+ TLS10 = "TLS10"
164
+ TLS12 = "TLS12"
165
+ TLS13 = "TLS13"
166
+
167
+
168
+ class AfdQueryStringCachingBehavior(str, Enum):
169
+ """
170
+ Defines how Frontdoor caches requests that include query strings. You can ignore any query strings when caching, ignore specific query strings, cache every request with a unique URL, or cache specific query strings.
171
+ """
172
+ IGNORE_QUERY_STRING = "IgnoreQueryString"
173
+ USE_QUERY_STRING = "UseQueryString"
174
+ IGNORE_SPECIFIED_QUERY_STRINGS = "IgnoreSpecifiedQueryStrings"
175
+ INCLUDE_SPECIFIED_QUERY_STRINGS = "IncludeSpecifiedQueryStrings"
176
+
177
+
178
+ class Algorithm(str, Enum):
179
+ """
180
+ Algorithm to use for URL signing
181
+ """
182
+ SHA256 = "SHA256"
183
+
184
+
185
+ class AutoGeneratedDomainNameLabelScope(str, Enum):
186
+ """
187
+ Indicates the endpoint name reuse scope. The default value is TenantReuse.
188
+ """
189
+ TENANT_REUSE = "TenantReuse"
190
+ SUBSCRIPTION_REUSE = "SubscriptionReuse"
191
+ RESOURCE_GROUP_REUSE = "ResourceGroupReuse"
192
+ NO_REUSE = "NoReuse"
193
+
194
+
195
+ class CacheBehavior(str, Enum):
196
+ """
197
+ Caching behavior for the requests
198
+ """
199
+ BYPASS_CACHE = "BypassCache"
200
+ OVERRIDE = "Override"
201
+ SET_IF_MISSING = "SetIfMissing"
202
+
203
+
204
+ class CacheType(str, Enum):
205
+ """
206
+ The level at which the content needs to be cached.
207
+ """
208
+ ALL = "All"
209
+
210
+
211
+ class ClientPortOperator(str, Enum):
212
+ """
213
+ Describes operator to be matched
214
+ """
215
+ ANY = "Any"
216
+ EQUAL = "Equal"
217
+ CONTAINS = "Contains"
218
+ BEGINS_WITH = "BeginsWith"
219
+ ENDS_WITH = "EndsWith"
220
+ LESS_THAN = "LessThan"
221
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
222
+ GREATER_THAN = "GreaterThan"
223
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
224
+ REG_EX = "RegEx"
225
+
226
+
227
+ class CookiesOperator(str, Enum):
228
+ """
229
+ Describes operator to be matched
230
+ """
231
+ ANY = "Any"
232
+ EQUAL = "Equal"
233
+ CONTAINS = "Contains"
234
+ BEGINS_WITH = "BeginsWith"
235
+ ENDS_WITH = "EndsWith"
236
+ LESS_THAN = "LessThan"
237
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
238
+ GREATER_THAN = "GreaterThan"
239
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
240
+ REG_EX = "RegEx"
241
+
242
+
243
+ class CustomRuleEnabledState(str, Enum):
244
+ """
245
+ Describes if the custom rule is in enabled or disabled state. Defaults to Enabled if not specified.
246
+ """
247
+ DISABLED = "Disabled"
248
+ ENABLED = "Enabled"
249
+
250
+
251
+ class DeliveryRuleActionName(str, Enum):
252
+ """
253
+ The name of the action for the delivery rule.
254
+ """
255
+ CACHE_EXPIRATION = "CacheExpiration"
256
+ CACHE_KEY_QUERY_STRING = "CacheKeyQueryString"
257
+ MODIFY_REQUEST_HEADER = "ModifyRequestHeader"
258
+ MODIFY_RESPONSE_HEADER = "ModifyResponseHeader"
259
+ URL_REDIRECT = "UrlRedirect"
260
+ URL_REWRITE = "UrlRewrite"
261
+ URL_SIGNING = "UrlSigning"
262
+ ORIGIN_GROUP_OVERRIDE = "OriginGroupOverride"
263
+ ROUTE_CONFIGURATION_OVERRIDE = "RouteConfigurationOverride"
264
+ AFD_URL_SIGNING = "AfdUrlSigning"
265
+
266
+
267
+ class DeliveryRuleActionParametersType(str, Enum):
268
+ DELIVERY_RULE_URL_REDIRECT_ACTION_PARAMETERS = "DeliveryRuleUrlRedirectActionParameters"
269
+ DELIVERY_RULE_URL_SIGNING_ACTION_PARAMETERS = "DeliveryRuleUrlSigningActionParameters"
270
+ DELIVERY_RULE_ORIGIN_GROUP_OVERRIDE_ACTION_PARAMETERS = "DeliveryRuleOriginGroupOverrideActionParameters"
271
+ DELIVERY_RULE_URL_REWRITE_ACTION_PARAMETERS = "DeliveryRuleUrlRewriteActionParameters"
272
+ DELIVERY_RULE_HEADER_ACTION_PARAMETERS = "DeliveryRuleHeaderActionParameters"
273
+ DELIVERY_RULE_CACHE_EXPIRATION_ACTION_PARAMETERS = "DeliveryRuleCacheExpirationActionParameters"
274
+ DELIVERY_RULE_CACHE_KEY_QUERY_STRING_BEHAVIOR_ACTION_PARAMETERS = "DeliveryRuleCacheKeyQueryStringBehaviorActionParameters"
275
+ DELIVERY_RULE_ROUTE_CONFIGURATION_OVERRIDE_ACTION_PARAMETERS = "DeliveryRuleRouteConfigurationOverrideActionParameters"
276
+
277
+
278
+ class DeliveryRuleConditionParametersType(str, Enum):
279
+ DELIVERY_RULE_REMOTE_ADDRESS_CONDITION_PARAMETERS = "DeliveryRuleRemoteAddressConditionParameters"
280
+ DELIVERY_RULE_REQUEST_METHOD_CONDITION_PARAMETERS = "DeliveryRuleRequestMethodConditionParameters"
281
+ DELIVERY_RULE_QUERY_STRING_CONDITION_PARAMETERS = "DeliveryRuleQueryStringConditionParameters"
282
+ DELIVERY_RULE_POST_ARGS_CONDITION_PARAMETERS = "DeliveryRulePostArgsConditionParameters"
283
+ DELIVERY_RULE_REQUEST_URI_CONDITION_PARAMETERS = "DeliveryRuleRequestUriConditionParameters"
284
+ DELIVERY_RULE_REQUEST_HEADER_CONDITION_PARAMETERS = "DeliveryRuleRequestHeaderConditionParameters"
285
+ DELIVERY_RULE_REQUEST_BODY_CONDITION_PARAMETERS = "DeliveryRuleRequestBodyConditionParameters"
286
+ DELIVERY_RULE_REQUEST_SCHEME_CONDITION_PARAMETERS = "DeliveryRuleRequestSchemeConditionParameters"
287
+ DELIVERY_RULE_URL_PATH_MATCH_CONDITION_PARAMETERS = "DeliveryRuleUrlPathMatchConditionParameters"
288
+ DELIVERY_RULE_URL_FILE_EXTENSION_MATCH_CONDITION_PARAMETERS = "DeliveryRuleUrlFileExtensionMatchConditionParameters"
289
+ DELIVERY_RULE_URL_FILENAME_CONDITION_PARAMETERS = "DeliveryRuleUrlFilenameConditionParameters"
290
+ DELIVERY_RULE_HTTP_VERSION_CONDITION_PARAMETERS = "DeliveryRuleHttpVersionConditionParameters"
291
+ DELIVERY_RULE_COOKIES_CONDITION_PARAMETERS = "DeliveryRuleCookiesConditionParameters"
292
+ DELIVERY_RULE_IS_DEVICE_CONDITION_PARAMETERS = "DeliveryRuleIsDeviceConditionParameters"
293
+ DELIVERY_RULE_SOCKET_ADDR_CONDITION_PARAMETERS = "DeliveryRuleSocketAddrConditionParameters"
294
+ DELIVERY_RULE_CLIENT_PORT_CONDITION_PARAMETERS = "DeliveryRuleClientPortConditionParameters"
295
+ DELIVERY_RULE_SERVER_PORT_CONDITION_PARAMETERS = "DeliveryRuleServerPortConditionParameters"
296
+ DELIVERY_RULE_HOST_NAME_CONDITION_PARAMETERS = "DeliveryRuleHostNameConditionParameters"
297
+ DELIVERY_RULE_SSL_PROTOCOL_CONDITION_PARAMETERS = "DeliveryRuleSslProtocolConditionParameters"
298
+
299
+
300
+ class DestinationProtocol(str, Enum):
301
+ """
302
+ Protocol to use for the redirect. The default value is MatchRequest
303
+ """
304
+ MATCH_REQUEST = "MatchRequest"
305
+ HTTP = "Http"
306
+ HTTPS = "Https"
307
+
308
+
309
+ class EnabledState(str, Enum):
310
+ """
311
+ Whether to enable use of this rule. Permitted values are 'Enabled' or 'Disabled'
312
+ """
313
+ ENABLED = "Enabled"
314
+ DISABLED = "Disabled"
315
+
316
+
317
+ class ForwardingProtocol(str, Enum):
318
+ """
319
+ Protocol this rule will use when forwarding traffic to backends.
320
+ """
321
+ HTTP_ONLY = "HttpOnly"
322
+ HTTPS_ONLY = "HttpsOnly"
323
+ MATCH_REQUEST = "MatchRequest"
324
+
325
+
326
+ class GeoFilterActions(str, Enum):
327
+ """
328
+ Action of the geo filter, i.e. allow or block access.
329
+ """
330
+ BLOCK = "Block"
331
+ ALLOW = "Allow"
332
+
333
+
334
+ class HeaderAction(str, Enum):
335
+ """
336
+ Action to perform
337
+ """
338
+ APPEND = "Append"
339
+ OVERWRITE = "Overwrite"
340
+ DELETE = "Delete"
341
+
342
+
343
+ class HealthProbeRequestType(str, Enum):
344
+ """
345
+ The type of health probe request that is made.
346
+ """
347
+ NOT_SET = "NotSet"
348
+ GET = "GET"
349
+ HEAD = "HEAD"
350
+
351
+
352
+ class HostNameOperator(str, Enum):
353
+ """
354
+ Describes operator to be matched
355
+ """
356
+ ANY = "Any"
357
+ EQUAL = "Equal"
358
+ CONTAINS = "Contains"
359
+ BEGINS_WITH = "BeginsWith"
360
+ ENDS_WITH = "EndsWith"
361
+ LESS_THAN = "LessThan"
362
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
363
+ GREATER_THAN = "GreaterThan"
364
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
365
+ REG_EX = "RegEx"
366
+
367
+
368
+ class HttpVersionOperator(str, Enum):
369
+ """
370
+ Describes operator to be matched
371
+ """
372
+ EQUAL = "Equal"
373
+
374
+
375
+ class HttpsRedirect(str, Enum):
376
+ """
377
+ Whether to automatically redirect HTTP traffic to HTTPS traffic. Note that this is a easy way to set up this rule and it will be the first rule that gets executed.
378
+ """
379
+ ENABLED = "Enabled"
380
+ DISABLED = "Disabled"
381
+
382
+
383
+ class IsDeviceMatchValue(str, Enum):
384
+ MOBILE = "Mobile"
385
+ DESKTOP = "Desktop"
386
+
387
+
388
+ class IsDeviceOperator(str, Enum):
389
+ """
390
+ Describes operator to be matched
391
+ """
392
+ EQUAL = "Equal"
393
+
394
+
395
+ class KeyVaultSigningKeyParametersType(str, Enum):
396
+ KEY_VAULT_SIGNING_KEY_PARAMETERS = "KeyVaultSigningKeyParameters"
397
+
398
+
399
+ class LinkToDefaultDomain(str, Enum):
400
+ """
401
+ whether this route will be linked to the default endpoint domain.
402
+ """
403
+ ENABLED = "Enabled"
404
+ DISABLED = "Disabled"
405
+
406
+
407
+ class ManagedRuleEnabledState(str, Enum):
408
+ """
409
+ Describes if the managed rule is in enabled or disabled state. Defaults to Disabled if not specified.
410
+ """
411
+ DISABLED = "Disabled"
412
+ ENABLED = "Enabled"
413
+
414
+
415
+ class ManagedServiceIdentityType(str, Enum):
416
+ """
417
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
418
+ """
419
+ NONE = "None"
420
+ SYSTEM_ASSIGNED = "SystemAssigned"
421
+ USER_ASSIGNED = "UserAssigned"
422
+ SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned"
423
+
424
+
425
+ class MatchProcessingBehavior(str, Enum):
426
+ """
427
+ If this rule is a match should the rules engine continue running the remaining rules or stop. If not present, defaults to Continue.
428
+ """
429
+ CONTINUE_ = "Continue"
430
+ STOP = "Stop"
431
+
432
+
433
+ class MatchVariable(str, Enum):
434
+ """
435
+ The name of the condition for the delivery rule.
436
+ """
437
+ REMOTE_ADDRESS = "RemoteAddress"
438
+ REQUEST_METHOD = "RequestMethod"
439
+ QUERY_STRING = "QueryString"
440
+ POST_ARGS = "PostArgs"
441
+ REQUEST_URI = "RequestUri"
442
+ REQUEST_HEADER = "RequestHeader"
443
+ REQUEST_BODY = "RequestBody"
444
+ REQUEST_SCHEME = "RequestScheme"
445
+ URL_PATH = "UrlPath"
446
+ URL_FILE_EXTENSION = "UrlFileExtension"
447
+ URL_FILE_NAME = "UrlFileName"
448
+ HTTP_VERSION = "HttpVersion"
449
+ COOKIES = "Cookies"
450
+ IS_DEVICE = "IsDevice"
451
+ SOCKET_ADDR = "SocketAddr"
452
+ CLIENT_PORT = "ClientPort"
453
+ SERVER_PORT = "ServerPort"
454
+ HOST_NAME = "HostName"
455
+ SSL_PROTOCOL = "SslProtocol"
456
+
457
+
458
+ class Operator(str, Enum):
459
+ """
460
+ Describes operator to be matched
461
+ """
462
+ ANY = "Any"
463
+ IP_MATCH = "IPMatch"
464
+ GEO_MATCH = "GeoMatch"
465
+ EQUAL = "Equal"
466
+ CONTAINS = "Contains"
467
+ LESS_THAN = "LessThan"
468
+ GREATER_THAN = "GreaterThan"
469
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
470
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
471
+ BEGINS_WITH = "BeginsWith"
472
+ ENDS_WITH = "EndsWith"
473
+ REG_EX = "RegEx"
474
+
475
+
476
+ class OptimizationType(str, Enum):
477
+ """
478
+ Specifies what scenario the customer wants this CDN endpoint to optimize for, e.g. Download, Media services. With this information, CDN can apply scenario driven optimization.
479
+ """
480
+ GENERAL_WEB_DELIVERY = "GeneralWebDelivery"
481
+ GENERAL_MEDIA_STREAMING = "GeneralMediaStreaming"
482
+ VIDEO_ON_DEMAND_MEDIA_STREAMING = "VideoOnDemandMediaStreaming"
483
+ LARGE_FILE_DOWNLOAD = "LargeFileDownload"
484
+ DYNAMIC_SITE_ACCELERATION = "DynamicSiteAcceleration"
485
+
486
+
487
+ class ParamIndicator(str, Enum):
488
+ """
489
+ Indicates the purpose of the parameter
490
+ """
491
+ EXPIRES = "Expires"
492
+ KEY_ID = "KeyId"
493
+ SIGNATURE = "Signature"
494
+
495
+
496
+ class PolicyEnabledState(str, Enum):
497
+ """
498
+ describes if the policy is in enabled state or disabled state
499
+ """
500
+ DISABLED = "Disabled"
501
+ ENABLED = "Enabled"
502
+
503
+
504
+ class PolicyMode(str, Enum):
505
+ """
506
+ Describes if it is in detection mode or prevention mode at policy level.
507
+ """
508
+ PREVENTION = "Prevention"
509
+ DETECTION = "Detection"
510
+
511
+
512
+ class PostArgsOperator(str, Enum):
513
+ """
514
+ Describes operator to be matched
515
+ """
516
+ ANY = "Any"
517
+ EQUAL = "Equal"
518
+ CONTAINS = "Contains"
519
+ BEGINS_WITH = "BeginsWith"
520
+ ENDS_WITH = "EndsWith"
521
+ LESS_THAN = "LessThan"
522
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
523
+ GREATER_THAN = "GreaterThan"
524
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
525
+ REG_EX = "RegEx"
526
+
527
+
528
+ class ProbeProtocol(str, Enum):
529
+ """
530
+ Protocol to use for health probe.
531
+ """
532
+ NOT_SET = "NotSet"
533
+ HTTP = "Http"
534
+ HTTPS = "Https"
535
+
536
+
537
+ class ProfileScrubbingState(str, Enum):
538
+ """
539
+ State of the log scrubbing config. Default value is Enabled.
540
+ """
541
+ ENABLED = "Enabled"
542
+ DISABLED = "Disabled"
543
+
544
+
545
+ class QueryStringBehavior(str, Enum):
546
+ """
547
+ Caching behavior for the requests
548
+ """
549
+ INCLUDE = "Include"
550
+ INCLUDE_ALL = "IncludeAll"
551
+ EXCLUDE = "Exclude"
552
+ EXCLUDE_ALL = "ExcludeAll"
553
+
554
+
555
+ class QueryStringCachingBehavior(str, Enum):
556
+ """
557
+ Defines how CDN caches requests that include query strings. You can ignore any query strings when caching, bypass caching to prevent requests that contain query strings from being cached, or cache every request with a unique URL.
558
+ """
559
+ IGNORE_QUERY_STRING = "IgnoreQueryString"
560
+ BYPASS_CACHING = "BypassCaching"
561
+ USE_QUERY_STRING = "UseQueryString"
562
+ NOT_SET = "NotSet"
563
+
564
+
565
+ class QueryStringOperator(str, Enum):
566
+ """
567
+ Describes operator to be matched
568
+ """
569
+ ANY = "Any"
570
+ EQUAL = "Equal"
571
+ CONTAINS = "Contains"
572
+ BEGINS_WITH = "BeginsWith"
573
+ ENDS_WITH = "EndsWith"
574
+ LESS_THAN = "LessThan"
575
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
576
+ GREATER_THAN = "GreaterThan"
577
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
578
+ REG_EX = "RegEx"
579
+
580
+
581
+ class RedirectType(str, Enum):
582
+ """
583
+ The redirect type the rule will use when redirecting traffic.
584
+ """
585
+ MOVED = "Moved"
586
+ FOUND = "Found"
587
+ TEMPORARY_REDIRECT = "TemporaryRedirect"
588
+ PERMANENT_REDIRECT = "PermanentRedirect"
589
+
590
+
591
+ class RemoteAddressOperator(str, Enum):
592
+ """
593
+ Describes operator to be matched
594
+ """
595
+ ANY = "Any"
596
+ IP_MATCH = "IPMatch"
597
+ GEO_MATCH = "GeoMatch"
598
+
599
+
600
+ class RequestBodyOperator(str, Enum):
601
+ """
602
+ Describes operator to be matched
603
+ """
604
+ ANY = "Any"
605
+ EQUAL = "Equal"
606
+ CONTAINS = "Contains"
607
+ BEGINS_WITH = "BeginsWith"
608
+ ENDS_WITH = "EndsWith"
609
+ LESS_THAN = "LessThan"
610
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
611
+ GREATER_THAN = "GreaterThan"
612
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
613
+ REG_EX = "RegEx"
614
+
615
+
616
+ class RequestHeaderOperator(str, Enum):
617
+ """
618
+ Describes operator to be matched
619
+ """
620
+ ANY = "Any"
621
+ EQUAL = "Equal"
622
+ CONTAINS = "Contains"
623
+ BEGINS_WITH = "BeginsWith"
624
+ ENDS_WITH = "EndsWith"
625
+ LESS_THAN = "LessThan"
626
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
627
+ GREATER_THAN = "GreaterThan"
628
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
629
+ REG_EX = "RegEx"
630
+
631
+
632
+ class RequestMethodMatchValue(str, Enum):
633
+ GET = "GET"
634
+ HEAD = "HEAD"
635
+ POST = "POST"
636
+ PUT = "PUT"
637
+ DELETE = "DELETE"
638
+ OPTIONS = "OPTIONS"
639
+ TRACE = "TRACE"
640
+
641
+
642
+ class RequestMethodOperator(str, Enum):
643
+ """
644
+ Describes operator to be matched
645
+ """
646
+ EQUAL = "Equal"
647
+
648
+
649
+ class RequestSchemeMatchValue(str, Enum):
650
+ HTTP = "HTTP"
651
+ HTTPS = "HTTPS"
652
+
653
+
654
+ class RequestUriOperator(str, Enum):
655
+ """
656
+ Describes operator to be matched
657
+ """
658
+ ANY = "Any"
659
+ EQUAL = "Equal"
660
+ CONTAINS = "Contains"
661
+ BEGINS_WITH = "BeginsWith"
662
+ ENDS_WITH = "EndsWith"
663
+ LESS_THAN = "LessThan"
664
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
665
+ GREATER_THAN = "GreaterThan"
666
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
667
+ REG_EX = "RegEx"
668
+
669
+
670
+ class ResponseBasedDetectedErrorTypes(str, Enum):
671
+ """
672
+ Type of response errors for real user requests for which origin will be deemed unhealthy
673
+ """
674
+ NONE = "None"
675
+ TCP_ERRORS_ONLY = "TcpErrorsOnly"
676
+ TCP_AND_HTTP_ERRORS = "TcpAndHttpErrors"
677
+
678
+
679
+ class RuleCacheBehavior(str, Enum):
680
+ """
681
+ Caching behavior for the requests
682
+ """
683
+ HONOR_ORIGIN = "HonorOrigin"
684
+ OVERRIDE_ALWAYS = "OverrideAlways"
685
+ OVERRIDE_IF_ORIGIN_MISSING = "OverrideIfOriginMissing"
686
+
687
+
688
+ class RuleIsCompressionEnabled(str, Enum):
689
+ """
690
+ Indicates whether content compression is enabled. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on AzureFrontDoor when requested content is smaller than 1 byte or larger than 1 MB.
691
+ """
692
+ ENABLED = "Enabled"
693
+ DISABLED = "Disabled"
694
+
695
+
696
+ class RuleQueryStringCachingBehavior(str, Enum):
697
+ """
698
+ Defines how Frontdoor caches requests that include query strings. You can ignore any query strings when caching, ignore specific query strings, cache every request with a unique URL, or cache specific query strings.
699
+ """
700
+ IGNORE_QUERY_STRING = "IgnoreQueryString"
701
+ USE_QUERY_STRING = "UseQueryString"
702
+ IGNORE_SPECIFIED_QUERY_STRINGS = "IgnoreSpecifiedQueryStrings"
703
+ INCLUDE_SPECIFIED_QUERY_STRINGS = "IncludeSpecifiedQueryStrings"
704
+
705
+
706
+ class ScrubbingRuleEntryMatchOperator(str, Enum):
707
+ """
708
+ When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
709
+ """
710
+ EQUALS_ANY = "EqualsAny"
711
+
712
+
713
+ class ScrubbingRuleEntryMatchVariable(str, Enum):
714
+ """
715
+ The variable to be scrubbed from the logs.
716
+ """
717
+ REQUEST_IP_ADDRESS = "RequestIPAddress"
718
+ REQUEST_URI = "RequestUri"
719
+ QUERY_STRING_ARG_NAMES = "QueryStringArgNames"
720
+
721
+
722
+ class ScrubbingRuleEntryState(str, Enum):
723
+ """
724
+ Defines the state of a log scrubbing rule. Default value is enabled.
725
+ """
726
+ ENABLED = "Enabled"
727
+ DISABLED = "Disabled"
728
+
729
+
730
+ class SecretType(str, Enum):
731
+ """
732
+ The type of the secret resource.
733
+ """
734
+ URL_SIGNING_KEY = "UrlSigningKey"
735
+ CUSTOMER_CERTIFICATE = "CustomerCertificate"
736
+ MANAGED_CERTIFICATE = "ManagedCertificate"
737
+ AZURE_FIRST_PARTY_MANAGED_CERTIFICATE = "AzureFirstPartyManagedCertificate"
738
+ MTLS_CERTIFICATE_CHAIN = "MtlsCertificateChain"
739
+
740
+
741
+ class SecurityPolicyType(str, Enum):
742
+ """
743
+ The type of the Security policy to create.
744
+ """
745
+ WEB_APPLICATION_FIREWALL = "WebApplicationFirewall"
746
+
747
+
748
+ class ServerPortOperator(str, Enum):
749
+ """
750
+ Describes operator to be matched
751
+ """
752
+ ANY = "Any"
753
+ EQUAL = "Equal"
754
+ CONTAINS = "Contains"
755
+ BEGINS_WITH = "BeginsWith"
756
+ ENDS_WITH = "EndsWith"
757
+ LESS_THAN = "LessThan"
758
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
759
+ GREATER_THAN = "GreaterThan"
760
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
761
+ REG_EX = "RegEx"
762
+
763
+
764
+ class SharedPrivateLinkResourceStatus(str, Enum):
765
+ """
766
+ Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.
767
+ """
768
+ PENDING = "Pending"
769
+ APPROVED = "Approved"
770
+ REJECTED = "Rejected"
771
+ DISCONNECTED = "Disconnected"
772
+ TIMEOUT = "Timeout"
773
+
774
+
775
+ class SkuName(str, Enum):
776
+ """
777
+ Name of the pricing tier.
778
+ """
779
+ STANDARD_VERIZON = "Standard_Verizon"
780
+ PREMIUM_VERIZON = "Premium_Verizon"
781
+ CUSTOM_VERIZON = "Custom_Verizon"
782
+ STANDARD_AKAMAI = "Standard_Akamai"
783
+ STANDARD_CHINA_CDN = "Standard_ChinaCdn"
784
+ STANDARD_MICROSOFT = "Standard_Microsoft"
785
+ STANDARD_AZURE_FRONT_DOOR = "Standard_AzureFrontDoor"
786
+ PREMIUM_AZURE_FRONT_DOOR = "Premium_AzureFrontDoor"
787
+ STANDARD_955_BAND_WIDTH_CHINA_CDN = "Standard_955BandWidth_ChinaCdn"
788
+ STANDARD_AVG_BAND_WIDTH_CHINA_CDN = "Standard_AvgBandWidth_ChinaCdn"
789
+ STANDARD_PLUS_CHINA_CDN = "StandardPlus_ChinaCdn"
790
+ STANDARD_PLUS_955_BAND_WIDTH_CHINA_CDN = "StandardPlus_955BandWidth_ChinaCdn"
791
+ STANDARD_PLUS_AVG_BAND_WIDTH_CHINA_CDN = "StandardPlus_AvgBandWidth_ChinaCdn"
792
+
793
+
794
+ class SocketAddrOperator(str, Enum):
795
+ """
796
+ Describes operator to be matched
797
+ """
798
+ ANY = "Any"
799
+ IP_MATCH = "IPMatch"
800
+
801
+
802
+ class SslProtocol(str, Enum):
803
+ """
804
+ The protocol of an established TLS connection.
805
+ """
806
+ TL_SV1 = "TLSv1"
807
+ TL_SV1_1 = "TLSv1.1"
808
+ TL_SV1_2 = "TLSv1.2"
809
+
810
+
811
+ class SslProtocolOperator(str, Enum):
812
+ """
813
+ Describes operator to be matched
814
+ """
815
+ EQUAL = "Equal"
816
+
817
+
818
+ class Transform(str, Enum):
819
+ """
820
+ Describes what transforms are applied before matching
821
+ """
822
+ LOWERCASE = "Lowercase"
823
+ UPPERCASE = "Uppercase"
824
+ TRIM = "Trim"
825
+ URL_DECODE = "UrlDecode"
826
+ URL_ENCODE = "UrlEncode"
827
+ REMOVE_NULLS = "RemoveNulls"
828
+
829
+
830
+ class TransformType(str, Enum):
831
+ """
832
+ Describes what transforms were applied before matching.
833
+ """
834
+ LOWERCASE = "Lowercase"
835
+ UPPERCASE = "Uppercase"
836
+ TRIM = "Trim"
837
+ URL_DECODE = "UrlDecode"
838
+ URL_ENCODE = "UrlEncode"
839
+ REMOVE_NULLS = "RemoveNulls"
840
+
841
+
842
+ class TunnelType(str, Enum):
843
+ """
844
+ Protocol this tunnel will use for allowing traffic to backends.
845
+ """
846
+ HTTP_CONNECT = "HttpConnect"
847
+
848
+
849
+ class UrlFileExtensionOperator(str, Enum):
850
+ """
851
+ Describes operator to be matched
852
+ """
853
+ ANY = "Any"
854
+ EQUAL = "Equal"
855
+ CONTAINS = "Contains"
856
+ BEGINS_WITH = "BeginsWith"
857
+ ENDS_WITH = "EndsWith"
858
+ LESS_THAN = "LessThan"
859
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
860
+ GREATER_THAN = "GreaterThan"
861
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
862
+ REG_EX = "RegEx"
863
+
864
+
865
+ class UrlFileNameOperator(str, Enum):
866
+ """
867
+ Describes operator to be matched
868
+ """
869
+ ANY = "Any"
870
+ EQUAL = "Equal"
871
+ CONTAINS = "Contains"
872
+ BEGINS_WITH = "BeginsWith"
873
+ ENDS_WITH = "EndsWith"
874
+ LESS_THAN = "LessThan"
875
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
876
+ GREATER_THAN = "GreaterThan"
877
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
878
+ REG_EX = "RegEx"
879
+
880
+
881
+ class UrlPathOperator(str, Enum):
882
+ """
883
+ Describes operator to be matched
884
+ """
885
+ ANY = "Any"
886
+ EQUAL = "Equal"
887
+ CONTAINS = "Contains"
888
+ BEGINS_WITH = "BeginsWith"
889
+ ENDS_WITH = "EndsWith"
890
+ LESS_THAN = "LessThan"
891
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
892
+ GREATER_THAN = "GreaterThan"
893
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
894
+ WILDCARD = "Wildcard"
895
+ REG_EX = "RegEx"
896
+
897
+
898
+ class WafMatchVariable(str, Enum):
899
+ """
900
+ Match variable to compare against.
901
+ """
902
+ REMOTE_ADDR = "RemoteAddr"
903
+ SOCKET_ADDR = "SocketAddr"
904
+ REQUEST_METHOD = "RequestMethod"
905
+ REQUEST_HEADER = "RequestHeader"
906
+ REQUEST_URI = "RequestUri"
907
+ QUERY_STRING = "QueryString"
908
+ REQUEST_BODY = "RequestBody"
909
+ COOKIES = "Cookies"
910
+ POST_ARGS = "PostArgs"