pulumi-azure-native 2.55.0a1723193023__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 (234) hide show
  1. pulumi_azure_native/__init__.py +52 -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/pulumi-plugin.json +1 -1
  169. pulumi_azure_native/resources/__init__.py +3 -0
  170. pulumi_azure_native/resources/deployment.py +3 -3
  171. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  172. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  173. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  174. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  175. pulumi_azure_native/resources/get_deployment.py +2 -2
  176. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  177. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  178. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  179. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  180. pulumi_azure_native/resources/get_resource.py +2 -2
  181. pulumi_azure_native/resources/get_resource_group.py +2 -2
  182. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  183. pulumi_azure_native/resources/resource.py +3 -3
  184. pulumi_azure_native/resources/resource_group.py +3 -3
  185. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  186. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  187. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  188. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  189. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  190. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  191. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  192. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  193. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  194. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  195. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  196. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  197. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  198. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  199. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  200. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  201. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  202. pulumi_azure_native/resources/v20240301/deployment.py +1 -1
  203. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +1 -1
  204. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +1 -1
  205. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +1 -1
  206. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +1 -1
  207. pulumi_azure_native/resources/v20240301/resource.py +1 -1
  208. pulumi_azure_native/resources/v20240301/resource_group.py +1 -1
  209. pulumi_azure_native/resources/v20240301/tag_at_scope.py +1 -1
  210. pulumi_azure_native/resources/v20240701/__init__.py +26 -0
  211. pulumi_azure_native/resources/v20240701/_enums.py +55 -0
  212. pulumi_azure_native/resources/v20240701/_inputs.py +1082 -0
  213. pulumi_azure_native/resources/v20240701/deployment.py +249 -0
  214. pulumi_azure_native/resources/v20240701/deployment_at_management_group_scope.py +249 -0
  215. pulumi_azure_native/resources/v20240701/deployment_at_scope.py +249 -0
  216. pulumi_azure_native/resources/v20240701/deployment_at_subscription_scope.py +228 -0
  217. pulumi_azure_native/resources/v20240701/deployment_at_tenant_scope.py +228 -0
  218. pulumi_azure_native/resources/v20240701/get_deployment.py +149 -0
  219. pulumi_azure_native/resources/v20240701/get_deployment_at_management_group_scope.py +149 -0
  220. pulumi_azure_native/resources/v20240701/get_deployment_at_scope.py +149 -0
  221. pulumi_azure_native/resources/v20240701/get_deployment_at_subscription_scope.py +144 -0
  222. pulumi_azure_native/resources/v20240701/get_deployment_at_tenant_scope.py +144 -0
  223. pulumi_azure_native/resources/v20240701/get_resource.py +242 -0
  224. pulumi_azure_native/resources/v20240701/get_resource_group.py +157 -0
  225. pulumi_azure_native/resources/v20240701/get_tag_at_scope.py +118 -0
  226. pulumi_azure_native/resources/v20240701/outputs.py +1938 -0
  227. pulumi_azure_native/resources/v20240701/resource.py +485 -0
  228. pulumi_azure_native/resources/v20240701/resource_group.py +235 -0
  229. pulumi_azure_native/resources/v20240701/tag_at_scope.py +170 -0
  230. pulumi_azure_native/storage/blob.py +3 -3
  231. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/METADATA +1 -1
  232. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/RECORD +234 -161
  233. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/WHEEL +1 -1
  234. {pulumi_azure_native-2.55.0a1723193023.dist-info → pulumi_azure_native-2.56.0.dist-info}/top_level.txt +0 -0
