pulumi-azure-native 2.87.0a1739200739__py3-none-any.whl → 2.88.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (385) hide show
  1. pulumi_azure_native/__init__.py +72 -1
  2. pulumi_azure_native/communication/__init__.py +3 -0
  3. pulumi_azure_native/communication/communication_service.py +3 -3
  4. pulumi_azure_native/communication/domain.py +3 -3
  5. pulumi_azure_native/communication/email_service.py +3 -3
  6. pulumi_azure_native/communication/get_communication_service.py +2 -2
  7. pulumi_azure_native/communication/get_domain.py +2 -2
  8. pulumi_azure_native/communication/get_email_service.py +2 -2
  9. pulumi_azure_native/communication/get_sender_username.py +2 -2
  10. pulumi_azure_native/communication/get_suppression_list.py +4 -0
  11. pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
  12. pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
  13. pulumi_azure_native/communication/sender_username.py +3 -3
  14. pulumi_azure_native/communication/suppression_list.py +5 -1
  15. pulumi_azure_native/communication/suppression_list_address.py +5 -1
  16. pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
  17. pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
  18. pulumi_azure_native/communication/v20230331/domain.py +1 -1
  19. pulumi_azure_native/communication/v20230331/email_service.py +1 -1
  20. pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
  21. pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
  22. pulumi_azure_native/communication/v20230401/domain.py +1 -1
  23. pulumi_azure_native/communication/v20230401/email_service.py +1 -1
  24. pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
  25. pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
  26. pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
  27. pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
  28. pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
  29. pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
  30. pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
  31. pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
  32. pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
  33. pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
  34. pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
  35. pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
  36. pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
  37. pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
  38. pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
  39. pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
  40. pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
  41. pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
  42. pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
  43. pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
  44. pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
  45. pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
  46. pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
  47. pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
  48. pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
  49. pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
  50. pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
  51. pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
  52. pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
  53. pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
  54. pulumi_azure_native/datafactory/_inputs.py +43 -43
  55. pulumi_azure_native/datafactory/outputs.py +34 -34
  56. pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
  57. pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
  58. pulumi_azure_native/eventgrid/__init__.py +3 -0
  59. pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
  60. pulumi_azure_native/eventgrid/channel.py +3 -3
  61. pulumi_azure_native/eventgrid/client.py +3 -3
  62. pulumi_azure_native/eventgrid/client_group.py +3 -3
  63. pulumi_azure_native/eventgrid/domain.py +3 -3
  64. pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
  65. pulumi_azure_native/eventgrid/domain_topic.py +3 -3
  66. pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
  67. pulumi_azure_native/eventgrid/event_subscription.py +3 -3
  68. pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
  69. pulumi_azure_native/eventgrid/get_channel.py +2 -2
  70. pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
  71. pulumi_azure_native/eventgrid/get_client.py +2 -2
  72. pulumi_azure_native/eventgrid/get_client_group.py +2 -2
  73. pulumi_azure_native/eventgrid/get_domain.py +2 -2
  74. pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
  75. pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
  76. pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
  77. pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
  78. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
  79. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
  80. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
  81. pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
  82. pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
  83. pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
  84. pulumi_azure_native/eventgrid/get_namespace.py +2 -2
  85. pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
  86. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
  87. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
  88. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
  89. pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
  90. pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
  91. pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
  92. pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
  93. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
  94. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
  95. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
  96. pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
  97. pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
  98. pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
  99. pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
  100. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
  101. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
  102. pulumi_azure_native/eventgrid/get_topic.py +2 -2
  103. pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
  104. pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
  105. pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
  106. pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
  107. pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
  108. pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
  109. pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
  110. pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
  111. pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
  112. pulumi_azure_native/eventgrid/namespace.py +3 -3
  113. pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
  114. pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
  115. pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
  116. pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
  117. pulumi_azure_native/eventgrid/partner_registration.py +3 -3
  118. pulumi_azure_native/eventgrid/partner_topic.py +3 -3
  119. pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
  120. pulumi_azure_native/eventgrid/permission_binding.py +3 -3
  121. pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
  122. pulumi_azure_native/eventgrid/system_topic.py +3 -3
  123. pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
  124. pulumi_azure_native/eventgrid/topic.py +3 -3
  125. pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
  126. pulumi_azure_native/eventgrid/topic_space.py +3 -3
  127. pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
  128. pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
  129. pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
  130. pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
  131. pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
  132. pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
  133. pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
  134. pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
  135. pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
  136. pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
  137. pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
  138. pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
  139. pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
  140. pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
  141. pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
  142. pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
  143. pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
  144. pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
  145. pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
  146. pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
  147. pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
  148. pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
  149. pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
  150. pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
  151. pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
  152. pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
  153. pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
  154. pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
  155. pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
  156. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
  157. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
  158. pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
  159. pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
  160. pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
  161. pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
  162. pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
  163. pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
  164. pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
  165. pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
  166. pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
  167. pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
  168. pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
  169. pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
  170. pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
  171. pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
  172. pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
  173. pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
  174. pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
  175. pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
  176. pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
  177. pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
  178. pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
  179. pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
  180. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
  181. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
  182. pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
  183. pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
  184. pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
  185. pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
  186. pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
  187. pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
  188. pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
  189. pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
  190. pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
  191. pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
  192. pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
  193. pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
  194. pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
  195. pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
  196. pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
  197. pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
  198. pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
  199. pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
  200. pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
  201. pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
  202. pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
  203. pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
  204. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
  205. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
  206. pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
  207. pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
  208. pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
  209. pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
  210. pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
  211. pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
  212. pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
  213. pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
  214. pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
  215. pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
  216. pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
  217. pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
  218. pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
  219. pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
  220. pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
  221. pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
  222. pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
  223. pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
  224. pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
  225. pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
  226. pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
  227. pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
  228. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
  229. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
  230. pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
  231. pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
  232. pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
  233. pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
  234. pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
  235. pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
  236. pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
  237. pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
  238. pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
  239. pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
  240. pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
  241. pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
  242. pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
  243. pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
  244. pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
  245. pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
  246. pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
  247. pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
  248. pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
  249. pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
  250. pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
  251. pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
  252. pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
  253. pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
  254. pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
  255. pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
  256. pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
  257. pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
  258. pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
  259. pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
  260. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
  261. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
  262. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
  263. pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
  264. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
  265. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
  266. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
  267. pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
  268. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
  269. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
  270. pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
  271. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
  272. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
  273. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
  274. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
  275. pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
  276. pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
  277. pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
  278. pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
  279. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
  280. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
  281. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
  282. pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
  283. pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
  284. pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
  285. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
  286. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
  287. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
  288. pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
  289. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
  290. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
  291. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
  292. pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
  293. pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
  294. pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
  295. pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
  296. pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
  297. pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
  298. pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
  299. pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
  300. pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
  301. pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
  302. pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
  303. pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
  304. pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
  305. pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
  306. pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
  307. pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
  308. pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
  309. pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
  310. pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
  311. pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
  312. pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
  313. pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
  314. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
  315. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
  316. pulumi_azure_native/netapp/__init__.py +1 -0
  317. pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
  318. pulumi_azure_native/netapp/outputs.py +36 -0
  319. pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
  320. pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
  321. pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
  322. pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
  323. pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
  324. pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
  325. pulumi_azure_native/pulumi-plugin.json +1 -1
  326. pulumi_azure_native/sovereign/_enums.py +15 -15
  327. pulumi_azure_native/sovereign/_inputs.py +129 -129
  328. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
  329. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
  330. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
  331. pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
  332. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
  333. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
  334. pulumi_azure_native/sovereign/outputs.py +100 -100
  335. pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
  336. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
  337. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
  338. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
  339. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
  340. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
  341. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
  342. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
  343. pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
  344. pulumi_azure_native/videoindexer/__init__.py +3 -0
  345. pulumi_azure_native/videoindexer/account.py +3 -3
  346. pulumi_azure_native/videoindexer/get_account.py +2 -2
  347. pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
  348. pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
  349. pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
  350. pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
  351. pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
  352. pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
  353. pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
  354. pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
  355. pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
  356. pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
  357. pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
  358. pulumi_azure_native/web/container_app.py +3 -3
  359. pulumi_azure_native/web/get_container_app.py +2 -2
  360. pulumi_azure_native/web/list_container_app_secrets.py +2 -2
  361. pulumi_azure_native/web/v20230101/container_app.py +1 -1
  362. pulumi_azure_native/web/v20231201/container_app.py +1 -1
  363. pulumi_azure_native/web/v20240401/__init__.py +0 -3
  364. pulumi_azure_native/web/v20240401/_enums.py +0 -20
  365. pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
  366. pulumi_azure_native/web/v20240401/outputs.py +19 -1212
  367. pulumi_azure_native/weightsandbiases/__init__.py +20 -0
  368. pulumi_azure_native/weightsandbiases/_enums.py +84 -0
  369. pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
  370. pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
  371. pulumi_azure_native/weightsandbiases/instance.py +289 -0
  372. pulumi_azure_native/weightsandbiases/outputs.py +747 -0
  373. pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
  374. pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
  375. pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
  376. pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
  377. pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
  378. pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
  379. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.dist-info}/METADATA +1 -1
  380. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.dist-info}/RECORD +382 -273
  381. pulumi_azure_native/web/v20240401/container_app.py +0 -364
  382. pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
  383. pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
  384. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.dist-info}/WHEEL +0 -0
  385. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.dist-info}/top_level.txt +0 -0
