pulumi-azure-native 2.47.0a1719221358__py3-none-any.whl → 2.47.1__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 (1804) hide show
  1. pulumi_azure_native/__init__.py +239 -4
  2. pulumi_azure_native/app/__init__.py +10 -0
  3. pulumi_azure_native/app/_enums.py +46 -0
  4. pulumi_azure_native/app/_inputs.py +490 -0
  5. pulumi_azure_native/app/app_resiliency.py +3 -3
  6. pulumi_azure_native/app/build.py +3 -3
  7. pulumi_azure_native/app/builder.py +3 -3
  8. pulumi_azure_native/app/certificate.py +3 -3
  9. pulumi_azure_native/app/connected_environment.py +3 -3
  10. pulumi_azure_native/app/connected_environments_certificate.py +3 -3
  11. pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
  12. pulumi_azure_native/app/connected_environments_storage.py +3 -3
  13. pulumi_azure_native/app/container_app.py +3 -3
  14. pulumi_azure_native/app/container_apps_auth_config.py +3 -3
  15. pulumi_azure_native/app/container_apps_session_pool.py +488 -0
  16. pulumi_azure_native/app/container_apps_source_control.py +3 -3
  17. pulumi_azure_native/app/dapr_component.py +3 -3
  18. pulumi_azure_native/app/dapr_component_resiliency_policy.py +3 -3
  19. pulumi_azure_native/app/dapr_subscription.py +3 -3
  20. pulumi_azure_native/app/dot_net_component.py +5 -1
  21. pulumi_azure_native/app/get_app_resiliency.py +2 -2
  22. pulumi_azure_native/app/get_build.py +2 -2
  23. pulumi_azure_native/app/get_builder.py +2 -2
  24. pulumi_azure_native/app/get_certificate.py +2 -2
  25. pulumi_azure_native/app/get_connected_environment.py +2 -2
  26. pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
  27. pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
  28. pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
  29. pulumi_azure_native/app/get_container_app.py +2 -2
  30. pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
  31. pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
  32. pulumi_azure_native/app/get_container_apps_session_pool.py +289 -0
  33. pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
  34. pulumi_azure_native/app/get_custom_domain_verification_id.py +2 -2
  35. pulumi_azure_native/app/get_dapr_component.py +2 -2
  36. pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +2 -2
  37. pulumi_azure_native/app/get_dapr_subscription.py +2 -2
  38. pulumi_azure_native/app/get_dot_net_component.py +4 -0
  39. pulumi_azure_native/app/get_java_component.py +4 -0
  40. pulumi_azure_native/app/get_job.py +2 -2
  41. pulumi_azure_native/app/get_logic_app.py +125 -0
  42. pulumi_azure_native/app/get_managed_certificate.py +2 -2
  43. pulumi_azure_native/app/get_managed_environment.py +2 -2
  44. pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
  45. pulumi_azure_native/app/get_managed_environment_private_endpoint_connection.py +177 -0
  46. pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
  47. pulumi_azure_native/app/java_component.py +5 -1
  48. pulumi_azure_native/app/job.py +3 -3
  49. pulumi_azure_native/app/list_build_auth_token.py +2 -2
  50. pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
  51. pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
  52. pulumi_azure_native/app/list_container_app_secrets.py +2 -2
  53. pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
  54. pulumi_azure_native/app/list_job_secrets.py +2 -2
  55. pulumi_azure_native/app/list_logic_app_workflows_connections.py +151 -0
  56. pulumi_azure_native/app/logic_app.py +187 -0
  57. pulumi_azure_native/app/managed_certificate.py +3 -3
  58. pulumi_azure_native/app/managed_environment.py +3 -3
  59. pulumi_azure_native/app/managed_environment_private_endpoint_connection.py +249 -0
  60. pulumi_azure_native/app/managed_environments_storage.py +3 -3
  61. pulumi_azure_native/app/outputs.py +730 -0
  62. pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
  63. pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
  64. pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
  65. pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
  66. pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
  67. pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
  68. pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
  69. pulumi_azure_native/app/v20221001/certificate.py +1 -1
  70. pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
  71. pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
  72. pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
  73. pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
  74. pulumi_azure_native/app/v20221001/container_app.py +1 -1
  75. pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
  76. pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
  77. pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
  78. pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
  79. pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
  80. pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
  81. pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
  82. pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
  83. pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
  84. pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
  85. pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
  86. pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
  87. pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
  88. pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
  89. pulumi_azure_native/app/v20230401preview/job.py +1 -1
  90. pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
  91. pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
  92. pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
  93. pulumi_azure_native/app/v20230501/certificate.py +1 -1
  94. pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
  95. pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
  96. pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
  97. pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
  98. pulumi_azure_native/app/v20230501/container_app.py +1 -1
  99. pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
  100. pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
  101. pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
  102. pulumi_azure_native/app/v20230501/job.py +1 -1
  103. pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
  104. pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
  105. pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
  106. pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
  107. pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
  108. pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
  109. pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
  110. pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
  111. pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
  112. pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
  113. pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
  114. pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
  115. pulumi_azure_native/app/v20230502preview/job.py +1 -1
  116. pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
  117. pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
  118. pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
  119. pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
  120. pulumi_azure_native/app/v20230801preview/build.py +1 -1
  121. pulumi_azure_native/app/v20230801preview/builder.py +1 -1
  122. pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
  123. pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
  124. pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
  125. pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
  126. pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
  127. pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
  128. pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
  129. pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
  130. pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
  131. pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
  132. pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
  133. pulumi_azure_native/app/v20230801preview/job.py +1 -1
  134. pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
  135. pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
  136. pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
  137. pulumi_azure_native/app/v20231102preview/app_resiliency.py +1 -1
  138. pulumi_azure_native/app/v20231102preview/build.py +1 -1
  139. pulumi_azure_native/app/v20231102preview/builder.py +1 -1
  140. pulumi_azure_native/app/v20231102preview/certificate.py +1 -1
  141. pulumi_azure_native/app/v20231102preview/connected_environment.py +1 -1
  142. pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +1 -1
  143. pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +1 -1
  144. pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +1 -1
  145. pulumi_azure_native/app/v20231102preview/container_app.py +1 -1
  146. pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +1 -1
  147. pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +1 -1
  148. pulumi_azure_native/app/v20231102preview/dapr_component.py +1 -1
  149. pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +1 -1
  150. pulumi_azure_native/app/v20231102preview/dapr_subscription.py +1 -1
  151. pulumi_azure_native/app/v20231102preview/dot_net_component.py +1 -1
  152. pulumi_azure_native/app/v20231102preview/java_component.py +1 -1
  153. pulumi_azure_native/app/v20231102preview/job.py +1 -1
  154. pulumi_azure_native/app/v20231102preview/managed_certificate.py +1 -1
  155. pulumi_azure_native/app/v20231102preview/managed_environment.py +1 -1
  156. pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +1 -1
  157. pulumi_azure_native/app/v20240202preview/__init__.py +66 -0
  158. pulumi_azure_native/app/v20240202preview/_enums.py +346 -0
  159. pulumi_azure_native/app/v20240202preview/_inputs.py +9269 -0
  160. pulumi_azure_native/app/v20240202preview/app_resiliency.py +359 -0
  161. pulumi_azure_native/app/v20240202preview/build.py +294 -0
  162. pulumi_azure_native/app/v20240202preview/builder.py +322 -0
  163. pulumi_azure_native/app/v20240202preview/certificate.py +274 -0
  164. pulumi_azure_native/app/v20240202preview/connected_environment.py +370 -0
  165. pulumi_azure_native/app/v20240202preview/connected_environments_certificate.py +274 -0
  166. pulumi_azure_native/app/v20240202preview/connected_environments_dapr_component.py +451 -0
  167. pulumi_azure_native/app/v20240202preview/connected_environments_storage.py +216 -0
  168. pulumi_azure_native/app/v20240202preview/container_app.py +584 -0
  169. pulumi_azure_native/app/v20240202preview/container_apps_auth_config.py +361 -0
  170. pulumi_azure_native/app/v20240202preview/container_apps_session_pool.py +486 -0
  171. pulumi_azure_native/app/v20240202preview/container_apps_source_control.py +291 -0
  172. pulumi_azure_native/app/v20240202preview/dapr_component.py +451 -0
  173. pulumi_azure_native/app/v20240202preview/dapr_component_resiliency_policy.py +264 -0
  174. pulumi_azure_native/app/v20240202preview/dapr_subscription.py +388 -0
  175. pulumi_azure_native/app/v20240202preview/dot_net_component.py +283 -0
  176. pulumi_azure_native/app/v20240202preview/get_app_resiliency.py +201 -0
  177. pulumi_azure_native/app/v20240202preview/get_build.py +214 -0
  178. pulumi_azure_native/app/v20240202preview/get_builder.py +196 -0
  179. pulumi_azure_native/app/v20240202preview/get_certificate.py +162 -0
  180. pulumi_azure_native/app/v20240202preview/get_connected_environment.py +235 -0
  181. pulumi_azure_native/app/v20240202preview/get_connected_environments_certificate.py +162 -0
  182. pulumi_azure_native/app/v20240202preview/get_connected_environments_dapr_component.py +240 -0
  183. pulumi_azure_native/app/v20240202preview/get_connected_environments_storage.py +136 -0
  184. pulumi_azure_native/app/v20240202preview/get_container_app.py +365 -0
  185. pulumi_azure_native/app/v20240202preview/get_container_app_auth_token.py +170 -0
  186. pulumi_azure_native/app/v20240202preview/get_container_apps_auth_config.py +201 -0
  187. pulumi_azure_native/app/v20240202preview/get_container_apps_session_pool.py +287 -0
  188. pulumi_azure_native/app/v20240202preview/get_container_apps_source_control.py +177 -0
  189. pulumi_azure_native/app/v20240202preview/get_custom_domain_verification_id.py +61 -0
  190. pulumi_azure_native/app/v20240202preview/get_dapr_component.py +240 -0
  191. pulumi_azure_native/app/v20240202preview/get_dapr_component_resiliency_policy.py +154 -0
  192. pulumi_azure_native/app/v20240202preview/get_dapr_subscription.py +214 -0
  193. pulumi_azure_native/app/v20240202preview/get_dot_net_component.py +175 -0
  194. pulumi_azure_native/app/v20240202preview/get_java_component.py +136 -0
  195. pulumi_azure_native/app/v20240202preview/get_job.py +261 -0
  196. pulumi_azure_native/app/v20240202preview/get_logic_app.py +123 -0
  197. pulumi_azure_native/app/v20240202preview/get_managed_certificate.py +162 -0
  198. pulumi_azure_native/app/v20240202preview/get_managed_environment.py +445 -0
  199. pulumi_azure_native/app/v20240202preview/get_managed_environment_auth_token.py +170 -0
  200. pulumi_azure_native/app/v20240202preview/get_managed_environment_private_endpoint_connection.py +175 -0
  201. pulumi_azure_native/app/v20240202preview/get_managed_environments_storage.py +136 -0
  202. pulumi_azure_native/app/v20240202preview/java_component.py +214 -0
  203. pulumi_azure_native/app/v20240202preview/job.py +428 -0
  204. pulumi_azure_native/app/v20240202preview/list_build_auth_token.py +96 -0
  205. pulumi_azure_native/app/v20240202preview/list_connected_environments_dapr_component_secrets.py +84 -0
  206. pulumi_azure_native/app/v20240202preview/list_container_app_custom_host_name_analysis.py +227 -0
  207. pulumi_azure_native/app/v20240202preview/list_container_app_secrets.py +79 -0
  208. pulumi_azure_native/app/v20240202preview/list_dapr_component_secrets.py +84 -0
  209. pulumi_azure_native/app/v20240202preview/list_job_secrets.py +79 -0
  210. pulumi_azure_native/app/v20240202preview/list_logic_app_workflows_connections.py +149 -0
  211. pulumi_azure_native/app/v20240202preview/logic_app.py +185 -0
  212. pulumi_azure_native/app/v20240202preview/managed_certificate.py +274 -0
  213. pulumi_azure_native/app/v20240202preview/managed_environment.py +747 -0
  214. pulumi_azure_native/app/v20240202preview/managed_environment_private_endpoint_connection.py +247 -0
  215. pulumi_azure_native/app/v20240202preview/managed_environments_storage.py +216 -0
  216. pulumi_azure_native/app/v20240202preview/outputs.py +11065 -0
  217. pulumi_azure_native/app/v20240301/certificate.py +1 -1
  218. pulumi_azure_native/app/v20240301/connected_environment.py +1 -1
  219. pulumi_azure_native/app/v20240301/connected_environments_certificate.py +1 -1
  220. pulumi_azure_native/app/v20240301/connected_environments_dapr_component.py +1 -1
  221. pulumi_azure_native/app/v20240301/connected_environments_storage.py +1 -1
  222. pulumi_azure_native/app/v20240301/container_app.py +1 -1
  223. pulumi_azure_native/app/v20240301/container_apps_auth_config.py +1 -1
  224. pulumi_azure_native/app/v20240301/container_apps_source_control.py +1 -1
  225. pulumi_azure_native/app/v20240301/dapr_component.py +1 -1
  226. pulumi_azure_native/app/v20240301/job.py +1 -1
  227. pulumi_azure_native/app/v20240301/managed_certificate.py +1 -1
  228. pulumi_azure_native/app/v20240301/managed_environment.py +1 -1
  229. pulumi_azure_native/app/v20240301/managed_environments_storage.py +1 -1
  230. pulumi_azure_native/cdn/__init__.py +3 -0
  231. pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
  232. pulumi_azure_native/cdn/afd_endpoint.py +3 -3
  233. pulumi_azure_native/cdn/afd_origin.py +3 -3
  234. pulumi_azure_native/cdn/afd_origin_group.py +3 -3
  235. pulumi_azure_native/cdn/custom_domain.py +3 -3
  236. pulumi_azure_native/cdn/endpoint.py +3 -3
  237. pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
  238. pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
  239. pulumi_azure_native/cdn/get_afd_origin.py +2 -2
  240. pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
  241. pulumi_azure_native/cdn/get_custom_domain.py +2 -2
  242. pulumi_azure_native/cdn/get_endpoint.py +2 -2
  243. pulumi_azure_native/cdn/get_key_group.py +4 -0
  244. pulumi_azure_native/cdn/get_origin.py +2 -2
  245. pulumi_azure_native/cdn/get_origin_group.py +2 -2
  246. pulumi_azure_native/cdn/get_policy.py +2 -2
  247. pulumi_azure_native/cdn/get_profile.py +2 -2
  248. pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
  249. pulumi_azure_native/cdn/get_route.py +2 -2
  250. pulumi_azure_native/cdn/get_rule.py +2 -2
  251. pulumi_azure_native/cdn/get_rule_set.py +2 -2
  252. pulumi_azure_native/cdn/get_secret.py +2 -2
  253. pulumi_azure_native/cdn/get_security_policy.py +2 -2
  254. pulumi_azure_native/cdn/key_group.py +5 -1
  255. pulumi_azure_native/cdn/origin.py +3 -3
  256. pulumi_azure_native/cdn/origin_group.py +3 -3
  257. pulumi_azure_native/cdn/policy.py +3 -3
  258. pulumi_azure_native/cdn/profile.py +3 -3
  259. pulumi_azure_native/cdn/route.py +3 -3
  260. pulumi_azure_native/cdn/rule.py +3 -3
  261. pulumi_azure_native/cdn/rule_set.py +3 -3
  262. pulumi_azure_native/cdn/secret.py +3 -3
  263. pulumi_azure_native/cdn/security_policy.py +3 -3
  264. pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
  265. pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
  266. pulumi_azure_native/cdn/v20200901/profile.py +1 -1
  267. pulumi_azure_native/cdn/v20200901/route.py +1 -1
  268. pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
  269. pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
  270. pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
  271. pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
  272. pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
  273. pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
  274. pulumi_azure_native/cdn/v20230501/origin.py +1 -1
  275. pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
  276. pulumi_azure_native/cdn/v20230501/policy.py +1 -1
  277. pulumi_azure_native/cdn/v20230501/profile.py +1 -1
  278. pulumi_azure_native/cdn/v20230501/route.py +1 -1
  279. pulumi_azure_native/cdn/v20230501/rule.py +1 -1
  280. pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
  281. pulumi_azure_native/cdn/v20230501/secret.py +1 -1
  282. pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
  283. pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
  284. pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
  285. pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
  286. pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
  287. pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
  288. pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
  289. pulumi_azure_native/cdn/v20230701preview/key_group.py +1 -1
  290. pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
  291. pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
  292. pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
  293. pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
  294. pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
  295. pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
  296. pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
  297. pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
  298. pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
  299. pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +1 -1
  300. pulumi_azure_native/cdn/v20240201/afd_endpoint.py +1 -1
  301. pulumi_azure_native/cdn/v20240201/afd_origin.py +1 -1
  302. pulumi_azure_native/cdn/v20240201/afd_origin_group.py +1 -1
  303. pulumi_azure_native/cdn/v20240201/custom_domain.py +1 -1
  304. pulumi_azure_native/cdn/v20240201/endpoint.py +1 -1
  305. pulumi_azure_native/cdn/v20240201/origin.py +1 -1
  306. pulumi_azure_native/cdn/v20240201/origin_group.py +1 -1
  307. pulumi_azure_native/cdn/v20240201/policy.py +1 -1
  308. pulumi_azure_native/cdn/v20240201/profile.py +1 -1
  309. pulumi_azure_native/cdn/v20240201/route.py +1 -1
  310. pulumi_azure_native/cdn/v20240201/rule.py +1 -1
  311. pulumi_azure_native/cdn/v20240201/rule_set.py +1 -1
  312. pulumi_azure_native/cdn/v20240201/secret.py +1 -1
  313. pulumi_azure_native/cdn/v20240201/security_policy.py +1 -1
  314. pulumi_azure_native/cdn/v20240501preview/__init__.py +43 -0
  315. pulumi_azure_native/cdn/v20240501preview/_enums.py +839 -0
  316. pulumi_azure_native/cdn/v20240501preview/_inputs.py +6013 -0
  317. pulumi_azure_native/cdn/v20240501preview/afd_custom_domain.py +418 -0
  318. pulumi_azure_native/cdn/v20240501preview/afd_endpoint.py +338 -0
  319. pulumi_azure_native/cdn/v20240501preview/afd_origin.py +537 -0
  320. pulumi_azure_native/cdn/v20240501preview/afd_origin_group.py +329 -0
  321. pulumi_azure_native/cdn/v20240501preview/custom_domain.py +296 -0
  322. pulumi_azure_native/cdn/v20240501preview/endpoint.py +762 -0
  323. pulumi_azure_native/cdn/v20240501preview/get_afd_custom_domain.py +276 -0
  324. pulumi_azure_native/cdn/v20240501preview/get_afd_endpoint.py +224 -0
  325. pulumi_azure_native/cdn/v20240501preview/get_afd_origin.py +294 -0
  326. pulumi_azure_native/cdn/v20240501preview/get_afd_origin_group.py +211 -0
  327. pulumi_azure_native/cdn/v20240501preview/get_custom_domain.py +219 -0
  328. pulumi_azure_native/cdn/v20240501preview/get_endpoint.py +409 -0
  329. pulumi_azure_native/cdn/v20240501preview/get_key_group.py +159 -0
  330. pulumi_azure_native/cdn/v20240501preview/get_origin.py +310 -0
  331. pulumi_azure_native/cdn/v20240501preview/get_origin_group.py +206 -0
  332. pulumi_azure_native/cdn/v20240501preview/get_policy.py +271 -0
  333. pulumi_azure_native/cdn/v20240501preview/get_profile.py +261 -0
  334. pulumi_azure_native/cdn/v20240501preview/get_profile_supported_optimization_types.py +78 -0
  335. pulumi_azure_native/cdn/v20240501preview/get_route.py +320 -0
  336. pulumi_azure_native/cdn/v20240501preview/get_rule.py +216 -0
  337. pulumi_azure_native/cdn/v20240501preview/get_rule_set.py +159 -0
  338. pulumi_azure_native/cdn/v20240501preview/get_secret.py +172 -0
  339. pulumi_azure_native/cdn/v20240501preview/get_security_policy.py +172 -0
  340. pulumi_azure_native/cdn/v20240501preview/key_group.py +232 -0
  341. pulumi_azure_native/cdn/v20240501preview/origin.py +556 -0
  342. pulumi_azure_native/cdn/v20240501preview/origin_group.py +345 -0
  343. pulumi_azure_native/cdn/v20240501preview/outputs.py +7210 -0
  344. pulumi_azure_native/cdn/v20240501preview/policy.py +436 -0
  345. pulumi_azure_native/cdn/v20240501preview/profile.py +391 -0
  346. pulumi_azure_native/cdn/v20240501preview/route.py +595 -0
  347. pulumi_azure_native/cdn/v20240501preview/rule.py +356 -0
  348. pulumi_azure_native/cdn/v20240501preview/rule_set.py +211 -0
  349. pulumi_azure_native/cdn/v20240501preview/secret.py +241 -0
  350. pulumi_azure_native/cdn/v20240501preview/security_policy.py +241 -0
  351. pulumi_azure_native/config/__init__.pyi +6 -1
  352. pulumi_azure_native/config/vars.py +8 -1
  353. pulumi_azure_native/devcenter/__init__.py +4 -0
  354. pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
  355. pulumi_azure_native/devcenter/catalog.py +3 -3
  356. pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
  357. pulumi_azure_native/devcenter/dev_center.py +3 -3
  358. pulumi_azure_native/devcenter/encryption_set.py +5 -1
  359. pulumi_azure_native/devcenter/environment_type.py +3 -3
  360. pulumi_azure_native/devcenter/gallery.py +3 -3
  361. pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
  362. pulumi_azure_native/devcenter/get_catalog.py +2 -2
  363. pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
  364. pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
  365. pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
  366. pulumi_azure_native/devcenter/get_dev_center.py +2 -2
  367. pulumi_azure_native/devcenter/get_encryption_set.py +4 -0
  368. pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
  369. pulumi_azure_native/devcenter/get_environment_type.py +2 -2
  370. pulumi_azure_native/devcenter/get_gallery.py +2 -2
  371. pulumi_azure_native/devcenter/get_network_connection.py +2 -2
  372. pulumi_azure_native/devcenter/get_plan.py +4 -0
  373. pulumi_azure_native/devcenter/get_plan_member.py +4 -0
  374. pulumi_azure_native/devcenter/get_pool.py +2 -2
  375. pulumi_azure_native/devcenter/get_project.py +2 -2
  376. pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
  377. pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
  378. pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
  379. pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
  380. pulumi_azure_native/devcenter/get_project_inherited_settings.py +4 -0
  381. pulumi_azure_native/devcenter/get_schedule.py +2 -2
  382. pulumi_azure_native/devcenter/list_skus_by_project.py +94 -0
  383. pulumi_azure_native/devcenter/network_connection.py +3 -3
  384. pulumi_azure_native/devcenter/outputs.py +138 -0
  385. pulumi_azure_native/devcenter/plan.py +5 -1
  386. pulumi_azure_native/devcenter/plan_member.py +5 -1
  387. pulumi_azure_native/devcenter/pool.py +3 -3
  388. pulumi_azure_native/devcenter/project.py +3 -3
  389. pulumi_azure_native/devcenter/project_catalog.py +3 -3
  390. pulumi_azure_native/devcenter/project_environment_type.py +3 -3
  391. pulumi_azure_native/devcenter/schedule.py +3 -3
  392. pulumi_azure_native/devcenter/v20221111preview/dev_box_definition.py +1 -1
  393. pulumi_azure_native/devcenter/v20230401/attached_network_by_dev_center.py +1 -1
  394. pulumi_azure_native/devcenter/v20230401/catalog.py +1 -1
  395. pulumi_azure_native/devcenter/v20230401/dev_box_definition.py +1 -1
  396. pulumi_azure_native/devcenter/v20230401/dev_center.py +1 -1
  397. pulumi_azure_native/devcenter/v20230401/environment_type.py +1 -1
  398. pulumi_azure_native/devcenter/v20230401/gallery.py +1 -1
  399. pulumi_azure_native/devcenter/v20230401/network_connection.py +1 -1
  400. pulumi_azure_native/devcenter/v20230401/pool.py +1 -1
  401. pulumi_azure_native/devcenter/v20230401/project.py +1 -1
  402. pulumi_azure_native/devcenter/v20230401/project_environment_type.py +1 -1
  403. pulumi_azure_native/devcenter/v20230401/schedule.py +1 -1
  404. pulumi_azure_native/devcenter/v20230801preview/attached_network_by_dev_center.py +1 -1
  405. pulumi_azure_native/devcenter/v20230801preview/catalog.py +1 -1
  406. pulumi_azure_native/devcenter/v20230801preview/dev_box_definition.py +1 -1
  407. pulumi_azure_native/devcenter/v20230801preview/dev_center.py +1 -1
  408. pulumi_azure_native/devcenter/v20230801preview/environment_type.py +1 -1
  409. pulumi_azure_native/devcenter/v20230801preview/gallery.py +1 -1
  410. pulumi_azure_native/devcenter/v20230801preview/network_connection.py +1 -1
  411. pulumi_azure_native/devcenter/v20230801preview/pool.py +1 -1
  412. pulumi_azure_native/devcenter/v20230801preview/project.py +1 -1
  413. pulumi_azure_native/devcenter/v20230801preview/project_environment_type.py +1 -1
  414. pulumi_azure_native/devcenter/v20230801preview/schedule.py +1 -1
  415. pulumi_azure_native/devcenter/v20231001preview/attached_network_by_dev_center.py +1 -1
  416. pulumi_azure_native/devcenter/v20231001preview/catalog.py +1 -1
  417. pulumi_azure_native/devcenter/v20231001preview/dev_box_definition.py +1 -1
  418. pulumi_azure_native/devcenter/v20231001preview/dev_center.py +1 -1
  419. pulumi_azure_native/devcenter/v20231001preview/environment_type.py +1 -1
  420. pulumi_azure_native/devcenter/v20231001preview/gallery.py +1 -1
  421. pulumi_azure_native/devcenter/v20231001preview/network_connection.py +1 -1
  422. pulumi_azure_native/devcenter/v20231001preview/pool.py +1 -1
  423. pulumi_azure_native/devcenter/v20231001preview/project.py +1 -1
  424. pulumi_azure_native/devcenter/v20231001preview/project_environment_type.py +1 -1
  425. pulumi_azure_native/devcenter/v20231001preview/schedule.py +1 -1
  426. pulumi_azure_native/devcenter/v20240201/attached_network_by_dev_center.py +1 -1
  427. pulumi_azure_native/devcenter/v20240201/catalog.py +1 -1
  428. pulumi_azure_native/devcenter/v20240201/dev_box_definition.py +1 -1
  429. pulumi_azure_native/devcenter/v20240201/dev_center.py +1 -1
  430. pulumi_azure_native/devcenter/v20240201/environment_type.py +1 -1
  431. pulumi_azure_native/devcenter/v20240201/gallery.py +1 -1
  432. pulumi_azure_native/devcenter/v20240201/network_connection.py +1 -1
  433. pulumi_azure_native/devcenter/v20240201/pool.py +1 -1
  434. pulumi_azure_native/devcenter/v20240201/project.py +1 -1
  435. pulumi_azure_native/devcenter/v20240201/project_catalog.py +1 -1
  436. pulumi_azure_native/devcenter/v20240201/project_environment_type.py +1 -1
  437. pulumi_azure_native/devcenter/v20240201/schedule.py +1 -1
  438. pulumi_azure_native/devcenter/v20240501preview/attached_network_by_dev_center.py +1 -1
  439. pulumi_azure_native/devcenter/v20240501preview/catalog.py +1 -1
  440. pulumi_azure_native/devcenter/v20240501preview/dev_box_definition.py +1 -1
  441. pulumi_azure_native/devcenter/v20240501preview/dev_center.py +1 -1
  442. pulumi_azure_native/devcenter/v20240501preview/encryption_set.py +1 -1
  443. pulumi_azure_native/devcenter/v20240501preview/environment_type.py +1 -1
  444. pulumi_azure_native/devcenter/v20240501preview/gallery.py +1 -1
  445. pulumi_azure_native/devcenter/v20240501preview/network_connection.py +1 -1
  446. pulumi_azure_native/devcenter/v20240501preview/plan.py +1 -1
  447. pulumi_azure_native/devcenter/v20240501preview/plan_member.py +1 -1
  448. pulumi_azure_native/devcenter/v20240501preview/pool.py +1 -1
  449. pulumi_azure_native/devcenter/v20240501preview/project.py +1 -1
  450. pulumi_azure_native/devcenter/v20240501preview/project_catalog.py +1 -1
  451. pulumi_azure_native/devcenter/v20240501preview/project_environment_type.py +1 -1
  452. pulumi_azure_native/devcenter/v20240501preview/schedule.py +1 -1
  453. pulumi_azure_native/devcenter/v20240601preview/__init__.py +47 -0
  454. pulumi_azure_native/devcenter/v20240601preview/_enums.py +209 -0
  455. pulumi_azure_native/devcenter/v20240601preview/_inputs.py +595 -0
  456. pulumi_azure_native/devcenter/v20240601preview/attached_network_by_dev_center.py +255 -0
  457. pulumi_azure_native/devcenter/v20240601preview/catalog.py +363 -0
  458. pulumi_azure_native/devcenter/v20240601preview/dev_box_definition.py +413 -0
  459. pulumi_azure_native/devcenter/v20240601preview/dev_center.py +447 -0
  460. pulumi_azure_native/devcenter/v20240601preview/encryption_set.py +342 -0
  461. pulumi_azure_native/devcenter/v20240601preview/environment_type.py +253 -0
  462. pulumi_azure_native/devcenter/v20240601preview/gallery.py +225 -0
  463. pulumi_azure_native/devcenter/v20240601preview/get_attached_network_by_dev_center.py +188 -0
  464. pulumi_azure_native/devcenter/v20240601preview/get_catalog.py +253 -0
  465. pulumi_azure_native/devcenter/v20240601preview/get_catalog_sync_error_details.py +110 -0
  466. pulumi_azure_native/devcenter/v20240601preview/get_customization_task_error_details.py +89 -0
  467. pulumi_azure_native/devcenter/v20240601preview/get_dev_box_definition.py +266 -0
  468. pulumi_azure_native/devcenter/v20240601preview/get_dev_center.py +261 -0
  469. pulumi_azure_native/devcenter/v20240601preview/get_encryption_set.py +201 -0
  470. pulumi_azure_native/devcenter/v20240601preview/get_environment_definition_error_details.py +89 -0
  471. pulumi_azure_native/devcenter/v20240601preview/get_environment_type.py +162 -0
  472. pulumi_azure_native/devcenter/v20240601preview/get_gallery.py +149 -0
  473. pulumi_azure_native/devcenter/v20240601preview/get_network_connection.py +261 -0
  474. pulumi_azure_native/devcenter/v20240601preview/get_plan.py +170 -0
  475. pulumi_azure_native/devcenter/v20240601preview/get_plan_member.py +175 -0
  476. pulumi_azure_native/devcenter/v20240601preview/get_pool.py +344 -0
  477. pulumi_azure_native/devcenter/v20240601preview/get_project.py +248 -0
  478. pulumi_azure_native/devcenter/v20240601preview/get_project_catalog.py +253 -0
  479. pulumi_azure_native/devcenter/v20240601preview/get_project_catalog_environment_definition_error_details.py +89 -0
  480. pulumi_azure_native/devcenter/v20240601preview/get_project_catalog_sync_error_details.py +110 -0
  481. pulumi_azure_native/devcenter/v20240601preview/get_project_environment_type.py +253 -0
  482. pulumi_azure_native/devcenter/v20240601preview/get_project_inherited_settings.py +92 -0
  483. pulumi_azure_native/devcenter/v20240601preview/get_schedule.py +224 -0
  484. pulumi_azure_native/devcenter/v20240601preview/list_skus_by_project.py +92 -0
  485. pulumi_azure_native/devcenter/v20240601preview/network_connection.py +448 -0
  486. pulumi_azure_native/devcenter/v20240601preview/outputs.py +1447 -0
  487. pulumi_azure_native/devcenter/v20240601preview/plan.py +263 -0
  488. pulumi_azure_native/devcenter/v20240601preview/plan_member.py +283 -0
  489. pulumi_azure_native/devcenter/v20240601preview/pool.py +608 -0
  490. pulumi_azure_native/devcenter/v20240601preview/project.py +418 -0
  491. pulumi_azure_native/devcenter/v20240601preview/project_catalog.py +363 -0
  492. pulumi_azure_native/devcenter/v20240601preview/project_environment_type.py +439 -0
  493. pulumi_azure_native/devcenter/v20240601preview/schedule.py +434 -0
  494. pulumi_azure_native/elastic/__init__.py +3 -0
  495. pulumi_azure_native/elastic/get_billing_info.py +2 -2
  496. pulumi_azure_native/elastic/get_monitor.py +2 -2
  497. pulumi_azure_native/elastic/get_monitored_subscription.py +4 -0
  498. pulumi_azure_native/elastic/get_open_ai.py +2 -2
  499. pulumi_azure_native/elastic/get_open_ai_status.py +2 -2
  500. pulumi_azure_native/elastic/get_organization_api_key.py +2 -2
  501. pulumi_azure_native/elastic/get_organization_elastic_to_azure_subscription_mapping.py +2 -2
  502. pulumi_azure_native/elastic/get_tag_rule.py +2 -2
  503. pulumi_azure_native/elastic/list_all_traffic_filter.py +2 -2
  504. pulumi_azure_native/elastic/list_connected_partner_resource.py +2 -2
  505. pulumi_azure_native/elastic/list_deployment_info.py +2 -2
  506. pulumi_azure_native/elastic/list_monitored_resource.py +2 -2
  507. pulumi_azure_native/elastic/list_upgradable_version_details.py +2 -2
  508. pulumi_azure_native/elastic/list_vm_host.py +2 -2
  509. pulumi_azure_native/elastic/listlist_associated_traffic_filter.py +2 -2
  510. pulumi_azure_native/elastic/monitor.py +3 -3
  511. pulumi_azure_native/elastic/monitored_subscription.py +5 -1
  512. pulumi_azure_native/elastic/open_ai.py +3 -3
  513. pulumi_azure_native/elastic/tag_rule.py +3 -3
  514. pulumi_azure_native/elastic/v20230601/monitor.py +1 -1
  515. pulumi_azure_native/elastic/v20230601/tag_rule.py +1 -1
  516. pulumi_azure_native/elastic/v20230615preview/monitor.py +1 -1
  517. pulumi_azure_native/elastic/v20230615preview/tag_rule.py +1 -1
  518. pulumi_azure_native/elastic/v20230701preview/monitor.py +1 -1
  519. pulumi_azure_native/elastic/v20230701preview/tag_rule.py +1 -1
  520. pulumi_azure_native/elastic/v20231001preview/monitor.py +1 -1
  521. pulumi_azure_native/elastic/v20231001preview/tag_rule.py +1 -1
  522. pulumi_azure_native/elastic/v20231101preview/monitor.py +1 -1
  523. pulumi_azure_native/elastic/v20231101preview/tag_rule.py +1 -1
  524. pulumi_azure_native/elastic/v20240101preview/monitor.py +1 -1
  525. pulumi_azure_native/elastic/v20240101preview/open_ai.py +1 -1
  526. pulumi_azure_native/elastic/v20240101preview/tag_rule.py +1 -1
  527. pulumi_azure_native/elastic/v20240301/monitor.py +1 -1
  528. pulumi_azure_native/elastic/v20240301/open_ai.py +1 -1
  529. pulumi_azure_native/elastic/v20240301/tag_rule.py +1 -1
  530. pulumi_azure_native/elastic/v20240501preview/monitor.py +1 -1
  531. pulumi_azure_native/elastic/v20240501preview/monitored_subscription.py +1 -1
  532. pulumi_azure_native/elastic/v20240501preview/open_ai.py +1 -1
  533. pulumi_azure_native/elastic/v20240501preview/tag_rule.py +1 -1
  534. pulumi_azure_native/elastic/v20240615preview/__init__.py +29 -0
  535. pulumi_azure_native/elastic/v20240615preview/_enums.py +57 -0
  536. pulumi_azure_native/elastic/v20240615preview/_inputs.py +826 -0
  537. pulumi_azure_native/elastic/v20240615preview/get_billing_info.py +92 -0
  538. pulumi_azure_native/elastic/v20240615preview/get_monitor.py +183 -0
  539. pulumi_azure_native/elastic/v20240615preview/get_monitored_subscription.py +123 -0
  540. pulumi_azure_native/elastic/v20240615preview/get_open_ai.py +123 -0
  541. pulumi_azure_native/elastic/v20240615preview/get_open_ai_status.py +84 -0
  542. pulumi_azure_native/elastic/v20240615preview/get_organization_api_key.py +71 -0
  543. pulumi_azure_native/elastic/v20240615preview/get_organization_elastic_to_azure_subscription_mapping.py +65 -0
  544. pulumi_azure_native/elastic/v20240615preview/get_tag_rule.py +136 -0
  545. pulumi_azure_native/elastic/v20240615preview/list_all_traffic_filter.py +79 -0
  546. pulumi_azure_native/elastic/v20240615preview/list_connected_partner_resource.py +92 -0
  547. pulumi_azure_native/elastic/v20240615preview/list_deployment_info.py +157 -0
  548. pulumi_azure_native/elastic/v20240615preview/list_monitored_resource.py +92 -0
  549. pulumi_azure_native/elastic/v20240615preview/list_upgradable_version_details.py +91 -0
  550. pulumi_azure_native/elastic/v20240615preview/list_vm_host.py +92 -0
  551. pulumi_azure_native/elastic/v20240615preview/listlist_associated_traffic_filter.py +79 -0
  552. pulumi_azure_native/elastic/v20240615preview/monitor.py +311 -0
  553. pulumi_azure_native/elastic/v20240615preview/monitored_subscription.py +206 -0
  554. pulumi_azure_native/elastic/v20240615preview/open_ai.py +205 -0
  555. pulumi_azure_native/elastic/v20240615preview/outputs.py +1752 -0
  556. pulumi_azure_native/elastic/v20240615preview/tag_rule.py +216 -0
  557. pulumi_azure_native/hdinsight/__init__.py +3 -3
  558. pulumi_azure_native/hdinsight/cluster.py +2 -2
  559. pulumi_azure_native/hdinsight/cluster_pool.py +3 -3
  560. pulumi_azure_native/hdinsight/get_cluster.py +2 -2
  561. pulumi_azure_native/hdinsight/get_cluster_pool.py +2 -2
  562. pulumi_azure_native/hdinsight/v20230601preview/cluster.py +1 -1
  563. pulumi_azure_native/hdinsight/v20230601preview/cluster_pool.py +1 -1
  564. pulumi_azure_native/hdinsight/v20231101preview/cluster.py +1 -1
  565. pulumi_azure_native/hdinsight/v20231101preview/cluster_pool.py +1 -1
  566. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/_inputs.py +56 -1
  567. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/cluster.py +1 -1
  568. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/cluster_pool.py +1 -1
  569. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/get_cluster.py +1 -1
  570. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/get_cluster_pool.py +1 -1
  571. pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/outputs.py +66 -1
  572. pulumi_azure_native/keyvault/__init__.py +3 -0
  573. pulumi_azure_native/keyvault/get_key.py +2 -2
  574. pulumi_azure_native/keyvault/get_managed_hsm.py +2 -2
  575. pulumi_azure_native/keyvault/get_mhsm_private_endpoint_connection.py +2 -2
  576. pulumi_azure_native/keyvault/get_private_endpoint_connection.py +2 -2
  577. pulumi_azure_native/keyvault/get_secret.py +2 -2
  578. pulumi_azure_native/keyvault/get_vault.py +2 -2
  579. pulumi_azure_native/keyvault/key.py +3 -3
  580. pulumi_azure_native/keyvault/managed_hsm.py +3 -3
  581. pulumi_azure_native/keyvault/mhsm_private_endpoint_connection.py +3 -3
  582. pulumi_azure_native/keyvault/private_endpoint_connection.py +3 -3
  583. pulumi_azure_native/keyvault/secret.py +3 -3
  584. pulumi_azure_native/keyvault/v20230201/key.py +1 -1
  585. pulumi_azure_native/keyvault/v20230201/managed_hsm.py +1 -1
  586. pulumi_azure_native/keyvault/v20230201/mhsm_private_endpoint_connection.py +1 -1
  587. pulumi_azure_native/keyvault/v20230201/private_endpoint_connection.py +1 -1
  588. pulumi_azure_native/keyvault/v20230201/secret.py +1 -1
  589. pulumi_azure_native/keyvault/v20230201/vault.py +1 -1
  590. pulumi_azure_native/keyvault/v20230701/key.py +1 -1
  591. pulumi_azure_native/keyvault/v20230701/managed_hsm.py +1 -1
  592. pulumi_azure_native/keyvault/v20230701/mhsm_private_endpoint_connection.py +1 -1
  593. pulumi_azure_native/keyvault/v20230701/private_endpoint_connection.py +1 -1
  594. pulumi_azure_native/keyvault/v20230701/secret.py +1 -1
  595. pulumi_azure_native/keyvault/v20230701/vault.py +1 -1
  596. pulumi_azure_native/keyvault/v20240401preview/__init__.py +22 -0
  597. pulumi_azure_native/keyvault/v20240401preview/_enums.py +242 -0
  598. pulumi_azure_native/keyvault/v20240401preview/_inputs.py +1623 -0
  599. pulumi_azure_native/keyvault/v20240401preview/get_key.py +250 -0
  600. pulumi_azure_native/keyvault/v20240401preview/get_managed_hsm.py +183 -0
  601. pulumi_azure_native/keyvault/v20240401preview/get_mhsm_private_endpoint_connection.py +227 -0
  602. pulumi_azure_native/keyvault/v20240401preview/get_private_endpoint_connection.py +188 -0
  603. pulumi_azure_native/keyvault/v20240401preview/get_secret.py +149 -0
  604. pulumi_azure_native/keyvault/v20240401preview/get_vault.py +157 -0
  605. pulumi_azure_native/keyvault/v20240401preview/key.py +324 -0
  606. pulumi_azure_native/keyvault/v20240401preview/managed_hsm.py +310 -0
  607. pulumi_azure_native/keyvault/v20240401preview/mhsm_private_endpoint_connection.py +361 -0
  608. pulumi_azure_native/keyvault/v20240401preview/outputs.py +2258 -0
  609. pulumi_azure_native/keyvault/v20240401preview/private_endpoint_connection.py +256 -0
  610. pulumi_azure_native/keyvault/v20240401preview/secret.py +245 -0
  611. pulumi_azure_native/keyvault/v20240401preview/vault.py +254 -0
  612. pulumi_azure_native/keyvault/vault.py +3 -3
  613. pulumi_azure_native/kubernetes/__init__.py +3 -0
  614. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  615. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  616. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  617. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  618. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  619. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  620. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
  621. pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
  622. pulumi_azure_native/kubernetes/v20240601preview/__init__.py +13 -0
  623. pulumi_azure_native/kubernetes/v20240601preview/_enums.py +76 -0
  624. pulumi_azure_native/kubernetes/v20240601preview/_inputs.py +305 -0
  625. pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +730 -0
  626. pulumi_azure_native/kubernetes/v20240601preview/get_connected_cluster.py +443 -0
  627. pulumi_azure_native/kubernetes/v20240601preview/list_connected_cluster_user_credential.py +103 -0
  628. pulumi_azure_native/kubernetes/v20240601preview/outputs.py +717 -0
  629. pulumi_azure_native/network/__init__.py +3 -0
  630. pulumi_azure_native/network/admin_rule.py +3 -3
  631. pulumi_azure_native/network/admin_rule_collection.py +3 -3
  632. pulumi_azure_native/network/application_gateway.py +3 -3
  633. pulumi_azure_native/network/application_gateway_private_endpoint_connection.py +3 -3
  634. pulumi_azure_native/network/application_security_group.py +3 -3
  635. pulumi_azure_native/network/azure_firewall.py +3 -3
  636. pulumi_azure_native/network/bastion_host.py +3 -3
  637. pulumi_azure_native/network/configuration_policy_group.py +3 -3
  638. pulumi_azure_native/network/connection_monitor.py +3 -3
  639. pulumi_azure_native/network/connectivity_configuration.py +3 -3
  640. pulumi_azure_native/network/custom_ip_prefix.py +3 -3
  641. pulumi_azure_native/network/ddos_custom_policy.py +3 -3
  642. pulumi_azure_native/network/ddos_protection_plan.py +3 -3
  643. pulumi_azure_native/network/default_admin_rule.py +1 -1
  644. pulumi_azure_native/network/dscp_configuration.py +3 -3
  645. pulumi_azure_native/network/express_route_circuit.py +3 -3
  646. pulumi_azure_native/network/express_route_circuit_authorization.py +3 -3
  647. pulumi_azure_native/network/express_route_circuit_connection.py +3 -3
  648. pulumi_azure_native/network/express_route_circuit_peering.py +3 -3
  649. pulumi_azure_native/network/express_route_connection.py +3 -3
  650. pulumi_azure_native/network/express_route_cross_connection_peering.py +3 -3
  651. pulumi_azure_native/network/express_route_gateway.py +3 -3
  652. pulumi_azure_native/network/express_route_port.py +3 -3
  653. pulumi_azure_native/network/express_route_port_authorization.py +3 -3
  654. pulumi_azure_native/network/firewall_policy.py +3 -3
  655. pulumi_azure_native/network/firewall_policy_draft.py +5 -1
  656. pulumi_azure_native/network/firewall_policy_rule_collection_group.py +3 -3
  657. pulumi_azure_native/network/firewall_policy_rule_collection_group_draft.py +5 -1
  658. pulumi_azure_native/network/flow_log.py +3 -3
  659. pulumi_azure_native/network/get_active_sessions.py +2 -2
  660. pulumi_azure_native/network/get_admin_rule.py +2 -2
  661. pulumi_azure_native/network/get_admin_rule_collection.py +2 -2
  662. pulumi_azure_native/network/get_application_gateway.py +2 -2
  663. pulumi_azure_native/network/get_application_gateway_backend_health_on_demand.py +2 -2
  664. pulumi_azure_native/network/get_application_gateway_private_endpoint_connection.py +2 -2
  665. pulumi_azure_native/network/get_application_security_group.py +2 -2
  666. pulumi_azure_native/network/get_azure_firewall.py +2 -2
  667. pulumi_azure_native/network/get_bastion_host.py +2 -2
  668. pulumi_azure_native/network/get_bastion_shareable_link.py +2 -2
  669. pulumi_azure_native/network/get_configuration_policy_group.py +2 -2
  670. pulumi_azure_native/network/get_connection_monitor.py +2 -2
  671. pulumi_azure_native/network/get_connectivity_configuration.py +2 -2
  672. pulumi_azure_native/network/get_custom_ip_prefix.py +2 -2
  673. pulumi_azure_native/network/get_ddos_custom_policy.py +2 -2
  674. pulumi_azure_native/network/get_ddos_protection_plan.py +2 -2
  675. pulumi_azure_native/network/get_dscp_configuration.py +2 -2
  676. pulumi_azure_native/network/get_express_route_circuit.py +2 -2
  677. pulumi_azure_native/network/get_express_route_circuit_authorization.py +2 -2
  678. pulumi_azure_native/network/get_express_route_circuit_connection.py +2 -2
  679. pulumi_azure_native/network/get_express_route_circuit_peering.py +2 -2
  680. pulumi_azure_native/network/get_express_route_connection.py +2 -2
  681. pulumi_azure_native/network/get_express_route_cross_connection_peering.py +2 -2
  682. pulumi_azure_native/network/get_express_route_gateway.py +2 -2
  683. pulumi_azure_native/network/get_express_route_port.py +2 -2
  684. pulumi_azure_native/network/get_express_route_port_authorization.py +2 -2
  685. pulumi_azure_native/network/get_firewall_policy.py +2 -2
  686. pulumi_azure_native/network/get_firewall_policy_draft.py +4 -0
  687. pulumi_azure_native/network/get_firewall_policy_rule_collection_group.py +2 -2
  688. pulumi_azure_native/network/get_firewall_policy_rule_collection_group_draft.py +4 -0
  689. pulumi_azure_native/network/get_flow_log.py +2 -2
  690. pulumi_azure_native/network/get_hub_route_table.py +2 -2
  691. pulumi_azure_native/network/get_hub_virtual_network_connection.py +2 -2
  692. pulumi_azure_native/network/get_inbound_nat_rule.py +2 -2
  693. pulumi_azure_native/network/get_ip_allocation.py +2 -2
  694. pulumi_azure_native/network/get_ip_group.py +2 -2
  695. pulumi_azure_native/network/get_load_balancer.py +2 -2
  696. pulumi_azure_native/network/get_load_balancer_backend_address_pool.py +2 -2
  697. pulumi_azure_native/network/get_local_network_gateway.py +2 -2
  698. pulumi_azure_native/network/get_management_group_network_manager_connection.py +2 -2
  699. pulumi_azure_native/network/get_nat_gateway.py +2 -2
  700. pulumi_azure_native/network/get_nat_rule.py +2 -2
  701. pulumi_azure_native/network/get_network_group.py +2 -2
  702. pulumi_azure_native/network/get_network_interface.py +2 -2
  703. pulumi_azure_native/network/get_network_interface_tap_configuration.py +2 -2
  704. pulumi_azure_native/network/get_network_manager.py +2 -2
  705. pulumi_azure_native/network/get_network_profile.py +2 -2
  706. pulumi_azure_native/network/get_network_security_group.py +2 -2
  707. pulumi_azure_native/network/get_network_virtual_appliance.py +2 -2
  708. pulumi_azure_native/network/get_network_watcher.py +2 -2
  709. pulumi_azure_native/network/get_p2s_vpn_gateway.py +2 -2
  710. pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +2 -2
  711. pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +2 -2
  712. pulumi_azure_native/network/get_packet_capture.py +2 -2
  713. pulumi_azure_native/network/get_private_dns_zone_group.py +2 -2
  714. pulumi_azure_native/network/get_private_endpoint.py +2 -2
  715. pulumi_azure_native/network/get_private_link_service.py +2 -2
  716. pulumi_azure_native/network/get_private_link_service_private_endpoint_connection.py +2 -2
  717. pulumi_azure_native/network/get_public_ip_address.py +2 -2
  718. pulumi_azure_native/network/get_public_ip_prefix.py +2 -2
  719. pulumi_azure_native/network/get_route.py +2 -2
  720. pulumi_azure_native/network/get_route_filter.py +2 -2
  721. pulumi_azure_native/network/get_route_filter_rule.py +2 -2
  722. pulumi_azure_native/network/get_route_map.py +2 -2
  723. pulumi_azure_native/network/get_route_table.py +2 -2
  724. pulumi_azure_native/network/get_routing_intent.py +2 -2
  725. pulumi_azure_native/network/get_scope_connection.py +2 -2
  726. pulumi_azure_native/network/get_security_admin_configuration.py +2 -2
  727. pulumi_azure_native/network/get_security_partner_provider.py +2 -2
  728. pulumi_azure_native/network/get_security_rule.py +2 -2
  729. pulumi_azure_native/network/get_service_endpoint_policy.py +2 -2
  730. pulumi_azure_native/network/get_service_endpoint_policy_definition.py +2 -2
  731. pulumi_azure_native/network/get_static_member.py +2 -2
  732. pulumi_azure_native/network/get_subnet.py +2 -2
  733. pulumi_azure_native/network/get_subscription_network_manager_connection.py +2 -2
  734. pulumi_azure_native/network/get_virtual_appliance_site.py +2 -2
  735. pulumi_azure_native/network/get_virtual_hub.py +2 -2
  736. pulumi_azure_native/network/get_virtual_hub_bgp_connection.py +2 -2
  737. pulumi_azure_native/network/get_virtual_hub_ip_configuration.py +2 -2
  738. pulumi_azure_native/network/get_virtual_hub_route_table_v2.py +2 -2
  739. pulumi_azure_native/network/get_virtual_network.py +2 -2
  740. pulumi_azure_native/network/get_virtual_network_gateway.py +2 -2
  741. pulumi_azure_native/network/get_virtual_network_gateway_advertised_routes.py +2 -2
  742. pulumi_azure_native/network/get_virtual_network_gateway_bgp_peer_status.py +2 -2
  743. pulumi_azure_native/network/get_virtual_network_gateway_connection.py +2 -2
  744. pulumi_azure_native/network/get_virtual_network_gateway_connection_ike_sas.py +2 -2
  745. pulumi_azure_native/network/get_virtual_network_gateway_learned_routes.py +2 -2
  746. pulumi_azure_native/network/get_virtual_network_gateway_nat_rule.py +2 -2
  747. pulumi_azure_native/network/get_virtual_network_gateway_vpn_profile_package_url.py +2 -2
  748. pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_connection_health.py +2 -2
  749. pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +2 -2
  750. pulumi_azure_native/network/get_virtual_network_peering.py +2 -2
  751. pulumi_azure_native/network/get_virtual_network_tap.py +2 -2
  752. pulumi_azure_native/network/get_virtual_router.py +2 -2
  753. pulumi_azure_native/network/get_virtual_router_peering.py +2 -2
  754. pulumi_azure_native/network/get_virtual_wan.py +2 -2
  755. pulumi_azure_native/network/get_vpn_connection.py +2 -2
  756. pulumi_azure_native/network/get_vpn_gateway.py +2 -2
  757. pulumi_azure_native/network/get_vpn_link_connection_ike_sas.py +2 -2
  758. pulumi_azure_native/network/get_vpn_server_configuration.py +2 -2
  759. pulumi_azure_native/network/get_vpn_site.py +2 -2
  760. pulumi_azure_native/network/get_web_application_firewall_policy.py +2 -2
  761. pulumi_azure_native/network/hub_route_table.py +3 -3
  762. pulumi_azure_native/network/hub_virtual_network_connection.py +3 -3
  763. pulumi_azure_native/network/inbound_nat_rule.py +3 -3
  764. pulumi_azure_native/network/interface_endpoint.py +1 -1
  765. pulumi_azure_native/network/ip_allocation.py +3 -3
  766. pulumi_azure_native/network/ip_group.py +3 -3
  767. pulumi_azure_native/network/list_active_connectivity_configurations.py +2 -2
  768. pulumi_azure_native/network/list_active_security_admin_rules.py +2 -2
  769. pulumi_azure_native/network/list_firewall_policy_idps_signature.py +2 -2
  770. pulumi_azure_native/network/list_firewall_policy_idps_signatures_filter_value.py +2 -2
  771. pulumi_azure_native/network/list_network_manager_deployment_status.py +2 -2
  772. pulumi_azure_native/network/list_network_manager_effective_connectivity_configurations.py +2 -2
  773. pulumi_azure_native/network/list_network_manager_effective_security_admin_rules.py +2 -2
  774. pulumi_azure_native/network/load_balancer.py +3 -3
  775. pulumi_azure_native/network/load_balancer_backend_address_pool.py +3 -3
  776. pulumi_azure_native/network/local_network_gateway.py +3 -3
  777. pulumi_azure_native/network/management_group_network_manager_connection.py +3 -3
  778. pulumi_azure_native/network/nat_gateway.py +3 -3
  779. pulumi_azure_native/network/nat_rule.py +3 -3
  780. pulumi_azure_native/network/network_group.py +3 -3
  781. pulumi_azure_native/network/network_interface.py +3 -3
  782. pulumi_azure_native/network/network_interface_tap_configuration.py +3 -3
  783. pulumi_azure_native/network/network_manager.py +3 -3
  784. pulumi_azure_native/network/network_profile.py +3 -3
  785. pulumi_azure_native/network/network_security_group.py +3 -3
  786. pulumi_azure_native/network/network_virtual_appliance.py +3 -3
  787. pulumi_azure_native/network/network_watcher.py +3 -3
  788. pulumi_azure_native/network/p2s_vpn_gateway.py +3 -3
  789. pulumi_azure_native/network/packet_capture.py +3 -3
  790. pulumi_azure_native/network/private_dns_zone_group.py +3 -3
  791. pulumi_azure_native/network/private_endpoint.py +3 -3
  792. pulumi_azure_native/network/private_link_service.py +3 -3
  793. pulumi_azure_native/network/private_link_service_private_endpoint_connection.py +3 -3
  794. pulumi_azure_native/network/public_ip_address.py +3 -3
  795. pulumi_azure_native/network/public_ip_prefix.py +3 -3
  796. pulumi_azure_native/network/route.py +3 -3
  797. pulumi_azure_native/network/route_filter.py +3 -3
  798. pulumi_azure_native/network/route_filter_rule.py +3 -3
  799. pulumi_azure_native/network/route_map.py +3 -3
  800. pulumi_azure_native/network/route_table.py +3 -3
  801. pulumi_azure_native/network/routing_intent.py +3 -3
  802. pulumi_azure_native/network/scope_connection.py +3 -3
  803. pulumi_azure_native/network/security_admin_configuration.py +3 -3
  804. pulumi_azure_native/network/security_partner_provider.py +3 -3
  805. pulumi_azure_native/network/security_rule.py +3 -3
  806. pulumi_azure_native/network/service_endpoint_policy.py +3 -3
  807. pulumi_azure_native/network/service_endpoint_policy_definition.py +3 -3
  808. pulumi_azure_native/network/static_member.py +3 -3
  809. pulumi_azure_native/network/subnet.py +3 -3
  810. pulumi_azure_native/network/subscription_network_manager_connection.py +3 -3
  811. pulumi_azure_native/network/v20180601/load_balancer.py +1 -1
  812. pulumi_azure_native/network/v20180701/network_interface.py +1 -1
  813. pulumi_azure_native/network/v20180701/service_endpoint_policy.py +1 -1
  814. pulumi_azure_native/network/v20180701/service_endpoint_policy_definition.py +1 -1
  815. pulumi_azure_native/network/v20180701/virtual_hub.py +1 -1
  816. pulumi_azure_native/network/v20180701/virtual_wan.py +1 -1
  817. pulumi_azure_native/network/v20180701/vpn_connection.py +1 -1
  818. pulumi_azure_native/network/v20180701/vpn_gateway.py +1 -1
  819. pulumi_azure_native/network/v20180701/vpn_site.py +1 -1
  820. pulumi_azure_native/network/v20181201/express_route_circuit.py +1 -1
  821. pulumi_azure_native/network/v20190201/express_route_circuit_peering.py +1 -1
  822. pulumi_azure_native/network/v20190201/interface_endpoint.py +1 -1
  823. pulumi_azure_native/network/v20190201/network_interface.py +1 -1
  824. pulumi_azure_native/network/v20190201/subnet.py +1 -1
  825. pulumi_azure_native/network/v20190601/application_gateway.py +1 -1
  826. pulumi_azure_native/network/v20190601/express_route_circuit.py +1 -1
  827. pulumi_azure_native/network/v20190601/express_route_circuit_authorization.py +1 -1
  828. pulumi_azure_native/network/v20190601/express_route_circuit_peering.py +1 -1
  829. pulumi_azure_native/network/v20190601/inbound_nat_rule.py +1 -1
  830. pulumi_azure_native/network/v20190601/load_balancer.py +1 -1
  831. pulumi_azure_native/network/v20190601/nat_gateway.py +1 -1
  832. pulumi_azure_native/network/v20190601/network_interface.py +1 -1
  833. pulumi_azure_native/network/v20190601/network_security_group.py +1 -1
  834. pulumi_azure_native/network/v20190601/public_ip_address.py +1 -1
  835. pulumi_azure_native/network/v20190601/public_ip_prefix.py +1 -1
  836. pulumi_azure_native/network/v20190601/route.py +1 -1
  837. pulumi_azure_native/network/v20190601/route_table.py +1 -1
  838. pulumi_azure_native/network/v20190601/security_rule.py +1 -1
  839. pulumi_azure_native/network/v20190601/subnet.py +1 -1
  840. pulumi_azure_native/network/v20190601/virtual_network.py +1 -1
  841. pulumi_azure_native/network/v20190601/virtual_network_peering.py +1 -1
  842. pulumi_azure_native/network/v20190701/p2s_vpn_gateway.py +1 -1
  843. pulumi_azure_native/network/v20190701/virtual_wan.py +1 -1
  844. pulumi_azure_native/network/v20190701/web_application_firewall_policy.py +1 -1
  845. pulumi_azure_native/network/v20190801/application_gateway.py +1 -1
  846. pulumi_azure_native/network/v20190801/express_route_circuit_peering.py +1 -1
  847. pulumi_azure_native/network/v20190801/express_route_cross_connection_peering.py +1 -1
  848. pulumi_azure_native/network/v20190801/express_route_port.py +1 -1
  849. pulumi_azure_native/network/v20190801/load_balancer.py +1 -1
  850. pulumi_azure_native/network/v20190801/local_network_gateway.py +1 -1
  851. pulumi_azure_native/network/v20190801/nat_gateway.py +1 -1
  852. pulumi_azure_native/network/v20190801/network_interface.py +1 -1
  853. pulumi_azure_native/network/v20190801/network_profile.py +1 -1
  854. pulumi_azure_native/network/v20190801/network_security_group.py +1 -1
  855. pulumi_azure_native/network/v20190801/private_link_service.py +1 -1
  856. pulumi_azure_native/network/v20190801/public_ip_address.py +1 -1
  857. pulumi_azure_native/network/v20190801/public_ip_prefix.py +1 -1
  858. pulumi_azure_native/network/v20190801/route_filter.py +1 -1
  859. pulumi_azure_native/network/v20190801/subnet.py +1 -1
  860. pulumi_azure_native/network/v20190801/virtual_network.py +1 -1
  861. pulumi_azure_native/network/v20190801/virtual_network_gateway.py +1 -1
  862. pulumi_azure_native/network/v20190801/virtual_network_gateway_connection.py +1 -1
  863. pulumi_azure_native/network/v20190901/connection_monitor.py +1 -1
  864. pulumi_azure_native/network/v20200401/azure_firewall.py +1 -1
  865. pulumi_azure_native/network/v20200401/firewall_policy.py +1 -1
  866. pulumi_azure_native/network/v20200401/network_virtual_appliance.py +1 -1
  867. pulumi_azure_native/network/v20200401/virtual_hub.py +1 -1
  868. pulumi_azure_native/network/v20200601/packet_capture.py +1 -1
  869. pulumi_azure_native/network/v20200601/subnet.py +1 -1
  870. pulumi_azure_native/network/v20200601/virtual_hub.py +1 -1
  871. pulumi_azure_native/network/v20210201/private_dns_zone_group.py +1 -1
  872. pulumi_azure_native/network/v20210201/private_endpoint.py +1 -1
  873. pulumi_azure_native/network/v20210201/private_link_service.py +1 -1
  874. pulumi_azure_native/network/v20210201preview/admin_rule.py +1 -1
  875. pulumi_azure_native/network/v20210201preview/admin_rule_collection.py +1 -1
  876. pulumi_azure_native/network/v20210201preview/connectivity_configuration.py +1 -1
  877. pulumi_azure_native/network/v20210201preview/network_group.py +1 -1
  878. pulumi_azure_native/network/v20210201preview/network_manager.py +1 -1
  879. pulumi_azure_native/network/v20210301/custom_ip_prefix.py +1 -1
  880. pulumi_azure_native/network/v20210301/express_route_gateway.py +1 -1
  881. pulumi_azure_native/network/v20210501preview/admin_rule.py +1 -1
  882. pulumi_azure_native/network/v20210501preview/admin_rule_collection.py +1 -1
  883. pulumi_azure_native/network/v20210501preview/connectivity_configuration.py +1 -1
  884. pulumi_azure_native/network/v20210501preview/default_admin_rule.py +1 -1
  885. pulumi_azure_native/network/v20210501preview/network_group.py +1 -1
  886. pulumi_azure_native/network/v20210501preview/network_manager.py +1 -1
  887. pulumi_azure_native/network/v20210501preview/security_admin_configuration.py +1 -1
  888. pulumi_azure_native/network/v20210801/firewall_policy.py +1 -1
  889. pulumi_azure_native/network/v20220101/ddos_custom_policy.py +1 -1
  890. pulumi_azure_native/network/v20220401preview/network_group.py +1 -1
  891. pulumi_azure_native/network/v20220501/ddos_protection_plan.py +1 -1
  892. pulumi_azure_native/network/v20220501/network_watcher.py +1 -1
  893. pulumi_azure_native/network/v20220701/security_rule.py +1 -1
  894. pulumi_azure_native/network/v20220701/subnet.py +1 -1
  895. pulumi_azure_native/network/v20230201/admin_rule.py +1 -1
  896. pulumi_azure_native/network/v20230201/admin_rule_collection.py +1 -1
  897. pulumi_azure_native/network/v20230201/application_gateway.py +1 -1
  898. pulumi_azure_native/network/v20230201/application_gateway_private_endpoint_connection.py +1 -1
  899. pulumi_azure_native/network/v20230201/application_security_group.py +1 -1
  900. pulumi_azure_native/network/v20230201/azure_firewall.py +1 -1
  901. pulumi_azure_native/network/v20230201/bastion_host.py +1 -1
  902. pulumi_azure_native/network/v20230201/configuration_policy_group.py +1 -1
  903. pulumi_azure_native/network/v20230201/connection_monitor.py +1 -1
  904. pulumi_azure_native/network/v20230201/connectivity_configuration.py +1 -1
  905. pulumi_azure_native/network/v20230201/custom_ip_prefix.py +1 -1
  906. pulumi_azure_native/network/v20230201/ddos_custom_policy.py +1 -1
  907. pulumi_azure_native/network/v20230201/ddos_protection_plan.py +1 -1
  908. pulumi_azure_native/network/v20230201/default_admin_rule.py +1 -1
  909. pulumi_azure_native/network/v20230201/dscp_configuration.py +1 -1
  910. pulumi_azure_native/network/v20230201/express_route_circuit.py +1 -1
  911. pulumi_azure_native/network/v20230201/express_route_circuit_authorization.py +1 -1
  912. pulumi_azure_native/network/v20230201/express_route_circuit_connection.py +1 -1
  913. pulumi_azure_native/network/v20230201/express_route_circuit_peering.py +1 -1
  914. pulumi_azure_native/network/v20230201/express_route_connection.py +1 -1
  915. pulumi_azure_native/network/v20230201/express_route_cross_connection_peering.py +1 -1
  916. pulumi_azure_native/network/v20230201/express_route_gateway.py +1 -1
  917. pulumi_azure_native/network/v20230201/express_route_port.py +1 -1
  918. pulumi_azure_native/network/v20230201/express_route_port_authorization.py +1 -1
  919. pulumi_azure_native/network/v20230201/firewall_policy.py +1 -1
  920. pulumi_azure_native/network/v20230201/firewall_policy_rule_collection_group.py +1 -1
  921. pulumi_azure_native/network/v20230201/flow_log.py +1 -1
  922. pulumi_azure_native/network/v20230201/hub_route_table.py +1 -1
  923. pulumi_azure_native/network/v20230201/hub_virtual_network_connection.py +1 -1
  924. pulumi_azure_native/network/v20230201/inbound_nat_rule.py +1 -1
  925. pulumi_azure_native/network/v20230201/ip_allocation.py +1 -1
  926. pulumi_azure_native/network/v20230201/ip_group.py +1 -1
  927. pulumi_azure_native/network/v20230201/load_balancer.py +1 -1
  928. pulumi_azure_native/network/v20230201/load_balancer_backend_address_pool.py +1 -1
  929. pulumi_azure_native/network/v20230201/local_network_gateway.py +1 -1
  930. pulumi_azure_native/network/v20230201/management_group_network_manager_connection.py +1 -1
  931. pulumi_azure_native/network/v20230201/nat_gateway.py +1 -1
  932. pulumi_azure_native/network/v20230201/nat_rule.py +1 -1
  933. pulumi_azure_native/network/v20230201/network_group.py +1 -1
  934. pulumi_azure_native/network/v20230201/network_interface.py +1 -1
  935. pulumi_azure_native/network/v20230201/network_interface_tap_configuration.py +1 -1
  936. pulumi_azure_native/network/v20230201/network_manager.py +1 -1
  937. pulumi_azure_native/network/v20230201/network_profile.py +1 -1
  938. pulumi_azure_native/network/v20230201/network_security_group.py +1 -1
  939. pulumi_azure_native/network/v20230201/network_virtual_appliance.py +1 -1
  940. pulumi_azure_native/network/v20230201/network_watcher.py +1 -1
  941. pulumi_azure_native/network/v20230201/p2s_vpn_gateway.py +1 -1
  942. pulumi_azure_native/network/v20230201/packet_capture.py +1 -1
  943. pulumi_azure_native/network/v20230201/private_dns_zone_group.py +1 -1
  944. pulumi_azure_native/network/v20230201/private_endpoint.py +1 -1
  945. pulumi_azure_native/network/v20230201/private_link_service.py +1 -1
  946. pulumi_azure_native/network/v20230201/private_link_service_private_endpoint_connection.py +1 -1
  947. pulumi_azure_native/network/v20230201/public_ip_address.py +1 -1
  948. pulumi_azure_native/network/v20230201/public_ip_prefix.py +1 -1
  949. pulumi_azure_native/network/v20230201/route.py +1 -1
  950. pulumi_azure_native/network/v20230201/route_filter.py +1 -1
  951. pulumi_azure_native/network/v20230201/route_filter_rule.py +1 -1
  952. pulumi_azure_native/network/v20230201/route_map.py +1 -1
  953. pulumi_azure_native/network/v20230201/route_table.py +1 -1
  954. pulumi_azure_native/network/v20230201/routing_intent.py +1 -1
  955. pulumi_azure_native/network/v20230201/scope_connection.py +1 -1
  956. pulumi_azure_native/network/v20230201/security_admin_configuration.py +1 -1
  957. pulumi_azure_native/network/v20230201/security_partner_provider.py +1 -1
  958. pulumi_azure_native/network/v20230201/security_rule.py +1 -1
  959. pulumi_azure_native/network/v20230201/service_endpoint_policy.py +1 -1
  960. pulumi_azure_native/network/v20230201/service_endpoint_policy_definition.py +1 -1
  961. pulumi_azure_native/network/v20230201/static_member.py +1 -1
  962. pulumi_azure_native/network/v20230201/subnet.py +1 -1
  963. pulumi_azure_native/network/v20230201/subscription_network_manager_connection.py +1 -1
  964. pulumi_azure_native/network/v20230201/virtual_appliance_site.py +1 -1
  965. pulumi_azure_native/network/v20230201/virtual_hub.py +1 -1
  966. pulumi_azure_native/network/v20230201/virtual_hub_bgp_connection.py +1 -1
  967. pulumi_azure_native/network/v20230201/virtual_hub_ip_configuration.py +1 -1
  968. pulumi_azure_native/network/v20230201/virtual_hub_route_table_v2.py +1 -1
  969. pulumi_azure_native/network/v20230201/virtual_network.py +1 -1
  970. pulumi_azure_native/network/v20230201/virtual_network_gateway.py +1 -1
  971. pulumi_azure_native/network/v20230201/virtual_network_gateway_connection.py +1 -1
  972. pulumi_azure_native/network/v20230201/virtual_network_gateway_nat_rule.py +1 -1
  973. pulumi_azure_native/network/v20230201/virtual_network_peering.py +1 -1
  974. pulumi_azure_native/network/v20230201/virtual_network_tap.py +1 -1
  975. pulumi_azure_native/network/v20230201/virtual_router.py +1 -1
  976. pulumi_azure_native/network/v20230201/virtual_router_peering.py +1 -1
  977. pulumi_azure_native/network/v20230201/virtual_wan.py +1 -1
  978. pulumi_azure_native/network/v20230201/vpn_connection.py +1 -1
  979. pulumi_azure_native/network/v20230201/vpn_gateway.py +1 -1
  980. pulumi_azure_native/network/v20230201/vpn_server_configuration.py +1 -1
  981. pulumi_azure_native/network/v20230201/vpn_site.py +1 -1
  982. pulumi_azure_native/network/v20230201/web_application_firewall_policy.py +1 -1
  983. pulumi_azure_native/network/v20230401/admin_rule.py +1 -1
  984. pulumi_azure_native/network/v20230401/admin_rule_collection.py +1 -1
  985. pulumi_azure_native/network/v20230401/application_gateway.py +1 -1
  986. pulumi_azure_native/network/v20230401/application_gateway_private_endpoint_connection.py +1 -1
  987. pulumi_azure_native/network/v20230401/application_security_group.py +1 -1
  988. pulumi_azure_native/network/v20230401/azure_firewall.py +1 -1
  989. pulumi_azure_native/network/v20230401/bastion_host.py +1 -1
  990. pulumi_azure_native/network/v20230401/configuration_policy_group.py +1 -1
  991. pulumi_azure_native/network/v20230401/connection_monitor.py +1 -1
  992. pulumi_azure_native/network/v20230401/connectivity_configuration.py +1 -1
  993. pulumi_azure_native/network/v20230401/custom_ip_prefix.py +1 -1
  994. pulumi_azure_native/network/v20230401/ddos_custom_policy.py +1 -1
  995. pulumi_azure_native/network/v20230401/ddos_protection_plan.py +1 -1
  996. pulumi_azure_native/network/v20230401/default_admin_rule.py +1 -1
  997. pulumi_azure_native/network/v20230401/dscp_configuration.py +1 -1
  998. pulumi_azure_native/network/v20230401/express_route_circuit.py +1 -1
  999. pulumi_azure_native/network/v20230401/express_route_circuit_authorization.py +1 -1
  1000. pulumi_azure_native/network/v20230401/express_route_circuit_connection.py +1 -1
  1001. pulumi_azure_native/network/v20230401/express_route_circuit_peering.py +1 -1
  1002. pulumi_azure_native/network/v20230401/express_route_connection.py +1 -1
  1003. pulumi_azure_native/network/v20230401/express_route_cross_connection_peering.py +1 -1
  1004. pulumi_azure_native/network/v20230401/express_route_gateway.py +1 -1
  1005. pulumi_azure_native/network/v20230401/express_route_port.py +1 -1
  1006. pulumi_azure_native/network/v20230401/express_route_port_authorization.py +1 -1
  1007. pulumi_azure_native/network/v20230401/firewall_policy.py +1 -1
  1008. pulumi_azure_native/network/v20230401/firewall_policy_rule_collection_group.py +1 -1
  1009. pulumi_azure_native/network/v20230401/flow_log.py +1 -1
  1010. pulumi_azure_native/network/v20230401/hub_route_table.py +1 -1
  1011. pulumi_azure_native/network/v20230401/hub_virtual_network_connection.py +1 -1
  1012. pulumi_azure_native/network/v20230401/inbound_nat_rule.py +1 -1
  1013. pulumi_azure_native/network/v20230401/ip_allocation.py +1 -1
  1014. pulumi_azure_native/network/v20230401/ip_group.py +1 -1
  1015. pulumi_azure_native/network/v20230401/load_balancer.py +1 -1
  1016. pulumi_azure_native/network/v20230401/load_balancer_backend_address_pool.py +1 -1
  1017. pulumi_azure_native/network/v20230401/local_network_gateway.py +1 -1
  1018. pulumi_azure_native/network/v20230401/management_group_network_manager_connection.py +1 -1
  1019. pulumi_azure_native/network/v20230401/nat_gateway.py +1 -1
  1020. pulumi_azure_native/network/v20230401/nat_rule.py +1 -1
  1021. pulumi_azure_native/network/v20230401/network_group.py +1 -1
  1022. pulumi_azure_native/network/v20230401/network_interface.py +1 -1
  1023. pulumi_azure_native/network/v20230401/network_interface_tap_configuration.py +1 -1
  1024. pulumi_azure_native/network/v20230401/network_manager.py +1 -1
  1025. pulumi_azure_native/network/v20230401/network_profile.py +1 -1
  1026. pulumi_azure_native/network/v20230401/network_security_group.py +1 -1
  1027. pulumi_azure_native/network/v20230401/network_virtual_appliance.py +1 -1
  1028. pulumi_azure_native/network/v20230401/network_watcher.py +1 -1
  1029. pulumi_azure_native/network/v20230401/p2s_vpn_gateway.py +1 -1
  1030. pulumi_azure_native/network/v20230401/packet_capture.py +1 -1
  1031. pulumi_azure_native/network/v20230401/private_dns_zone_group.py +1 -1
  1032. pulumi_azure_native/network/v20230401/private_endpoint.py +1 -1
  1033. pulumi_azure_native/network/v20230401/private_link_service.py +1 -1
  1034. pulumi_azure_native/network/v20230401/private_link_service_private_endpoint_connection.py +1 -1
  1035. pulumi_azure_native/network/v20230401/public_ip_address.py +1 -1
  1036. pulumi_azure_native/network/v20230401/public_ip_prefix.py +1 -1
  1037. pulumi_azure_native/network/v20230401/route.py +1 -1
  1038. pulumi_azure_native/network/v20230401/route_filter.py +1 -1
  1039. pulumi_azure_native/network/v20230401/route_filter_rule.py +1 -1
  1040. pulumi_azure_native/network/v20230401/route_map.py +1 -1
  1041. pulumi_azure_native/network/v20230401/route_table.py +1 -1
  1042. pulumi_azure_native/network/v20230401/routing_intent.py +1 -1
  1043. pulumi_azure_native/network/v20230401/scope_connection.py +1 -1
  1044. pulumi_azure_native/network/v20230401/security_admin_configuration.py +1 -1
  1045. pulumi_azure_native/network/v20230401/security_partner_provider.py +1 -1
  1046. pulumi_azure_native/network/v20230401/security_rule.py +1 -1
  1047. pulumi_azure_native/network/v20230401/service_endpoint_policy.py +1 -1
  1048. pulumi_azure_native/network/v20230401/service_endpoint_policy_definition.py +1 -1
  1049. pulumi_azure_native/network/v20230401/static_member.py +1 -1
  1050. pulumi_azure_native/network/v20230401/subnet.py +1 -1
  1051. pulumi_azure_native/network/v20230401/subscription_network_manager_connection.py +1 -1
  1052. pulumi_azure_native/network/v20230401/virtual_appliance_site.py +1 -1
  1053. pulumi_azure_native/network/v20230401/virtual_hub.py +1 -1
  1054. pulumi_azure_native/network/v20230401/virtual_hub_bgp_connection.py +1 -1
  1055. pulumi_azure_native/network/v20230401/virtual_hub_ip_configuration.py +1 -1
  1056. pulumi_azure_native/network/v20230401/virtual_hub_route_table_v2.py +1 -1
  1057. pulumi_azure_native/network/v20230401/virtual_network.py +1 -1
  1058. pulumi_azure_native/network/v20230401/virtual_network_gateway.py +1 -1
  1059. pulumi_azure_native/network/v20230401/virtual_network_gateway_connection.py +1 -1
  1060. pulumi_azure_native/network/v20230401/virtual_network_gateway_nat_rule.py +1 -1
  1061. pulumi_azure_native/network/v20230401/virtual_network_peering.py +1 -1
  1062. pulumi_azure_native/network/v20230401/virtual_network_tap.py +1 -1
  1063. pulumi_azure_native/network/v20230401/virtual_router.py +1 -1
  1064. pulumi_azure_native/network/v20230401/virtual_router_peering.py +1 -1
  1065. pulumi_azure_native/network/v20230401/virtual_wan.py +1 -1
  1066. pulumi_azure_native/network/v20230401/vpn_connection.py +1 -1
  1067. pulumi_azure_native/network/v20230401/vpn_gateway.py +1 -1
  1068. pulumi_azure_native/network/v20230401/vpn_server_configuration.py +1 -1
  1069. pulumi_azure_native/network/v20230401/vpn_site.py +1 -1
  1070. pulumi_azure_native/network/v20230401/web_application_firewall_policy.py +1 -1
  1071. pulumi_azure_native/network/v20230501/admin_rule.py +1 -1
  1072. pulumi_azure_native/network/v20230501/admin_rule_collection.py +1 -1
  1073. pulumi_azure_native/network/v20230501/application_gateway.py +1 -1
  1074. pulumi_azure_native/network/v20230501/application_gateway_private_endpoint_connection.py +1 -1
  1075. pulumi_azure_native/network/v20230501/application_security_group.py +1 -1
  1076. pulumi_azure_native/network/v20230501/azure_firewall.py +1 -1
  1077. pulumi_azure_native/network/v20230501/bastion_host.py +1 -1
  1078. pulumi_azure_native/network/v20230501/configuration_policy_group.py +1 -1
  1079. pulumi_azure_native/network/v20230501/connection_monitor.py +1 -1
  1080. pulumi_azure_native/network/v20230501/connectivity_configuration.py +1 -1
  1081. pulumi_azure_native/network/v20230501/custom_ip_prefix.py +1 -1
  1082. pulumi_azure_native/network/v20230501/ddos_custom_policy.py +1 -1
  1083. pulumi_azure_native/network/v20230501/ddos_protection_plan.py +1 -1
  1084. pulumi_azure_native/network/v20230501/default_admin_rule.py +1 -1
  1085. pulumi_azure_native/network/v20230501/dscp_configuration.py +1 -1
  1086. pulumi_azure_native/network/v20230501/express_route_circuit.py +1 -1
  1087. pulumi_azure_native/network/v20230501/express_route_circuit_authorization.py +1 -1
  1088. pulumi_azure_native/network/v20230501/express_route_circuit_connection.py +1 -1
  1089. pulumi_azure_native/network/v20230501/express_route_circuit_peering.py +1 -1
  1090. pulumi_azure_native/network/v20230501/express_route_connection.py +1 -1
  1091. pulumi_azure_native/network/v20230501/express_route_cross_connection_peering.py +1 -1
  1092. pulumi_azure_native/network/v20230501/express_route_gateway.py +1 -1
  1093. pulumi_azure_native/network/v20230501/express_route_port.py +1 -1
  1094. pulumi_azure_native/network/v20230501/express_route_port_authorization.py +1 -1
  1095. pulumi_azure_native/network/v20230501/firewall_policy.py +1 -1
  1096. pulumi_azure_native/network/v20230501/firewall_policy_rule_collection_group.py +1 -1
  1097. pulumi_azure_native/network/v20230501/flow_log.py +1 -1
  1098. pulumi_azure_native/network/v20230501/hub_route_table.py +1 -1
  1099. pulumi_azure_native/network/v20230501/hub_virtual_network_connection.py +1 -1
  1100. pulumi_azure_native/network/v20230501/inbound_nat_rule.py +1 -1
  1101. pulumi_azure_native/network/v20230501/ip_allocation.py +1 -1
  1102. pulumi_azure_native/network/v20230501/ip_group.py +1 -1
  1103. pulumi_azure_native/network/v20230501/load_balancer.py +1 -1
  1104. pulumi_azure_native/network/v20230501/load_balancer_backend_address_pool.py +1 -1
  1105. pulumi_azure_native/network/v20230501/local_network_gateway.py +1 -1
  1106. pulumi_azure_native/network/v20230501/management_group_network_manager_connection.py +1 -1
  1107. pulumi_azure_native/network/v20230501/nat_gateway.py +1 -1
  1108. pulumi_azure_native/network/v20230501/nat_rule.py +1 -1
  1109. pulumi_azure_native/network/v20230501/network_group.py +1 -1
  1110. pulumi_azure_native/network/v20230501/network_interface.py +1 -1
  1111. pulumi_azure_native/network/v20230501/network_interface_tap_configuration.py +1 -1
  1112. pulumi_azure_native/network/v20230501/network_manager.py +1 -1
  1113. pulumi_azure_native/network/v20230501/network_profile.py +1 -1
  1114. pulumi_azure_native/network/v20230501/network_security_group.py +1 -1
  1115. pulumi_azure_native/network/v20230501/network_virtual_appliance.py +1 -1
  1116. pulumi_azure_native/network/v20230501/network_watcher.py +1 -1
  1117. pulumi_azure_native/network/v20230501/p2s_vpn_gateway.py +1 -1
  1118. pulumi_azure_native/network/v20230501/packet_capture.py +1 -1
  1119. pulumi_azure_native/network/v20230501/private_dns_zone_group.py +1 -1
  1120. pulumi_azure_native/network/v20230501/private_endpoint.py +1 -1
  1121. pulumi_azure_native/network/v20230501/private_link_service.py +1 -1
  1122. pulumi_azure_native/network/v20230501/private_link_service_private_endpoint_connection.py +1 -1
  1123. pulumi_azure_native/network/v20230501/public_ip_address.py +1 -1
  1124. pulumi_azure_native/network/v20230501/public_ip_prefix.py +1 -1
  1125. pulumi_azure_native/network/v20230501/route.py +1 -1
  1126. pulumi_azure_native/network/v20230501/route_filter.py +1 -1
  1127. pulumi_azure_native/network/v20230501/route_filter_rule.py +1 -1
  1128. pulumi_azure_native/network/v20230501/route_map.py +1 -1
  1129. pulumi_azure_native/network/v20230501/route_table.py +1 -1
  1130. pulumi_azure_native/network/v20230501/routing_intent.py +1 -1
  1131. pulumi_azure_native/network/v20230501/scope_connection.py +1 -1
  1132. pulumi_azure_native/network/v20230501/security_admin_configuration.py +1 -1
  1133. pulumi_azure_native/network/v20230501/security_partner_provider.py +1 -1
  1134. pulumi_azure_native/network/v20230501/security_rule.py +1 -1
  1135. pulumi_azure_native/network/v20230501/service_endpoint_policy.py +1 -1
  1136. pulumi_azure_native/network/v20230501/service_endpoint_policy_definition.py +1 -1
  1137. pulumi_azure_native/network/v20230501/static_member.py +1 -1
  1138. pulumi_azure_native/network/v20230501/subnet.py +1 -1
  1139. pulumi_azure_native/network/v20230501/subscription_network_manager_connection.py +1 -1
  1140. pulumi_azure_native/network/v20230501/virtual_appliance_site.py +1 -1
  1141. pulumi_azure_native/network/v20230501/virtual_hub.py +1 -1
  1142. pulumi_azure_native/network/v20230501/virtual_hub_bgp_connection.py +1 -1
  1143. pulumi_azure_native/network/v20230501/virtual_hub_ip_configuration.py +1 -1
  1144. pulumi_azure_native/network/v20230501/virtual_hub_route_table_v2.py +1 -1
  1145. pulumi_azure_native/network/v20230501/virtual_network.py +1 -1
  1146. pulumi_azure_native/network/v20230501/virtual_network_gateway.py +1 -1
  1147. pulumi_azure_native/network/v20230501/virtual_network_gateway_connection.py +1 -1
  1148. pulumi_azure_native/network/v20230501/virtual_network_gateway_nat_rule.py +1 -1
  1149. pulumi_azure_native/network/v20230501/virtual_network_peering.py +1 -1
  1150. pulumi_azure_native/network/v20230501/virtual_network_tap.py +1 -1
  1151. pulumi_azure_native/network/v20230501/virtual_router.py +1 -1
  1152. pulumi_azure_native/network/v20230501/virtual_router_peering.py +1 -1
  1153. pulumi_azure_native/network/v20230501/virtual_wan.py +1 -1
  1154. pulumi_azure_native/network/v20230501/vpn_connection.py +1 -1
  1155. pulumi_azure_native/network/v20230501/vpn_gateway.py +1 -1
  1156. pulumi_azure_native/network/v20230501/vpn_server_configuration.py +1 -1
  1157. pulumi_azure_native/network/v20230501/vpn_site.py +1 -1
  1158. pulumi_azure_native/network/v20230501/web_application_firewall_policy.py +1 -1
  1159. pulumi_azure_native/network/v20230601/admin_rule.py +1 -1
  1160. pulumi_azure_native/network/v20230601/admin_rule_collection.py +1 -1
  1161. pulumi_azure_native/network/v20230601/application_gateway.py +1 -1
  1162. pulumi_azure_native/network/v20230601/application_gateway_private_endpoint_connection.py +1 -1
  1163. pulumi_azure_native/network/v20230601/application_security_group.py +1 -1
  1164. pulumi_azure_native/network/v20230601/azure_firewall.py +1 -1
  1165. pulumi_azure_native/network/v20230601/bastion_host.py +1 -1
  1166. pulumi_azure_native/network/v20230601/configuration_policy_group.py +1 -1
  1167. pulumi_azure_native/network/v20230601/connection_monitor.py +1 -1
  1168. pulumi_azure_native/network/v20230601/connectivity_configuration.py +1 -1
  1169. pulumi_azure_native/network/v20230601/custom_ip_prefix.py +1 -1
  1170. pulumi_azure_native/network/v20230601/ddos_custom_policy.py +1 -1
  1171. pulumi_azure_native/network/v20230601/ddos_protection_plan.py +1 -1
  1172. pulumi_azure_native/network/v20230601/default_admin_rule.py +1 -1
  1173. pulumi_azure_native/network/v20230601/dscp_configuration.py +1 -1
  1174. pulumi_azure_native/network/v20230601/express_route_circuit.py +1 -1
  1175. pulumi_azure_native/network/v20230601/express_route_circuit_authorization.py +1 -1
  1176. pulumi_azure_native/network/v20230601/express_route_circuit_connection.py +1 -1
  1177. pulumi_azure_native/network/v20230601/express_route_circuit_peering.py +1 -1
  1178. pulumi_azure_native/network/v20230601/express_route_connection.py +1 -1
  1179. pulumi_azure_native/network/v20230601/express_route_cross_connection_peering.py +1 -1
  1180. pulumi_azure_native/network/v20230601/express_route_gateway.py +1 -1
  1181. pulumi_azure_native/network/v20230601/express_route_port.py +1 -1
  1182. pulumi_azure_native/network/v20230601/express_route_port_authorization.py +1 -1
  1183. pulumi_azure_native/network/v20230601/firewall_policy.py +1 -1
  1184. pulumi_azure_native/network/v20230601/firewall_policy_rule_collection_group.py +1 -1
  1185. pulumi_azure_native/network/v20230601/flow_log.py +1 -1
  1186. pulumi_azure_native/network/v20230601/hub_route_table.py +1 -1
  1187. pulumi_azure_native/network/v20230601/hub_virtual_network_connection.py +1 -1
  1188. pulumi_azure_native/network/v20230601/inbound_nat_rule.py +1 -1
  1189. pulumi_azure_native/network/v20230601/ip_allocation.py +1 -1
  1190. pulumi_azure_native/network/v20230601/ip_group.py +1 -1
  1191. pulumi_azure_native/network/v20230601/load_balancer.py +1 -1
  1192. pulumi_azure_native/network/v20230601/load_balancer_backend_address_pool.py +1 -1
  1193. pulumi_azure_native/network/v20230601/local_network_gateway.py +1 -1
  1194. pulumi_azure_native/network/v20230601/management_group_network_manager_connection.py +1 -1
  1195. pulumi_azure_native/network/v20230601/nat_gateway.py +1 -1
  1196. pulumi_azure_native/network/v20230601/nat_rule.py +1 -1
  1197. pulumi_azure_native/network/v20230601/network_group.py +1 -1
  1198. pulumi_azure_native/network/v20230601/network_interface.py +1 -1
  1199. pulumi_azure_native/network/v20230601/network_interface_tap_configuration.py +1 -1
  1200. pulumi_azure_native/network/v20230601/network_manager.py +1 -1
  1201. pulumi_azure_native/network/v20230601/network_profile.py +1 -1
  1202. pulumi_azure_native/network/v20230601/network_security_group.py +1 -1
  1203. pulumi_azure_native/network/v20230601/network_virtual_appliance.py +1 -1
  1204. pulumi_azure_native/network/v20230601/network_virtual_appliance_connection.py +1 -1
  1205. pulumi_azure_native/network/v20230601/network_watcher.py +1 -1
  1206. pulumi_azure_native/network/v20230601/p2s_vpn_gateway.py +1 -1
  1207. pulumi_azure_native/network/v20230601/packet_capture.py +1 -1
  1208. pulumi_azure_native/network/v20230601/private_dns_zone_group.py +1 -1
  1209. pulumi_azure_native/network/v20230601/private_endpoint.py +1 -1
  1210. pulumi_azure_native/network/v20230601/private_link_service.py +1 -1
  1211. pulumi_azure_native/network/v20230601/private_link_service_private_endpoint_connection.py +1 -1
  1212. pulumi_azure_native/network/v20230601/public_ip_address.py +1 -1
  1213. pulumi_azure_native/network/v20230601/public_ip_prefix.py +1 -1
  1214. pulumi_azure_native/network/v20230601/route.py +1 -1
  1215. pulumi_azure_native/network/v20230601/route_filter.py +1 -1
  1216. pulumi_azure_native/network/v20230601/route_filter_rule.py +1 -1
  1217. pulumi_azure_native/network/v20230601/route_map.py +1 -1
  1218. pulumi_azure_native/network/v20230601/route_table.py +1 -1
  1219. pulumi_azure_native/network/v20230601/routing_intent.py +1 -1
  1220. pulumi_azure_native/network/v20230601/scope_connection.py +1 -1
  1221. pulumi_azure_native/network/v20230601/security_admin_configuration.py +1 -1
  1222. pulumi_azure_native/network/v20230601/security_partner_provider.py +1 -1
  1223. pulumi_azure_native/network/v20230601/security_rule.py +1 -1
  1224. pulumi_azure_native/network/v20230601/service_endpoint_policy.py +1 -1
  1225. pulumi_azure_native/network/v20230601/service_endpoint_policy_definition.py +1 -1
  1226. pulumi_azure_native/network/v20230601/static_member.py +1 -1
  1227. pulumi_azure_native/network/v20230601/subnet.py +1 -1
  1228. pulumi_azure_native/network/v20230601/subscription_network_manager_connection.py +1 -1
  1229. pulumi_azure_native/network/v20230601/virtual_appliance_site.py +1 -1
  1230. pulumi_azure_native/network/v20230601/virtual_hub.py +1 -1
  1231. pulumi_azure_native/network/v20230601/virtual_hub_bgp_connection.py +1 -1
  1232. pulumi_azure_native/network/v20230601/virtual_hub_ip_configuration.py +1 -1
  1233. pulumi_azure_native/network/v20230601/virtual_hub_route_table_v2.py +1 -1
  1234. pulumi_azure_native/network/v20230601/virtual_network.py +1 -1
  1235. pulumi_azure_native/network/v20230601/virtual_network_gateway.py +1 -1
  1236. pulumi_azure_native/network/v20230601/virtual_network_gateway_connection.py +1 -1
  1237. pulumi_azure_native/network/v20230601/virtual_network_gateway_nat_rule.py +1 -1
  1238. pulumi_azure_native/network/v20230601/virtual_network_peering.py +1 -1
  1239. pulumi_azure_native/network/v20230601/virtual_network_tap.py +1 -1
  1240. pulumi_azure_native/network/v20230601/virtual_router.py +1 -1
  1241. pulumi_azure_native/network/v20230601/virtual_router_peering.py +1 -1
  1242. pulumi_azure_native/network/v20230601/virtual_wan.py +1 -1
  1243. pulumi_azure_native/network/v20230601/vpn_connection.py +1 -1
  1244. pulumi_azure_native/network/v20230601/vpn_gateway.py +1 -1
  1245. pulumi_azure_native/network/v20230601/vpn_server_configuration.py +1 -1
  1246. pulumi_azure_native/network/v20230601/vpn_site.py +1 -1
  1247. pulumi_azure_native/network/v20230601/web_application_firewall_policy.py +1 -1
  1248. pulumi_azure_native/network/v20230901/admin_rule.py +1 -1
  1249. pulumi_azure_native/network/v20230901/admin_rule_collection.py +1 -1
  1250. pulumi_azure_native/network/v20230901/application_gateway.py +1 -1
  1251. pulumi_azure_native/network/v20230901/application_gateway_private_endpoint_connection.py +1 -1
  1252. pulumi_azure_native/network/v20230901/application_security_group.py +1 -1
  1253. pulumi_azure_native/network/v20230901/azure_firewall.py +1 -1
  1254. pulumi_azure_native/network/v20230901/bastion_host.py +1 -1
  1255. pulumi_azure_native/network/v20230901/configuration_policy_group.py +1 -1
  1256. pulumi_azure_native/network/v20230901/connection_monitor.py +1 -1
  1257. pulumi_azure_native/network/v20230901/connectivity_configuration.py +1 -1
  1258. pulumi_azure_native/network/v20230901/custom_ip_prefix.py +1 -1
  1259. pulumi_azure_native/network/v20230901/ddos_custom_policy.py +1 -1
  1260. pulumi_azure_native/network/v20230901/ddos_protection_plan.py +1 -1
  1261. pulumi_azure_native/network/v20230901/default_admin_rule.py +1 -1
  1262. pulumi_azure_native/network/v20230901/dscp_configuration.py +1 -1
  1263. pulumi_azure_native/network/v20230901/express_route_circuit.py +1 -1
  1264. pulumi_azure_native/network/v20230901/express_route_circuit_authorization.py +1 -1
  1265. pulumi_azure_native/network/v20230901/express_route_circuit_connection.py +1 -1
  1266. pulumi_azure_native/network/v20230901/express_route_circuit_peering.py +1 -1
  1267. pulumi_azure_native/network/v20230901/express_route_connection.py +1 -1
  1268. pulumi_azure_native/network/v20230901/express_route_cross_connection_peering.py +1 -1
  1269. pulumi_azure_native/network/v20230901/express_route_gateway.py +1 -1
  1270. pulumi_azure_native/network/v20230901/express_route_port.py +1 -1
  1271. pulumi_azure_native/network/v20230901/express_route_port_authorization.py +1 -1
  1272. pulumi_azure_native/network/v20230901/firewall_policy.py +1 -1
  1273. pulumi_azure_native/network/v20230901/firewall_policy_rule_collection_group.py +1 -1
  1274. pulumi_azure_native/network/v20230901/flow_log.py +1 -1
  1275. pulumi_azure_native/network/v20230901/hub_route_table.py +1 -1
  1276. pulumi_azure_native/network/v20230901/hub_virtual_network_connection.py +1 -1
  1277. pulumi_azure_native/network/v20230901/inbound_nat_rule.py +1 -1
  1278. pulumi_azure_native/network/v20230901/ip_allocation.py +1 -1
  1279. pulumi_azure_native/network/v20230901/ip_group.py +1 -1
  1280. pulumi_azure_native/network/v20230901/load_balancer.py +1 -1
  1281. pulumi_azure_native/network/v20230901/load_balancer_backend_address_pool.py +1 -1
  1282. pulumi_azure_native/network/v20230901/local_network_gateway.py +1 -1
  1283. pulumi_azure_native/network/v20230901/management_group_network_manager_connection.py +1 -1
  1284. pulumi_azure_native/network/v20230901/nat_gateway.py +1 -1
  1285. pulumi_azure_native/network/v20230901/nat_rule.py +1 -1
  1286. pulumi_azure_native/network/v20230901/network_group.py +1 -1
  1287. pulumi_azure_native/network/v20230901/network_interface.py +1 -1
  1288. pulumi_azure_native/network/v20230901/network_interface_tap_configuration.py +1 -1
  1289. pulumi_azure_native/network/v20230901/network_manager.py +1 -1
  1290. pulumi_azure_native/network/v20230901/network_profile.py +1 -1
  1291. pulumi_azure_native/network/v20230901/network_security_group.py +1 -1
  1292. pulumi_azure_native/network/v20230901/network_virtual_appliance.py +1 -1
  1293. pulumi_azure_native/network/v20230901/network_virtual_appliance_connection.py +1 -1
  1294. pulumi_azure_native/network/v20230901/network_watcher.py +1 -1
  1295. pulumi_azure_native/network/v20230901/p2s_vpn_gateway.py +1 -1
  1296. pulumi_azure_native/network/v20230901/packet_capture.py +1 -1
  1297. pulumi_azure_native/network/v20230901/private_dns_zone_group.py +1 -1
  1298. pulumi_azure_native/network/v20230901/private_endpoint.py +1 -1
  1299. pulumi_azure_native/network/v20230901/private_link_service.py +1 -1
  1300. pulumi_azure_native/network/v20230901/private_link_service_private_endpoint_connection.py +1 -1
  1301. pulumi_azure_native/network/v20230901/public_ip_address.py +1 -1
  1302. pulumi_azure_native/network/v20230901/public_ip_prefix.py +1 -1
  1303. pulumi_azure_native/network/v20230901/route.py +1 -1
  1304. pulumi_azure_native/network/v20230901/route_filter.py +1 -1
  1305. pulumi_azure_native/network/v20230901/route_filter_rule.py +1 -1
  1306. pulumi_azure_native/network/v20230901/route_map.py +1 -1
  1307. pulumi_azure_native/network/v20230901/route_table.py +1 -1
  1308. pulumi_azure_native/network/v20230901/routing_intent.py +1 -1
  1309. pulumi_azure_native/network/v20230901/scope_connection.py +1 -1
  1310. pulumi_azure_native/network/v20230901/security_admin_configuration.py +1 -1
  1311. pulumi_azure_native/network/v20230901/security_partner_provider.py +1 -1
  1312. pulumi_azure_native/network/v20230901/security_rule.py +1 -1
  1313. pulumi_azure_native/network/v20230901/service_endpoint_policy.py +1 -1
  1314. pulumi_azure_native/network/v20230901/service_endpoint_policy_definition.py +1 -1
  1315. pulumi_azure_native/network/v20230901/static_member.py +1 -1
  1316. pulumi_azure_native/network/v20230901/subnet.py +1 -1
  1317. pulumi_azure_native/network/v20230901/subscription_network_manager_connection.py +1 -1
  1318. pulumi_azure_native/network/v20230901/virtual_appliance_site.py +1 -1
  1319. pulumi_azure_native/network/v20230901/virtual_hub.py +1 -1
  1320. pulumi_azure_native/network/v20230901/virtual_hub_bgp_connection.py +1 -1
  1321. pulumi_azure_native/network/v20230901/virtual_hub_ip_configuration.py +1 -1
  1322. pulumi_azure_native/network/v20230901/virtual_hub_route_table_v2.py +1 -1
  1323. pulumi_azure_native/network/v20230901/virtual_network.py +1 -1
  1324. pulumi_azure_native/network/v20230901/virtual_network_gateway.py +1 -1
  1325. pulumi_azure_native/network/v20230901/virtual_network_gateway_connection.py +1 -1
  1326. pulumi_azure_native/network/v20230901/virtual_network_gateway_nat_rule.py +1 -1
  1327. pulumi_azure_native/network/v20230901/virtual_network_peering.py +1 -1
  1328. pulumi_azure_native/network/v20230901/virtual_network_tap.py +1 -1
  1329. pulumi_azure_native/network/v20230901/virtual_router.py +1 -1
  1330. pulumi_azure_native/network/v20230901/virtual_router_peering.py +1 -1
  1331. pulumi_azure_native/network/v20230901/virtual_wan.py +1 -1
  1332. pulumi_azure_native/network/v20230901/vpn_connection.py +1 -1
  1333. pulumi_azure_native/network/v20230901/vpn_gateway.py +1 -1
  1334. pulumi_azure_native/network/v20230901/vpn_server_configuration.py +1 -1
  1335. pulumi_azure_native/network/v20230901/vpn_site.py +1 -1
  1336. pulumi_azure_native/network/v20230901/web_application_firewall_policy.py +1 -1
  1337. pulumi_azure_native/network/v20231101/admin_rule.py +1 -1
  1338. pulumi_azure_native/network/v20231101/admin_rule_collection.py +1 -1
  1339. pulumi_azure_native/network/v20231101/application_gateway.py +1 -1
  1340. pulumi_azure_native/network/v20231101/application_gateway_private_endpoint_connection.py +1 -1
  1341. pulumi_azure_native/network/v20231101/application_security_group.py +1 -1
  1342. pulumi_azure_native/network/v20231101/azure_firewall.py +1 -1
  1343. pulumi_azure_native/network/v20231101/bastion_host.py +1 -1
  1344. pulumi_azure_native/network/v20231101/configuration_policy_group.py +1 -1
  1345. pulumi_azure_native/network/v20231101/connection_monitor.py +1 -1
  1346. pulumi_azure_native/network/v20231101/connectivity_configuration.py +1 -1
  1347. pulumi_azure_native/network/v20231101/custom_ip_prefix.py +1 -1
  1348. pulumi_azure_native/network/v20231101/ddos_custom_policy.py +1 -1
  1349. pulumi_azure_native/network/v20231101/ddos_protection_plan.py +1 -1
  1350. pulumi_azure_native/network/v20231101/default_admin_rule.py +1 -1
  1351. pulumi_azure_native/network/v20231101/dscp_configuration.py +1 -1
  1352. pulumi_azure_native/network/v20231101/express_route_circuit.py +1 -1
  1353. pulumi_azure_native/network/v20231101/express_route_circuit_authorization.py +1 -1
  1354. pulumi_azure_native/network/v20231101/express_route_circuit_connection.py +1 -1
  1355. pulumi_azure_native/network/v20231101/express_route_circuit_peering.py +1 -1
  1356. pulumi_azure_native/network/v20231101/express_route_connection.py +1 -1
  1357. pulumi_azure_native/network/v20231101/express_route_cross_connection_peering.py +1 -1
  1358. pulumi_azure_native/network/v20231101/express_route_gateway.py +1 -1
  1359. pulumi_azure_native/network/v20231101/express_route_port.py +1 -1
  1360. pulumi_azure_native/network/v20231101/express_route_port_authorization.py +1 -1
  1361. pulumi_azure_native/network/v20231101/firewall_policy.py +1 -1
  1362. pulumi_azure_native/network/v20231101/firewall_policy_draft.py +1 -1
  1363. pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group.py +1 -1
  1364. pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group_draft.py +1 -1
  1365. pulumi_azure_native/network/v20231101/flow_log.py +1 -1
  1366. pulumi_azure_native/network/v20231101/hub_route_table.py +1 -1
  1367. pulumi_azure_native/network/v20231101/hub_virtual_network_connection.py +1 -1
  1368. pulumi_azure_native/network/v20231101/inbound_nat_rule.py +1 -1
  1369. pulumi_azure_native/network/v20231101/ip_allocation.py +1 -1
  1370. pulumi_azure_native/network/v20231101/ip_group.py +1 -1
  1371. pulumi_azure_native/network/v20231101/load_balancer.py +1 -1
  1372. pulumi_azure_native/network/v20231101/load_balancer_backend_address_pool.py +1 -1
  1373. pulumi_azure_native/network/v20231101/local_network_gateway.py +1 -1
  1374. pulumi_azure_native/network/v20231101/management_group_network_manager_connection.py +1 -1
  1375. pulumi_azure_native/network/v20231101/nat_gateway.py +1 -1
  1376. pulumi_azure_native/network/v20231101/nat_rule.py +1 -1
  1377. pulumi_azure_native/network/v20231101/network_group.py +1 -1
  1378. pulumi_azure_native/network/v20231101/network_interface.py +1 -1
  1379. pulumi_azure_native/network/v20231101/network_interface_tap_configuration.py +1 -1
  1380. pulumi_azure_native/network/v20231101/network_manager.py +1 -1
  1381. pulumi_azure_native/network/v20231101/network_profile.py +1 -1
  1382. pulumi_azure_native/network/v20231101/network_security_group.py +1 -1
  1383. pulumi_azure_native/network/v20231101/network_virtual_appliance.py +1 -1
  1384. pulumi_azure_native/network/v20231101/network_virtual_appliance_connection.py +1 -1
  1385. pulumi_azure_native/network/v20231101/network_watcher.py +1 -1
  1386. pulumi_azure_native/network/v20231101/p2s_vpn_gateway.py +1 -1
  1387. pulumi_azure_native/network/v20231101/packet_capture.py +1 -1
  1388. pulumi_azure_native/network/v20231101/private_dns_zone_group.py +1 -1
  1389. pulumi_azure_native/network/v20231101/private_endpoint.py +1 -1
  1390. pulumi_azure_native/network/v20231101/private_link_service.py +1 -1
  1391. pulumi_azure_native/network/v20231101/private_link_service_private_endpoint_connection.py +1 -1
  1392. pulumi_azure_native/network/v20231101/public_ip_address.py +1 -1
  1393. pulumi_azure_native/network/v20231101/public_ip_prefix.py +1 -1
  1394. pulumi_azure_native/network/v20231101/route.py +1 -1
  1395. pulumi_azure_native/network/v20231101/route_filter.py +1 -1
  1396. pulumi_azure_native/network/v20231101/route_filter_rule.py +1 -1
  1397. pulumi_azure_native/network/v20231101/route_map.py +1 -1
  1398. pulumi_azure_native/network/v20231101/route_table.py +1 -1
  1399. pulumi_azure_native/network/v20231101/routing_intent.py +1 -1
  1400. pulumi_azure_native/network/v20231101/scope_connection.py +1 -1
  1401. pulumi_azure_native/network/v20231101/security_admin_configuration.py +1 -1
  1402. pulumi_azure_native/network/v20231101/security_partner_provider.py +1 -1
  1403. pulumi_azure_native/network/v20231101/security_rule.py +1 -1
  1404. pulumi_azure_native/network/v20231101/service_endpoint_policy.py +1 -1
  1405. pulumi_azure_native/network/v20231101/service_endpoint_policy_definition.py +1 -1
  1406. pulumi_azure_native/network/v20231101/static_member.py +1 -1
  1407. pulumi_azure_native/network/v20231101/subnet.py +1 -1
  1408. pulumi_azure_native/network/v20231101/subscription_network_manager_connection.py +1 -1
  1409. pulumi_azure_native/network/v20231101/virtual_appliance_site.py +1 -1
  1410. pulumi_azure_native/network/v20231101/virtual_hub.py +1 -1
  1411. pulumi_azure_native/network/v20231101/virtual_hub_bgp_connection.py +1 -1
  1412. pulumi_azure_native/network/v20231101/virtual_hub_ip_configuration.py +1 -1
  1413. pulumi_azure_native/network/v20231101/virtual_hub_route_table_v2.py +1 -1
  1414. pulumi_azure_native/network/v20231101/virtual_network.py +1 -1
  1415. pulumi_azure_native/network/v20231101/virtual_network_gateway.py +1 -1
  1416. pulumi_azure_native/network/v20231101/virtual_network_gateway_connection.py +1 -1
  1417. pulumi_azure_native/network/v20231101/virtual_network_gateway_nat_rule.py +1 -1
  1418. pulumi_azure_native/network/v20231101/virtual_network_peering.py +1 -1
  1419. pulumi_azure_native/network/v20231101/virtual_network_tap.py +1 -1
  1420. pulumi_azure_native/network/v20231101/virtual_router.py +1 -1
  1421. pulumi_azure_native/network/v20231101/virtual_router_peering.py +1 -1
  1422. pulumi_azure_native/network/v20231101/virtual_wan.py +1 -1
  1423. pulumi_azure_native/network/v20231101/vpn_connection.py +1 -1
  1424. pulumi_azure_native/network/v20231101/vpn_gateway.py +1 -1
  1425. pulumi_azure_native/network/v20231101/vpn_server_configuration.py +1 -1
  1426. pulumi_azure_native/network/v20231101/vpn_site.py +1 -1
  1427. pulumi_azure_native/network/v20231101/web_application_firewall_policy.py +1 -1
  1428. pulumi_azure_native/network/v20240101/__init__.py +212 -0
  1429. pulumi_azure_native/network/v20240101/_enums.py +1771 -0
  1430. pulumi_azure_native/network/v20240101/_inputs.py +20903 -0
  1431. pulumi_azure_native/network/v20240101/admin_rule.py +558 -0
  1432. pulumi_azure_native/network/v20240101/admin_rule_collection.py +296 -0
  1433. pulumi_azure_native/network/v20240101/application_gateway.py +1251 -0
  1434. pulumi_azure_native/network/v20240101/application_gateway_private_endpoint_connection.py +284 -0
  1435. pulumi_azure_native/network/v20240101/application_security_group.py +261 -0
  1436. pulumi_azure_native/network/v20240101/azure_firewall.py +612 -0
  1437. pulumi_azure_native/network/v20240101/bastion_host.py +680 -0
  1438. pulumi_azure_native/network/v20240101/configuration_policy_group.py +333 -0
  1439. pulumi_azure_native/network/v20240101/connection_monitor.py +574 -0
  1440. pulumi_azure_native/network/v20240101/connectivity_configuration.py +393 -0
  1441. pulumi_azure_native/network/v20240101/custom_ip_prefix.py +642 -0
  1442. pulumi_azure_native/network/v20240101/ddos_custom_policy.py +261 -0
  1443. pulumi_azure_native/network/v20240101/ddos_protection_plan.py +262 -0
  1444. pulumi_azure_native/network/v20240101/default_admin_rule.py +410 -0
  1445. pulumi_azure_native/network/v20240101/dscp_configuration.py +487 -0
  1446. pulumi_azure_native/network/v20240101/express_route_circuit.py +715 -0
  1447. pulumi_azure_native/network/v20240101/express_route_circuit_authorization.py +302 -0
  1448. pulumi_azure_native/network/v20240101/express_route_circuit_connection.py +411 -0
  1449. pulumi_azure_native/network/v20240101/express_route_circuit_peering.py +733 -0
  1450. pulumi_azure_native/network/v20240101/express_route_connection.py +421 -0
  1451. pulumi_azure_native/network/v20240101/express_route_cross_connection_peering.py +556 -0
  1452. pulumi_azure_native/network/v20240101/express_route_gateway.py +374 -0
  1453. pulumi_azure_native/network/v20240101/express_route_port.py +488 -0
  1454. pulumi_azure_native/network/v20240101/express_route_port_authorization.py +263 -0
  1455. pulumi_azure_native/network/v20240101/firewall_policy.py +642 -0
  1456. pulumi_azure_native/network/v20240101/firewall_policy_draft.py +496 -0
  1457. pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group.py +304 -0
  1458. pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group_draft.py +285 -0
  1459. pulumi_azure_native/network/v20240101/flow_log.py +490 -0
  1460. pulumi_azure_native/network/v20240101/get_active_sessions.py +92 -0
  1461. pulumi_azure_native/network/v20240101/get_admin_rule.py +303 -0
  1462. pulumi_azure_native/network/v20240101/get_admin_rule_collection.py +193 -0
  1463. pulumi_azure_native/network/v20240101/get_application_gateway.py +638 -0
  1464. pulumi_azure_native/network/v20240101/get_application_gateway_backend_health_on_demand.py +139 -0
  1465. pulumi_azure_native/network/v20240101/get_application_gateway_private_endpoint_connection.py +175 -0
  1466. pulumi_azure_native/network/v20240101/get_application_security_group.py +169 -0
  1467. pulumi_azure_native/network/v20240101/get_azure_firewall.py +326 -0
  1468. pulumi_azure_native/network/v20240101/get_bastion_host.py +336 -0
  1469. pulumi_azure_native/network/v20240101/get_bastion_shareable_link.py +98 -0
  1470. pulumi_azure_native/network/v20240101/get_configuration_policy_group.py +188 -0
  1471. pulumi_azure_native/network/v20240101/get_connection_monitor.py +318 -0
  1472. pulumi_azure_native/network/v20240101/get_connectivity_configuration.py +240 -0
  1473. pulumi_azure_native/network/v20240101/get_custom_ip_prefix.py +370 -0
  1474. pulumi_azure_native/network/v20240101/get_ddos_custom_policy.py +169 -0
  1475. pulumi_azure_native/network/v20240101/get_ddos_protection_plan.py +196 -0
  1476. pulumi_azure_native/network/v20240101/get_default_admin_rule.py +316 -0
  1477. pulumi_azure_native/network/v20240101/get_dscp_configuration.py +287 -0
  1478. pulumi_azure_native/network/v20240101/get_express_route_circuit.py +378 -0
  1479. pulumi_azure_native/network/v20240101/get_express_route_circuit_authorization.py +174 -0
  1480. pulumi_azure_native/network/v20240101/get_express_route_circuit_connection.py +219 -0
  1481. pulumi_azure_native/network/v20240101/get_express_route_circuit_peering.py +383 -0
  1482. pulumi_azure_native/network/v20240101/get_express_route_connection.py +201 -0
  1483. pulumi_azure_native/network/v20240101/get_express_route_cross_connection_peering.py +305 -0
  1484. pulumi_azure_native/network/v20240101/get_express_route_gateway.py +209 -0
  1485. pulumi_azure_native/network/v20240101/get_express_route_port.py +313 -0
  1486. pulumi_azure_native/network/v20240101/get_express_route_port_authorization.py +174 -0
  1487. pulumi_azure_native/network/v20240101/get_firewall_policy.py +370 -0
  1488. pulumi_azure_native/network/v20240101/get_firewall_policy_draft.py +248 -0
  1489. pulumi_azure_native/network/v20240101/get_firewall_policy_rule_collection_group.py +175 -0
  1490. pulumi_azure_native/network/v20240101/get_firewall_policy_rule_collection_group_draft.py +149 -0
  1491. pulumi_azure_native/network/v20240101/get_flow_log.py +266 -0
  1492. pulumi_azure_native/network/v20240101/get_hub_route_table.py +188 -0
  1493. pulumi_azure_native/network/v20240101/get_hub_virtual_network_connection.py +188 -0
  1494. pulumi_azure_native/network/v20240101/get_inbound_nat_rule.py +284 -0
  1495. pulumi_azure_native/network/v20240101/get_ip_allocation.py +240 -0
  1496. pulumi_azure_native/network/v20240101/get_ip_group.py +201 -0
  1497. pulumi_azure_native/network/v20240101/get_load_balancer.py +292 -0
  1498. pulumi_azure_native/network/v20240101/get_load_balancer_backend_address_pool.py +279 -0
  1499. pulumi_azure_native/network/v20240101/get_local_network_gateway.py +222 -0
  1500. pulumi_azure_native/network/v20240101/get_management_group_network_manager_connection.py +157 -0
  1501. pulumi_azure_native/network/v20240101/get_nat_gateway.py +253 -0
  1502. pulumi_azure_native/network/v20240101/get_nat_rule.py +214 -0
  1503. pulumi_azure_native/network/v20240101/get_network_group.py +175 -0
  1504. pulumi_azure_native/network/v20240101/get_network_interface.py +448 -0
  1505. pulumi_azure_native/network/v20240101/get_network_interface_tap_configuration.py +149 -0
  1506. pulumi_azure_native/network/v20240101/get_network_manager.py +222 -0
  1507. pulumi_azure_native/network/v20240101/get_network_profile.py +201 -0
  1508. pulumi_azure_native/network/v20240101/get_network_security_group.py +253 -0
  1509. pulumi_azure_native/network/v20240101/get_network_virtual_appliance.py +409 -0
  1510. pulumi_azure_native/network/v20240101/get_network_virtual_appliance_connection.py +175 -0
  1511. pulumi_azure_native/network/v20240101/get_network_watcher.py +156 -0
  1512. pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway.py +248 -0
  1513. pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +248 -0
  1514. pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +88 -0
  1515. pulumi_azure_native/network/v20240101/get_packet_capture.py +253 -0
  1516. pulumi_azure_native/network/v20240101/get_private_dns_zone_group.py +136 -0
  1517. pulumi_azure_native/network/v20240101/get_private_endpoint.py +279 -0
  1518. pulumi_azure_native/network/v20240101/get_private_link_service.py +292 -0
  1519. pulumi_azure_native/network/v20240101/get_private_link_service_private_endpoint_connection.py +193 -0
  1520. pulumi_azure_native/network/v20240101/get_public_ip_address.py +396 -0
  1521. pulumi_azure_native/network/v20240101/get_public_ip_prefix.py +318 -0
  1522. pulumi_azure_native/network/v20240101/get_route.py +187 -0
  1523. pulumi_azure_native/network/v20240101/get_route_filter.py +201 -0
  1524. pulumi_azure_native/network/v20240101/get_route_filter_rule.py +174 -0
  1525. pulumi_azure_native/network/v20240101/get_route_map.py +175 -0
  1526. pulumi_azure_native/network/v20240101/get_route_table.py +214 -0
  1527. pulumi_azure_native/network/v20240101/get_routing_intent.py +149 -0
  1528. pulumi_azure_native/network/v20240101/get_scope_connection.py +175 -0
  1529. pulumi_azure_native/network/v20240101/get_security_admin_configuration.py +188 -0
  1530. pulumi_azure_native/network/v20240101/get_security_partner_provider.py +196 -0
  1531. pulumi_azure_native/network/v20240101/get_security_rule.py +331 -0
  1532. pulumi_azure_native/network/v20240101/get_service_endpoint_policy.py +240 -0
  1533. pulumi_azure_native/network/v20240101/get_service_endpoint_policy_definition.py +174 -0
  1534. pulumi_azure_native/network/v20240101/get_static_member.py +180 -0
  1535. pulumi_azure_native/network/v20240101/get_subnet.py +401 -0
  1536. pulumi_azure_native/network/v20240101/get_subscription_network_manager_connection.py +152 -0
  1537. pulumi_azure_native/network/v20240101/get_virtual_appliance_site.py +162 -0
  1538. pulumi_azure_native/network/v20240101/get_virtual_hub.py +443 -0
  1539. pulumi_azure_native/network/v20240101/get_virtual_hub_bgp_connection.py +188 -0
  1540. pulumi_azure_native/network/v20240101/get_virtual_hub_ip_configuration.py +188 -0
  1541. pulumi_azure_native/network/v20240101/get_virtual_hub_route_table_v2.py +149 -0
  1542. pulumi_azure_native/network/v20240101/get_virtual_network.py +344 -0
  1543. pulumi_azure_native/network/v20240101/get_virtual_network_gateway.py +495 -0
  1544. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_advertised_routes.py +84 -0
  1545. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_bgp_peer_status.py +84 -0
  1546. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_connection.py +495 -0
  1547. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_connection_ike_sas.py +72 -0
  1548. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_learned_routes.py +79 -0
  1549. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_nat_rule.py +188 -0
  1550. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpn_profile_package_url.py +72 -0
  1551. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpnclient_connection_health.py +79 -0
  1552. pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +169 -0
  1553. pulumi_azure_native/network/v20240101/get_virtual_network_peering.py +383 -0
  1554. pulumi_azure_native/network/v20240101/get_virtual_network_tap.py +222 -0
  1555. pulumi_azure_native/network/v20240101/get_virtual_router.py +227 -0
  1556. pulumi_azure_native/network/v20240101/get_virtual_router_peering.py +161 -0
  1557. pulumi_azure_native/network/v20240101/get_virtual_wan.py +235 -0
  1558. pulumi_azure_native/network/v20240101/get_vpn_connection.py +357 -0
  1559. pulumi_azure_native/network/v20240101/get_vpn_gateway.py +261 -0
  1560. pulumi_azure_native/network/v20240101/get_vpn_link_connection_ike_sas.py +82 -0
  1561. pulumi_azure_native/network/v20240101/get_vpn_server_configuration.py +326 -0
  1562. pulumi_azure_native/network/v20240101/get_vpn_site.py +274 -0
  1563. pulumi_azure_native/network/v20240101/get_web_application_firewall_policy.py +248 -0
  1564. pulumi_azure_native/network/v20240101/hub_route_table.py +313 -0
  1565. pulumi_azure_native/network/v20240101/hub_virtual_network_connection.py +371 -0
  1566. pulumi_azure_native/network/v20240101/inbound_nat_rule.py +536 -0
  1567. pulumi_azure_native/network/v20240101/ip_allocation.py +431 -0
  1568. pulumi_azure_native/network/v20240101/ip_group.py +301 -0
  1569. pulumi_azure_native/network/v20240101/list_active_connectivity_configurations.py +107 -0
  1570. pulumi_azure_native/network/v20240101/list_active_security_admin_rules.py +107 -0
  1571. pulumi_azure_native/network/v20240101/list_firewall_policy_idps_signature.py +119 -0
  1572. pulumi_azure_native/network/v20240101/list_firewall_policy_idps_signatures_filter_value.py +83 -0
  1573. pulumi_azure_native/network/v20240101/list_network_manager_deployment_status.py +113 -0
  1574. pulumi_azure_native/network/v20240101/list_network_manager_effective_connectivity_configurations.py +102 -0
  1575. pulumi_azure_native/network/v20240101/list_network_manager_effective_security_admin_rules.py +102 -0
  1576. pulumi_azure_native/network/v20240101/load_balancer.py +531 -0
  1577. pulumi_azure_native/network/v20240101/load_balancer_backend_address_pool.py +460 -0
  1578. pulumi_azure_native/network/v20240101/local_network_gateway.py +379 -0
  1579. pulumi_azure_native/network/v20240101/management_group_network_manager_connection.py +232 -0
  1580. pulumi_azure_native/network/v20240101/nat_gateway.py +419 -0
  1581. pulumi_azure_native/network/v20240101/nat_rule.py +391 -0
  1582. pulumi_azure_native/network/v20240101/network_group.py +244 -0
  1583. pulumi_azure_native/network/v20240101/network_interface.py +721 -0
  1584. pulumi_azure_native/network/v20240101/network_interface_tap_configuration.py +265 -0
  1585. pulumi_azure_native/network/v20240101/network_manager.py +363 -0
  1586. pulumi_azure_native/network/v20240101/network_profile.py +303 -0
  1587. pulumi_azure_native/network/v20240101/network_security_group.py +365 -0
  1588. pulumi_azure_native/network/v20240101/network_virtual_appliance.py +672 -0
  1589. pulumi_azure_native/network/v20240101/network_virtual_appliance_connection.py +361 -0
  1590. pulumi_azure_native/network/v20240101/network_watcher.py +251 -0
  1591. pulumi_azure_native/network/v20240101/outputs.py +31010 -0
  1592. pulumi_azure_native/network/v20240101/p2s_vpn_gateway.py +438 -0
  1593. pulumi_azure_native/network/v20240101/packet_capture.py +491 -0
  1594. pulumi_azure_native/network/v20240101/private_dns_zone_group.py +254 -0
  1595. pulumi_azure_native/network/v20240101/private_endpoint.py +496 -0
  1596. pulumi_azure_native/network/v20240101/private_link_service.py +487 -0
  1597. pulumi_azure_native/network/v20240101/private_link_service_private_endpoint_connection.py +294 -0
  1598. pulumi_azure_native/network/v20240101/public_ip_address.py +738 -0
  1599. pulumi_azure_native/network/v20240101/public_ip_prefix.py +526 -0
  1600. pulumi_azure_native/network/v20240101/route.py +370 -0
  1601. pulumi_azure_native/network/v20240101/route_filter.py +306 -0
  1602. pulumi_azure_native/network/v20240101/route_filter_rule.py +343 -0
  1603. pulumi_azure_native/network/v20240101/route_map.py +304 -0
  1604. pulumi_azure_native/network/v20240101/route_table.py +335 -0
  1605. pulumi_azure_native/network/v20240101/routing_intent.py +264 -0
  1606. pulumi_azure_native/network/v20240101/scope_connection.py +282 -0
  1607. pulumi_azure_native/network/v20240101/security_admin_configuration.py +274 -0
  1608. pulumi_azure_native/network/v20240101/security_partner_provider.py +322 -0
  1609. pulumi_azure_native/network/v20240101/security_rule.py +694 -0
  1610. pulumi_azure_native/network/v20240101/service_endpoint_policy.py +373 -0
  1611. pulumi_azure_native/network/v20240101/service_endpoint_policy_definition.py +339 -0
  1612. pulumi_azure_native/network/v20240101/static_member.py +265 -0
  1613. pulumi_azure_native/network/v20240101/subnet.py +729 -0
  1614. pulumi_azure_native/network/v20240101/subscription_network_manager_connection.py +211 -0
  1615. pulumi_azure_native/network/v20240101/virtual_appliance_site.py +293 -0
  1616. pulumi_azure_native/network/v20240101/virtual_hub.py +800 -0
  1617. pulumi_azure_native/network/v20240101/virtual_hub_bgp_connection.py +332 -0
  1618. pulumi_azure_native/network/v20240101/virtual_hub_ip_configuration.py +352 -0
  1619. pulumi_azure_native/network/v20240101/virtual_hub_route_table_v2.py +283 -0
  1620. pulumi_azure_native/network/v20240101/virtual_network.py +636 -0
  1621. pulumi_azure_native/network/v20240101/virtual_network_gateway.py +973 -0
  1622. pulumi_azure_native/network/v20240101/virtual_network_gateway_connection.py +915 -0
  1623. pulumi_azure_native/network/v20240101/virtual_network_gateway_nat_rule.py +371 -0
  1624. pulumi_azure_native/network/v20240101/virtual_network_peering.py +788 -0
  1625. pulumi_azure_native/network/v20240101/virtual_network_tap.py +361 -0
  1626. pulumi_azure_native/network/v20240101/virtual_router.py +379 -0
  1627. pulumi_azure_native/network/v20240101/virtual_router_peering.py +291 -0
  1628. pulumi_azure_native/network/v20240101/virtual_wan.py +388 -0
  1629. pulumi_azure_native/network/v20240101/vpn_connection.py +691 -0
  1630. pulumi_azure_native/network/v20240101/vpn_gateway.py +473 -0
  1631. pulumi_azure_native/network/v20240101/vpn_server_configuration.py +634 -0
  1632. pulumi_azure_native/network/v20240101/vpn_site.py +514 -0
  1633. pulumi_azure_native/network/v20240101/web_application_firewall_policy.py +382 -0
  1634. pulumi_azure_native/network/virtual_appliance_site.py +3 -3
  1635. pulumi_azure_native/network/virtual_hub.py +3 -3
  1636. pulumi_azure_native/network/virtual_hub_bgp_connection.py +3 -3
  1637. pulumi_azure_native/network/virtual_hub_ip_configuration.py +3 -3
  1638. pulumi_azure_native/network/virtual_hub_route_table_v2.py +3 -3
  1639. pulumi_azure_native/network/virtual_network.py +3 -3
  1640. pulumi_azure_native/network/virtual_network_gateway.py +3 -3
  1641. pulumi_azure_native/network/virtual_network_gateway_connection.py +3 -3
  1642. pulumi_azure_native/network/virtual_network_gateway_nat_rule.py +3 -3
  1643. pulumi_azure_native/network/virtual_network_peering.py +3 -3
  1644. pulumi_azure_native/network/virtual_network_tap.py +3 -3
  1645. pulumi_azure_native/network/virtual_router.py +3 -3
  1646. pulumi_azure_native/network/virtual_router_peering.py +3 -3
  1647. pulumi_azure_native/network/virtual_wan.py +3 -3
  1648. pulumi_azure_native/network/vpn_connection.py +3 -3
  1649. pulumi_azure_native/network/vpn_gateway.py +3 -3
  1650. pulumi_azure_native/network/vpn_server_configuration.py +3 -3
  1651. pulumi_azure_native/network/vpn_site.py +3 -3
  1652. pulumi_azure_native/network/web_application_firewall_policy.py +3 -3
  1653. pulumi_azure_native/pulumi-plugin.json +1 -1
  1654. pulumi_azure_native/signalrservice/__init__.py +3 -0
  1655. pulumi_azure_native/signalrservice/get_signal_r.py +2 -2
  1656. pulumi_azure_native/signalrservice/get_signal_r_custom_certificate.py +2 -2
  1657. pulumi_azure_native/signalrservice/get_signal_r_custom_domain.py +2 -2
  1658. pulumi_azure_native/signalrservice/get_signal_r_private_endpoint_connection.py +2 -2
  1659. pulumi_azure_native/signalrservice/get_signal_r_replica.py +2 -2
  1660. pulumi_azure_native/signalrservice/get_signal_r_shared_private_link_resource.py +2 -2
  1661. pulumi_azure_native/signalrservice/list_signal_r_keys.py +2 -2
  1662. pulumi_azure_native/signalrservice/signal_r.py +3 -3
  1663. pulumi_azure_native/signalrservice/signal_r_custom_certificate.py +3 -3
  1664. pulumi_azure_native/signalrservice/signal_r_custom_domain.py +3 -3
  1665. pulumi_azure_native/signalrservice/signal_r_private_endpoint_connection.py +3 -3
  1666. pulumi_azure_native/signalrservice/signal_r_replica.py +3 -3
  1667. pulumi_azure_native/signalrservice/signal_r_shared_private_link_resource.py +3 -3
  1668. pulumi_azure_native/signalrservice/v20230201/signal_r.py +1 -1
  1669. pulumi_azure_native/signalrservice/v20230201/signal_r_custom_certificate.py +1 -1
  1670. pulumi_azure_native/signalrservice/v20230201/signal_r_custom_domain.py +1 -1
  1671. pulumi_azure_native/signalrservice/v20230201/signal_r_private_endpoint_connection.py +1 -1
  1672. pulumi_azure_native/signalrservice/v20230201/signal_r_shared_private_link_resource.py +1 -1
  1673. pulumi_azure_native/signalrservice/v20230301preview/signal_r.py +1 -1
  1674. pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_certificate.py +1 -1
  1675. pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_domain.py +1 -1
  1676. pulumi_azure_native/signalrservice/v20230301preview/signal_r_private_endpoint_connection.py +1 -1
  1677. pulumi_azure_native/signalrservice/v20230301preview/signal_r_replica.py +1 -1
  1678. pulumi_azure_native/signalrservice/v20230301preview/signal_r_shared_private_link_resource.py +1 -1
  1679. pulumi_azure_native/signalrservice/v20230601preview/signal_r.py +1 -1
  1680. pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_certificate.py +1 -1
  1681. pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_domain.py +1 -1
  1682. pulumi_azure_native/signalrservice/v20230601preview/signal_r_private_endpoint_connection.py +1 -1
  1683. pulumi_azure_native/signalrservice/v20230601preview/signal_r_replica.py +1 -1
  1684. pulumi_azure_native/signalrservice/v20230601preview/signal_r_shared_private_link_resource.py +1 -1
  1685. pulumi_azure_native/signalrservice/v20230801preview/signal_r.py +1 -1
  1686. pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_certificate.py +1 -1
  1687. pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_domain.py +1 -1
  1688. pulumi_azure_native/signalrservice/v20230801preview/signal_r_private_endpoint_connection.py +1 -1
  1689. pulumi_azure_native/signalrservice/v20230801preview/signal_r_replica.py +1 -1
  1690. pulumi_azure_native/signalrservice/v20230801preview/signal_r_shared_private_link_resource.py +1 -1
  1691. pulumi_azure_native/signalrservice/v20240101preview/signal_r.py +1 -1
  1692. pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_certificate.py +1 -1
  1693. pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_domain.py +1 -1
  1694. pulumi_azure_native/signalrservice/v20240101preview/signal_r_private_endpoint_connection.py +1 -1
  1695. pulumi_azure_native/signalrservice/v20240101preview/signal_r_replica.py +1 -1
  1696. pulumi_azure_native/signalrservice/v20240101preview/signal_r_shared_private_link_resource.py +1 -1
  1697. pulumi_azure_native/signalrservice/v20240301/signal_r.py +1 -1
  1698. pulumi_azure_native/signalrservice/v20240301/signal_r_custom_certificate.py +1 -1
  1699. pulumi_azure_native/signalrservice/v20240301/signal_r_custom_domain.py +1 -1
  1700. pulumi_azure_native/signalrservice/v20240301/signal_r_private_endpoint_connection.py +1 -1
  1701. pulumi_azure_native/signalrservice/v20240301/signal_r_replica.py +1 -1
  1702. pulumi_azure_native/signalrservice/v20240301/signal_r_shared_private_link_resource.py +1 -1
  1703. pulumi_azure_native/signalrservice/v20240401preview/__init__.py +23 -0
  1704. pulumi_azure_native/signalrservice/v20240401preview/_enums.py +102 -0
  1705. pulumi_azure_native/signalrservice/v20240401preview/_inputs.py +1162 -0
  1706. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r.py +497 -0
  1707. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_custom_certificate.py +175 -0
  1708. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_custom_domain.py +162 -0
  1709. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_private_endpoint_connection.py +175 -0
  1710. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_replica.py +204 -0
  1711. pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_shared_private_link_resource.py +188 -0
  1712. pulumi_azure_native/signalrservice/v20240401preview/list_signal_r_keys.py +117 -0
  1713. pulumi_azure_native/signalrservice/v20240401preview/outputs.py +1733 -0
  1714. pulumi_azure_native/signalrservice/v20240401preview/signal_r.py +887 -0
  1715. pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_certificate.py +284 -0
  1716. pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_domain.py +255 -0
  1717. pulumi_azure_native/signalrservice/v20240401preview/signal_r_private_endpoint_connection.py +265 -0
  1718. pulumi_azure_native/signalrservice/v20240401preview/signal_r_replica.py +362 -0
  1719. pulumi_azure_native/signalrservice/v20240401preview/signal_r_shared_private_link_resource.py +294 -0
  1720. pulumi_azure_native/webpubsub/__init__.py +3 -0
  1721. pulumi_azure_native/webpubsub/get_web_pub_sub.py +2 -2
  1722. pulumi_azure_native/webpubsub/get_web_pub_sub_custom_certificate.py +2 -2
  1723. pulumi_azure_native/webpubsub/get_web_pub_sub_custom_domain.py +2 -2
  1724. pulumi_azure_native/webpubsub/get_web_pub_sub_hub.py +2 -2
  1725. pulumi_azure_native/webpubsub/get_web_pub_sub_private_endpoint_connection.py +2 -2
  1726. pulumi_azure_native/webpubsub/get_web_pub_sub_replica.py +2 -2
  1727. pulumi_azure_native/webpubsub/get_web_pub_sub_shared_private_link_resource.py +2 -2
  1728. pulumi_azure_native/webpubsub/list_web_pub_sub_keys.py +2 -2
  1729. pulumi_azure_native/webpubsub/v20210401preview/web_pub_sub.py +1 -1
  1730. pulumi_azure_native/webpubsub/v20210601preview/web_pub_sub.py +1 -1
  1731. pulumi_azure_native/webpubsub/v20210901preview/web_pub_sub.py +1 -1
  1732. pulumi_azure_native/webpubsub/v20230201/web_pub_sub.py +1 -1
  1733. pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_certificate.py +1 -1
  1734. pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_domain.py +1 -1
  1735. pulumi_azure_native/webpubsub/v20230201/web_pub_sub_hub.py +1 -1
  1736. pulumi_azure_native/webpubsub/v20230201/web_pub_sub_private_endpoint_connection.py +1 -1
  1737. pulumi_azure_native/webpubsub/v20230201/web_pub_sub_shared_private_link_resource.py +1 -1
  1738. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub.py +1 -1
  1739. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_certificate.py +1 -1
  1740. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_domain.py +1 -1
  1741. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_hub.py +1 -1
  1742. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_private_endpoint_connection.py +1 -1
  1743. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_replica.py +1 -1
  1744. pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_shared_private_link_resource.py +1 -1
  1745. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub.py +1 -1
  1746. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_certificate.py +1 -1
  1747. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_domain.py +1 -1
  1748. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_hub.py +1 -1
  1749. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_private_endpoint_connection.py +1 -1
  1750. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_replica.py +1 -1
  1751. pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_shared_private_link_resource.py +1 -1
  1752. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub.py +1 -1
  1753. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_certificate.py +1 -1
  1754. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_domain.py +1 -1
  1755. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_hub.py +1 -1
  1756. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_private_endpoint_connection.py +1 -1
  1757. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_replica.py +1 -1
  1758. pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_shared_private_link_resource.py +1 -1
  1759. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub.py +1 -1
  1760. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_certificate.py +1 -1
  1761. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_domain.py +1 -1
  1762. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_hub.py +1 -1
  1763. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_private_endpoint_connection.py +1 -1
  1764. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_replica.py +1 -1
  1765. pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_shared_private_link_resource.py +1 -1
  1766. pulumi_azure_native/webpubsub/v20240301/web_pub_sub.py +1 -1
  1767. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_certificate.py +1 -1
  1768. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_domain.py +1 -1
  1769. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_hub.py +1 -1
  1770. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_private_endpoint_connection.py +1 -1
  1771. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_replica.py +1 -1
  1772. pulumi_azure_native/webpubsub/v20240301/web_pub_sub_shared_private_link_resource.py +1 -1
  1773. pulumi_azure_native/webpubsub/v20240401preview/__init__.py +25 -0
  1774. pulumi_azure_native/webpubsub/v20240401preview/_enums.py +97 -0
  1775. pulumi_azure_native/webpubsub/v20240401preview/_inputs.py +1249 -0
  1776. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub.py +453 -0
  1777. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_custom_certificate.py +175 -0
  1778. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_custom_domain.py +162 -0
  1779. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_hub.py +136 -0
  1780. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_private_endpoint_connection.py +175 -0
  1781. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_replica.py +204 -0
  1782. pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_shared_private_link_resource.py +188 -0
  1783. pulumi_azure_native/webpubsub/v20240401preview/list_web_pub_sub_keys.py +117 -0
  1784. pulumi_azure_native/webpubsub/v20240401preview/outputs.py +1841 -0
  1785. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub.py +780 -0
  1786. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_certificate.py +284 -0
  1787. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_domain.py +255 -0
  1788. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_hub.py +217 -0
  1789. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_private_endpoint_connection.py +265 -0
  1790. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_replica.py +362 -0
  1791. pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_shared_private_link_resource.py +294 -0
  1792. pulumi_azure_native/webpubsub/web_pub_sub.py +3 -3
  1793. pulumi_azure_native/webpubsub/web_pub_sub_custom_certificate.py +3 -3
  1794. pulumi_azure_native/webpubsub/web_pub_sub_custom_domain.py +3 -3
  1795. pulumi_azure_native/webpubsub/web_pub_sub_hub.py +3 -3
  1796. pulumi_azure_native/webpubsub/web_pub_sub_private_endpoint_connection.py +3 -3
  1797. pulumi_azure_native/webpubsub/web_pub_sub_replica.py +3 -3
  1798. pulumi_azure_native/webpubsub/web_pub_sub_shared_private_link_resource.py +3 -3
  1799. {pulumi_azure_native-2.47.0a1719221358.dist-info → pulumi_azure_native-2.47.1.dist-info}/METADATA +1 -1
  1800. {pulumi_azure_native-2.47.0a1719221358.dist-info → pulumi_azure_native-2.47.1.dist-info}/RECORD +1804 -1370
  1801. {pulumi_azure_native-2.47.0a1719221358.dist-info → pulumi_azure_native-2.47.1.dist-info}/WHEEL +1 -1
  1802. /pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/__init__.py +0 -0
  1803. /pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/_enums.py +0 -0
  1804. {pulumi_azure_native-2.47.0a1719221358.dist-info → pulumi_azure_native-2.47.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1841 @@
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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+
14
+ __all__ = [
15
+ 'ApplicationFirewallSettingsResponse',
16
+ 'EventHandlerResponse',
17
+ 'EventHubEndpointResponse',
18
+ 'EventListenerResponse',
19
+ 'EventNameFilterResponse',
20
+ 'IPRuleResponse',
21
+ 'LiveTraceCategoryResponse',
22
+ 'LiveTraceConfigurationResponse',
23
+ 'ManagedIdentityResponse',
24
+ 'ManagedIdentitySettingsResponse',
25
+ 'NetworkACLResponse',
26
+ 'PrivateEndpointACLResponse',
27
+ 'PrivateEndpointConnectionResponse',
28
+ 'PrivateEndpointResponse',
29
+ 'PrivateLinkServiceConnectionStateResponse',
30
+ 'ResourceLogCategoryResponse',
31
+ 'ResourceLogConfigurationResponse',
32
+ 'ResourceReferenceResponse',
33
+ 'ResourceSkuResponse',
34
+ 'SharedPrivateLinkResourceResponse',
35
+ 'SystemDataResponse',
36
+ 'ThrottleByJwtCustomClaimRuleResponse',
37
+ 'ThrottleByJwtSignatureRuleResponse',
38
+ 'ThrottleByUserIdRuleResponse',
39
+ 'UpstreamAuthSettingsResponse',
40
+ 'UserAssignedIdentityPropertyResponse',
41
+ 'WebPubSubHubPropertiesResponse',
42
+ 'WebPubSubNetworkACLsResponse',
43
+ 'WebPubSubSocketIOSettingsResponse',
44
+ 'WebPubSubTlsSettingsResponse',
45
+ ]
46
+
47
+ @pulumi.output_type
48
+ class ApplicationFirewallSettingsResponse(dict):
49
+ """
50
+ Application firewall settings for the resource
51
+ """
52
+ @staticmethod
53
+ def __key_warning(key: str):
54
+ suggest = None
55
+ if key == "clientConnectionCountRules":
56
+ suggest = "client_connection_count_rules"
57
+
58
+ if suggest:
59
+ pulumi.log.warn(f"Key '{key}' not found in ApplicationFirewallSettingsResponse. Access the value via the '{suggest}' property getter instead.")
60
+
61
+ def __getitem__(self, key: str) -> Any:
62
+ ApplicationFirewallSettingsResponse.__key_warning(key)
63
+ return super().__getitem__(key)
64
+
65
+ def get(self, key: str, default = None) -> Any:
66
+ ApplicationFirewallSettingsResponse.__key_warning(key)
67
+ return super().get(key, default)
68
+
69
+ def __init__(__self__, *,
70
+ client_connection_count_rules: Optional[Sequence[Any]] = None):
71
+ """
72
+ Application firewall settings for the resource
73
+ :param Sequence[Union['ThrottleByJwtCustomClaimRuleResponse', 'ThrottleByJwtSignatureRuleResponse', 'ThrottleByUserIdRuleResponse']] client_connection_count_rules: Rules to control the client connection count
74
+ """
75
+ if client_connection_count_rules is not None:
76
+ pulumi.set(__self__, "client_connection_count_rules", client_connection_count_rules)
77
+
78
+ @property
79
+ @pulumi.getter(name="clientConnectionCountRules")
80
+ def client_connection_count_rules(self) -> Optional[Sequence[Any]]:
81
+ """
82
+ Rules to control the client connection count
83
+ """
84
+ return pulumi.get(self, "client_connection_count_rules")
85
+
86
+
87
+ @pulumi.output_type
88
+ class EventHandlerResponse(dict):
89
+ """
90
+ Properties of event handler.
91
+ """
92
+ @staticmethod
93
+ def __key_warning(key: str):
94
+ suggest = None
95
+ if key == "urlTemplate":
96
+ suggest = "url_template"
97
+ elif key == "systemEvents":
98
+ suggest = "system_events"
99
+ elif key == "userEventPattern":
100
+ suggest = "user_event_pattern"
101
+
102
+ if suggest:
103
+ pulumi.log.warn(f"Key '{key}' not found in EventHandlerResponse. Access the value via the '{suggest}' property getter instead.")
104
+
105
+ def __getitem__(self, key: str) -> Any:
106
+ EventHandlerResponse.__key_warning(key)
107
+ return super().__getitem__(key)
108
+
109
+ def get(self, key: str, default = None) -> Any:
110
+ EventHandlerResponse.__key_warning(key)
111
+ return super().get(key, default)
112
+
113
+ def __init__(__self__, *,
114
+ url_template: str,
115
+ auth: Optional['outputs.UpstreamAuthSettingsResponse'] = None,
116
+ system_events: Optional[Sequence[str]] = None,
117
+ user_event_pattern: Optional[str] = None):
118
+ """
119
+ Properties of event handler.
120
+ :param str url_template: Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in.
121
+ For example, UrlTemplate can be `http://example.com/api/{hub}/{event}`. The host part can't contains parameters.
122
+ :param 'UpstreamAuthSettingsResponse' auth: Upstream auth settings. If not set, no auth is used for upstream messages.
123
+ :param Sequence[str] system_events: Gets or sets the list of system events.
124
+ :param str user_event_pattern: Gets or sets the matching pattern for event names.
125
+ There are 3 kinds of patterns supported:
126
+ 1. "*", it matches any event name
127
+ 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2"
128
+ 3. A single event name, for example, "event1", it matches "event1"
129
+ """
130
+ pulumi.set(__self__, "url_template", url_template)
131
+ if auth is not None:
132
+ pulumi.set(__self__, "auth", auth)
133
+ if system_events is not None:
134
+ pulumi.set(__self__, "system_events", system_events)
135
+ if user_event_pattern is not None:
136
+ pulumi.set(__self__, "user_event_pattern", user_event_pattern)
137
+
138
+ @property
139
+ @pulumi.getter(name="urlTemplate")
140
+ def url_template(self) -> str:
141
+ """
142
+ Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in.
143
+ For example, UrlTemplate can be `http://example.com/api/{hub}/{event}`. The host part can't contains parameters.
144
+ """
145
+ return pulumi.get(self, "url_template")
146
+
147
+ @property
148
+ @pulumi.getter
149
+ def auth(self) -> Optional['outputs.UpstreamAuthSettingsResponse']:
150
+ """
151
+ Upstream auth settings. If not set, no auth is used for upstream messages.
152
+ """
153
+ return pulumi.get(self, "auth")
154
+
155
+ @property
156
+ @pulumi.getter(name="systemEvents")
157
+ def system_events(self) -> Optional[Sequence[str]]:
158
+ """
159
+ Gets or sets the list of system events.
160
+ """
161
+ return pulumi.get(self, "system_events")
162
+
163
+ @property
164
+ @pulumi.getter(name="userEventPattern")
165
+ def user_event_pattern(self) -> Optional[str]:
166
+ """
167
+ Gets or sets the matching pattern for event names.
168
+ There are 3 kinds of patterns supported:
169
+ 1. "*", it matches any event name
170
+ 2. Combine multiple events with ",", for example "event1,event2", it matches event "event1" and "event2"
171
+ 3. A single event name, for example, "event1", it matches "event1"
172
+ """
173
+ return pulumi.get(self, "user_event_pattern")
174
+
175
+
176
+ @pulumi.output_type
177
+ class EventHubEndpointResponse(dict):
178
+ """
179
+ An Event Hub endpoint.
180
+ The managed identity of Web PubSub service must be enabled, and the identity should have the "Azure Event Hubs Data sender" role to access Event Hub.
181
+ """
182
+ @staticmethod
183
+ def __key_warning(key: str):
184
+ suggest = None
185
+ if key == "eventHubName":
186
+ suggest = "event_hub_name"
187
+ elif key == "fullyQualifiedNamespace":
188
+ suggest = "fully_qualified_namespace"
189
+
190
+ if suggest:
191
+ pulumi.log.warn(f"Key '{key}' not found in EventHubEndpointResponse. Access the value via the '{suggest}' property getter instead.")
192
+
193
+ def __getitem__(self, key: str) -> Any:
194
+ EventHubEndpointResponse.__key_warning(key)
195
+ return super().__getitem__(key)
196
+
197
+ def get(self, key: str, default = None) -> Any:
198
+ EventHubEndpointResponse.__key_warning(key)
199
+ return super().get(key, default)
200
+
201
+ def __init__(__self__, *,
202
+ event_hub_name: str,
203
+ fully_qualified_namespace: str,
204
+ type: str):
205
+ """
206
+ An Event Hub endpoint.
207
+ The managed identity of Web PubSub service must be enabled, and the identity should have the "Azure Event Hubs Data sender" role to access Event Hub.
208
+ :param str event_hub_name: The name of the Event Hub.
209
+ :param str fully_qualified_namespace: The fully qualified namespace name of the Event Hub resource. For example, "example.servicebus.windows.net".
210
+ :param str type:
211
+ Expected value is 'EventHub'.
212
+ """
213
+ pulumi.set(__self__, "event_hub_name", event_hub_name)
214
+ pulumi.set(__self__, "fully_qualified_namespace", fully_qualified_namespace)
215
+ pulumi.set(__self__, "type", 'EventHub')
216
+
217
+ @property
218
+ @pulumi.getter(name="eventHubName")
219
+ def event_hub_name(self) -> str:
220
+ """
221
+ The name of the Event Hub.
222
+ """
223
+ return pulumi.get(self, "event_hub_name")
224
+
225
+ @property
226
+ @pulumi.getter(name="fullyQualifiedNamespace")
227
+ def fully_qualified_namespace(self) -> str:
228
+ """
229
+ The fully qualified namespace name of the Event Hub resource. For example, "example.servicebus.windows.net".
230
+ """
231
+ return pulumi.get(self, "fully_qualified_namespace")
232
+
233
+ @property
234
+ @pulumi.getter
235
+ def type(self) -> str:
236
+ """
237
+
238
+ Expected value is 'EventHub'.
239
+ """
240
+ return pulumi.get(self, "type")
241
+
242
+
243
+ @pulumi.output_type
244
+ class EventListenerResponse(dict):
245
+ """
246
+ A setting defines which kinds of events should be sent to which endpoint.
247
+ """
248
+ def __init__(__self__, *,
249
+ endpoint: 'outputs.EventHubEndpointResponse',
250
+ filter: 'outputs.EventNameFilterResponse'):
251
+ """
252
+ A setting defines which kinds of events should be sent to which endpoint.
253
+ :param 'EventHubEndpointResponse' endpoint: An endpoint specifying where Web PubSub should send events to.
254
+ :param 'EventNameFilterResponse' filter: A base class for event filter which determines whether an event should be sent to an event listener.
255
+ """
256
+ pulumi.set(__self__, "endpoint", endpoint)
257
+ pulumi.set(__self__, "filter", filter)
258
+
259
+ @property
260
+ @pulumi.getter
261
+ def endpoint(self) -> 'outputs.EventHubEndpointResponse':
262
+ """
263
+ An endpoint specifying where Web PubSub should send events to.
264
+ """
265
+ return pulumi.get(self, "endpoint")
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def filter(self) -> 'outputs.EventNameFilterResponse':
270
+ """
271
+ A base class for event filter which determines whether an event should be sent to an event listener.
272
+ """
273
+ return pulumi.get(self, "filter")
274
+
275
+
276
+ @pulumi.output_type
277
+ class EventNameFilterResponse(dict):
278
+ """
279
+ Filter events by their name.
280
+ """
281
+ @staticmethod
282
+ def __key_warning(key: str):
283
+ suggest = None
284
+ if key == "systemEvents":
285
+ suggest = "system_events"
286
+ elif key == "userEventPattern":
287
+ suggest = "user_event_pattern"
288
+
289
+ if suggest:
290
+ pulumi.log.warn(f"Key '{key}' not found in EventNameFilterResponse. Access the value via the '{suggest}' property getter instead.")
291
+
292
+ def __getitem__(self, key: str) -> Any:
293
+ EventNameFilterResponse.__key_warning(key)
294
+ return super().__getitem__(key)
295
+
296
+ def get(self, key: str, default = None) -> Any:
297
+ EventNameFilterResponse.__key_warning(key)
298
+ return super().get(key, default)
299
+
300
+ def __init__(__self__, *,
301
+ type: str,
302
+ system_events: Optional[Sequence[str]] = None,
303
+ user_event_pattern: Optional[str] = None):
304
+ """
305
+ Filter events by their name.
306
+ :param str type:
307
+ Expected value is 'EventName'.
308
+ :param Sequence[str] system_events: Gets or sets a list of system events. Supported events: "connected" and "disconnected". Blocking event "connect" is not supported because it requires a response.
309
+ :param str user_event_pattern: Gets or sets a matching pattern for event names.
310
+ There are 3 kinds of patterns supported:
311
+ 1. "*", it matches any event name
312
+ 2. Combine multiple events with ",", for example "event1,event2", it matches events "event1" and "event2"
313
+ 3. A single event name, for example, "event1", it matches "event1"
314
+ """
315
+ pulumi.set(__self__, "type", 'EventName')
316
+ if system_events is not None:
317
+ pulumi.set(__self__, "system_events", system_events)
318
+ if user_event_pattern is not None:
319
+ pulumi.set(__self__, "user_event_pattern", user_event_pattern)
320
+
321
+ @property
322
+ @pulumi.getter
323
+ def type(self) -> str:
324
+ """
325
+
326
+ Expected value is 'EventName'.
327
+ """
328
+ return pulumi.get(self, "type")
329
+
330
+ @property
331
+ @pulumi.getter(name="systemEvents")
332
+ def system_events(self) -> Optional[Sequence[str]]:
333
+ """
334
+ Gets or sets a list of system events. Supported events: "connected" and "disconnected". Blocking event "connect" is not supported because it requires a response.
335
+ """
336
+ return pulumi.get(self, "system_events")
337
+
338
+ @property
339
+ @pulumi.getter(name="userEventPattern")
340
+ def user_event_pattern(self) -> Optional[str]:
341
+ """
342
+ Gets or sets a matching pattern for event names.
343
+ There are 3 kinds of patterns supported:
344
+ 1. "*", it matches any event name
345
+ 2. Combine multiple events with ",", for example "event1,event2", it matches events "event1" and "event2"
346
+ 3. A single event name, for example, "event1", it matches "event1"
347
+ """
348
+ return pulumi.get(self, "user_event_pattern")
349
+
350
+
351
+ @pulumi.output_type
352
+ class IPRuleResponse(dict):
353
+ """
354
+ An IP rule
355
+ """
356
+ def __init__(__self__, *,
357
+ action: Optional[str] = None,
358
+ value: Optional[str] = None):
359
+ """
360
+ An IP rule
361
+ :param str action: Azure Networking ACL Action.
362
+ :param str value: An IP or CIDR or ServiceTag
363
+ """
364
+ if action is not None:
365
+ pulumi.set(__self__, "action", action)
366
+ if value is not None:
367
+ pulumi.set(__self__, "value", value)
368
+
369
+ @property
370
+ @pulumi.getter
371
+ def action(self) -> Optional[str]:
372
+ """
373
+ Azure Networking ACL Action.
374
+ """
375
+ return pulumi.get(self, "action")
376
+
377
+ @property
378
+ @pulumi.getter
379
+ def value(self) -> Optional[str]:
380
+ """
381
+ An IP or CIDR or ServiceTag
382
+ """
383
+ return pulumi.get(self, "value")
384
+
385
+
386
+ @pulumi.output_type
387
+ class LiveTraceCategoryResponse(dict):
388
+ """
389
+ Live trace category configuration of a Microsoft.SignalRService resource.
390
+ """
391
+ def __init__(__self__, *,
392
+ enabled: Optional[str] = None,
393
+ name: Optional[str] = None):
394
+ """
395
+ Live trace category configuration of a Microsoft.SignalRService resource.
396
+ :param str enabled: Indicates whether or the live trace category is enabled.
397
+ Available values: true, false.
398
+ Case insensitive.
399
+ :param str name: Gets or sets the live trace category's name.
400
+ Available values: ConnectivityLogs, MessagingLogs.
401
+ Case insensitive.
402
+ """
403
+ if enabled is not None:
404
+ pulumi.set(__self__, "enabled", enabled)
405
+ if name is not None:
406
+ pulumi.set(__self__, "name", name)
407
+
408
+ @property
409
+ @pulumi.getter
410
+ def enabled(self) -> Optional[str]:
411
+ """
412
+ Indicates whether or the live trace category is enabled.
413
+ Available values: true, false.
414
+ Case insensitive.
415
+ """
416
+ return pulumi.get(self, "enabled")
417
+
418
+ @property
419
+ @pulumi.getter
420
+ def name(self) -> Optional[str]:
421
+ """
422
+ Gets or sets the live trace category's name.
423
+ Available values: ConnectivityLogs, MessagingLogs.
424
+ Case insensitive.
425
+ """
426
+ return pulumi.get(self, "name")
427
+
428
+
429
+ @pulumi.output_type
430
+ class LiveTraceConfigurationResponse(dict):
431
+ """
432
+ Live trace configuration of a Microsoft.SignalRService resource.
433
+ """
434
+ def __init__(__self__, *,
435
+ categories: Optional[Sequence['outputs.LiveTraceCategoryResponse']] = None,
436
+ enabled: Optional[str] = None):
437
+ """
438
+ Live trace configuration of a Microsoft.SignalRService resource.
439
+ :param Sequence['LiveTraceCategoryResponse'] categories: Gets or sets the list of category configurations.
440
+ :param str enabled: Indicates whether or not enable live trace.
441
+ When it's set to true, live trace client can connect to the service.
442
+ Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories".
443
+ Available values: true, false.
444
+ Case insensitive.
445
+ """
446
+ if categories is not None:
447
+ pulumi.set(__self__, "categories", categories)
448
+ if enabled is None:
449
+ enabled = 'false'
450
+ if enabled is not None:
451
+ pulumi.set(__self__, "enabled", enabled)
452
+
453
+ @property
454
+ @pulumi.getter
455
+ def categories(self) -> Optional[Sequence['outputs.LiveTraceCategoryResponse']]:
456
+ """
457
+ Gets or sets the list of category configurations.
458
+ """
459
+ return pulumi.get(self, "categories")
460
+
461
+ @property
462
+ @pulumi.getter
463
+ def enabled(self) -> Optional[str]:
464
+ """
465
+ Indicates whether or not enable live trace.
466
+ When it's set to true, live trace client can connect to the service.
467
+ Otherwise, live trace client can't connect to the service, so that you are unable to receive any log, no matter what you configure in "categories".
468
+ Available values: true, false.
469
+ Case insensitive.
470
+ """
471
+ return pulumi.get(self, "enabled")
472
+
473
+
474
+ @pulumi.output_type
475
+ class ManagedIdentityResponse(dict):
476
+ """
477
+ A class represent managed identities used for request and response
478
+ """
479
+ @staticmethod
480
+ def __key_warning(key: str):
481
+ suggest = None
482
+ if key == "principalId":
483
+ suggest = "principal_id"
484
+ elif key == "tenantId":
485
+ suggest = "tenant_id"
486
+ elif key == "userAssignedIdentities":
487
+ suggest = "user_assigned_identities"
488
+
489
+ if suggest:
490
+ pulumi.log.warn(f"Key '{key}' not found in ManagedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
491
+
492
+ def __getitem__(self, key: str) -> Any:
493
+ ManagedIdentityResponse.__key_warning(key)
494
+ return super().__getitem__(key)
495
+
496
+ def get(self, key: str, default = None) -> Any:
497
+ ManagedIdentityResponse.__key_warning(key)
498
+ return super().get(key, default)
499
+
500
+ def __init__(__self__, *,
501
+ principal_id: str,
502
+ tenant_id: str,
503
+ type: Optional[str] = None,
504
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityPropertyResponse']] = None):
505
+ """
506
+ A class represent managed identities used for request and response
507
+ :param str principal_id: Get the principal id for the system assigned identity.
508
+ Only be used in response.
509
+ :param str tenant_id: Get the tenant id for the system assigned identity.
510
+ Only be used in response
511
+ :param str type: Represents the identity type: systemAssigned, userAssigned, None
512
+ :param Mapping[str, 'UserAssignedIdentityPropertyResponse'] user_assigned_identities: Get or set the user assigned identities
513
+ """
514
+ pulumi.set(__self__, "principal_id", principal_id)
515
+ pulumi.set(__self__, "tenant_id", tenant_id)
516
+ if type is not None:
517
+ pulumi.set(__self__, "type", type)
518
+ if user_assigned_identities is not None:
519
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
520
+
521
+ @property
522
+ @pulumi.getter(name="principalId")
523
+ def principal_id(self) -> str:
524
+ """
525
+ Get the principal id for the system assigned identity.
526
+ Only be used in response.
527
+ """
528
+ return pulumi.get(self, "principal_id")
529
+
530
+ @property
531
+ @pulumi.getter(name="tenantId")
532
+ def tenant_id(self) -> str:
533
+ """
534
+ Get the tenant id for the system assigned identity.
535
+ Only be used in response
536
+ """
537
+ return pulumi.get(self, "tenant_id")
538
+
539
+ @property
540
+ @pulumi.getter
541
+ def type(self) -> Optional[str]:
542
+ """
543
+ Represents the identity type: systemAssigned, userAssigned, None
544
+ """
545
+ return pulumi.get(self, "type")
546
+
547
+ @property
548
+ @pulumi.getter(name="userAssignedIdentities")
549
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityPropertyResponse']]:
550
+ """
551
+ Get or set the user assigned identities
552
+ """
553
+ return pulumi.get(self, "user_assigned_identities")
554
+
555
+
556
+ @pulumi.output_type
557
+ class ManagedIdentitySettingsResponse(dict):
558
+ """
559
+ Managed identity settings for upstream.
560
+ """
561
+ def __init__(__self__, *,
562
+ resource: Optional[str] = None):
563
+ """
564
+ Managed identity settings for upstream.
565
+ :param str resource: The Resource indicating the App ID URI of the target resource.
566
+ It also appears in the aud (audience) claim of the issued token.
567
+ """
568
+ if resource is not None:
569
+ pulumi.set(__self__, "resource", resource)
570
+
571
+ @property
572
+ @pulumi.getter
573
+ def resource(self) -> Optional[str]:
574
+ """
575
+ The Resource indicating the App ID URI of the target resource.
576
+ It also appears in the aud (audience) claim of the issued token.
577
+ """
578
+ return pulumi.get(self, "resource")
579
+
580
+
581
+ @pulumi.output_type
582
+ class NetworkACLResponse(dict):
583
+ """
584
+ Network ACL
585
+ """
586
+ def __init__(__self__, *,
587
+ allow: Optional[Sequence[str]] = None,
588
+ deny: Optional[Sequence[str]] = None):
589
+ """
590
+ Network ACL
591
+ :param Sequence[str] allow: Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
592
+ :param Sequence[str] deny: Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
593
+ """
594
+ if allow is not None:
595
+ pulumi.set(__self__, "allow", allow)
596
+ if deny is not None:
597
+ pulumi.set(__self__, "deny", deny)
598
+
599
+ @property
600
+ @pulumi.getter
601
+ def allow(self) -> Optional[Sequence[str]]:
602
+ """
603
+ Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
604
+ """
605
+ return pulumi.get(self, "allow")
606
+
607
+ @property
608
+ @pulumi.getter
609
+ def deny(self) -> Optional[Sequence[str]]:
610
+ """
611
+ Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
612
+ """
613
+ return pulumi.get(self, "deny")
614
+
615
+
616
+ @pulumi.output_type
617
+ class PrivateEndpointACLResponse(dict):
618
+ """
619
+ ACL for a private endpoint
620
+ """
621
+ def __init__(__self__, *,
622
+ name: str,
623
+ allow: Optional[Sequence[str]] = None,
624
+ deny: Optional[Sequence[str]] = None):
625
+ """
626
+ ACL for a private endpoint
627
+ :param str name: Name of the private endpoint connection
628
+ :param Sequence[str] allow: Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
629
+ :param Sequence[str] deny: Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
630
+ """
631
+ pulumi.set(__self__, "name", name)
632
+ if allow is not None:
633
+ pulumi.set(__self__, "allow", allow)
634
+ if deny is not None:
635
+ pulumi.set(__self__, "deny", deny)
636
+
637
+ @property
638
+ @pulumi.getter
639
+ def name(self) -> str:
640
+ """
641
+ Name of the private endpoint connection
642
+ """
643
+ return pulumi.get(self, "name")
644
+
645
+ @property
646
+ @pulumi.getter
647
+ def allow(self) -> Optional[Sequence[str]]:
648
+ """
649
+ Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
650
+ """
651
+ return pulumi.get(self, "allow")
652
+
653
+ @property
654
+ @pulumi.getter
655
+ def deny(self) -> Optional[Sequence[str]]:
656
+ """
657
+ Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
658
+ """
659
+ return pulumi.get(self, "deny")
660
+
661
+
662
+ @pulumi.output_type
663
+ class PrivateEndpointConnectionResponse(dict):
664
+ """
665
+ A private endpoint connection to an azure resource
666
+ """
667
+ @staticmethod
668
+ def __key_warning(key: str):
669
+ suggest = None
670
+ if key == "groupIds":
671
+ suggest = "group_ids"
672
+ elif key == "provisioningState":
673
+ suggest = "provisioning_state"
674
+ elif key == "systemData":
675
+ suggest = "system_data"
676
+ elif key == "privateEndpoint":
677
+ suggest = "private_endpoint"
678
+ elif key == "privateLinkServiceConnectionState":
679
+ suggest = "private_link_service_connection_state"
680
+
681
+ if suggest:
682
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
683
+
684
+ def __getitem__(self, key: str) -> Any:
685
+ PrivateEndpointConnectionResponse.__key_warning(key)
686
+ return super().__getitem__(key)
687
+
688
+ def get(self, key: str, default = None) -> Any:
689
+ PrivateEndpointConnectionResponse.__key_warning(key)
690
+ return super().get(key, default)
691
+
692
+ def __init__(__self__, *,
693
+ group_ids: Sequence[str],
694
+ id: str,
695
+ name: str,
696
+ provisioning_state: str,
697
+ system_data: 'outputs.SystemDataResponse',
698
+ type: str,
699
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None,
700
+ private_link_service_connection_state: Optional['outputs.PrivateLinkServiceConnectionStateResponse'] = None):
701
+ """
702
+ A private endpoint connection to an azure resource
703
+ :param Sequence[str] group_ids: Group IDs
704
+ :param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
705
+ :param str name: The name of the resource
706
+ :param str provisioning_state: Provisioning state of the resource.
707
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
708
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
709
+ :param 'PrivateEndpointResponse' private_endpoint: Private endpoint
710
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: Connection state of the private endpoint connection
711
+ """
712
+ pulumi.set(__self__, "group_ids", group_ids)
713
+ pulumi.set(__self__, "id", id)
714
+ pulumi.set(__self__, "name", name)
715
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
716
+ pulumi.set(__self__, "system_data", system_data)
717
+ pulumi.set(__self__, "type", type)
718
+ if private_endpoint is not None:
719
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
720
+ if private_link_service_connection_state is not None:
721
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
722
+
723
+ @property
724
+ @pulumi.getter(name="groupIds")
725
+ def group_ids(self) -> Sequence[str]:
726
+ """
727
+ Group IDs
728
+ """
729
+ return pulumi.get(self, "group_ids")
730
+
731
+ @property
732
+ @pulumi.getter
733
+ def id(self) -> str:
734
+ """
735
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
736
+ """
737
+ return pulumi.get(self, "id")
738
+
739
+ @property
740
+ @pulumi.getter
741
+ def name(self) -> str:
742
+ """
743
+ The name of the resource
744
+ """
745
+ return pulumi.get(self, "name")
746
+
747
+ @property
748
+ @pulumi.getter(name="provisioningState")
749
+ def provisioning_state(self) -> str:
750
+ """
751
+ Provisioning state of the resource.
752
+ """
753
+ return pulumi.get(self, "provisioning_state")
754
+
755
+ @property
756
+ @pulumi.getter(name="systemData")
757
+ def system_data(self) -> 'outputs.SystemDataResponse':
758
+ """
759
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
760
+ """
761
+ return pulumi.get(self, "system_data")
762
+
763
+ @property
764
+ @pulumi.getter
765
+ def type(self) -> str:
766
+ """
767
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
768
+ """
769
+ return pulumi.get(self, "type")
770
+
771
+ @property
772
+ @pulumi.getter(name="privateEndpoint")
773
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
774
+ """
775
+ Private endpoint
776
+ """
777
+ return pulumi.get(self, "private_endpoint")
778
+
779
+ @property
780
+ @pulumi.getter(name="privateLinkServiceConnectionState")
781
+ def private_link_service_connection_state(self) -> Optional['outputs.PrivateLinkServiceConnectionStateResponse']:
782
+ """
783
+ Connection state of the private endpoint connection
784
+ """
785
+ return pulumi.get(self, "private_link_service_connection_state")
786
+
787
+
788
+ @pulumi.output_type
789
+ class PrivateEndpointResponse(dict):
790
+ """
791
+ Private endpoint
792
+ """
793
+ def __init__(__self__, *,
794
+ id: Optional[str] = None):
795
+ """
796
+ Private endpoint
797
+ :param str id: Full qualified Id of the private endpoint
798
+ """
799
+ if id is not None:
800
+ pulumi.set(__self__, "id", id)
801
+
802
+ @property
803
+ @pulumi.getter
804
+ def id(self) -> Optional[str]:
805
+ """
806
+ Full qualified Id of the private endpoint
807
+ """
808
+ return pulumi.get(self, "id")
809
+
810
+
811
+ @pulumi.output_type
812
+ class PrivateLinkServiceConnectionStateResponse(dict):
813
+ """
814
+ Connection state of the private endpoint connection
815
+ """
816
+ @staticmethod
817
+ def __key_warning(key: str):
818
+ suggest = None
819
+ if key == "actionsRequired":
820
+ suggest = "actions_required"
821
+
822
+ if suggest:
823
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
824
+
825
+ def __getitem__(self, key: str) -> Any:
826
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
827
+ return super().__getitem__(key)
828
+
829
+ def get(self, key: str, default = None) -> Any:
830
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
831
+ return super().get(key, default)
832
+
833
+ def __init__(__self__, *,
834
+ actions_required: Optional[str] = None,
835
+ description: Optional[str] = None,
836
+ status: Optional[str] = None):
837
+ """
838
+ Connection state of the private endpoint connection
839
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
840
+ :param str description: The reason for approval/rejection of the connection.
841
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
842
+ """
843
+ if actions_required is not None:
844
+ pulumi.set(__self__, "actions_required", actions_required)
845
+ if description is not None:
846
+ pulumi.set(__self__, "description", description)
847
+ if status is not None:
848
+ pulumi.set(__self__, "status", status)
849
+
850
+ @property
851
+ @pulumi.getter(name="actionsRequired")
852
+ def actions_required(self) -> Optional[str]:
853
+ """
854
+ A message indicating if changes on the service provider require any updates on the consumer.
855
+ """
856
+ return pulumi.get(self, "actions_required")
857
+
858
+ @property
859
+ @pulumi.getter
860
+ def description(self) -> Optional[str]:
861
+ """
862
+ The reason for approval/rejection of the connection.
863
+ """
864
+ return pulumi.get(self, "description")
865
+
866
+ @property
867
+ @pulumi.getter
868
+ def status(self) -> Optional[str]:
869
+ """
870
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
871
+ """
872
+ return pulumi.get(self, "status")
873
+
874
+
875
+ @pulumi.output_type
876
+ class ResourceLogCategoryResponse(dict):
877
+ """
878
+ Resource log category configuration of a Microsoft.SignalRService resource.
879
+ """
880
+ def __init__(__self__, *,
881
+ enabled: Optional[str] = None,
882
+ name: Optional[str] = None):
883
+ """
884
+ Resource log category configuration of a Microsoft.SignalRService resource.
885
+ :param str enabled: Indicates whether or the resource log category is enabled.
886
+ Available values: true, false.
887
+ Case insensitive.
888
+ :param str name: Gets or sets the resource log category's name.
889
+ Available values: ConnectivityLogs, MessagingLogs.
890
+ Case insensitive.
891
+ """
892
+ if enabled is not None:
893
+ pulumi.set(__self__, "enabled", enabled)
894
+ if name is not None:
895
+ pulumi.set(__self__, "name", name)
896
+
897
+ @property
898
+ @pulumi.getter
899
+ def enabled(self) -> Optional[str]:
900
+ """
901
+ Indicates whether or the resource log category is enabled.
902
+ Available values: true, false.
903
+ Case insensitive.
904
+ """
905
+ return pulumi.get(self, "enabled")
906
+
907
+ @property
908
+ @pulumi.getter
909
+ def name(self) -> Optional[str]:
910
+ """
911
+ Gets or sets the resource log category's name.
912
+ Available values: ConnectivityLogs, MessagingLogs.
913
+ Case insensitive.
914
+ """
915
+ return pulumi.get(self, "name")
916
+
917
+
918
+ @pulumi.output_type
919
+ class ResourceLogConfigurationResponse(dict):
920
+ """
921
+ Resource log configuration of a Microsoft.SignalRService resource.
922
+ """
923
+ def __init__(__self__, *,
924
+ categories: Optional[Sequence['outputs.ResourceLogCategoryResponse']] = None):
925
+ """
926
+ Resource log configuration of a Microsoft.SignalRService resource.
927
+ :param Sequence['ResourceLogCategoryResponse'] categories: Gets or sets the list of category configurations.
928
+ """
929
+ if categories is not None:
930
+ pulumi.set(__self__, "categories", categories)
931
+
932
+ @property
933
+ @pulumi.getter
934
+ def categories(self) -> Optional[Sequence['outputs.ResourceLogCategoryResponse']]:
935
+ """
936
+ Gets or sets the list of category configurations.
937
+ """
938
+ return pulumi.get(self, "categories")
939
+
940
+
941
+ @pulumi.output_type
942
+ class ResourceReferenceResponse(dict):
943
+ """
944
+ Reference to a resource.
945
+ """
946
+ def __init__(__self__, *,
947
+ id: Optional[str] = None):
948
+ """
949
+ Reference to a resource.
950
+ :param str id: Resource ID.
951
+ """
952
+ if id is not None:
953
+ pulumi.set(__self__, "id", id)
954
+
955
+ @property
956
+ @pulumi.getter
957
+ def id(self) -> Optional[str]:
958
+ """
959
+ Resource ID.
960
+ """
961
+ return pulumi.get(self, "id")
962
+
963
+
964
+ @pulumi.output_type
965
+ class ResourceSkuResponse(dict):
966
+ """
967
+ The billing information of the resource.
968
+ """
969
+ def __init__(__self__, *,
970
+ family: str,
971
+ name: str,
972
+ size: str,
973
+ capacity: Optional[int] = None,
974
+ tier: Optional[str] = None):
975
+ """
976
+ The billing information of the resource.
977
+ :param str family: Not used. Retained for future use.
978
+ :param str name: The name of the SKU. Required.
979
+
980
+ Allowed values: Standard_S1, Free_F1, Premium_P1, Premium_P2
981
+ :param str size: Not used. Retained for future use.
982
+ :param int capacity: Optional, integer. The unit count of the resource.
983
+ 1 for Free_F1/Standard_S1/Premium_P1, 100 for Premium_P2 by default.
984
+
985
+ If present, following values are allowed:
986
+ Free_F1: 1;
987
+ Standard_S1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
988
+ Premium_P1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
989
+ Premium_P2: 100,200,300,400,500,600,700,800,900,1000;
990
+ :param str tier: Optional tier of this particular SKU. 'Standard' or 'Free'.
991
+
992
+ `Basic` is deprecated, use `Standard` instead.
993
+ """
994
+ pulumi.set(__self__, "family", family)
995
+ pulumi.set(__self__, "name", name)
996
+ pulumi.set(__self__, "size", size)
997
+ if capacity is not None:
998
+ pulumi.set(__self__, "capacity", capacity)
999
+ if tier is not None:
1000
+ pulumi.set(__self__, "tier", tier)
1001
+
1002
+ @property
1003
+ @pulumi.getter
1004
+ def family(self) -> str:
1005
+ """
1006
+ Not used. Retained for future use.
1007
+ """
1008
+ return pulumi.get(self, "family")
1009
+
1010
+ @property
1011
+ @pulumi.getter
1012
+ def name(self) -> str:
1013
+ """
1014
+ The name of the SKU. Required.
1015
+
1016
+ Allowed values: Standard_S1, Free_F1, Premium_P1, Premium_P2
1017
+ """
1018
+ return pulumi.get(self, "name")
1019
+
1020
+ @property
1021
+ @pulumi.getter
1022
+ def size(self) -> str:
1023
+ """
1024
+ Not used. Retained for future use.
1025
+ """
1026
+ return pulumi.get(self, "size")
1027
+
1028
+ @property
1029
+ @pulumi.getter
1030
+ def capacity(self) -> Optional[int]:
1031
+ """
1032
+ Optional, integer. The unit count of the resource.
1033
+ 1 for Free_F1/Standard_S1/Premium_P1, 100 for Premium_P2 by default.
1034
+
1035
+ If present, following values are allowed:
1036
+ Free_F1: 1;
1037
+ Standard_S1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
1038
+ Premium_P1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
1039
+ Premium_P2: 100,200,300,400,500,600,700,800,900,1000;
1040
+ """
1041
+ return pulumi.get(self, "capacity")
1042
+
1043
+ @property
1044
+ @pulumi.getter
1045
+ def tier(self) -> Optional[str]:
1046
+ """
1047
+ Optional tier of this particular SKU. 'Standard' or 'Free'.
1048
+
1049
+ `Basic` is deprecated, use `Standard` instead.
1050
+ """
1051
+ return pulumi.get(self, "tier")
1052
+
1053
+
1054
+ @pulumi.output_type
1055
+ class SharedPrivateLinkResourceResponse(dict):
1056
+ """
1057
+ Describes a Shared Private Link Resource
1058
+ """
1059
+ @staticmethod
1060
+ def __key_warning(key: str):
1061
+ suggest = None
1062
+ if key == "groupId":
1063
+ suggest = "group_id"
1064
+ elif key == "privateLinkResourceId":
1065
+ suggest = "private_link_resource_id"
1066
+ elif key == "provisioningState":
1067
+ suggest = "provisioning_state"
1068
+ elif key == "systemData":
1069
+ suggest = "system_data"
1070
+ elif key == "requestMessage":
1071
+ suggest = "request_message"
1072
+
1073
+ if suggest:
1074
+ pulumi.log.warn(f"Key '{key}' not found in SharedPrivateLinkResourceResponse. Access the value via the '{suggest}' property getter instead.")
1075
+
1076
+ def __getitem__(self, key: str) -> Any:
1077
+ SharedPrivateLinkResourceResponse.__key_warning(key)
1078
+ return super().__getitem__(key)
1079
+
1080
+ def get(self, key: str, default = None) -> Any:
1081
+ SharedPrivateLinkResourceResponse.__key_warning(key)
1082
+ return super().get(key, default)
1083
+
1084
+ def __init__(__self__, *,
1085
+ group_id: str,
1086
+ id: str,
1087
+ name: str,
1088
+ private_link_resource_id: str,
1089
+ provisioning_state: str,
1090
+ status: str,
1091
+ system_data: 'outputs.SystemDataResponse',
1092
+ type: str,
1093
+ request_message: Optional[str] = None):
1094
+ """
1095
+ Describes a Shared Private Link Resource
1096
+ :param str group_id: The group id from the provider of resource the shared private link resource is for
1097
+ :param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
1098
+ :param str name: The name of the resource
1099
+ :param str private_link_resource_id: The resource id of the resource the shared private link resource is for
1100
+ :param str provisioning_state: Provisioning state of the resource.
1101
+ :param str status: Status of the shared private link resource
1102
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
1103
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1104
+ :param str request_message: The request message for requesting approval of the shared private link resource
1105
+ """
1106
+ pulumi.set(__self__, "group_id", group_id)
1107
+ pulumi.set(__self__, "id", id)
1108
+ pulumi.set(__self__, "name", name)
1109
+ pulumi.set(__self__, "private_link_resource_id", private_link_resource_id)
1110
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1111
+ pulumi.set(__self__, "status", status)
1112
+ pulumi.set(__self__, "system_data", system_data)
1113
+ pulumi.set(__self__, "type", type)
1114
+ if request_message is not None:
1115
+ pulumi.set(__self__, "request_message", request_message)
1116
+
1117
+ @property
1118
+ @pulumi.getter(name="groupId")
1119
+ def group_id(self) -> str:
1120
+ """
1121
+ The group id from the provider of resource the shared private link resource is for
1122
+ """
1123
+ return pulumi.get(self, "group_id")
1124
+
1125
+ @property
1126
+ @pulumi.getter
1127
+ def id(self) -> str:
1128
+ """
1129
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
1130
+ """
1131
+ return pulumi.get(self, "id")
1132
+
1133
+ @property
1134
+ @pulumi.getter
1135
+ def name(self) -> str:
1136
+ """
1137
+ The name of the resource
1138
+ """
1139
+ return pulumi.get(self, "name")
1140
+
1141
+ @property
1142
+ @pulumi.getter(name="privateLinkResourceId")
1143
+ def private_link_resource_id(self) -> str:
1144
+ """
1145
+ The resource id of the resource the shared private link resource is for
1146
+ """
1147
+ return pulumi.get(self, "private_link_resource_id")
1148
+
1149
+ @property
1150
+ @pulumi.getter(name="provisioningState")
1151
+ def provisioning_state(self) -> str:
1152
+ """
1153
+ Provisioning state of the resource.
1154
+ """
1155
+ return pulumi.get(self, "provisioning_state")
1156
+
1157
+ @property
1158
+ @pulumi.getter
1159
+ def status(self) -> str:
1160
+ """
1161
+ Status of the shared private link resource
1162
+ """
1163
+ return pulumi.get(self, "status")
1164
+
1165
+ @property
1166
+ @pulumi.getter(name="systemData")
1167
+ def system_data(self) -> 'outputs.SystemDataResponse':
1168
+ """
1169
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
1170
+ """
1171
+ return pulumi.get(self, "system_data")
1172
+
1173
+ @property
1174
+ @pulumi.getter
1175
+ def type(self) -> str:
1176
+ """
1177
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1178
+ """
1179
+ return pulumi.get(self, "type")
1180
+
1181
+ @property
1182
+ @pulumi.getter(name="requestMessage")
1183
+ def request_message(self) -> Optional[str]:
1184
+ """
1185
+ The request message for requesting approval of the shared private link resource
1186
+ """
1187
+ return pulumi.get(self, "request_message")
1188
+
1189
+
1190
+ @pulumi.output_type
1191
+ class SystemDataResponse(dict):
1192
+ """
1193
+ Metadata pertaining to creation and last modification of the resource.
1194
+ """
1195
+ @staticmethod
1196
+ def __key_warning(key: str):
1197
+ suggest = None
1198
+ if key == "createdAt":
1199
+ suggest = "created_at"
1200
+ elif key == "createdBy":
1201
+ suggest = "created_by"
1202
+ elif key == "createdByType":
1203
+ suggest = "created_by_type"
1204
+ elif key == "lastModifiedAt":
1205
+ suggest = "last_modified_at"
1206
+ elif key == "lastModifiedBy":
1207
+ suggest = "last_modified_by"
1208
+ elif key == "lastModifiedByType":
1209
+ suggest = "last_modified_by_type"
1210
+
1211
+ if suggest:
1212
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1213
+
1214
+ def __getitem__(self, key: str) -> Any:
1215
+ SystemDataResponse.__key_warning(key)
1216
+ return super().__getitem__(key)
1217
+
1218
+ def get(self, key: str, default = None) -> Any:
1219
+ SystemDataResponse.__key_warning(key)
1220
+ return super().get(key, default)
1221
+
1222
+ def __init__(__self__, *,
1223
+ created_at: Optional[str] = None,
1224
+ created_by: Optional[str] = None,
1225
+ created_by_type: Optional[str] = None,
1226
+ last_modified_at: Optional[str] = None,
1227
+ last_modified_by: Optional[str] = None,
1228
+ last_modified_by_type: Optional[str] = None):
1229
+ """
1230
+ Metadata pertaining to creation and last modification of the resource.
1231
+ :param str created_at: The timestamp of resource creation (UTC).
1232
+ :param str created_by: The identity that created the resource.
1233
+ :param str created_by_type: The type of identity that created the resource.
1234
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1235
+ :param str last_modified_by: The identity that last modified the resource.
1236
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1237
+ """
1238
+ if created_at is not None:
1239
+ pulumi.set(__self__, "created_at", created_at)
1240
+ if created_by is not None:
1241
+ pulumi.set(__self__, "created_by", created_by)
1242
+ if created_by_type is not None:
1243
+ pulumi.set(__self__, "created_by_type", created_by_type)
1244
+ if last_modified_at is not None:
1245
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1246
+ if last_modified_by is not None:
1247
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1248
+ if last_modified_by_type is not None:
1249
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1250
+
1251
+ @property
1252
+ @pulumi.getter(name="createdAt")
1253
+ def created_at(self) -> Optional[str]:
1254
+ """
1255
+ The timestamp of resource creation (UTC).
1256
+ """
1257
+ return pulumi.get(self, "created_at")
1258
+
1259
+ @property
1260
+ @pulumi.getter(name="createdBy")
1261
+ def created_by(self) -> Optional[str]:
1262
+ """
1263
+ The identity that created the resource.
1264
+ """
1265
+ return pulumi.get(self, "created_by")
1266
+
1267
+ @property
1268
+ @pulumi.getter(name="createdByType")
1269
+ def created_by_type(self) -> Optional[str]:
1270
+ """
1271
+ The type of identity that created the resource.
1272
+ """
1273
+ return pulumi.get(self, "created_by_type")
1274
+
1275
+ @property
1276
+ @pulumi.getter(name="lastModifiedAt")
1277
+ def last_modified_at(self) -> Optional[str]:
1278
+ """
1279
+ The timestamp of resource last modification (UTC)
1280
+ """
1281
+ return pulumi.get(self, "last_modified_at")
1282
+
1283
+ @property
1284
+ @pulumi.getter(name="lastModifiedBy")
1285
+ def last_modified_by(self) -> Optional[str]:
1286
+ """
1287
+ The identity that last modified the resource.
1288
+ """
1289
+ return pulumi.get(self, "last_modified_by")
1290
+
1291
+ @property
1292
+ @pulumi.getter(name="lastModifiedByType")
1293
+ def last_modified_by_type(self) -> Optional[str]:
1294
+ """
1295
+ The type of identity that last modified the resource.
1296
+ """
1297
+ return pulumi.get(self, "last_modified_by_type")
1298
+
1299
+
1300
+ @pulumi.output_type
1301
+ class ThrottleByJwtCustomClaimRuleResponse(dict):
1302
+ """
1303
+ Throttle the client connection by a custom JWT claim
1304
+ """
1305
+ @staticmethod
1306
+ def __key_warning(key: str):
1307
+ suggest = None
1308
+ if key == "claimName":
1309
+ suggest = "claim_name"
1310
+ elif key == "maxCount":
1311
+ suggest = "max_count"
1312
+
1313
+ if suggest:
1314
+ pulumi.log.warn(f"Key '{key}' not found in ThrottleByJwtCustomClaimRuleResponse. Access the value via the '{suggest}' property getter instead.")
1315
+
1316
+ def __getitem__(self, key: str) -> Any:
1317
+ ThrottleByJwtCustomClaimRuleResponse.__key_warning(key)
1318
+ return super().__getitem__(key)
1319
+
1320
+ def get(self, key: str, default = None) -> Any:
1321
+ ThrottleByJwtCustomClaimRuleResponse.__key_warning(key)
1322
+ return super().get(key, default)
1323
+
1324
+ def __init__(__self__, *,
1325
+ claim_name: str,
1326
+ type: str,
1327
+ max_count: Optional[int] = None):
1328
+ """
1329
+ Throttle the client connection by a custom JWT claim
1330
+ :param str claim_name: The name of the claim in the JWT token. The client connection with the same claim value will be aggregated. If the claim is not found in the token, the connection will be allowed.
1331
+ :param str type:
1332
+ Expected value is 'ThrottleByJwtCustomClaimRule'.
1333
+ :param int max_count: Maximum connection count allowed for the same Jwt claim value. Clients with the same Jwt claim will get rejected if the connection count exceeds this value. Default value is 20.
1334
+ """
1335
+ pulumi.set(__self__, "claim_name", claim_name)
1336
+ pulumi.set(__self__, "type", 'ThrottleByJwtCustomClaimRule')
1337
+ if max_count is None:
1338
+ max_count = 20
1339
+ if max_count is not None:
1340
+ pulumi.set(__self__, "max_count", max_count)
1341
+
1342
+ @property
1343
+ @pulumi.getter(name="claimName")
1344
+ def claim_name(self) -> str:
1345
+ """
1346
+ The name of the claim in the JWT token. The client connection with the same claim value will be aggregated. If the claim is not found in the token, the connection will be allowed.
1347
+ """
1348
+ return pulumi.get(self, "claim_name")
1349
+
1350
+ @property
1351
+ @pulumi.getter
1352
+ def type(self) -> str:
1353
+ """
1354
+
1355
+ Expected value is 'ThrottleByJwtCustomClaimRule'.
1356
+ """
1357
+ return pulumi.get(self, "type")
1358
+
1359
+ @property
1360
+ @pulumi.getter(name="maxCount")
1361
+ def max_count(self) -> Optional[int]:
1362
+ """
1363
+ Maximum connection count allowed for the same Jwt claim value. Clients with the same Jwt claim will get rejected if the connection count exceeds this value. Default value is 20.
1364
+ """
1365
+ return pulumi.get(self, "max_count")
1366
+
1367
+
1368
+ @pulumi.output_type
1369
+ class ThrottleByJwtSignatureRuleResponse(dict):
1370
+ """
1371
+ Throttle the client connection by the JWT signature
1372
+ """
1373
+ @staticmethod
1374
+ def __key_warning(key: str):
1375
+ suggest = None
1376
+ if key == "maxCount":
1377
+ suggest = "max_count"
1378
+
1379
+ if suggest:
1380
+ pulumi.log.warn(f"Key '{key}' not found in ThrottleByJwtSignatureRuleResponse. Access the value via the '{suggest}' property getter instead.")
1381
+
1382
+ def __getitem__(self, key: str) -> Any:
1383
+ ThrottleByJwtSignatureRuleResponse.__key_warning(key)
1384
+ return super().__getitem__(key)
1385
+
1386
+ def get(self, key: str, default = None) -> Any:
1387
+ ThrottleByJwtSignatureRuleResponse.__key_warning(key)
1388
+ return super().get(key, default)
1389
+
1390
+ def __init__(__self__, *,
1391
+ type: str,
1392
+ max_count: Optional[int] = None):
1393
+ """
1394
+ Throttle the client connection by the JWT signature
1395
+ :param str type:
1396
+ Expected value is 'ThrottleByJwtSignatureRule'.
1397
+ :param int max_count: Maximum connection count allowed for the same JWT signature. Clients with the same JWT signature will get rejected if the connection count exceeds this value. Default value is 20.
1398
+ """
1399
+ pulumi.set(__self__, "type", 'ThrottleByJwtSignatureRule')
1400
+ if max_count is None:
1401
+ max_count = 20
1402
+ if max_count is not None:
1403
+ pulumi.set(__self__, "max_count", max_count)
1404
+
1405
+ @property
1406
+ @pulumi.getter
1407
+ def type(self) -> str:
1408
+ """
1409
+
1410
+ Expected value is 'ThrottleByJwtSignatureRule'.
1411
+ """
1412
+ return pulumi.get(self, "type")
1413
+
1414
+ @property
1415
+ @pulumi.getter(name="maxCount")
1416
+ def max_count(self) -> Optional[int]:
1417
+ """
1418
+ Maximum connection count allowed for the same JWT signature. Clients with the same JWT signature will get rejected if the connection count exceeds this value. Default value is 20.
1419
+ """
1420
+ return pulumi.get(self, "max_count")
1421
+
1422
+
1423
+ @pulumi.output_type
1424
+ class ThrottleByUserIdRuleResponse(dict):
1425
+ """
1426
+ Throttle the client connection by the user ID
1427
+ """
1428
+ @staticmethod
1429
+ def __key_warning(key: str):
1430
+ suggest = None
1431
+ if key == "maxCount":
1432
+ suggest = "max_count"
1433
+
1434
+ if suggest:
1435
+ pulumi.log.warn(f"Key '{key}' not found in ThrottleByUserIdRuleResponse. Access the value via the '{suggest}' property getter instead.")
1436
+
1437
+ def __getitem__(self, key: str) -> Any:
1438
+ ThrottleByUserIdRuleResponse.__key_warning(key)
1439
+ return super().__getitem__(key)
1440
+
1441
+ def get(self, key: str, default = None) -> Any:
1442
+ ThrottleByUserIdRuleResponse.__key_warning(key)
1443
+ return super().get(key, default)
1444
+
1445
+ def __init__(__self__, *,
1446
+ type: str,
1447
+ max_count: Optional[int] = None):
1448
+ """
1449
+ Throttle the client connection by the user ID
1450
+ :param str type:
1451
+ Expected value is 'ThrottleByUserIdRule'.
1452
+ :param int max_count: Maximum connection count allowed for the same user ID. Clients with the same user ID will get rejected if the connection count exceeds this value. Default value is 20.
1453
+ """
1454
+ pulumi.set(__self__, "type", 'ThrottleByUserIdRule')
1455
+ if max_count is None:
1456
+ max_count = 20
1457
+ if max_count is not None:
1458
+ pulumi.set(__self__, "max_count", max_count)
1459
+
1460
+ @property
1461
+ @pulumi.getter
1462
+ def type(self) -> str:
1463
+ """
1464
+
1465
+ Expected value is 'ThrottleByUserIdRule'.
1466
+ """
1467
+ return pulumi.get(self, "type")
1468
+
1469
+ @property
1470
+ @pulumi.getter(name="maxCount")
1471
+ def max_count(self) -> Optional[int]:
1472
+ """
1473
+ Maximum connection count allowed for the same user ID. Clients with the same user ID will get rejected if the connection count exceeds this value. Default value is 20.
1474
+ """
1475
+ return pulumi.get(self, "max_count")
1476
+
1477
+
1478
+ @pulumi.output_type
1479
+ class UpstreamAuthSettingsResponse(dict):
1480
+ """
1481
+ Upstream auth settings. If not set, no auth is used for upstream messages.
1482
+ """
1483
+ @staticmethod
1484
+ def __key_warning(key: str):
1485
+ suggest = None
1486
+ if key == "managedIdentity":
1487
+ suggest = "managed_identity"
1488
+
1489
+ if suggest:
1490
+ pulumi.log.warn(f"Key '{key}' not found in UpstreamAuthSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1491
+
1492
+ def __getitem__(self, key: str) -> Any:
1493
+ UpstreamAuthSettingsResponse.__key_warning(key)
1494
+ return super().__getitem__(key)
1495
+
1496
+ def get(self, key: str, default = None) -> Any:
1497
+ UpstreamAuthSettingsResponse.__key_warning(key)
1498
+ return super().get(key, default)
1499
+
1500
+ def __init__(__self__, *,
1501
+ managed_identity: Optional['outputs.ManagedIdentitySettingsResponse'] = None,
1502
+ type: Optional[str] = None):
1503
+ """
1504
+ Upstream auth settings. If not set, no auth is used for upstream messages.
1505
+ :param 'ManagedIdentitySettingsResponse' managed_identity: Managed identity settings for upstream.
1506
+ :param str type: Upstream auth type enum.
1507
+ """
1508
+ if managed_identity is not None:
1509
+ pulumi.set(__self__, "managed_identity", managed_identity)
1510
+ if type is not None:
1511
+ pulumi.set(__self__, "type", type)
1512
+
1513
+ @property
1514
+ @pulumi.getter(name="managedIdentity")
1515
+ def managed_identity(self) -> Optional['outputs.ManagedIdentitySettingsResponse']:
1516
+ """
1517
+ Managed identity settings for upstream.
1518
+ """
1519
+ return pulumi.get(self, "managed_identity")
1520
+
1521
+ @property
1522
+ @pulumi.getter
1523
+ def type(self) -> Optional[str]:
1524
+ """
1525
+ Upstream auth type enum.
1526
+ """
1527
+ return pulumi.get(self, "type")
1528
+
1529
+
1530
+ @pulumi.output_type
1531
+ class UserAssignedIdentityPropertyResponse(dict):
1532
+ """
1533
+ Properties of user assigned identity.
1534
+ """
1535
+ @staticmethod
1536
+ def __key_warning(key: str):
1537
+ suggest = None
1538
+ if key == "clientId":
1539
+ suggest = "client_id"
1540
+ elif key == "principalId":
1541
+ suggest = "principal_id"
1542
+
1543
+ if suggest:
1544
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityPropertyResponse. Access the value via the '{suggest}' property getter instead.")
1545
+
1546
+ def __getitem__(self, key: str) -> Any:
1547
+ UserAssignedIdentityPropertyResponse.__key_warning(key)
1548
+ return super().__getitem__(key)
1549
+
1550
+ def get(self, key: str, default = None) -> Any:
1551
+ UserAssignedIdentityPropertyResponse.__key_warning(key)
1552
+ return super().get(key, default)
1553
+
1554
+ def __init__(__self__, *,
1555
+ client_id: str,
1556
+ principal_id: str):
1557
+ """
1558
+ Properties of user assigned identity.
1559
+ :param str client_id: Get the client id for the user assigned identity
1560
+ :param str principal_id: Get the principal id for the user assigned identity
1561
+ """
1562
+ pulumi.set(__self__, "client_id", client_id)
1563
+ pulumi.set(__self__, "principal_id", principal_id)
1564
+
1565
+ @property
1566
+ @pulumi.getter(name="clientId")
1567
+ def client_id(self) -> str:
1568
+ """
1569
+ Get the client id for the user assigned identity
1570
+ """
1571
+ return pulumi.get(self, "client_id")
1572
+
1573
+ @property
1574
+ @pulumi.getter(name="principalId")
1575
+ def principal_id(self) -> str:
1576
+ """
1577
+ Get the principal id for the user assigned identity
1578
+ """
1579
+ return pulumi.get(self, "principal_id")
1580
+
1581
+
1582
+ @pulumi.output_type
1583
+ class WebPubSubHubPropertiesResponse(dict):
1584
+ """
1585
+ Properties of a hub.
1586
+ """
1587
+ @staticmethod
1588
+ def __key_warning(key: str):
1589
+ suggest = None
1590
+ if key == "anonymousConnectPolicy":
1591
+ suggest = "anonymous_connect_policy"
1592
+ elif key == "eventHandlers":
1593
+ suggest = "event_handlers"
1594
+ elif key == "eventListeners":
1595
+ suggest = "event_listeners"
1596
+ elif key == "webSocketKeepAliveIntervalInSeconds":
1597
+ suggest = "web_socket_keep_alive_interval_in_seconds"
1598
+
1599
+ if suggest:
1600
+ pulumi.log.warn(f"Key '{key}' not found in WebPubSubHubPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1601
+
1602
+ def __getitem__(self, key: str) -> Any:
1603
+ WebPubSubHubPropertiesResponse.__key_warning(key)
1604
+ return super().__getitem__(key)
1605
+
1606
+ def get(self, key: str, default = None) -> Any:
1607
+ WebPubSubHubPropertiesResponse.__key_warning(key)
1608
+ return super().get(key, default)
1609
+
1610
+ def __init__(__self__, *,
1611
+ anonymous_connect_policy: Optional[str] = None,
1612
+ event_handlers: Optional[Sequence['outputs.EventHandlerResponse']] = None,
1613
+ event_listeners: Optional[Sequence['outputs.EventListenerResponse']] = None,
1614
+ web_socket_keep_alive_interval_in_seconds: Optional[int] = None):
1615
+ """
1616
+ Properties of a hub.
1617
+ :param str anonymous_connect_policy: The settings for configuring if anonymous connections are allowed for this hub: "allow" or "deny". Default to "deny".
1618
+ :param Sequence['EventHandlerResponse'] event_handlers: Event handler of a hub.
1619
+ :param Sequence['EventListenerResponse'] event_listeners: Event listener settings for forwarding your client events to listeners.
1620
+ Event listener is transparent to Web PubSub clients, and it doesn't return any result to clients nor interrupt the lifetime of clients.
1621
+ One event can be sent to multiple listeners, as long as it matches the filters in those listeners. The order of the array elements doesn't matter.
1622
+ Maximum count of event listeners among all hubs is 10.
1623
+ :param int web_socket_keep_alive_interval_in_seconds: The settings for configuring the WebSocket ping-pong interval in seconds for all clients in the hub. Valid range: 1 to 120. Default to 20 seconds.
1624
+ """
1625
+ if anonymous_connect_policy is None:
1626
+ anonymous_connect_policy = 'deny'
1627
+ if anonymous_connect_policy is not None:
1628
+ pulumi.set(__self__, "anonymous_connect_policy", anonymous_connect_policy)
1629
+ if event_handlers is not None:
1630
+ pulumi.set(__self__, "event_handlers", event_handlers)
1631
+ if event_listeners is not None:
1632
+ pulumi.set(__self__, "event_listeners", event_listeners)
1633
+ if web_socket_keep_alive_interval_in_seconds is None:
1634
+ web_socket_keep_alive_interval_in_seconds = 20
1635
+ if web_socket_keep_alive_interval_in_seconds is not None:
1636
+ pulumi.set(__self__, "web_socket_keep_alive_interval_in_seconds", web_socket_keep_alive_interval_in_seconds)
1637
+
1638
+ @property
1639
+ @pulumi.getter(name="anonymousConnectPolicy")
1640
+ def anonymous_connect_policy(self) -> Optional[str]:
1641
+ """
1642
+ The settings for configuring if anonymous connections are allowed for this hub: "allow" or "deny". Default to "deny".
1643
+ """
1644
+ return pulumi.get(self, "anonymous_connect_policy")
1645
+
1646
+ @property
1647
+ @pulumi.getter(name="eventHandlers")
1648
+ def event_handlers(self) -> Optional[Sequence['outputs.EventHandlerResponse']]:
1649
+ """
1650
+ Event handler of a hub.
1651
+ """
1652
+ return pulumi.get(self, "event_handlers")
1653
+
1654
+ @property
1655
+ @pulumi.getter(name="eventListeners")
1656
+ def event_listeners(self) -> Optional[Sequence['outputs.EventListenerResponse']]:
1657
+ """
1658
+ Event listener settings for forwarding your client events to listeners.
1659
+ Event listener is transparent to Web PubSub clients, and it doesn't return any result to clients nor interrupt the lifetime of clients.
1660
+ One event can be sent to multiple listeners, as long as it matches the filters in those listeners. The order of the array elements doesn't matter.
1661
+ Maximum count of event listeners among all hubs is 10.
1662
+ """
1663
+ return pulumi.get(self, "event_listeners")
1664
+
1665
+ @property
1666
+ @pulumi.getter(name="webSocketKeepAliveIntervalInSeconds")
1667
+ def web_socket_keep_alive_interval_in_seconds(self) -> Optional[int]:
1668
+ """
1669
+ The settings for configuring the WebSocket ping-pong interval in seconds for all clients in the hub. Valid range: 1 to 120. Default to 20 seconds.
1670
+ """
1671
+ return pulumi.get(self, "web_socket_keep_alive_interval_in_seconds")
1672
+
1673
+
1674
+ @pulumi.output_type
1675
+ class WebPubSubNetworkACLsResponse(dict):
1676
+ """
1677
+ Network ACLs for the resource
1678
+ """
1679
+ @staticmethod
1680
+ def __key_warning(key: str):
1681
+ suggest = None
1682
+ if key == "defaultAction":
1683
+ suggest = "default_action"
1684
+ elif key == "ipRules":
1685
+ suggest = "ip_rules"
1686
+ elif key == "privateEndpoints":
1687
+ suggest = "private_endpoints"
1688
+ elif key == "publicNetwork":
1689
+ suggest = "public_network"
1690
+
1691
+ if suggest:
1692
+ pulumi.log.warn(f"Key '{key}' not found in WebPubSubNetworkACLsResponse. Access the value via the '{suggest}' property getter instead.")
1693
+
1694
+ def __getitem__(self, key: str) -> Any:
1695
+ WebPubSubNetworkACLsResponse.__key_warning(key)
1696
+ return super().__getitem__(key)
1697
+
1698
+ def get(self, key: str, default = None) -> Any:
1699
+ WebPubSubNetworkACLsResponse.__key_warning(key)
1700
+ return super().get(key, default)
1701
+
1702
+ def __init__(__self__, *,
1703
+ default_action: Optional[str] = None,
1704
+ ip_rules: Optional[Sequence['outputs.IPRuleResponse']] = None,
1705
+ private_endpoints: Optional[Sequence['outputs.PrivateEndpointACLResponse']] = None,
1706
+ public_network: Optional['outputs.NetworkACLResponse'] = None):
1707
+ """
1708
+ Network ACLs for the resource
1709
+ :param str default_action: Azure Networking ACL Action.
1710
+ :param Sequence['IPRuleResponse'] ip_rules: IP rules for filtering public traffic
1711
+ :param Sequence['PrivateEndpointACLResponse'] private_endpoints: ACLs for requests from private endpoints
1712
+ :param 'NetworkACLResponse' public_network: Network ACL
1713
+ """
1714
+ if default_action is not None:
1715
+ pulumi.set(__self__, "default_action", default_action)
1716
+ if ip_rules is not None:
1717
+ pulumi.set(__self__, "ip_rules", ip_rules)
1718
+ if private_endpoints is not None:
1719
+ pulumi.set(__self__, "private_endpoints", private_endpoints)
1720
+ if public_network is not None:
1721
+ pulumi.set(__self__, "public_network", public_network)
1722
+
1723
+ @property
1724
+ @pulumi.getter(name="defaultAction")
1725
+ def default_action(self) -> Optional[str]:
1726
+ """
1727
+ Azure Networking ACL Action.
1728
+ """
1729
+ return pulumi.get(self, "default_action")
1730
+
1731
+ @property
1732
+ @pulumi.getter(name="ipRules")
1733
+ def ip_rules(self) -> Optional[Sequence['outputs.IPRuleResponse']]:
1734
+ """
1735
+ IP rules for filtering public traffic
1736
+ """
1737
+ return pulumi.get(self, "ip_rules")
1738
+
1739
+ @property
1740
+ @pulumi.getter(name="privateEndpoints")
1741
+ def private_endpoints(self) -> Optional[Sequence['outputs.PrivateEndpointACLResponse']]:
1742
+ """
1743
+ ACLs for requests from private endpoints
1744
+ """
1745
+ return pulumi.get(self, "private_endpoints")
1746
+
1747
+ @property
1748
+ @pulumi.getter(name="publicNetwork")
1749
+ def public_network(self) -> Optional['outputs.NetworkACLResponse']:
1750
+ """
1751
+ Network ACL
1752
+ """
1753
+ return pulumi.get(self, "public_network")
1754
+
1755
+
1756
+ @pulumi.output_type
1757
+ class WebPubSubSocketIOSettingsResponse(dict):
1758
+ """
1759
+ SocketIO settings for the resource
1760
+ """
1761
+ @staticmethod
1762
+ def __key_warning(key: str):
1763
+ suggest = None
1764
+ if key == "serviceMode":
1765
+ suggest = "service_mode"
1766
+
1767
+ if suggest:
1768
+ pulumi.log.warn(f"Key '{key}' not found in WebPubSubSocketIOSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1769
+
1770
+ def __getitem__(self, key: str) -> Any:
1771
+ WebPubSubSocketIOSettingsResponse.__key_warning(key)
1772
+ return super().__getitem__(key)
1773
+
1774
+ def get(self, key: str, default = None) -> Any:
1775
+ WebPubSubSocketIOSettingsResponse.__key_warning(key)
1776
+ return super().get(key, default)
1777
+
1778
+ def __init__(__self__, *,
1779
+ service_mode: Optional[str] = None):
1780
+ """
1781
+ SocketIO settings for the resource
1782
+ :param str service_mode: The service mode of Web PubSub for Socket.IO. Values allowed:
1783
+ "Default": have your own backend Socket.IO server
1784
+ "Serverless": your application doesn't have a backend server
1785
+ """
1786
+ if service_mode is not None:
1787
+ pulumi.set(__self__, "service_mode", service_mode)
1788
+
1789
+ @property
1790
+ @pulumi.getter(name="serviceMode")
1791
+ def service_mode(self) -> Optional[str]:
1792
+ """
1793
+ The service mode of Web PubSub for Socket.IO. Values allowed:
1794
+ "Default": have your own backend Socket.IO server
1795
+ "Serverless": your application doesn't have a backend server
1796
+ """
1797
+ return pulumi.get(self, "service_mode")
1798
+
1799
+
1800
+ @pulumi.output_type
1801
+ class WebPubSubTlsSettingsResponse(dict):
1802
+ """
1803
+ TLS settings for the resource
1804
+ """
1805
+ @staticmethod
1806
+ def __key_warning(key: str):
1807
+ suggest = None
1808
+ if key == "clientCertEnabled":
1809
+ suggest = "client_cert_enabled"
1810
+
1811
+ if suggest:
1812
+ pulumi.log.warn(f"Key '{key}' not found in WebPubSubTlsSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1813
+
1814
+ def __getitem__(self, key: str) -> Any:
1815
+ WebPubSubTlsSettingsResponse.__key_warning(key)
1816
+ return super().__getitem__(key)
1817
+
1818
+ def get(self, key: str, default = None) -> Any:
1819
+ WebPubSubTlsSettingsResponse.__key_warning(key)
1820
+ return super().get(key, default)
1821
+
1822
+ def __init__(__self__, *,
1823
+ client_cert_enabled: Optional[bool] = None):
1824
+ """
1825
+ TLS settings for the resource
1826
+ :param bool client_cert_enabled: Request client certificate during TLS handshake if enabled. Not supported for free tier. Any input will be ignored for free tier.
1827
+ """
1828
+ if client_cert_enabled is None:
1829
+ client_cert_enabled = False
1830
+ if client_cert_enabled is not None:
1831
+ pulumi.set(__self__, "client_cert_enabled", client_cert_enabled)
1832
+
1833
+ @property
1834
+ @pulumi.getter(name="clientCertEnabled")
1835
+ def client_cert_enabled(self) -> Optional[bool]:
1836
+ """
1837
+ Request client certificate during TLS handshake if enabled. Not supported for free tier. Any input will be ignored for free tier.
1838
+ """
1839
+ return pulumi.get(self, "client_cert_enabled")
1840
+
1841
+