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.
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,164 @@
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
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetKeyGroupResult',
20
+ 'AwaitableGetKeyGroupResult',
21
+ 'get_key_group',
22
+ 'get_key_group_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetKeyGroupResult:
27
+ """
28
+ Contains a list of references of UrlSigningKey type secret objects.
29
+ """
30
+ def __init__(__self__, deployment_status=None, id=None, key_references=None, name=None, provisioning_state=None, system_data=None, type=None):
31
+ if deployment_status and not isinstance(deployment_status, str):
32
+ raise TypeError("Expected argument 'deployment_status' to be a str")
33
+ pulumi.set(__self__, "deployment_status", deployment_status)
34
+ if id and not isinstance(id, str):
35
+ raise TypeError("Expected argument 'id' to be a str")
36
+ pulumi.set(__self__, "id", id)
37
+ if key_references and not isinstance(key_references, list):
38
+ raise TypeError("Expected argument 'key_references' to be a list")
39
+ pulumi.set(__self__, "key_references", key_references)
40
+ if name and not isinstance(name, str):
41
+ raise TypeError("Expected argument 'name' to be a str")
42
+ pulumi.set(__self__, "name", name)
43
+ if provisioning_state and not isinstance(provisioning_state, str):
44
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
45
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
46
+ if system_data and not isinstance(system_data, dict):
47
+ raise TypeError("Expected argument 'system_data' to be a dict")
48
+ pulumi.set(__self__, "system_data", system_data)
49
+ if type and not isinstance(type, str):
50
+ raise TypeError("Expected argument 'type' to be a str")
51
+ pulumi.set(__self__, "type", type)
52
+
53
+ @property
54
+ @pulumi.getter(name="deploymentStatus")
55
+ def deployment_status(self) -> str:
56
+ return pulumi.get(self, "deployment_status")
57
+
58
+ @property
59
+ @pulumi.getter
60
+ def id(self) -> str:
61
+ """
62
+ Resource ID.
63
+ """
64
+ return pulumi.get(self, "id")
65
+
66
+ @property
67
+ @pulumi.getter(name="keyReferences")
68
+ def key_references(self) -> Optional[Sequence['outputs.ResourceReferenceResponse']]:
69
+ """
70
+ Names of UrlSigningKey type secret objects
71
+ """
72
+ return pulumi.get(self, "key_references")
73
+
74
+ @property
75
+ @pulumi.getter
76
+ def name(self) -> str:
77
+ """
78
+ Resource name.
79
+ """
80
+ return pulumi.get(self, "name")
81
+
82
+ @property
83
+ @pulumi.getter(name="provisioningState")
84
+ def provisioning_state(self) -> str:
85
+ """
86
+ Provisioning status
87
+ """
88
+ return pulumi.get(self, "provisioning_state")
89
+
90
+ @property
91
+ @pulumi.getter(name="systemData")
92
+ def system_data(self) -> 'outputs.SystemDataResponse':
93
+ """
94
+ Read only system data
95
+ """
96
+ return pulumi.get(self, "system_data")
97
+
98
+ @property
99
+ @pulumi.getter
100
+ def type(self) -> str:
101
+ """
102
+ Resource type.
103
+ """
104
+ return pulumi.get(self, "type")
105
+
106
+
107
+ class AwaitableGetKeyGroupResult(GetKeyGroupResult):
108
+ # pylint: disable=using-constant-test
109
+ def __await__(self):
110
+ if False:
111
+ yield self
112
+ return GetKeyGroupResult(
113
+ deployment_status=self.deployment_status,
114
+ id=self.id,
115
+ key_references=self.key_references,
116
+ name=self.name,
117
+ provisioning_state=self.provisioning_state,
118
+ system_data=self.system_data,
119
+ type=self.type)
120
+
121
+
122
+ def get_key_group(key_group_name: Optional[str] = None,
123
+ profile_name: Optional[str] = None,
124
+ resource_group_name: Optional[str] = None,
125
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKeyGroupResult:
126
+ """
127
+ Gets an existing KeyGroup within a profile.
128
+
129
+
130
+ :param str key_group_name: Name of the KeyGroup under the profile.
131
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
132
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
133
+ """
134
+ __args__ = dict()
135
+ __args__['keyGroupName'] = key_group_name
136
+ __args__['profileName'] = profile_name
137
+ __args__['resourceGroupName'] = resource_group_name
138
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
139
+ __ret__ = pulumi.runtime.invoke('azure-native:cdn/v20240601preview:getKeyGroup', __args__, opts=opts, typ=GetKeyGroupResult).value
140
+
141
+ return AwaitableGetKeyGroupResult(
142
+ deployment_status=pulumi.get(__ret__, 'deployment_status'),
143
+ id=pulumi.get(__ret__, 'id'),
144
+ key_references=pulumi.get(__ret__, 'key_references'),
145
+ name=pulumi.get(__ret__, 'name'),
146
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
147
+ system_data=pulumi.get(__ret__, 'system_data'),
148
+ type=pulumi.get(__ret__, 'type'))
149
+
150
+
151
+ @_utilities.lift_output_func(get_key_group)
152
+ def get_key_group_output(key_group_name: Optional[pulumi.Input[str]] = None,
153
+ profile_name: Optional[pulumi.Input[str]] = None,
154
+ resource_group_name: Optional[pulumi.Input[str]] = None,
155
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKeyGroupResult]:
156
+ """
157
+ Gets an existing KeyGroup within a profile.
158
+
159
+
160
+ :param str key_group_name: Name of the KeyGroup under the profile.
161
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
162
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
163
+ """
164
+ ...
@@ -0,0 +1,315 @@
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
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetOriginResult',
20
+ 'AwaitableGetOriginResult',
21
+ 'get_origin',
22
+ 'get_origin_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetOriginResult:
27
+ """
28
+ CDN origin is the source of the content being delivered via CDN. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins.
29
+ """
30
+ def __init__(__self__, enabled=None, host_name=None, http_port=None, https_port=None, id=None, name=None, origin_host_header=None, priority=None, private_endpoint_status=None, private_link_alias=None, private_link_approval_message=None, private_link_location=None, private_link_resource_id=None, provisioning_state=None, resource_state=None, system_data=None, type=None, weight=None):
31
+ if enabled and not isinstance(enabled, bool):
32
+ raise TypeError("Expected argument 'enabled' to be a bool")
33
+ pulumi.set(__self__, "enabled", enabled)
34
+ if host_name and not isinstance(host_name, str):
35
+ raise TypeError("Expected argument 'host_name' to be a str")
36
+ pulumi.set(__self__, "host_name", host_name)
37
+ if http_port and not isinstance(http_port, int):
38
+ raise TypeError("Expected argument 'http_port' to be a int")
39
+ pulumi.set(__self__, "http_port", http_port)
40
+ if https_port and not isinstance(https_port, int):
41
+ raise TypeError("Expected argument 'https_port' to be a int")
42
+ pulumi.set(__self__, "https_port", https_port)
43
+ if id and not isinstance(id, str):
44
+ raise TypeError("Expected argument 'id' to be a str")
45
+ pulumi.set(__self__, "id", id)
46
+ if name and not isinstance(name, str):
47
+ raise TypeError("Expected argument 'name' to be a str")
48
+ pulumi.set(__self__, "name", name)
49
+ if origin_host_header and not isinstance(origin_host_header, str):
50
+ raise TypeError("Expected argument 'origin_host_header' to be a str")
51
+ pulumi.set(__self__, "origin_host_header", origin_host_header)
52
+ if priority and not isinstance(priority, int):
53
+ raise TypeError("Expected argument 'priority' to be a int")
54
+ pulumi.set(__self__, "priority", priority)
55
+ if private_endpoint_status and not isinstance(private_endpoint_status, str):
56
+ raise TypeError("Expected argument 'private_endpoint_status' to be a str")
57
+ pulumi.set(__self__, "private_endpoint_status", private_endpoint_status)
58
+ if private_link_alias and not isinstance(private_link_alias, str):
59
+ raise TypeError("Expected argument 'private_link_alias' to be a str")
60
+ pulumi.set(__self__, "private_link_alias", private_link_alias)
61
+ if private_link_approval_message and not isinstance(private_link_approval_message, str):
62
+ raise TypeError("Expected argument 'private_link_approval_message' to be a str")
63
+ pulumi.set(__self__, "private_link_approval_message", private_link_approval_message)
64
+ if private_link_location and not isinstance(private_link_location, str):
65
+ raise TypeError("Expected argument 'private_link_location' to be a str")
66
+ pulumi.set(__self__, "private_link_location", private_link_location)
67
+ if private_link_resource_id and not isinstance(private_link_resource_id, str):
68
+ raise TypeError("Expected argument 'private_link_resource_id' to be a str")
69
+ pulumi.set(__self__, "private_link_resource_id", private_link_resource_id)
70
+ if provisioning_state and not isinstance(provisioning_state, str):
71
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
72
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
73
+ if resource_state and not isinstance(resource_state, str):
74
+ raise TypeError("Expected argument 'resource_state' to be a str")
75
+ pulumi.set(__self__, "resource_state", resource_state)
76
+ if system_data and not isinstance(system_data, dict):
77
+ raise TypeError("Expected argument 'system_data' to be a dict")
78
+ pulumi.set(__self__, "system_data", system_data)
79
+ if type and not isinstance(type, str):
80
+ raise TypeError("Expected argument 'type' to be a str")
81
+ pulumi.set(__self__, "type", type)
82
+ if weight and not isinstance(weight, int):
83
+ raise TypeError("Expected argument 'weight' to be a int")
84
+ pulumi.set(__self__, "weight", weight)
85
+
86
+ @property
87
+ @pulumi.getter
88
+ def enabled(self) -> Optional[bool]:
89
+ """
90
+ Origin is enabled for load balancing or not
91
+ """
92
+ return pulumi.get(self, "enabled")
93
+
94
+ @property
95
+ @pulumi.getter(name="hostName")
96
+ def host_name(self) -> str:
97
+ """
98
+ The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.
99
+ """
100
+ return pulumi.get(self, "host_name")
101
+
102
+ @property
103
+ @pulumi.getter(name="httpPort")
104
+ def http_port(self) -> Optional[int]:
105
+ """
106
+ The value of the HTTP port. Must be between 1 and 65535.
107
+ """
108
+ return pulumi.get(self, "http_port")
109
+
110
+ @property
111
+ @pulumi.getter(name="httpsPort")
112
+ def https_port(self) -> Optional[int]:
113
+ """
114
+ The value of the HTTPS port. Must be between 1 and 65535.
115
+ """
116
+ return pulumi.get(self, "https_port")
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def id(self) -> str:
121
+ """
122
+ Resource ID.
123
+ """
124
+ return pulumi.get(self, "id")
125
+
126
+ @property
127
+ @pulumi.getter
128
+ def name(self) -> str:
129
+ """
130
+ Resource name.
131
+ """
132
+ return pulumi.get(self, "name")
133
+
134
+ @property
135
+ @pulumi.getter(name="originHostHeader")
136
+ def origin_host_header(self) -> Optional[str]:
137
+ """
138
+ 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. This overrides the host header defined at Endpoint
139
+ """
140
+ return pulumi.get(self, "origin_host_header")
141
+
142
+ @property
143
+ @pulumi.getter
144
+ def priority(self) -> Optional[int]:
145
+ """
146
+ 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
147
+ """
148
+ return pulumi.get(self, "priority")
149
+
150
+ @property
151
+ @pulumi.getter(name="privateEndpointStatus")
152
+ def private_endpoint_status(self) -> str:
153
+ """
154
+ The approval status for the connection to the Private Link
155
+ """
156
+ return pulumi.get(self, "private_endpoint_status")
157
+
158
+ @property
159
+ @pulumi.getter(name="privateLinkAlias")
160
+ def private_link_alias(self) -> Optional[str]:
161
+ """
162
+ The Alias of the Private Link resource. Populating this optional field indicates that this origin is 'Private'
163
+ """
164
+ return pulumi.get(self, "private_link_alias")
165
+
166
+ @property
167
+ @pulumi.getter(name="privateLinkApprovalMessage")
168
+ def private_link_approval_message(self) -> Optional[str]:
169
+ """
170
+ A custom message to be included in the approval request to connect to the Private Link.
171
+ """
172
+ return pulumi.get(self, "private_link_approval_message")
173
+
174
+ @property
175
+ @pulumi.getter(name="privateLinkLocation")
176
+ def private_link_location(self) -> Optional[str]:
177
+ """
178
+ The location of the Private Link resource. Required only if 'privateLinkResourceId' is populated
179
+ """
180
+ return pulumi.get(self, "private_link_location")
181
+
182
+ @property
183
+ @pulumi.getter(name="privateLinkResourceId")
184
+ def private_link_resource_id(self) -> Optional[str]:
185
+ """
186
+ The Resource Id of the Private Link resource. Populating this optional field indicates that this backend is 'Private'
187
+ """
188
+ return pulumi.get(self, "private_link_resource_id")
189
+
190
+ @property
191
+ @pulumi.getter(name="provisioningState")
192
+ def provisioning_state(self) -> str:
193
+ """
194
+ Provisioning status of the origin.
195
+ """
196
+ return pulumi.get(self, "provisioning_state")
197
+
198
+ @property
199
+ @pulumi.getter(name="resourceState")
200
+ def resource_state(self) -> str:
201
+ """
202
+ Resource status of the origin.
203
+ """
204
+ return pulumi.get(self, "resource_state")
205
+
206
+ @property
207
+ @pulumi.getter(name="systemData")
208
+ def system_data(self) -> 'outputs.SystemDataResponse':
209
+ """
210
+ Read only system data
211
+ """
212
+ return pulumi.get(self, "system_data")
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def type(self) -> str:
217
+ """
218
+ Resource type.
219
+ """
220
+ return pulumi.get(self, "type")
221
+
222
+ @property
223
+ @pulumi.getter
224
+ def weight(self) -> Optional[int]:
225
+ """
226
+ Weight of the origin in given origin group for load balancing. Must be between 1 and 1000
227
+ """
228
+ return pulumi.get(self, "weight")
229
+
230
+
231
+ class AwaitableGetOriginResult(GetOriginResult):
232
+ # pylint: disable=using-constant-test
233
+ def __await__(self):
234
+ if False:
235
+ yield self
236
+ return GetOriginResult(
237
+ enabled=self.enabled,
238
+ host_name=self.host_name,
239
+ http_port=self.http_port,
240
+ https_port=self.https_port,
241
+ id=self.id,
242
+ name=self.name,
243
+ origin_host_header=self.origin_host_header,
244
+ priority=self.priority,
245
+ private_endpoint_status=self.private_endpoint_status,
246
+ private_link_alias=self.private_link_alias,
247
+ private_link_approval_message=self.private_link_approval_message,
248
+ private_link_location=self.private_link_location,
249
+ private_link_resource_id=self.private_link_resource_id,
250
+ provisioning_state=self.provisioning_state,
251
+ resource_state=self.resource_state,
252
+ system_data=self.system_data,
253
+ type=self.type,
254
+ weight=self.weight)
255
+
256
+
257
+ def get_origin(endpoint_name: Optional[str] = None,
258
+ origin_name: Optional[str] = None,
259
+ profile_name: Optional[str] = None,
260
+ resource_group_name: Optional[str] = None,
261
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOriginResult:
262
+ """
263
+ Gets an existing origin within an endpoint.
264
+
265
+
266
+ :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
267
+ :param str origin_name: Name of the origin which is unique within the endpoint.
268
+ :param str profile_name: Name of the CDN profile which is unique within the resource group.
269
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
270
+ """
271
+ __args__ = dict()
272
+ __args__['endpointName'] = endpoint_name
273
+ __args__['originName'] = origin_name
274
+ __args__['profileName'] = profile_name
275
+ __args__['resourceGroupName'] = resource_group_name
276
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
277
+ __ret__ = pulumi.runtime.invoke('azure-native:cdn/v20240601preview:getOrigin', __args__, opts=opts, typ=GetOriginResult).value
278
+
279
+ return AwaitableGetOriginResult(
280
+ enabled=pulumi.get(__ret__, 'enabled'),
281
+ host_name=pulumi.get(__ret__, 'host_name'),
282
+ http_port=pulumi.get(__ret__, 'http_port'),
283
+ https_port=pulumi.get(__ret__, 'https_port'),
284
+ id=pulumi.get(__ret__, 'id'),
285
+ name=pulumi.get(__ret__, 'name'),
286
+ origin_host_header=pulumi.get(__ret__, 'origin_host_header'),
287
+ priority=pulumi.get(__ret__, 'priority'),
288
+ private_endpoint_status=pulumi.get(__ret__, 'private_endpoint_status'),
289
+ private_link_alias=pulumi.get(__ret__, 'private_link_alias'),
290
+ private_link_approval_message=pulumi.get(__ret__, 'private_link_approval_message'),
291
+ private_link_location=pulumi.get(__ret__, 'private_link_location'),
292
+ private_link_resource_id=pulumi.get(__ret__, 'private_link_resource_id'),
293
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
294
+ resource_state=pulumi.get(__ret__, 'resource_state'),
295
+ system_data=pulumi.get(__ret__, 'system_data'),
296
+ type=pulumi.get(__ret__, 'type'),
297
+ weight=pulumi.get(__ret__, 'weight'))
298
+
299
+
300
+ @_utilities.lift_output_func(get_origin)
301
+ def get_origin_output(endpoint_name: Optional[pulumi.Input[str]] = None,
302
+ origin_name: Optional[pulumi.Input[str]] = None,
303
+ profile_name: Optional[pulumi.Input[str]] = None,
304
+ resource_group_name: Optional[pulumi.Input[str]] = None,
305
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOriginResult]:
306
+ """
307
+ Gets an existing origin within an endpoint.
308
+
309
+
310
+ :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
311
+ :param str origin_name: Name of the origin which is unique within the endpoint.
312
+ :param str profile_name: Name of the CDN profile which is unique within the resource group.
313
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
314
+ """
315
+ ...