@@ -37,7 +37,7 @@ __all__ = [
37
37
  @pulumi.output_type
38
38
  class CustomNamingConventionResponse(dict):
39
39
  """
40
- The details for the custom resource override.
40
+ The details for the custom naming convention override for a specific resource type.
41
41
  """
42
42
  @staticmethod
43
43
  def __key_warning(key: str):
@@ -60,8 +60,8 @@ class CustomNamingConventionResponse(dict):
60
60
  formula: str,
61
61
  resource_type: str):
62
62
  """
63
- The details for the custom resource override.
64
- :param str formula: The custom formula for the resource type.
63
+ The details for the custom naming convention override for a specific resource type.
64
+ :param str formula: The custom naming formula for the resource type.
65
65
  :param str resource_type: The type of the resource.
66
66
  """
67
67
  pulumi.set(__self__, "formula", formula)
@@ -71,7 +71,7 @@ class CustomNamingConventionResponse(dict):
71
71
  @pulumi.getter
72
72
  def formula(self) -> str:
73
73
  """
74
- The custom formula for the resource type.
74
+ The custom naming formula for the resource type.
75
75
  """
76
76
  return pulumi.get(self, "formula")
77
77
 
@@ -87,7 +87,7 @@ class CustomNamingConventionResponse(dict):
87
87
  @pulumi.output_type
88
88
  class DecommissionedManagementGroupPropertiesResponse(dict):
89
89
  """
90
- Decommissioned management group properties.
90
+ The 'Decommissioned' management group properties.
91
91
  """
92
92
  @staticmethod
93
93
  def __key_warning(key: str):
@@ -110,9 +110,9 @@ class DecommissionedManagementGroupPropertiesResponse(dict):
110
110
  create: bool,
111
111
  policy_initiatives_assignment_properties: Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']):
112
112
  """
113
- Decommissioned management group properties.
114
- :param bool create: When set to false, this management group will not be created. The default value is false.
115
- :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
113
+ The 'Decommissioned' management group properties.
114
+ :param bool create: This parameter determines whether the 'Decommissioned' management group will be created. If set to true, the group will be created; if set to false, it will not be created. The default value is false.
115
+ :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
116
116
  """