@@ -211,7 +211,7 @@ def get_afd_custom_domain(custom_domain_name: Optional[str] = None,
211
211
  Gets an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
212
212
  Azure REST API version: 2023-05-01.
213
213
 
214
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
214
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
215
215
 
216
216
 
217
217
  :param str custom_domain_name: Name of the domain under the profile which is unique globally.
@@ -251,7 +251,7 @@ def get_afd_custom_domain_output(custom_domain_name: Optional[pulumi.Input[str]]
251
251
  Gets an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
252
252
  Azure REST API version: 2023-05-01.
253
253
 
254
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
254
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
255
255
 
256
256
 
257
257
  :param str custom_domain_name: Name of the domain under the profile which is unique globally.
@@ -187,7 +187,7 @@ def get_afd_endpoint(endpoint_name: Optional[str] = None,
187
187
  Gets an existing AzureFrontDoor endpoint with the specified endpoint name under the specified subscription, resource group and profile.
188
188
  Azure REST API version: 2023-05-01.
189
189
 
190
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
190
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
191
191
 
192
192
 
193
193
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -225,7 +225,7 @@ def get_afd_endpoint_output(endpoint_name: Optional[pulumi.Input[str]] = None,
225
225
  Gets an existing AzureFrontDoor endpoint with the specified endpoint name under the specified subscription, resource group and profile.
226
226
  Azure REST API version: 2023-05-01.
227
227
 
228
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
228
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
229
229
 
230
230
 
231
231
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -248,7 +248,7 @@ def get_afd_origin(origin_group_name: Optional[str] = None,
248
248
  Gets an existing origin within an origin group.
249
249
  Azure REST API version: 2023-05-01.
250
250
 
251
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
251
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
252
252
 
253
253
 
254
254
  :param str origin_group_name: Name of the origin group which is unique within the profile.
@@ -294,7 +294,7 @@ def get_afd_origin_output(origin_group_name: Optional[pulumi.Input[str]] = None,
294
294
  Gets an existing origin within an origin group.
295
295
  Azure REST API version: 2023-05-01.
296
296
 
297
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
297
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
298
298
 
299
299
 
300
300
  :param str origin_group_name: Name of the origin group which is unique within the profile.
@@ -175,7 +175,7 @@ def get_afd_origin_group(origin_group_name: Optional[str] = None,
175
175
  Gets an existing origin group within a profile.
176
176
  Azure REST API version: 2023-05-01.
177
177
 
178
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
178
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
179
179
 
180
180
 
181
181
  :param str origin_group_name: Name of the origin group which is unique within the endpoint.
@@ -212,7 +212,7 @@ def get_afd_origin_group_output(origin_group_name: Optional[pulumi.Input[str]] =
212
212
  Gets an existing origin group within a profile.
213
213
  Azure REST API version: 2023-05-01.
214
214
 
215
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
215
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
216
216
 
217
217
 
218
218
  :param str origin_group_name: Name of the origin group which is unique within the endpoint.
@@ -0,0 +1,166 @@
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
+ 'GetAFDTargetGroupResult',
20
+ 'AwaitableGetAFDTargetGroupResult',
21
+ 'get_afd_target_group',
22
+ 'get_afd_target_group_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetAFDTargetGroupResult:
27
+ """
28
+ AFDTargetGroup comprises a list of Endpoints that is used for tunnelling protocols to allow certain traffic.
29
+ """
30
+ def __init__(__self__, deployment_status=None, id=None, name=None, provisioning_state=None, system_data=None, target_endpoints=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 name and not isinstance(name, str):
38
+ raise TypeError("Expected argument 'name' to be a str")
39
+ pulumi.set(__self__, "name", name)
40
+ if provisioning_state and not isinstance(provisioning_state, str):
41
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
42
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
43
+ if system_data and not isinstance(system_data, dict):
44
+ raise TypeError("Expected argument 'system_data' to be a dict")
45
+ pulumi.set(__self__, "system_data", system_data)
46
+ if target_endpoints and not isinstance(target_endpoints, list):
47
+ raise TypeError("Expected argument 'target_endpoints' to be a list")
48
+ pulumi.set(__self__, "target_endpoints", target_endpoints)
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
68
+ def name(self) -> str:
69
+ """
70
+ Resource name.
71
+ """
72
+ return pulumi.get(self, "name")
73
+
74
+ @property
75
+ @pulumi.getter(name="provisioningState")
76
+ def provisioning_state(self) -> str:
77
+ """
78
+ Provisioning status
79
+ """
80
+ return pulumi.get(self, "provisioning_state")
81
+
82
+ @property
83
+ @pulumi.getter(name="systemData")
84
+ def system_data(self) -> 'outputs.SystemDataResponse':
85
+ """
86
+ Read only system data
87
+ """
88
+ return pulumi.get(self, "system_data")
89
+
90
+ @property
91
+ @pulumi.getter(name="targetEndpoints")
92
+ def target_endpoints(self) -> Sequence['outputs.TargetEndpointResponse']:
93
+ """
94
+ TargetEndpoint list referenced by this target group.
95
+ """
96
+ return pulumi.get(self, "target_endpoints")
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 AwaitableGetAFDTargetGroupResult(GetAFDTargetGroupResult):
108
+ # pylint: disable=using-constant-test
109
+ def __await__(self):
110
+ if False:
111
+ yield self
112
+ return GetAFDTargetGroupResult(
113
+ deployment_status=self.deployment_status,
114
+ id=self.id,
115
+ name=self.name,
116
+ provisioning_state=self.provisioning_state,
117
+ system_data=self.system_data,
118
+ target_endpoints=self.target_endpoints,
119
+ type=self.type)
120
+
121
+
122
+ def get_afd_target_group(profile_name: Optional[str] = None,
123
+ resource_group_name: Optional[str] = None,
124
+ target_group_name: Optional[str] = None,
125
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAFDTargetGroupResult:
126
+ """
127
+ Gets an existing target group within a profile.
128
+ Azure REST API version: 2024-06-01-preview.
129
+
130
+
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: Name of the Resource group within the Azure subscription.
133
+ :param str target_group_name: Name of the Target Group under the profile.
134
+ """
135
+ __args__ = dict()
136
+ __args__['profileName'] = profile_name
137
+ __args__['resourceGroupName'] = resource_group_name
138
+ __args__['targetGroupName'] = target_group_name
139
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
140
+ __ret__ = pulumi.runtime.invoke('azure-native:cdn:getAFDTargetGroup', __args__, opts=opts, typ=GetAFDTargetGroupResult).value
141
+
142
+ return AwaitableGetAFDTargetGroupResult(
143
+ deployment_status=pulumi.get(__ret__, 'deployment_status'),
144
+ id=pulumi.get(__ret__, 'id'),
145
+ name=pulumi.get(__ret__, 'name'),
146
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
147
+ system_data=pulumi.get(__ret__, 'system_data'),
148
+ target_endpoints=pulumi.get(__ret__, 'target_endpoints'),
149
+ type=pulumi.get(__ret__, 'type'))
150
+
151
+
152
+ @_utilities.lift_output_func(get_afd_target_group)
153
+ def get_afd_target_group_output(profile_name: Optional[pulumi.Input[str]] = None,
154
+ resource_group_name: Optional[pulumi.Input[str]] = None,
155
+ target_group_name: Optional[pulumi.Input[str]] = None,
156
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAFDTargetGroupResult]:
157
+ """
158
+ Gets an existing target group within a profile.
159
+ Azure REST API version: 2024-06-01-preview.
160
+
161
+
162
+ :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium which is unique within the resource group.
163
+ :param str resource_group_name: Name of the Resource group within the Azure subscription.
164
+ :param str target_group_name: Name of the Target Group under the profile.
165
+ """
166
+ ...
@@ -179,7 +179,7 @@ def get_custom_domain(custom_domain_name: Optional[str] = None,
179
179
  Gets an existing custom domain within an endpoint.
180
180
  Azure REST API version: 2023-05-01.
181
181
 
182
- Other available API versions: 2016-10-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
182
+ Other available API versions: 2016-10-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
183
183
 
184
184
 
185
185
  :param str custom_domain_name: Name of the custom domain within an endpoint.
@@ -219,7 +219,7 @@ def get_custom_domain_output(custom_domain_name: Optional[pulumi.Input[str]] = N
219
219
  Gets an existing custom domain within an endpoint.
220
220
  Azure REST API version: 2023-05-01.
221
221
 
222
- Other available API versions: 2016-10-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
222
+ Other available API versions: 2016-10-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
223
223
 
224
224
 
225
225
  :param str custom_domain_name: Name of the custom domain within an endpoint.
@@ -358,7 +358,7 @@ def get_endpoint(endpoint_name: Optional[str] = None,
358
358
  Gets an existing CDN endpoint with the specified endpoint name under the specified subscription, resource group and profile.
359
359
  Azure REST API version: 2023-05-01.
360
360
 
361
- Other available API versions: 2016-04-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
361
+ Other available API versions: 2016-04-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
362
362
 
363
363
 
364
364
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -410,7 +410,7 @@ def get_endpoint_output(endpoint_name: Optional[pulumi.Input[str]] = None,
410
410
  Gets an existing CDN endpoint with the specified endpoint name under the specified subscription, resource group and profile.
411
411
  Azure REST API version: 2023-05-01.
412
412
 
413
- Other available API versions: 2016-04-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
413
+ Other available API versions: 2016-04-02, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
414
414
 
415
415
 
416
416
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -127,7 +127,7 @@ def get_key_group(key_group_name: Optional[str] = None,
127
127
  Gets an existing KeyGroup within a profile.
128
128
  Azure REST API version: 2023-07-01-preview.
129
129
 
130
- Other available API versions: 2024-05-01-preview.
130
+ Other available API versions: 2024-05-01-preview, 2024-06-01-preview.
131
131
 
132
132
 
133
133
  :param str key_group_name: Name of the KeyGroup under the profile.
@@ -160,7 +160,7 @@ def get_key_group_output(key_group_name: Optional[pulumi.Input[str]] = None,
160
160
  Gets an existing KeyGroup within a profile.
161
161
  Azure REST API version: 2023-07-01-preview.
162
162
 
163
- Other available API versions: 2024-05-01-preview.
163
+ Other available API versions: 2024-05-01-preview, 2024-06-01-preview.
164
164
 
165
165
 
166
166
  :param str key_group_name: Name of the KeyGroup under the profile.
@@ -263,7 +263,7 @@ def get_origin(endpoint_name: Optional[str] = None,
263
263
  Gets an existing origin within an endpoint.
264
264
  Azure REST API version: 2023-05-01.
265
265
 
266
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
266
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
267
267
 
268
268
 
269
269
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -310,7 +310,7 @@ def get_origin_output(endpoint_name: Optional[pulumi.Input[str]] = None,
310
310
  Gets an existing origin within an endpoint.
311
311
  Azure REST API version: 2023-05-01.
312
312
 
313
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
313
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
314
314
 
315
315
 
316
316
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -167,7 +167,7 @@ def get_origin_group(endpoint_name: Optional[str] = None,
167
167
  Gets an existing origin group within an endpoint.
168
168
  Azure REST API version: 2023-05-01.
169
169
 
170
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
170
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
171
171
 
172
172
 
173
173
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -206,7 +206,7 @@ def get_origin_group_output(endpoint_name: Optional[pulumi.Input[str]] = None,
206
206
  Gets an existing origin group within an endpoint.
207
207
  Azure REST API version: 2023-05-01.
208
208
 
209
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
209
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
210
210
 
211
211
 
212
212
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -234,7 +234,7 @@ def get_policy(policy_name: Optional[str] = None,
234
234
  Retrieve protection policy with specified name within a resource group.
235
235
  Azure REST API version: 2023-05-01.
236
236
 
237
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
237
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
238
238
 
239
239
 
240
240
  :param str policy_name: The name of the CdnWebApplicationFirewallPolicy.
@@ -273,7 +273,7 @@ def get_policy_output(policy_name: Optional[pulumi.Input[str]] = None,
273
273
  Retrieve protection policy with specified name within a resource group.
274
274
  Azure REST API version: 2023-05-01.
275
275
 
276
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
276
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
277
277
 
278
278
 
279
279
  :param str policy_name: The name of the CdnWebApplicationFirewallPolicy.
@@ -213,7 +213,7 @@ def get_profile(profile_name: Optional[str] = None,
213
213
  Gets an Azure Front Door Standard or Azure Front Door Premium or CDN profile with the specified profile name under the specified subscription and resource group.
214
214
  Azure REST API version: 2023-05-01.
215
215
 
216
- Other available API versions: 2016-04-02, 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
216
+ Other available API versions: 2016-04-02, 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
217
217
 
218
218
 
219
219
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
@@ -250,7 +250,7 @@ def get_profile_output(profile_name: Optional[pulumi.Input[str]] = None,
250
250
  Gets an Azure Front Door Standard or Azure Front Door Premium or CDN profile with the specified profile name under the specified subscription and resource group.
251
251
  Azure REST API version: 2023-05-01.
252
252
 
253
- Other available API versions: 2016-04-02, 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
253
+ Other available API versions: 2016-04-02, 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
254
254
 
255
255
 
256
256
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
@@ -56,7 +56,7 @@ def get_profile_supported_optimization_types(profile_name: Optional[str] = None,
56
56
  Gets the supported optimization types for the current profile. A user can create an endpoint with an optimization type from the listed values.
57
57
  Azure REST API version: 2023-05-01.
58
58
 
59
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
59
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
60
60
 
61
61
 
62
62
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
@@ -80,7 +80,7 @@ def get_profile_supported_optimization_types_output(profile_name: Optional[pulum
80
80
  Gets the supported optimization types for the current profile. A user can create an endpoint with an optimization type from the listed values.
81
81
  Azure REST API version: 2023-05-01.
82
82
 
83
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
83
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
84
84
 
85
85
 
86
86
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
@@ -260,7 +260,7 @@ def get_route(endpoint_name: Optional[str] = None,
260
260
  Gets an existing route with the specified route name under the specified subscription, resource group, profile, and AzureFrontDoor endpoint.
261
261
  Azure REST API version: 2023-05-01.
262
262
 
263
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
263
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
264
264
 
265
265
 
266
266
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -307,7 +307,7 @@ def get_route_output(endpoint_name: Optional[pulumi.Input[str]] = None,
307
307
  Gets an existing route with the specified route name under the specified subscription, resource group, profile, and AzureFrontDoor endpoint.
308
308
  Azure REST API version: 2023-05-01.
309
309
 
310
- Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
310
+ Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
311
311
 
312
312
 
313
313
  :param str endpoint_name: Name of the endpoint under the profile which is unique globally.
@@ -176,7 +176,7 @@ def get_rule(profile_name: Optional[str] = None,
176
176
  Gets an existing delivery rule within a rule set.
177
177
  Azure REST API version: 2023-05-01.
178
178
 
179
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
179
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
180
180
 
181
181
 
182
182
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -216,7 +216,7 @@ def get_rule_output(profile_name: Optional[pulumi.Input[str]] = None,
216
216
  Gets an existing delivery rule within a rule set.
217
217
  Azure REST API version: 2023-05-01.
218
218
 
219
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
219
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
220
220
 
221
221
 
222
222
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -127,7 +127,7 @@ def get_rule_set(profile_name: Optional[str] = None,
127
127
  Gets an existing AzureFrontDoor rule set with the specified rule set name under the specified subscription, resource group and profile.
128
128
  Azure REST API version: 2023-05-01.
129
129
 
130
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
130
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
131
131
 
132
132
 
133
133
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -160,7 +160,7 @@ def get_rule_set_output(profile_name: Optional[pulumi.Input[str]] = None,
160
160
  Gets an existing AzureFrontDoor rule set with the specified rule set name under the specified subscription, resource group and profile.
161
161
  Azure REST API version: 2023-05-01.
162
162
 
163
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
163
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
164
164
 
165
165
 
166
166
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -139,7 +139,7 @@ def get_secret(profile_name: Optional[str] = None,
139
139
  Gets an existing Secret within a profile.
140
140
  Azure REST API version: 2023-05-01.
141
141
 
142
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
142
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
143
143
 
144
144
 
145
145
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -173,7 +173,7 @@ def get_secret_output(profile_name: Optional[pulumi.Input[str]] = None,
173
173
  Gets an existing Secret within a profile.
174
174
  Azure REST API version: 2023-05-01.
175
175
 
176
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
176
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
177
177
 
178
178
 
179
179
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -139,7 +139,7 @@ def get_security_policy(profile_name: Optional[str] = None,
139
139
  Gets an existing security policy within a profile.
140
140
  Azure REST API version: 2023-05-01.
141
141
 
142
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
142
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
143
143
 
144
144
 
145
145
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
@@ -173,7 +173,7 @@ def get_security_policy_output(profile_name: Optional[pulumi.Input[str]] = None,
173
173
  Gets an existing security policy within a profile.
174
174
  Azure REST API version: 2023-05-01.
175
175
 
176
- Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview.
176
+ Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
177
177
 
178
178
 
179
179
  :param str profile_name: Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.