117
117
  pulumi.set(__self__, "create", create)
118
118
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -121,7 +121,7 @@ class DecommissionedManagementGroupPropertiesResponse(dict):
121
121
  @pulumi.getter
122
122
  def create(self) -> bool:
123
123
  """
124
- When set to false, this management group will not be created. The default value is false.
124
+ This parameter determines whether the 'Decommissioned' management group will be created. If set to true, the group will be created; if set to false, it will not be created. The default value is false.
125
125
  """
126
126
  return pulumi.get(self, "create")
127
127
 
@@ -129,7 +129,7 @@ class DecommissionedManagementGroupPropertiesResponse(dict):
129
129
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
130
130
  def policy_initiatives_assignment_properties(self) -> Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']:
131
131
  """
132
- Array of initiative assignments to be applied to the management group.
132
+ Array of policy initiatives applied to the management group.
133
133
  """
134
134
  return pulumi.get(self, "policy_initiatives_assignment_properties")
135
135
 
@@ -163,8 +163,8 @@ class LandingZoneAccountResourcePropertiesResponse(dict):
163
163
  storage_account: str):
164
164
  """
165
165
  The properties of landing zone account resource type.
166
- :param str provisioning_state: The status of a user-initiated, control-plane operation on the landing zone account.
167
- :param str storage_account: The storage account that will host the generated slz code.
166
+ :param str provisioning_state: The state that reflects the current stage in the creation, updating, or deletion process of the landing zone account.
167
+ :param str storage_account: The storage account that will host the generated infrastructure as code (IaC) for a landing zone deployment.
168
168
  """
169
169
  pulumi.set(__self__, "provisioning_state", provisioning_state)
170
170
  pulumi.set(__self__, "storage_account", storage_account)
@@ -173,7 +173,7 @@ class LandingZoneAccountResourcePropertiesResponse(dict):
173
173
  @pulumi.getter(name="provisioningState")
174
174
  def provisioning_state(self) -> str:
175
175
  """
176
- The status of a user-initiated, control-plane operation on the landing zone account.
176
+ The state that reflects the current stage in the creation, updating, or deletion process of the landing zone account.
177
177
  """
178
178
  return pulumi.get(self, "provisioning_state")
179
179
 
@@ -181,7 +181,7 @@ class LandingZoneAccountResourcePropertiesResponse(dict):
181
181
  @pulumi.getter(name="storageAccount")
182
182
  def storage_account(self) -> str:
183
183
  """
184
- The storage account that will host the generated slz code.
184
+ The storage account that will host the generated infrastructure as code (IaC) for a landing zone deployment.
185
185
  """
186
186
  return pulumi.get(self, "storage_account")
187
187
 
@@ -291,34 +291,34 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
291
291
  top_level_mg_metadata: Optional['outputs.ManagementGroupPropertiesResponse'] = None):
292
292
  """
293
293
  The properties of landing zone configuration resource type.
294
- :param str authoring_status: The status for the landing zone configurations workflow.
295
- :param str azure_bastion_creation_option: To deploy the bastion service, choose Yes, otherwise No. Choose UseExisting for existing bastion service.
296
- :param str ddos_protection_creation_option: To deploy ddos, choose Yes, otherwise No. Select Existing to provide an existing ddos protection plan.
297
- :param str firewall_creation_option: To deploy firewall, choose the Standard/Premium based on the desired SKU. Choose None for no firewall and UseExisting for a pre existing one.
298
- :param str gateway_subnet_cidr_block: Gateway subnet. IPv4 CIDR block.
299
- :param str hub_network_cidr_block: The address space for the VNET. IPv4 CIDR block.
300
- :param str log_analytics_workspace_creation_option: To deploy log analytics workspace, choose Yes, otherwise No. Select UseExisting to provide an existing log analytics workspace.
301
- :param float log_retention_in_days: Set how long logs are retained for, in days. Minimum length is 30 and maximum is 730
302
- :param 'ManagedIdentityPropertiesResponse' managed_identity: The managed identity to be tied to this landing zone configuration
303
- :param str provisioning_state: The status of a user-initiated, control-plane operation on the landing zone configuration.
304
- :param str azure_bastion_subnet_cidr_block: Azure bastion subnet. IP v4 CIDR block.
305
- :param Sequence['CustomNamingConventionResponse'] custom_naming_convention: The customized naming convention for one or more resource types in this landing zone configuration
306
- :param 'DecommissionedManagementGroupPropertiesResponse' decommissioned_mg_metadata: This will be applied to the decommissioned management group.
307
- :param str existing_azure_bastion_id: The resource id of azure bastion.
308
- :param str existing_ddos_protection_id: The resource id of the ddos protection plan.
309
- :param str existing_log_analytics_workspace_id: The resource id of the log analytics workspace that was created to centralize log ingestion.
310
- :param str firewall_subnet_cidr_block: Azure firewall subnet. IPv4 CIDR block.
311
- :param Sequence['LandingZoneManagementGroupPropertiesResponse'] landing_zones_mg_children: Landing zone children management group properties
312
- :param 'ManagementGroupPropertiesResponse' landing_zones_mg_metadata: This will be applied to the landing zone management groups.
313
- :param str naming_convention_formula: The naming convention that's used by default for all resource types for this landing zone configuration
314
- :param 'ManagementGroupPropertiesResponse' platform_connectivity_mg_metadata: This will be applied to the connectivity management group under platform.
315
- :param 'ManagementGroupPropertiesResponse' platform_identity_mg_metadata: This will be applied to the identity management group under platform.
316
- :param 'ManagementGroupPropertiesResponse' platform_management_mg_metadata: This will be applied to the management management group under platform.
317
- :param Sequence['PlatformManagementGroupPropertiesResponse'] platform_mg_children: Platform children management group properties.
318
- :param 'ManagementGroupPropertiesResponse' platform_mg_metadata: This will be applied to the platform management group.
319
- :param 'SandboxManagementGroupPropertiesResponse' sandbox_mg_metadata: This will be applied to the sandbox management group.
320
- :param Sequence['TagsResponse'] tags: Array of tag objects in format of {'name':'a tag name', 'value':'a tag value'}.
321
- :param 'ManagementGroupPropertiesResponse' top_level_mg_metadata: This will be applied to the root of the landing zone deployment.
294
+ :param str authoring_status: The status that indicates the current phase of the configuration process for a deployment.
295
+ :param str azure_bastion_creation_option: Parameter used to deploy a Bastion: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing Bastion.
296
+ :param str ddos_protection_creation_option: Parameter used to deploy a DDoS protection plan: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing DDoS protection plan.
297
+ :param str firewall_creation_option: Parameter used for deploying a Firewall: Select 'No' to skip deployment, 'Standard' to deploy the Standard SKU, or 'Premium' to deploy the Premium SKU.
298
+ :param str gateway_subnet_cidr_block: The gateway subnet address used for deploying a virtual network. Specify the subnet using IPv4 CIDR notation.
299
+ :param str hub_network_cidr_block: The Virtual Network address. Specify the address using IPv4 CIDR notation.
300
+ :param str log_analytics_workspace_creation_option: Parameter used to deploy a log analytics workspace: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing log analytics workspace.
301
+ :param float log_retention_in_days: Parameter to define the retention period for logs, in days. The minimum duration is 30 days and the maximum is 730 days.
302
+ :param 'ManagedIdentityPropertiesResponse' managed_identity: The managed identity to be assigned to this landing zone configuration.
303
+ :param str provisioning_state: The state that reflects the current stage in the creation, updating, or deletion process of the landing zone configuration.
304
+ :param str azure_bastion_subnet_cidr_block: The Bastion subnet address. Specify the address using IPv4 CIDR notation.
305
+ :param Sequence['CustomNamingConventionResponse'] custom_naming_convention: The custom naming convention applied to specific resource types for this landing zone configuration, which overrides the default naming convention for those resource types. Example - 'customNamingConvention': [{'resourceType': 'azureFirewalls', 'formula': '{DeploymentPrefix}-afwl-{DeploymentSuffix}'}]
306
+ :param 'DecommissionedManagementGroupPropertiesResponse' decommissioned_mg_metadata: The assigned policies of the 'Decommissioned' management group and indicator to create it or not.
307
+ :param str existing_azure_bastion_id: The resource ID of the Bastion when reusing an existing one.
308
+ :param str existing_ddos_protection_id: The resource ID of the DDoS protection plan when reusing an existing one.
309
+ :param str existing_log_analytics_workspace_id: The resource ID of the log analytics workspace when reusing an existing one.
310
+ :param str firewall_subnet_cidr_block: The Firewall subnet address used for deploying a firewall. Specify the Firewall subnet using IPv4 CIDR notation.
311
+ :param Sequence['LandingZoneManagementGroupPropertiesResponse'] landing_zones_mg_children: The child management groups of 'Landing Zones' management group and their assigned policies.
312
+ :param 'ManagementGroupPropertiesResponse' landing_zones_mg_metadata: The assigned policies of the 'Landing Zones' management group.
313
+ :param str naming_convention_formula: The default naming convention applied to all resources for this landing zone configuration. Example - {DeploymentPrefix}-Contoso-{ResourceTypeAbbreviation}{DeploymentSuffix}-{Environment}-testing
314
+ :param 'ManagementGroupPropertiesResponse' platform_connectivity_mg_metadata: The assigned policies of the 'Connectivity' management group under 'Platform' management group.
315
+ :param 'ManagementGroupPropertiesResponse' platform_identity_mg_metadata: The assigned policies of the 'Identity' management group under 'Platform' management group.
316
+ :param 'ManagementGroupPropertiesResponse' platform_management_mg_metadata: The assigned policies of the 'Management' management group under 'Platform' management group.
317
+ :param Sequence['PlatformManagementGroupPropertiesResponse'] platform_mg_children: The names of the 'Platform' child management groups and their assigned policies, excluding the default ones: 'Connectivity', 'Identity', and 'Management'
318
+ :param 'ManagementGroupPropertiesResponse' platform_mg_metadata: The assigned policies of the 'Platform' management group.
319
+ :param 'SandboxManagementGroupPropertiesResponse' sandbox_mg_metadata: The assigned policies of the 'Sandbox' management group and indicator to create it or not.
320
+ :param Sequence['TagsResponse'] tags: Tags are key-value pairs that can be assigned to a resource to organize and manage it more effectively. Example: {'name': 'a tag name', 'value': 'a tag value'}
321
+ :param 'ManagementGroupPropertiesResponse' top_level_mg_metadata: The assigned policies of the parent management group.
322
322
  """
323
323
  pulumi.set(__self__, "authoring_status", authoring_status)
324
324
  pulumi.set(__self__, "azure_bastion_creation_option", azure_bastion_creation_option)
@@ -371,7 +371,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
371
371
  @pulumi.getter(name="authoringStatus")
372
372
  def authoring_status(self) -> str:
373
373
  """
374
- The status for the landing zone configurations workflow.
374
+ The status that indicates the current phase of the configuration process for a deployment.
375
375
  """
376
376
  return pulumi.get(self, "authoring_status")
377
377
 
@@ -379,7 +379,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
379
379
  @pulumi.getter(name="azureBastionCreationOption")
380
380
  def azure_bastion_creation_option(self) -> str:
381
381
  """
382
- To deploy the bastion service, choose Yes, otherwise No. Choose UseExisting for existing bastion service.
382
+ Parameter used to deploy a Bastion: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing Bastion.
383
383
  """
384
384
  return pulumi.get(self, "azure_bastion_creation_option")
385
385
 
@@ -387,7 +387,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
387
387
  @pulumi.getter(name="ddosProtectionCreationOption")
388
388
  def ddos_protection_creation_option(self) -> str:
389
389
  """
390
- To deploy ddos, choose Yes, otherwise No. Select Existing to provide an existing ddos protection plan.
390
+ Parameter used to deploy a DDoS protection plan: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing DDoS protection plan.
391
391
  """
392
392
  return pulumi.get(self, "ddos_protection_creation_option")
393
393
 
@@ -395,7 +395,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
395
395
  @pulumi.getter(name="firewallCreationOption")
396
396
  def firewall_creation_option(self) -> str:
397
397
  """
398
- To deploy firewall, choose the Standard/Premium based on the desired SKU. Choose None for no firewall and UseExisting for a pre existing one.
398
+ Parameter used for deploying a Firewall: Select 'No' to skip deployment, 'Standard' to deploy the Standard SKU, or 'Premium' to deploy the Premium SKU.
399
399
  """
400
400
  return pulumi.get(self, "firewall_creation_option")
401
401
 
@@ -403,7 +403,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
403
403
  @pulumi.getter(name="gatewaySubnetCidrBlock")
404
404
  def gateway_subnet_cidr_block(self) -> str:
405
405
  """
406
- Gateway subnet. IPv4 CIDR block.
406
+ The gateway subnet address used for deploying a virtual network. Specify the subnet using IPv4 CIDR notation.
407
407
  """
408
408
  return pulumi.get(self, "gateway_subnet_cidr_block")
409
409
 
@@ -411,7 +411,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
411
411
  @pulumi.getter(name="hubNetworkCidrBlock")
412
412
  def hub_network_cidr_block(self) -> str:
413
413
  """
414
- The address space for the VNET. IPv4 CIDR block.
414
+ The Virtual Network address. Specify the address using IPv4 CIDR notation.
415
415
  """
416
416
  return pulumi.get(self, "hub_network_cidr_block")
417
417
 
@@ -419,7 +419,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
419
419
  @pulumi.getter(name="logAnalyticsWorkspaceCreationOption")
420
420
  def log_analytics_workspace_creation_option(self) -> str:
421
421
  """
422
- To deploy log analytics workspace, choose Yes, otherwise No. Select UseExisting to provide an existing log analytics workspace.
422
+ Parameter used to deploy a log analytics workspace: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing log analytics workspace.
423
423
  """
424
424
  return pulumi.get(self, "log_analytics_workspace_creation_option")
425
425
 
@@ -427,7 +427,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
427
427
  @pulumi.getter(name="logRetentionInDays")
428
428
  def log_retention_in_days(self) -> float:
429
429
  """
430
- Set how long logs are retained for, in days. Minimum length is 30 and maximum is 730
430
+ Parameter to define the retention period for logs, in days. The minimum duration is 30 days and the maximum is 730 days.
431
431
  """
432
432
  return pulumi.get(self, "log_retention_in_days")
433
433
 
@@ -435,7 +435,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
435
435
  @pulumi.getter(name="managedIdentity")
436
436
  def managed_identity(self) -> 'outputs.ManagedIdentityPropertiesResponse':
437
437
  """
438
- The managed identity to be tied to this landing zone configuration
438
+ The managed identity to be assigned to this landing zone configuration.
439
439
  """
440
440
  return pulumi.get(self, "managed_identity")
441
441
 
@@ -443,7 +443,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
443
443
  @pulumi.getter(name="provisioningState")
444
444
  def provisioning_state(self) -> str:
445
445
  """
446
- The status of a user-initiated, control-plane operation on the landing zone configuration.
446
+ The state that reflects the current stage in the creation, updating, or deletion process of the landing zone configuration.
447
447
  """
448
448
  return pulumi.get(self, "provisioning_state")
449
449
 
@@ -451,7 +451,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
451
451
  @pulumi.getter(name="azureBastionSubnetCidrBlock")
452
452
  def azure_bastion_subnet_cidr_block(self) -> Optional[str]:
453
453
  """
454
- Azure bastion subnet. IP v4 CIDR block.
454
+ The Bastion subnet address. Specify the address using IPv4 CIDR notation.
455
455
  """
456
456
  return pulumi.get(self, "azure_bastion_subnet_cidr_block")
457
457
 
@@ -459,7 +459,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
459
459
  @pulumi.getter(name="customNamingConvention")
460
460
  def custom_naming_convention(self) -> Optional[Sequence['outputs.CustomNamingConventionResponse']]:
461
461
  """
462
- The customized naming convention for one or more resource types in this landing zone configuration
462
+ The custom naming convention applied to specific resource types for this landing zone configuration, which overrides the default naming convention for those resource types. Example - 'customNamingConvention': [{'resourceType': 'azureFirewalls', 'formula': '{DeploymentPrefix}-afwl-{DeploymentSuffix}'}]
463
463
  """
464
464
  return pulumi.get(self, "custom_naming_convention")
465
465
 
@@ -467,7 +467,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
467
467
  @pulumi.getter(name="decommissionedMgMetadata")
468
468
  def decommissioned_mg_metadata(self) -> Optional['outputs.DecommissionedManagementGroupPropertiesResponse']:
469
469
  """
470
- This will be applied to the decommissioned management group.
470
+ The assigned policies of the 'Decommissioned' management group and indicator to create it or not.
471
471
  """
472
472
  return pulumi.get(self, "decommissioned_mg_metadata")
473
473
 
@@ -475,7 +475,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
475
475
  @pulumi.getter(name="existingAzureBastionId")
476
476
  def existing_azure_bastion_id(self) -> Optional[str]:
477
477
  """
478
- The resource id of azure bastion.
478
+ The resource ID of the Bastion when reusing an existing one.
479
479
  """
480
480
  return pulumi.get(self, "existing_azure_bastion_id")
481
481
 
@@ -483,7 +483,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
483
483
  @pulumi.getter(name="existingDdosProtectionId")
484
484
  def existing_ddos_protection_id(self) -> Optional[str]:
485
485
  """
486
- The resource id of the ddos protection plan.
486
+ The resource ID of the DDoS protection plan when reusing an existing one.
487
487
  """
488
488
  return pulumi.get(self, "existing_ddos_protection_id")
489
489
 
@@ -491,7 +491,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
491
491
  @pulumi.getter(name="existingLogAnalyticsWorkspaceId")
492
492
  def existing_log_analytics_workspace_id(self) -> Optional[str]:
493
493
  """
494
- The resource id of the log analytics workspace that was created to centralize log ingestion.
494
+ The resource ID of the log analytics workspace when reusing an existing one.
495
495
  """
496
496
  return pulumi.get(self, "existing_log_analytics_workspace_id")
497
497
 
@@ -499,7 +499,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
499
499
  @pulumi.getter(name="firewallSubnetCidrBlock")
500
500
  def firewall_subnet_cidr_block(self) -> Optional[str]:
501
501
  """
502
- Azure firewall subnet. IPv4 CIDR block.
502
+ The Firewall subnet address used for deploying a firewall. Specify the Firewall subnet using IPv4 CIDR notation.
503
503
  """
504
504
  return pulumi.get(self, "firewall_subnet_cidr_block")
505
505
 
@@ -507,7 +507,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
507
507
  @pulumi.getter(name="landingZonesMgChildren")
508
508
  def landing_zones_mg_children(self) -> Optional[Sequence['outputs.LandingZoneManagementGroupPropertiesResponse']]:
509
509
  """
510
- Landing zone children management group properties
510
+ The child management groups of 'Landing Zones' management group and their assigned policies.
511
511
  """
512
512
  return pulumi.get(self, "landing_zones_mg_children")
513
513
 
@@ -515,7 +515,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
515
515
  @pulumi.getter(name="landingZonesMgMetadata")
516
516
  def landing_zones_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
517
517
  """
518
- This will be applied to the landing zone management groups.
518
+ The assigned policies of the 'Landing Zones' management group.
519
519
  """
520
520
  return pulumi.get(self, "landing_zones_mg_metadata")
521
521
 
@@ -523,7 +523,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
523
523
  @pulumi.getter(name="namingConventionFormula")
524
524
  def naming_convention_formula(self) -> Optional[str]:
525
525
  """
526
- The naming convention that's used by default for all resource types for this landing zone configuration
526
+ The default naming convention applied to all resources for this landing zone configuration. Example - {DeploymentPrefix}-Contoso-{ResourceTypeAbbreviation}{DeploymentSuffix}-{Environment}-testing
527
527
  """
528
528
  return pulumi.get(self, "naming_convention_formula")
529
529
 
@@ -531,7 +531,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
531
531
  @pulumi.getter(name="platformConnectivityMgMetadata")
532
532
  def platform_connectivity_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
533
533
  """
534
- This will be applied to the connectivity management group under platform.
534
+ The assigned policies of the 'Connectivity' management group under 'Platform' management group.
535
535
  """
536
536
  return pulumi.get(self, "platform_connectivity_mg_metadata")
537
537
 
@@ -539,7 +539,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
539
539
  @pulumi.getter(name="platformIdentityMgMetadata")
540
540
  def platform_identity_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
541
541
  """
542
- This will be applied to the identity management group under platform.
542
+ The assigned policies of the 'Identity' management group under 'Platform' management group.
543
543
  """
544
544
  return pulumi.get(self, "platform_identity_mg_metadata")
545
545
 
@@ -547,7 +547,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
547
547
  @pulumi.getter(name="platformManagementMgMetadata")
548
548
  def platform_management_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
549
549
  """
550
- This will be applied to the management management group under platform.
550
+ The assigned policies of the 'Management' management group under 'Platform' management group.
551
551
  """
552
552
  return pulumi.get(self, "platform_management_mg_metadata")
553
553
 
@@ -555,7 +555,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
555
555
  @pulumi.getter(name="platformMgChildren")
556
556
  def platform_mg_children(self) -> Optional[Sequence['outputs.PlatformManagementGroupPropertiesResponse']]:
557
557
  """
558
- Platform children management group properties.
558
+ The names of the 'Platform' child management groups and their assigned policies, excluding the default ones: 'Connectivity', 'Identity', and 'Management'
559
559
  """
560
560
  return pulumi.get(self, "platform_mg_children")
561
561
 
@@ -563,7 +563,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
563
563
  @pulumi.getter(name="platformMgMetadata")
564
564
  def platform_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
565
565
  """
566
- This will be applied to the platform management group.
566
+ The assigned policies of the 'Platform' management group.
567
567
  """
568
568
  return pulumi.get(self, "platform_mg_metadata")
569
569
 
@@ -571,7 +571,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
571
571
  @pulumi.getter(name="sandboxMgMetadata")
572
572
  def sandbox_mg_metadata(self) -> Optional['outputs.SandboxManagementGroupPropertiesResponse']:
573
573
  """
574
- This will be applied to the sandbox management group.
574
+ The assigned policies of the 'Sandbox' management group and indicator to create it or not.
575
575
  """
576
576
  return pulumi.get(self, "sandbox_mg_metadata")
577
577
 
@@ -579,7 +579,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
579
579
  @pulumi.getter
580
580
  def tags(self) -> Optional[Sequence['outputs.TagsResponse']]:
581
581
  """
582
- Array of tag objects in format of {'name':'a tag name', 'value':'a tag value'}.
582
+ Tags are key-value pairs that can be assigned to a resource to organize and manage it more effectively. Example: {'name': 'a tag name', 'value': 'a tag value'}
583
583
  """
584
584
  return pulumi.get(self, "tags")
585
585
 
@@ -587,7 +587,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
587
587
  @pulumi.getter(name="topLevelMgMetadata")
588
588
  def top_level_mg_metadata(self) -> Optional['outputs.ManagementGroupPropertiesResponse']:
589
589
  """
590
- This will be applied to the root of the landing zone deployment.
590
+ The assigned policies of the parent management group.
591
591
  """
592
592
  return pulumi.get(self, "top_level_mg_metadata")
593
593
 
@@ -595,7 +595,7 @@ class LandingZoneConfigurationResourcePropertiesResponse(dict):
595
595
  @pulumi.output_type
596
596
  class LandingZoneManagementGroupPropertiesResponse(dict):
597
597
  """
598
- Landing zone management group properties.
598
+ The 'Landing Zones' management group properties..
599
599
  """
600
600
  @staticmethod
601
601
  def __key_warning(key: str):
@@ -618,9 +618,9 @@ class LandingZoneManagementGroupPropertiesResponse(dict):
618
618
  name: str,
619
619
  policy_initiatives_assignment_properties: Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']):
620
620
  """
621
- Landing zone management group properties.
621
+ The 'Landing Zones' management group properties..
622
622
  :param str name: Management group name.
623
- :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
623
+ :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
624
624
  """
625
625
  pulumi.set(__self__, "name", name)
626
626
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -637,7 +637,7 @@ class LandingZoneManagementGroupPropertiesResponse(dict):
637
637
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
638
638
  def policy_initiatives_assignment_properties(self) -> Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']:
639
639
  """
640
- Array of initiative assignments to be applied to the management group.
640
+ Array of policy initiatives applied to the management group.
641
641
  """
642
642
  return pulumi.get(self, "policy_initiatives_assignment_properties")
643
643
 
@@ -679,8 +679,8 @@ class LandingZoneRegistrationResourcePropertiesResponse(dict):
679
679
  The properties of landing zone registration resource type.
680
680
  :param str existing_landing_zone_configuration_id: The resource id of the associated landing zone configuration.
681
681
  :param str existing_top_level_mg_id: The resource id of the top level management group
682
- :param 'ManagedIdentityPropertiesResponse' managed_identity: The managed identity to be tied to this landing zone registration
683
- :param str provisioning_state: The status of a user-initiated, control-plane operation on the landing Zone registration resource type.
682
+ :param 'ManagedIdentityPropertiesResponse' managed_identity: The managed identity to be assigned to this landing zone registration.
683
+ :param str provisioning_state: The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
684
684
  """
685
685
  pulumi.set(__self__, "existing_landing_zone_configuration_id", existing_landing_zone_configuration_id)
686
686
  pulumi.set(__self__, "existing_top_level_mg_id", existing_top_level_mg_id)
@@ -707,7 +707,7 @@ class LandingZoneRegistrationResourcePropertiesResponse(dict):
707
707
  @pulumi.getter(name="managedIdentity")
708
708
  def managed_identity(self) -> 'outputs.ManagedIdentityPropertiesResponse':
709
709
  """
710
- The managed identity to be tied to this landing zone registration
710
+ The managed identity to be assigned to this landing zone registration.
711
711
  """
712
712
  return pulumi.get(self, "managed_identity")
713
713
 
@@ -715,7 +715,7 @@ class LandingZoneRegistrationResourcePropertiesResponse(dict):
715
715
  @pulumi.getter(name="provisioningState")
716
716
  def provisioning_state(self) -> str:
717
717
  """
718
- The status of a user-initiated, control-plane operation on the landing Zone registration resource type.
718
+ The state that reflects the current stage in the creation, updating, or deletion process of the landing zone registration resource type.
719
719
  """
720
720
  return pulumi.get(self, "provisioning_state")
721
721
 
@@ -723,7 +723,7 @@ class LandingZoneRegistrationResourcePropertiesResponse(dict):
723
723
  @pulumi.output_type
724
724
  class ManagedIdentityPropertiesResponse(dict):
725
725
  """
726
- The properties of managed identity.
726
+ The properties of managed identity, specifically including type and resource ID.
727
727
  """
728
728
  @staticmethod
729
729
  def __key_warning(key: str):
@@ -746,7 +746,7 @@ class ManagedIdentityPropertiesResponse(dict):
746
746
  type: str,
747
747
  user_assigned_identity_resource_id: Optional[str] = None):
748
748
  """
749
- The properties of managed identity.
749
+ The properties of managed identity, specifically including type and resource ID.
750
750
  :param str type: The type of managed identity.
751
751
  :param str user_assigned_identity_resource_id: The resource id of the managed identity.
752
752
  """
@@ -851,7 +851,7 @@ class ManagedServiceIdentityResponse(dict):
851
851
  @pulumi.output_type
852
852
  class ManagementGroupPropertiesResponse(dict):
853
853
  """
854
- Details of the policy and initiatives associated with the management group.
854
+ The properties of policy initiatives applied to the management group.
855
855
  """
856
856
  @staticmethod
857
857
  def __key_warning(key: str):
@@ -873,8 +873,8 @@ class ManagementGroupPropertiesResponse(dict):
873
873
  def __init__(__self__, *,
874
874
  policy_initiatives_assignment_properties: Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']):
875
875
  """
876
- Details of the policy and initiatives associated with the management group.
877
- :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
876
+ The properties of policy initiatives applied to the management group.
877
+ :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
878
878
  """
879
879
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
880
880
 
@@ -882,7 +882,7 @@ class ManagementGroupPropertiesResponse(dict):
882
882
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
883
883
  def policy_initiatives_assignment_properties(self) -> Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']:
884
884
  """
885
- Array of initiative assignments to be applied to the management group.
885
+ Array of policy initiatives applied to the management group.
886
886
  """
887
887
  return pulumi.get(self, "policy_initiatives_assignment_properties")
888
888
 
@@ -890,7 +890,7 @@ class ManagementGroupPropertiesResponse(dict):
890
890
  @pulumi.output_type
891
891
  class PlatformManagementGroupPropertiesResponse(dict):
892
892
  """
893
- Platform management group properties.
893
+ The 'Platform' management group properties.
894
894
  """
895
895
  @staticmethod
896
896
  def __key_warning(key: str):
@@ -913,9 +913,9 @@ class PlatformManagementGroupPropertiesResponse(dict):
913
913
  name: str,
914
914
  policy_initiatives_assignment_properties: Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']):
915
915
  """
916
- Platform management group properties.
916
+ The 'Platform' management group properties.
917
917
  :param str name: Management group name.
918
- :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
918
+ :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
919
919
  """
920
920
  pulumi.set(__self__, "name", name)
921
921
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -932,7 +932,7 @@ class PlatformManagementGroupPropertiesResponse(dict):
932
932
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
933
933
  def policy_initiatives_assignment_properties(self) -> Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']:
934
934
  """
935
- Array of initiative assignments to be applied to the management group.
935
+ Array of policy initiatives applied to the management group.
936
936
  """
937
937
  return pulumi.get(self, "policy_initiatives_assignment_properties")
938
938
 
@@ -940,7 +940,7 @@ class PlatformManagementGroupPropertiesResponse(dict):
940
940
  @pulumi.output_type
941
941
  class PolicyInitiativeAssignmentPropertiesResponse(dict):
942
942
  """
943
- Details of policy assignments
943
+ The properties of assigned policy initiatives.
944
944
  """
945
945
  @staticmethod
946
946
  def __key_warning(key: str):
@@ -965,8 +965,8 @@ class PolicyInitiativeAssignmentPropertiesResponse(dict):
965
965
  assignment_parameters: Any,
966
966
  policy_initiative_id: str):
967
967
  """
968
- Details of policy assignments
969
- :param Any assignment_parameters: The parameters for the assignment of policy initiatives.
968
+ The properties of assigned policy initiatives.
969
+ :param Any assignment_parameters: The parameters of the assigned policy initiative.
970
970
  :param str policy_initiative_id: The fully qualified id of the policy initiative.
971
971
  """
972
972
  pulumi.set(__self__, "assignment_parameters", assignment_parameters)
@@ -976,7 +976,7 @@ class PolicyInitiativeAssignmentPropertiesResponse(dict):
976
976
  @pulumi.getter(name="assignmentParameters")
977
977
  def assignment_parameters(self) -> Any:
978
978
  """
979
- The parameters for the assignment of policy initiatives.
979
+ The parameters of the assigned policy initiative.
980
980
  """
981
981
  return pulumi.get(self, "assignment_parameters")
982
982
 
@@ -992,7 +992,7 @@ class PolicyInitiativeAssignmentPropertiesResponse(dict):
992
992
  @pulumi.output_type
993
993
  class SandboxManagementGroupPropertiesResponse(dict):
994
994
  """
995
- Sandbox management group properties.
995
+ The 'Sandbox' management group properties.
996
996
  """
997
997
  @staticmethod
998
998
  def __key_warning(key: str):
@@ -1015,9 +1015,9 @@ class SandboxManagementGroupPropertiesResponse(dict):
1015
1015
  create: bool,
1016
1016
  policy_initiatives_assignment_properties: Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']):
1017
1017
  """
1018
- Sandbox management group properties.
1019
- :param bool create: When set to false this management group will not be created. The default value is false.
1020
- :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
1018
+ The 'Sandbox' management group properties.
1019
+ :param bool create: This parameter determines whether the 'Sandbox' management group will be created. If set to true, the group will be created; if set to false, it will not be created. The default value is false.
1020
+ :param Sequence['PolicyInitiativeAssignmentPropertiesResponse'] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
1021
1021
  """
1022
1022
  pulumi.set(__self__, "create", create)
1023
1023
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -1026,7 +1026,7 @@ class SandboxManagementGroupPropertiesResponse(dict):
1026
1026
  @pulumi.getter
1027
1027
  def create(self) -> bool:
1028
1028
  """
1029
- When set to false this management group will not be created. The default value is false.
1029
+ This parameter determines whether the 'Sandbox' management group will be created. If set to true, the group will be created; if set to false, it will not be created. The default value is false.
1030
1030
  """
1031
1031
  return pulumi.get(self, "create")
1032
1032
 
@@ -1034,7 +1034,7 @@ class SandboxManagementGroupPropertiesResponse(dict):
1034
1034
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
1035
1035
  def policy_initiatives_assignment_properties(self) -> Sequence['outputs.PolicyInitiativeAssignmentPropertiesResponse']:
1036
1036
  """
1037
- Array of initiative assignments to be applied to the management group.
1037
+ Array of policy initiatives applied to the management group.
1038
1038
  """
1039
1039
  return pulumi.get(self, "policy_initiatives_assignment_properties")
1040
1040
 
@@ -1152,13 +1152,13 @@ class SystemDataResponse(dict):
1152
1152
  @pulumi.output_type
1153
1153
  class TagsResponse(dict):
1154
1154
  """
1155
- The details associated with tags.
1155
+ Key-value pairs that can be assigned to this resource.
1156
1156
  """
1157
1157
  def __init__(__self__, *,
1158
1158
  name: str,
1159
1159
  value: Optional[str] = None):
1160
1160
  """
1161
- The details associated with tags.
1161
+ Key-value pairs that can be assigned to this resource.
1162
1162
  :param str name: A tag name.
1163
1163
  :param str value: A tag value.
1164
1164
  """