pulumi-azure-native 2.87.0a1739193742__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 (415) hide show
  1. pulumi_azure_native/__init__.py +77 -1
  2. pulumi_azure_native/authorization/__init__.py +2 -0
  3. pulumi_azure_native/authorization/_enums.py +88 -0
  4. pulumi_azure_native/authorization/_inputs.py +1431 -43
  5. pulumi_azure_native/authorization/get_role_management_policy.py +247 -0
  6. pulumi_azure_native/authorization/outputs.py +312 -0
  7. pulumi_azure_native/authorization/role_management_policy.py +332 -0
  8. pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
  9. pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
  10. pulumi_azure_native/authorization/v20201001/_inputs.py +1134 -0
  11. pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +241 -0
  12. pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
  13. pulumi_azure_native/authorization/v20201001/role_management_policy.py +326 -0
  14. pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
  15. pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
  16. pulumi_azure_native/authorization/v20201001preview/_inputs.py +1134 -0
  17. pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +241 -0
  18. pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
  19. pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +326 -0
  20. pulumi_azure_native/authorization/v20240201preview/__init__.py +4 -0
  21. pulumi_azure_native/authorization/v20240201preview/_enums.py +96 -0
  22. pulumi_azure_native/authorization/v20240201preview/_inputs.py +1390 -0
  23. pulumi_azure_native/authorization/v20240201preview/get_role_management_policy.py +241 -0
  24. pulumi_azure_native/authorization/v20240201preview/outputs.py +89 -0
  25. pulumi_azure_native/authorization/v20240201preview/role_management_policy.py +326 -0
  26. pulumi_azure_native/authorization/v20240901preview/__init__.py +4 -0
  27. pulumi_azure_native/authorization/v20240901preview/_enums.py +96 -0
  28. pulumi_azure_native/authorization/v20240901preview/_inputs.py +1410 -0
  29. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy.py +241 -0
  30. pulumi_azure_native/authorization/v20240901preview/outputs.py +89 -0
  31. pulumi_azure_native/authorization/v20240901preview/role_management_policy.py +326 -0
  32. pulumi_azure_native/communication/__init__.py +3 -0
  33. pulumi_azure_native/communication/communication_service.py +3 -3
  34. pulumi_azure_native/communication/domain.py +3 -3
  35. pulumi_azure_native/communication/email_service.py +3 -3
  36. pulumi_azure_native/communication/get_communication_service.py +2 -2
  37. pulumi_azure_native/communication/get_domain.py +2 -2
  38. pulumi_azure_native/communication/get_email_service.py +2 -2
  39. pulumi_azure_native/communication/get_sender_username.py +2 -2
  40. pulumi_azure_native/communication/get_suppression_list.py +4 -0
  41. pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
  42. pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
  43. pulumi_azure_native/communication/sender_username.py +3 -3
  44. pulumi_azure_native/communication/suppression_list.py +5 -1
  45. pulumi_azure_native/communication/suppression_list_address.py +5 -1
  46. pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
  47. pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
  48. pulumi_azure_native/communication/v20230331/domain.py +1 -1
  49. pulumi_azure_native/communication/v20230331/email_service.py +1 -1
  50. pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
  51. pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
  52. pulumi_azure_native/communication/v20230401/domain.py +1 -1
  53. pulumi_azure_native/communication/v20230401/email_service.py +1 -1
  54. pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
  55. pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
  56. pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
  57. pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
  58. pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
  59. pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
  60. pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
  61. pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
  62. pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
  63. pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
  64. pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
  65. pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
  66. pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
  67. pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
  68. pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
  69. pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
  70. pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
  71. pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
  72. pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
  73. pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
  74. pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
  75. pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
  76. pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
  77. pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
  78. pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
  79. pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
  80. pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
  81. pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
  82. pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
  83. pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
  84. pulumi_azure_native/datafactory/_inputs.py +43 -43
  85. pulumi_azure_native/datafactory/outputs.py +34 -34
  86. pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
  87. pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
  88. pulumi_azure_native/eventgrid/__init__.py +3 -0
  89. pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
  90. pulumi_azure_native/eventgrid/channel.py +3 -3
  91. pulumi_azure_native/eventgrid/client.py +3 -3
  92. pulumi_azure_native/eventgrid/client_group.py +3 -3
  93. pulumi_azure_native/eventgrid/domain.py +3 -3
  94. pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
  95. pulumi_azure_native/eventgrid/domain_topic.py +3 -3
  96. pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
  97. pulumi_azure_native/eventgrid/event_subscription.py +3 -3
  98. pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
  99. pulumi_azure_native/eventgrid/get_channel.py +2 -2
  100. pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
  101. pulumi_azure_native/eventgrid/get_client.py +2 -2
  102. pulumi_azure_native/eventgrid/get_client_group.py +2 -2
  103. pulumi_azure_native/eventgrid/get_domain.py +2 -2
  104. pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
  105. pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
  106. pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
  107. pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
  108. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
  109. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
  110. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
  111. pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
  112. pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
  113. pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
  114. pulumi_azure_native/eventgrid/get_namespace.py +2 -2
  115. pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
  116. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
  117. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
  118. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
  119. pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
  120. pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
  121. pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
  122. pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
  123. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
  124. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
  125. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
  126. pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
  127. pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
  128. pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
  129. pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
  130. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
  131. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
  132. pulumi_azure_native/eventgrid/get_topic.py +2 -2
  133. pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
  134. pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
  135. pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
  136. pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
  137. pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
  138. pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
  139. pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
  140. pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
  141. pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
  142. pulumi_azure_native/eventgrid/namespace.py +3 -3
  143. pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
  144. pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
  145. pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
  146. pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
  147. pulumi_azure_native/eventgrid/partner_registration.py +3 -3
  148. pulumi_azure_native/eventgrid/partner_topic.py +3 -3
  149. pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
  150. pulumi_azure_native/eventgrid/permission_binding.py +3 -3
  151. pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
  152. pulumi_azure_native/eventgrid/system_topic.py +3 -3
  153. pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
  154. pulumi_azure_native/eventgrid/topic.py +3 -3
  155. pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
  156. pulumi_azure_native/eventgrid/topic_space.py +3 -3
  157. pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
  158. pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
  159. pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
  160. pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
  161. pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
  162. pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
  163. pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
  164. pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
  165. pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
  166. pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
  167. pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
  168. pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
  169. pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
  170. pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
  171. pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
  172. pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
  173. pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
  174. pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
  175. pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
  176. pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
  177. pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
  178. pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
  179. pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
  180. pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
  181. pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
  182. pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
  183. pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
  184. pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
  185. pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
  186. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
  187. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
  188. pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
  189. pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
  190. pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
  191. pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
  192. pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
  193. pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
  194. pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
  195. pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
  196. pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
  197. pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
  198. pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
  199. pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
  200. pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
  201. pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
  202. pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
  203. pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
  204. pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
  205. pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
  206. pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
  207. pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
  208. pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
  209. pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
  210. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
  211. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
  212. pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
  213. pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
  214. pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
  215. pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
  216. pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
  217. pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
  218. pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
  219. pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
  220. pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
  221. pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
  222. pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
  223. pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
  224. pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
  225. pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
  226. pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
  227. pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
  228. pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
  229. pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
  230. pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
  231. pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
  232. pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
  233. pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
  234. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
  235. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
  236. pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
  237. pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
  238. pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
  239. pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
  240. pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
  241. pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
  242. pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
  243. pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
  244. pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
  245. pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
  246. pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
  247. pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
  248. pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
  249. pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
  250. pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
  251. pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
  252. pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
  253. pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
  254. pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
  255. pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
  256. pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
  257. pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
  258. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
  259. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
  260. pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
  261. pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
  262. pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
  263. pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
  264. pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
  265. pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
  266. pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
  267. pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
  268. pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
  269. pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
  270. pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
  271. pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
  272. pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
  273. pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
  274. pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
  275. pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
  276. pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
  277. pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
  278. pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
  279. pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
  280. pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
  281. pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
  282. pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
  283. pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
  284. pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
  285. pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
  286. pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
  287. pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
  288. pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
  289. pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
  290. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
  291. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
  292. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
  293. pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
  294. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
  295. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
  296. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
  297. pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
  298. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
  299. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
  300. pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
  301. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
  302. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
  303. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
  304. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
  305. pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
  306. pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
  307. pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
  308. pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
  309. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
  310. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
  311. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
  312. pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
  313. pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
  314. pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
  315. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
  316. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
  317. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
  318. pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
  319. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
  320. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
  321. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
  322. pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
  323. pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
  324. pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
  325. pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
  326. pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
  327. pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
  328. pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
  329. pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
  330. pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
  331. pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
  332. pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
  333. pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
  334. pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
  335. pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
  336. pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
  337. pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
  338. pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
  339. pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
  340. pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
  341. pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
  342. pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
  343. pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
  344. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
  345. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
  346. pulumi_azure_native/netapp/__init__.py +1 -0
  347. pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
  348. pulumi_azure_native/netapp/outputs.py +36 -0
  349. pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
  350. pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
  351. pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
  352. pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
  353. pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
  354. pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
  355. pulumi_azure_native/pulumi-plugin.json +1 -1
  356. pulumi_azure_native/sovereign/_enums.py +15 -15
  357. pulumi_azure_native/sovereign/_inputs.py +129 -129
  358. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
  359. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
  360. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
  361. pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
  362. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
  363. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
  364. pulumi_azure_native/sovereign/outputs.py +100 -100
  365. pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
  366. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
  367. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
  368. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
  369. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
  370. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
  371. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
  372. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
  373. pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
  374. pulumi_azure_native/videoindexer/__init__.py +3 -0
  375. pulumi_azure_native/videoindexer/account.py +3 -3
  376. pulumi_azure_native/videoindexer/get_account.py +2 -2
  377. pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
  378. pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
  379. pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
  380. pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
  381. pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
  382. pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
  383. pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
  384. pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
  385. pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
  386. pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
  387. pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
  388. pulumi_azure_native/web/container_app.py +3 -3
  389. pulumi_azure_native/web/get_container_app.py +2 -2
  390. pulumi_azure_native/web/list_container_app_secrets.py +2 -2
  391. pulumi_azure_native/web/v20230101/container_app.py +1 -1
  392. pulumi_azure_native/web/v20231201/container_app.py +1 -1
  393. pulumi_azure_native/web/v20240401/__init__.py +0 -3
  394. pulumi_azure_native/web/v20240401/_enums.py +0 -20
  395. pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
  396. pulumi_azure_native/web/v20240401/outputs.py +19 -1212
  397. pulumi_azure_native/weightsandbiases/__init__.py +20 -0
  398. pulumi_azure_native/weightsandbiases/_enums.py +84 -0
  399. pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
  400. pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
  401. pulumi_azure_native/weightsandbiases/instance.py +289 -0
  402. pulumi_azure_native/weightsandbiases/outputs.py +747 -0
  403. pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
  404. pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
  405. pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
  406. pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
  407. pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
  408. pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
  409. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/METADATA +1 -1
  410. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/RECORD +412 -285
  411. pulumi_azure_native/web/v20240401/container_app.py +0 -364
  412. pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
  413. pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
  414. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/WHEEL +0 -0
  415. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/top_level.txt +0 -0
@@ -49,11 +49,11 @@ MYPY = False
49
49
  if not MYPY:
50
50
  class CustomNamingConventionArgsDict(TypedDict):
51
51
  """
52
- The details for the custom resource override.
52
+ The details for the custom naming convention override for a specific resource type.
53
53
  """
54
54
  formula: pulumi.Input[str]
55
55
  """
56
- The custom formula for the resource type.
56
+ The custom naming formula for the resource type.
57
57
  """
58
58
  resource_type: pulumi.Input[Union[str, 'ResourceType']]
59
59
  """
@@ -68,8 +68,8 @@ class CustomNamingConventionArgs:
68
68
  formula: pulumi.Input[str],
69
69
  resource_type: pulumi.Input[Union[str, 'ResourceType']]):
70
70
  """
71
- The details for the custom resource override.
72
- :param pulumi.Input[str] formula: The custom formula for the resource type.
71
+ The details for the custom naming convention override for a specific resource type.
72
+ :param pulumi.Input[str] formula: The custom naming formula for the resource type.
73
73
  :param pulumi.Input[Union[str, 'ResourceType']] resource_type: The type of the resource.
74
74
  """
75
75
  pulumi.set(__self__, "formula", formula)
@@ -79,7 +79,7 @@ class CustomNamingConventionArgs:
79
79
  @pulumi.getter
80
80
  def formula(self) -> pulumi.Input[str]:
81
81
  """
82
- The custom formula for the resource type.
82
+ The custom naming formula for the resource type.
83
83
  """
84
84
  return pulumi.get(self, "formula")
85
85
 
@@ -103,15 +103,15 @@ class CustomNamingConventionArgs:
103
103
  if not MYPY:
104
104
  class DecommissionedManagementGroupPropertiesArgsDict(TypedDict):
105
105
  """
106
- Decommissioned management group properties.
106
+ The 'Decommissioned' management group properties.
107
107
  """
108
108
  create: pulumi.Input[bool]
109
109
  """
110
- When set to false, this management group will not be created. The default value is false.
110
+ 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.
111
111
  """
112
112
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgsDict']]]
113
113
  """
114
- Array of initiative assignments to be applied to the management group.
114
+ Array of policy initiatives applied to the management group.
115
115
  """
116
116
  elif False:
117
117
  DecommissionedManagementGroupPropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -122,9 +122,9 @@ class DecommissionedManagementGroupPropertiesArgs:
122
122
  create: pulumi.Input[bool],
123
123
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]):
124
124
  """
125
- Decommissioned management group properties.
126
- :param pulumi.Input[bool] create: When set to false, this management group will not be created. The default value is false.
127
- :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
125
+ The 'Decommissioned' management group properties.
126
+ :param pulumi.Input[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.
127
+ :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
128
128
  """
129
129
  pulumi.set(__self__, "create", create)
130
130
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -133,7 +133,7 @@ class DecommissionedManagementGroupPropertiesArgs:
133
133
  @pulumi.getter
134
134
  def create(self) -> pulumi.Input[bool]:
135
135
  """
136
- When set to false, this management group will not be created. The default value is false.
136
+ 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.
137
137
  """
138
138
  return pulumi.get(self, "create")
139
139
 
@@ -145,7 +145,7 @@ class DecommissionedManagementGroupPropertiesArgs:
145
145
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
146
146
  def policy_initiatives_assignment_properties(self) -> pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]:
147
147
  """
148
- Array of initiative assignments to be applied to the management group.
148
+ Array of policy initiatives applied to the management group.
149
149
  """
150
150
  return pulumi.get(self, "policy_initiatives_assignment_properties")
151
151
 
@@ -161,7 +161,7 @@ if not MYPY:
161
161
  """
162
162
  storage_account: pulumi.Input[str]
163
163
  """
164
- The storage account that will host the generated slz code.
164
+ The storage account that will host the generated infrastructure as code (IaC) for a landing zone deployment.
165
165
  """
166
166
  elif False:
167
167
  LandingZoneAccountResourcePropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -172,7 +172,7 @@ class LandingZoneAccountResourcePropertiesArgs:
172
172
  storage_account: pulumi.Input[str]):
173
173
  """
174
174
  The properties of landing zone account resource type.
175
- :param pulumi.Input[str] storage_account: The storage account that will host the generated slz code.
175
+ :param pulumi.Input[str] storage_account: The storage account that will host the generated infrastructure as code (IaC) for a landing zone deployment.
176
176
  """
177
177
  pulumi.set(__self__, "storage_account", storage_account)
178
178
 
@@ -180,7 +180,7 @@ class LandingZoneAccountResourcePropertiesArgs:
180
180
  @pulumi.getter(name="storageAccount")
181
181
  def storage_account(self) -> pulumi.Input[str]:
182
182
  """
183
- The storage account that will host the generated slz code.
183
+ The storage account that will host the generated infrastructure as code (IaC) for a landing zone deployment.
184
184
  """
185
185
  return pulumi.get(self, "storage_account")
186
186
 
@@ -196,107 +196,107 @@ if not MYPY:
196
196
  """
197
197
  azure_bastion_creation_option: pulumi.Input[Union[str, 'ResourceCreationOptions']]
198
198
  """
199
- To deploy the bastion service, choose Yes, otherwise No. Choose UseExisting for existing bastion service.
199
+ Parameter used to deploy a Bastion: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing Bastion.
200
200
  """
201
201
  ddos_protection_creation_option: pulumi.Input[Union[str, 'ResourceCreationOptions']]
202
202
  """
203
- To deploy ddos, choose Yes, otherwise No. Select Existing to provide an existing ddos protection plan.
203
+ 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.
204
204
  """
205
205
  firewall_creation_option: pulumi.Input[Union[str, 'FirewallCreationOptions']]
206
206
  """
207
- To deploy firewall, choose the Standard/Premium based on the desired SKU. Choose None for no firewall and UseExisting for a pre existing one.
207
+ Parameter used for deploying a Firewall: Select 'No' to skip deployment, 'Standard' to deploy the Standard SKU, or 'Premium' to deploy the Premium SKU.
208
208
  """
209
209
  gateway_subnet_cidr_block: pulumi.Input[str]
210
210
  """
211
- Gateway subnet. IPv4 CIDR block.
211
+ The gateway subnet address used for deploying a virtual network. Specify the subnet using IPv4 CIDR notation.
212
212
  """
213
213
  hub_network_cidr_block: pulumi.Input[str]
214
214
  """
215
- The address space for the VNET. IPv4 CIDR block.
215
+ The Virtual Network address. Specify the address using IPv4 CIDR notation.
216
216
  """
217
217
  log_analytics_workspace_creation_option: pulumi.Input[Union[str, 'ResourceCreationOptions']]
218
218
  """
219
- To deploy log analytics workspace, choose Yes, otherwise No. Select UseExisting to provide an existing log analytics workspace.
219
+ 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.
220
220
  """
221
221
  log_retention_in_days: pulumi.Input[float]
222
222
  """
223
- Set how long logs are retained for, in days. Minimum length is 30 and maximum is 730
223
+ Parameter to define the retention period for logs, in days. The minimum duration is 30 days and the maximum is 730 days.
224
224
  """
225
225
  managed_identity: pulumi.Input['ManagedIdentityPropertiesArgsDict']
226
226
  """
227
- The managed identity to be tied to this landing zone configuration
227
+ The managed identity to be assigned to this landing zone configuration.
228
228
  """
229
229
  azure_bastion_subnet_cidr_block: NotRequired[pulumi.Input[str]]
230
230
  """
231
- Azure bastion subnet. IP v4 CIDR block.
231
+ The Bastion subnet address. Specify the address using IPv4 CIDR notation.
232
232
  """
233
233
  custom_naming_convention: NotRequired[pulumi.Input[Sequence[pulumi.Input['CustomNamingConventionArgsDict']]]]
234
234
  """
235
- The customized naming convention for one or more resource types in this landing zone configuration
235
+ 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}'}]
236
236
  """
237
237
  decommissioned_mg_metadata: NotRequired[pulumi.Input['DecommissionedManagementGroupPropertiesArgsDict']]
238
238
  """
239
- This will be applied to the decommissioned management group.
239
+ The assigned policies of the 'Decommissioned' management group and indicator to create it or not.
240
240
  """
241
241
  existing_azure_bastion_id: NotRequired[pulumi.Input[str]]
242
242
  """
243
- The resource id of azure bastion.
243
+ The resource ID of the Bastion when reusing an existing one.
244
244
  """
245
245
  existing_ddos_protection_id: NotRequired[pulumi.Input[str]]
246
246
  """
247
- The resource id of the ddos protection plan.
247
+ The resource ID of the DDoS protection plan when reusing an existing one.
248
248
  """
249
249
  existing_log_analytics_workspace_id: NotRequired[pulumi.Input[str]]
250
250
  """
251
- The resource id of the log analytics workspace that was created to centralize log ingestion.
251
+ The resource ID of the log analytics workspace when reusing an existing one.
252
252
  """
253
253
  firewall_subnet_cidr_block: NotRequired[pulumi.Input[str]]
254
254
  """
255
- Azure firewall subnet. IPv4 CIDR block.
255
+ The Firewall subnet address used for deploying a firewall. Specify the Firewall subnet using IPv4 CIDR notation.
256
256
  """
257
257
  landing_zones_mg_children: NotRequired[pulumi.Input[Sequence[pulumi.Input['LandingZoneManagementGroupPropertiesArgsDict']]]]
258
258
  """
259
- Landing zone children management group properties
259
+ The child management groups of 'Landing Zones' management group and their assigned policies.
260
260
  """
261
261
  landing_zones_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
262
262
  """
263
- This will be applied to the landing zone management groups.
263
+ The assigned policies of the 'Landing Zones' management group.
264
264
  """
265
265
  naming_convention_formula: NotRequired[pulumi.Input[str]]
266
266
  """
267
- The naming convention that's used by default for all resource types for this landing zone configuration
267
+ The default naming convention applied to all resources for this landing zone configuration. Example - {DeploymentPrefix}-Contoso-{ResourceTypeAbbreviation}{DeploymentSuffix}-{Environment}-testing
268
268
  """
269
269
  platform_connectivity_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
270
270
  """
271
- This will be applied to the connectivity management group under platform.
271
+ The assigned policies of the 'Connectivity' management group under 'Platform' management group.
272
272
  """
273
273
  platform_identity_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
274
274
  """
275
- This will be applied to the identity management group under platform.
275
+ The assigned policies of the 'Identity' management group under 'Platform' management group.
276
276
  """
277
277
  platform_management_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
278
278
  """
279
- This will be applied to the management management group under platform.
279
+ The assigned policies of the 'Management' management group under 'Platform' management group.
280
280
  """
281
281
  platform_mg_children: NotRequired[pulumi.Input[Sequence[pulumi.Input['PlatformManagementGroupPropertiesArgsDict']]]]
282
282
  """
283
- Platform children management group properties.
283
+ The names of the 'Platform' child management groups and their assigned policies, excluding the default ones: 'Connectivity', 'Identity', and 'Management'
284
284
  """
285
285
  platform_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
286
286
  """
287
- This will be applied to the platform management group.
287
+ The assigned policies of the 'Platform' management group.
288
288
  """
289
289
  sandbox_mg_metadata: NotRequired[pulumi.Input['SandboxManagementGroupPropertiesArgsDict']]
290
290
  """
291
- This will be applied to the sandbox management group.
291
+ The assigned policies of the 'Sandbox' management group and indicator to create it or not.
292
292
  """
293
293
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input['TagsArgsDict']]]]
294
294
  """
295
- Array of tag objects in format of {'name':'a tag name', 'value':'a tag value'}.
295
+ 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'}
296
296
  """
297
297
  top_level_mg_metadata: NotRequired[pulumi.Input['ManagementGroupPropertiesArgsDict']]
298
298
  """
299
- This will be applied to the root of the landing zone deployment.
299
+ The assigned policies of the parent management group.
300
300
  """
301
301
  elif False:
302
302
  LandingZoneConfigurationResourcePropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -332,32 +332,32 @@ class LandingZoneConfigurationResourcePropertiesArgs:
332
332
  top_level_mg_metadata: Optional[pulumi.Input['ManagementGroupPropertiesArgs']] = None):
333
333
  """
334
334
  The properties of landing zone configuration resource type.
335
- :param pulumi.Input[Union[str, 'ResourceCreationOptions']] azure_bastion_creation_option: To deploy the bastion service, choose Yes, otherwise No. Choose UseExisting for existing bastion service.
336
- :param pulumi.Input[Union[str, 'ResourceCreationOptions']] ddos_protection_creation_option: To deploy ddos, choose Yes, otherwise No. Select Existing to provide an existing ddos protection plan.
337
- :param pulumi.Input[Union[str, 'FirewallCreationOptions']] 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.
338
- :param pulumi.Input[str] gateway_subnet_cidr_block: Gateway subnet. IPv4 CIDR block.
339
- :param pulumi.Input[str] hub_network_cidr_block: The address space for the VNET. IPv4 CIDR block.
340
- :param pulumi.Input[Union[str, 'ResourceCreationOptions']] log_analytics_workspace_creation_option: To deploy log analytics workspace, choose Yes, otherwise No. Select UseExisting to provide an existing log analytics workspace.
341
- :param pulumi.Input[float] log_retention_in_days: Set how long logs are retained for, in days. Minimum length is 30 and maximum is 730
342
- :param pulumi.Input['ManagedIdentityPropertiesArgs'] managed_identity: The managed identity to be tied to this landing zone configuration
343
- :param pulumi.Input[str] azure_bastion_subnet_cidr_block: Azure bastion subnet. IP v4 CIDR block.
344
- :param pulumi.Input[Sequence[pulumi.Input['CustomNamingConventionArgs']]] custom_naming_convention: The customized naming convention for one or more resource types in this landing zone configuration
345
- :param pulumi.Input['DecommissionedManagementGroupPropertiesArgs'] decommissioned_mg_metadata: This will be applied to the decommissioned management group.
346
- :param pulumi.Input[str] existing_azure_bastion_id: The resource id of azure bastion.
347
- :param pulumi.Input[str] existing_ddos_protection_id: The resource id of the ddos protection plan.
348
- :param pulumi.Input[str] existing_log_analytics_workspace_id: The resource id of the log analytics workspace that was created to centralize log ingestion.
349
- :param pulumi.Input[str] firewall_subnet_cidr_block: Azure firewall subnet. IPv4 CIDR block.
350
- :param pulumi.Input[Sequence[pulumi.Input['LandingZoneManagementGroupPropertiesArgs']]] landing_zones_mg_children: Landing zone children management group properties
351
- :param pulumi.Input['ManagementGroupPropertiesArgs'] landing_zones_mg_metadata: This will be applied to the landing zone management groups.
352
- :param pulumi.Input[str] naming_convention_formula: The naming convention that's used by default for all resource types for this landing zone configuration
353
- :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_connectivity_mg_metadata: This will be applied to the connectivity management group under platform.
354
- :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_identity_mg_metadata: This will be applied to the identity management group under platform.
355
- :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_management_mg_metadata: This will be applied to the management management group under platform.
356
- :param pulumi.Input[Sequence[pulumi.Input['PlatformManagementGroupPropertiesArgs']]] platform_mg_children: Platform children management group properties.
357
- :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_mg_metadata: This will be applied to the platform management group.
358
- :param pulumi.Input['SandboxManagementGroupPropertiesArgs'] sandbox_mg_metadata: This will be applied to the sandbox management group.
359
- :param pulumi.Input[Sequence[pulumi.Input['TagsArgs']]] tags: Array of tag objects in format of {'name':'a tag name', 'value':'a tag value'}.
360
- :param pulumi.Input['ManagementGroupPropertiesArgs'] top_level_mg_metadata: This will be applied to the root of the landing zone deployment.
335
+ :param pulumi.Input[Union[str, 'ResourceCreationOptions']] 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.
336
+ :param pulumi.Input[Union[str, 'ResourceCreationOptions']] 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.
337
+ :param pulumi.Input[Union[str, 'FirewallCreationOptions']] 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.
338
+ :param pulumi.Input[str] gateway_subnet_cidr_block: The gateway subnet address used for deploying a virtual network. Specify the subnet using IPv4 CIDR notation.
339
+ :param pulumi.Input[str] hub_network_cidr_block: The Virtual Network address. Specify the address using IPv4 CIDR notation.
340
+ :param pulumi.Input[Union[str, 'ResourceCreationOptions']] 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.
341
+ :param pulumi.Input[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.
342
+ :param pulumi.Input['ManagedIdentityPropertiesArgs'] managed_identity: The managed identity to be assigned to this landing zone configuration.
343
+ :param pulumi.Input[str] azure_bastion_subnet_cidr_block: The Bastion subnet address. Specify the address using IPv4 CIDR notation.
344
+ :param pulumi.Input[Sequence[pulumi.Input['CustomNamingConventionArgs']]] 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}'}]
345
+ :param pulumi.Input['DecommissionedManagementGroupPropertiesArgs'] decommissioned_mg_metadata: The assigned policies of the 'Decommissioned' management group and indicator to create it or not.
346
+ :param pulumi.Input[str] existing_azure_bastion_id: The resource ID of the Bastion when reusing an existing one.
347
+ :param pulumi.Input[str] existing_ddos_protection_id: The resource ID of the DDoS protection plan when reusing an existing one.
348
+ :param pulumi.Input[str] existing_log_analytics_workspace_id: The resource ID of the log analytics workspace when reusing an existing one.
349
+ :param pulumi.Input[str] firewall_subnet_cidr_block: The Firewall subnet address used for deploying a firewall. Specify the Firewall subnet using IPv4 CIDR notation.
350
+ :param pulumi.Input[Sequence[pulumi.Input['LandingZoneManagementGroupPropertiesArgs']]] landing_zones_mg_children: The child management groups of 'Landing Zones' management group and their assigned policies.
351
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] landing_zones_mg_metadata: The assigned policies of the 'Landing Zones' management group.
352
+ :param pulumi.Input[str] naming_convention_formula: The default naming convention applied to all resources for this landing zone configuration. Example - {DeploymentPrefix}-Contoso-{ResourceTypeAbbreviation}{DeploymentSuffix}-{Environment}-testing
353
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_connectivity_mg_metadata: The assigned policies of the 'Connectivity' management group under 'Platform' management group.
354
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_identity_mg_metadata: The assigned policies of the 'Identity' management group under 'Platform' management group.
355
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_management_mg_metadata: The assigned policies of the 'Management' management group under 'Platform' management group.
356
+ :param pulumi.Input[Sequence[pulumi.Input['PlatformManagementGroupPropertiesArgs']]] platform_mg_children: The names of the 'Platform' child management groups and their assigned policies, excluding the default ones: 'Connectivity', 'Identity', and 'Management'
357
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] platform_mg_metadata: The assigned policies of the 'Platform' management group.
358
+ :param pulumi.Input['SandboxManagementGroupPropertiesArgs'] sandbox_mg_metadata: The assigned policies of the 'Sandbox' management group and indicator to create it or not.
359
+ :param pulumi.Input[Sequence[pulumi.Input['TagsArgs']]] 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'}
360
+ :param pulumi.Input['ManagementGroupPropertiesArgs'] top_level_mg_metadata: The assigned policies of the parent management group.
361
361
  """
362
362
  pulumi.set(__self__, "azure_bastion_creation_option", azure_bastion_creation_option)
363
363
  pulumi.set(__self__, "ddos_protection_creation_option", ddos_protection_creation_option)
@@ -408,7 +408,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
408
408
  @pulumi.getter(name="azureBastionCreationOption")
409
409
  def azure_bastion_creation_option(self) -> pulumi.Input[Union[str, 'ResourceCreationOptions']]:
410
410
  """
411
- To deploy the bastion service, choose Yes, otherwise No. Choose UseExisting for existing bastion service.
411
+ Parameter used to deploy a Bastion: Select 'Yes' to enable deployment, 'No' to skip it, or 'Existing' to reuse an existing Bastion.
412
412
  """
413
413
  return pulumi.get(self, "azure_bastion_creation_option")
414
414
 
@@ -420,7 +420,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
420
420
  @pulumi.getter(name="ddosProtectionCreationOption")
421
421
  def ddos_protection_creation_option(self) -> pulumi.Input[Union[str, 'ResourceCreationOptions']]:
422
422
  """
423
- To deploy ddos, choose Yes, otherwise No. Select Existing to provide an existing ddos protection plan.
423
+ 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.
424
424
  """
425
425
  return pulumi.get(self, "ddos_protection_creation_option")
426
426
 
@@ -432,7 +432,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
432
432
  @pulumi.getter(name="firewallCreationOption")
433
433
  def firewall_creation_option(self) -> pulumi.Input[Union[str, 'FirewallCreationOptions']]:
434
434
  """
435
- To deploy firewall, choose the Standard/Premium based on the desired SKU. Choose None for no firewall and UseExisting for a pre existing one.
435
+ Parameter used for deploying a Firewall: Select 'No' to skip deployment, 'Standard' to deploy the Standard SKU, or 'Premium' to deploy the Premium SKU.
436
436
  """
437
437
  return pulumi.get(self, "firewall_creation_option")
438
438
 
@@ -444,7 +444,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
444
444
  @pulumi.getter(name="gatewaySubnetCidrBlock")
445
445
  def gateway_subnet_cidr_block(self) -> pulumi.Input[str]:
446
446
  """
447
- Gateway subnet. IPv4 CIDR block.
447
+ The gateway subnet address used for deploying a virtual network. Specify the subnet using IPv4 CIDR notation.
448
448
  """
449
449
  return pulumi.get(self, "gateway_subnet_cidr_block")
450
450
 
@@ -456,7 +456,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
456
456
  @pulumi.getter(name="hubNetworkCidrBlock")
457
457
  def hub_network_cidr_block(self) -> pulumi.Input[str]:
458
458
  """
459
- The address space for the VNET. IPv4 CIDR block.
459
+ The Virtual Network address. Specify the address using IPv4 CIDR notation.
460
460
  """
461
461
  return pulumi.get(self, "hub_network_cidr_block")
462
462
 
@@ -468,7 +468,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
468
468
  @pulumi.getter(name="logAnalyticsWorkspaceCreationOption")
469
469
  def log_analytics_workspace_creation_option(self) -> pulumi.Input[Union[str, 'ResourceCreationOptions']]:
470
470
  """
471
- To deploy log analytics workspace, choose Yes, otherwise No. Select UseExisting to provide an existing log analytics workspace.
471
+ 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.
472
472
  """
473
473
  return pulumi.get(self, "log_analytics_workspace_creation_option")
474
474
 
@@ -480,7 +480,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
480
480
  @pulumi.getter(name="logRetentionInDays")
481
481
  def log_retention_in_days(self) -> pulumi.Input[float]:
482
482
  """
483
- Set how long logs are retained for, in days. Minimum length is 30 and maximum is 730
483
+ Parameter to define the retention period for logs, in days. The minimum duration is 30 days and the maximum is 730 days.
484
484
  """
485
485
  return pulumi.get(self, "log_retention_in_days")
486
486
 
@@ -492,7 +492,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
492
492
  @pulumi.getter(name="managedIdentity")
493
493
  def managed_identity(self) -> pulumi.Input['ManagedIdentityPropertiesArgs']:
494
494
  """
495
- The managed identity to be tied to this landing zone configuration
495
+ The managed identity to be assigned to this landing zone configuration.
496
496
  """
497
497
  return pulumi.get(self, "managed_identity")
498
498
 
@@ -504,7 +504,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
504
504
  @pulumi.getter(name="azureBastionSubnetCidrBlock")
505
505
  def azure_bastion_subnet_cidr_block(self) -> Optional[pulumi.Input[str]]:
506
506
  """
507
- Azure bastion subnet. IP v4 CIDR block.
507
+ The Bastion subnet address. Specify the address using IPv4 CIDR notation.
508
508
  """
509
509
  return pulumi.get(self, "azure_bastion_subnet_cidr_block")
510
510
 
@@ -516,7 +516,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
516
516
  @pulumi.getter(name="customNamingConvention")
517
517
  def custom_naming_convention(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CustomNamingConventionArgs']]]]:
518
518
  """
519
- The customized naming convention for one or more resource types in this landing zone configuration
519
+ 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}'}]
520
520
  """
521
521
  return pulumi.get(self, "custom_naming_convention")
522
522
 
@@ -528,7 +528,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
528
528
  @pulumi.getter(name="decommissionedMgMetadata")
529
529
  def decommissioned_mg_metadata(self) -> Optional[pulumi.Input['DecommissionedManagementGroupPropertiesArgs']]:
530
530
  """
531
- This will be applied to the decommissioned management group.
531
+ The assigned policies of the 'Decommissioned' management group and indicator to create it or not.
532
532
  """
533
533
  return pulumi.get(self, "decommissioned_mg_metadata")
534
534
 
@@ -540,7 +540,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
540
540
  @pulumi.getter(name="existingAzureBastionId")
541
541
  def existing_azure_bastion_id(self) -> Optional[pulumi.Input[str]]:
542
542
  """
543
- The resource id of azure bastion.
543
+ The resource ID of the Bastion when reusing an existing one.
544
544
  """
545
545
  return pulumi.get(self, "existing_azure_bastion_id")
546
546
 
@@ -552,7 +552,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
552
552
  @pulumi.getter(name="existingDdosProtectionId")
553
553
  def existing_ddos_protection_id(self) -> Optional[pulumi.Input[str]]:
554
554
  """
555
- The resource id of the ddos protection plan.
555
+ The resource ID of the DDoS protection plan when reusing an existing one.
556
556
  """
557
557
  return pulumi.get(self, "existing_ddos_protection_id")
558
558
 
@@ -564,7 +564,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
564
564
  @pulumi.getter(name="existingLogAnalyticsWorkspaceId")
565
565
  def existing_log_analytics_workspace_id(self) -> Optional[pulumi.Input[str]]:
566
566
  """
567
- The resource id of the log analytics workspace that was created to centralize log ingestion.
567
+ The resource ID of the log analytics workspace when reusing an existing one.
568
568
  """
569
569
  return pulumi.get(self, "existing_log_analytics_workspace_id")
570
570
 
@@ -576,7 +576,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
576
576
  @pulumi.getter(name="firewallSubnetCidrBlock")
577
577
  def firewall_subnet_cidr_block(self) -> Optional[pulumi.Input[str]]:
578
578
  """
579
- Azure firewall subnet. IPv4 CIDR block.
579
+ The Firewall subnet address used for deploying a firewall. Specify the Firewall subnet using IPv4 CIDR notation.
580
580
  """
581
581
  return pulumi.get(self, "firewall_subnet_cidr_block")
582
582
 
@@ -588,7 +588,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
588
588
  @pulumi.getter(name="landingZonesMgChildren")
589
589
  def landing_zones_mg_children(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LandingZoneManagementGroupPropertiesArgs']]]]:
590
590
  """
591
- Landing zone children management group properties
591
+ The child management groups of 'Landing Zones' management group and their assigned policies.
592
592
  """
593
593
  return pulumi.get(self, "landing_zones_mg_children")
594
594
 
@@ -600,7 +600,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
600
600
  @pulumi.getter(name="landingZonesMgMetadata")
601
601
  def landing_zones_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
602
602
  """
603
- This will be applied to the landing zone management groups.
603
+ The assigned policies of the 'Landing Zones' management group.
604
604
  """
605
605
  return pulumi.get(self, "landing_zones_mg_metadata")
606
606
 
@@ -612,7 +612,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
612
612
  @pulumi.getter(name="namingConventionFormula")
613
613
  def naming_convention_formula(self) -> Optional[pulumi.Input[str]]:
614
614
  """
615
- The naming convention that's used by default for all resource types for this landing zone configuration
615
+ The default naming convention applied to all resources for this landing zone configuration. Example - {DeploymentPrefix}-Contoso-{ResourceTypeAbbreviation}{DeploymentSuffix}-{Environment}-testing
616
616
  """
617
617
  return pulumi.get(self, "naming_convention_formula")
618
618
 
@@ -624,7 +624,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
624
624
  @pulumi.getter(name="platformConnectivityMgMetadata")
625
625
  def platform_connectivity_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
626
626
  """
627
- This will be applied to the connectivity management group under platform.
627
+ The assigned policies of the 'Connectivity' management group under 'Platform' management group.
628
628
  """
629
629
  return pulumi.get(self, "platform_connectivity_mg_metadata")
630
630
 
@@ -636,7 +636,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
636
636
  @pulumi.getter(name="platformIdentityMgMetadata")
637
637
  def platform_identity_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
638
638
  """
639
- This will be applied to the identity management group under platform.
639
+ The assigned policies of the 'Identity' management group under 'Platform' management group.
640
640
  """
641
641
  return pulumi.get(self, "platform_identity_mg_metadata")
642
642
 
@@ -648,7 +648,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
648
648
  @pulumi.getter(name="platformManagementMgMetadata")
649
649
  def platform_management_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
650
650
  """
651
- This will be applied to the management management group under platform.
651
+ The assigned policies of the 'Management' management group under 'Platform' management group.
652
652
  """
653
653
  return pulumi.get(self, "platform_management_mg_metadata")
654
654
 
@@ -660,7 +660,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
660
660
  @pulumi.getter(name="platformMgChildren")
661
661
  def platform_mg_children(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PlatformManagementGroupPropertiesArgs']]]]:
662
662
  """
663
- Platform children management group properties.
663
+ The names of the 'Platform' child management groups and their assigned policies, excluding the default ones: 'Connectivity', 'Identity', and 'Management'
664
664
  """
665
665
  return pulumi.get(self, "platform_mg_children")
666
666
 
@@ -672,7 +672,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
672
672
  @pulumi.getter(name="platformMgMetadata")
673
673
  def platform_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
674
674
  """
675
- This will be applied to the platform management group.
675
+ The assigned policies of the 'Platform' management group.
676
676
  """
677
677
  return pulumi.get(self, "platform_mg_metadata")
678
678
 
@@ -684,7 +684,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
684
684
  @pulumi.getter(name="sandboxMgMetadata")
685
685
  def sandbox_mg_metadata(self) -> Optional[pulumi.Input['SandboxManagementGroupPropertiesArgs']]:
686
686
  """
687
- This will be applied to the sandbox management group.
687
+ The assigned policies of the 'Sandbox' management group and indicator to create it or not.
688
688
  """
689
689
  return pulumi.get(self, "sandbox_mg_metadata")
690
690
 
@@ -696,7 +696,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
696
696
  @pulumi.getter
697
697
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TagsArgs']]]]:
698
698
  """
699
- Array of tag objects in format of {'name':'a tag name', 'value':'a tag value'}.
699
+ 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'}
700
700
  """
701
701
  return pulumi.get(self, "tags")
702
702
 
@@ -708,7 +708,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
708
708
  @pulumi.getter(name="topLevelMgMetadata")
709
709
  def top_level_mg_metadata(self) -> Optional[pulumi.Input['ManagementGroupPropertiesArgs']]:
710
710
  """
711
- This will be applied to the root of the landing zone deployment.
711
+ The assigned policies of the parent management group.
712
712
  """
713
713
  return pulumi.get(self, "top_level_mg_metadata")
714
714
 
@@ -720,7 +720,7 @@ class LandingZoneConfigurationResourcePropertiesArgs:
720
720
  if not MYPY:
721
721
  class LandingZoneManagementGroupPropertiesArgsDict(TypedDict):
722
722
  """
723
- Landing zone management group properties.
723
+ The 'Landing Zones' management group properties..
724
724
  """
725
725
  name: pulumi.Input[str]
726
726
  """
@@ -728,7 +728,7 @@ if not MYPY:
728
728
  """
729
729
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgsDict']]]
730
730
  """
731
- Array of initiative assignments to be applied to the management group.
731
+ Array of policy initiatives applied to the management group.
732
732
  """
733
733
  elif False:
734
734
  LandingZoneManagementGroupPropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -739,9 +739,9 @@ class LandingZoneManagementGroupPropertiesArgs:
739
739
  name: pulumi.Input[str],
740
740
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]):
741
741
  """
742
- Landing zone management group properties.
742
+ The 'Landing Zones' management group properties..
743
743
  :param pulumi.Input[str] name: Management group name.
744
- :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
744
+ :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
745
745
  """
746
746
  pulumi.set(__self__, "name", name)
747
747
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -762,7 +762,7 @@ class LandingZoneManagementGroupPropertiesArgs:
762
762
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
763
763
  def policy_initiatives_assignment_properties(self) -> pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]:
764
764
  """
765
- Array of initiative assignments to be applied to the management group.
765
+ Array of policy initiatives applied to the management group.
766
766
  """
767
767
  return pulumi.get(self, "policy_initiatives_assignment_properties")
768
768
 
@@ -786,7 +786,7 @@ if not MYPY:
786
786
  """
787
787
  managed_identity: pulumi.Input['ManagedIdentityPropertiesArgsDict']
788
788
  """
789
- The managed identity to be tied to this landing zone registration
789
+ The managed identity to be assigned to this landing zone registration.
790
790
  """
791
791
  elif False:
792
792
  LandingZoneRegistrationResourcePropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -801,7 +801,7 @@ class LandingZoneRegistrationResourcePropertiesArgs:
801
801
  The properties of landing zone registration resource type.
802
802
  :param pulumi.Input[str] existing_landing_zone_configuration_id: The resource id of the associated landing zone configuration.
803
803
  :param pulumi.Input[str] existing_top_level_mg_id: The resource id of the top level management group
804
- :param pulumi.Input['ManagedIdentityPropertiesArgs'] managed_identity: The managed identity to be tied to this landing zone registration
804
+ :param pulumi.Input['ManagedIdentityPropertiesArgs'] managed_identity: The managed identity to be assigned to this landing zone registration.
805
805
  """
806
806
  pulumi.set(__self__, "existing_landing_zone_configuration_id", existing_landing_zone_configuration_id)
807
807
  pulumi.set(__self__, "existing_top_level_mg_id", existing_top_level_mg_id)
@@ -835,7 +835,7 @@ class LandingZoneRegistrationResourcePropertiesArgs:
835
835
  @pulumi.getter(name="managedIdentity")
836
836
  def managed_identity(self) -> pulumi.Input['ManagedIdentityPropertiesArgs']:
837
837
  """
838
- The managed identity to be tied to this landing zone registration
838
+ The managed identity to be assigned to this landing zone registration.
839
839
  """
840
840
  return pulumi.get(self, "managed_identity")
841
841
 
@@ -847,7 +847,7 @@ class LandingZoneRegistrationResourcePropertiesArgs:
847
847
  if not MYPY:
848
848
  class ManagedIdentityPropertiesArgsDict(TypedDict):
849
849
  """
850
- The properties of managed identity.
850
+ The properties of managed identity, specifically including type and resource ID.
851
851
  """
852
852
  type: pulumi.Input[Union[str, 'ManagedIdentityResourceType']]
853
853
  """
@@ -866,7 +866,7 @@ class ManagedIdentityPropertiesArgs:
866
866
  type: pulumi.Input[Union[str, 'ManagedIdentityResourceType']],
867
867
  user_assigned_identity_resource_id: Optional[pulumi.Input[str]] = None):
868
868
  """
869
- The properties of managed identity.
869
+ The properties of managed identity, specifically including type and resource ID.
870
870
  :param pulumi.Input[Union[str, 'ManagedIdentityResourceType']] type: The type of managed identity.
871
871
  :param pulumi.Input[str] user_assigned_identity_resource_id: The resource id of the managed identity.
872
872
  """
@@ -957,11 +957,11 @@ class ManagedServiceIdentityArgs:
957
957
  if not MYPY:
958
958
  class ManagementGroupPropertiesArgsDict(TypedDict):
959
959
  """
960
- Details of the policy and initiatives associated with the management group.
960
+ The properties of policy initiatives applied to the management group.
961
961
  """
962
962
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgsDict']]]
963
963
  """
964
- Array of initiative assignments to be applied to the management group.
964
+ Array of policy initiatives applied to the management group.
965
965
  """
966
966
  elif False:
967
967
  ManagementGroupPropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -971,8 +971,8 @@ class ManagementGroupPropertiesArgs:
971
971
  def __init__(__self__, *,
972
972
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]):
973
973
  """
974
- Details of the policy and initiatives associated with the management group.
975
- :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
974
+ The properties of policy initiatives applied to the management group.
975
+ :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
976
976
  """
977
977
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
978
978
 
@@ -980,7 +980,7 @@ class ManagementGroupPropertiesArgs:
980
980
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
981
981
  def policy_initiatives_assignment_properties(self) -> pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]:
982
982
  """
983
- Array of initiative assignments to be applied to the management group.
983
+ Array of policy initiatives applied to the management group.
984
984
  """
985
985
  return pulumi.get(self, "policy_initiatives_assignment_properties")
986
986
 
@@ -992,7 +992,7 @@ class ManagementGroupPropertiesArgs:
992
992
  if not MYPY:
993
993
  class PlatformManagementGroupPropertiesArgsDict(TypedDict):
994
994
  """
995
- Platform management group properties.
995
+ The 'Platform' management group properties.
996
996
  """
997
997
  name: pulumi.Input[str]
998
998
  """
@@ -1000,7 +1000,7 @@ if not MYPY:
1000
1000
  """
1001
1001
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgsDict']]]
1002
1002
  """
1003
- Array of initiative assignments to be applied to the management group.
1003
+ Array of policy initiatives applied to the management group.
1004
1004
  """
1005
1005
  elif False:
1006
1006
  PlatformManagementGroupPropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -1011,9 +1011,9 @@ class PlatformManagementGroupPropertiesArgs:
1011
1011
  name: pulumi.Input[str],
1012
1012
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]):
1013
1013
  """
1014
- Platform management group properties.
1014
+ The 'Platform' management group properties.
1015
1015
  :param pulumi.Input[str] name: Management group name.
1016
- :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
1016
+ :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
1017
1017
  """
1018
1018
  pulumi.set(__self__, "name", name)
1019
1019
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -1034,7 +1034,7 @@ class PlatformManagementGroupPropertiesArgs:
1034
1034
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
1035
1035
  def policy_initiatives_assignment_properties(self) -> pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]:
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
 
@@ -1046,11 +1046,11 @@ class PlatformManagementGroupPropertiesArgs:
1046
1046
  if not MYPY:
1047
1047
  class PolicyInitiativeAssignmentPropertiesArgsDict(TypedDict):
1048
1048
  """
1049
- Details of policy assignments
1049
+ The properties of assigned policy initiatives.
1050
1050
  """
1051
1051
  assignment_parameters: Any
1052
1052
  """
1053
- The parameters for the assignment of policy initiatives.
1053
+ The parameters of the assigned policy initiative.
1054
1054
  """
1055
1055
  policy_initiative_id: pulumi.Input[str]
1056
1056
  """
@@ -1065,8 +1065,8 @@ class PolicyInitiativeAssignmentPropertiesArgs:
1065
1065
  assignment_parameters: Any,
1066
1066
  policy_initiative_id: pulumi.Input[str]):
1067
1067
  """
1068
- Details of policy assignments
1069
- :param Any assignment_parameters: The parameters for the assignment of policy initiatives.
1068
+ The properties of assigned policy initiatives.
1069
+ :param Any assignment_parameters: The parameters of the assigned policy initiative.
1070
1070
  :param pulumi.Input[str] policy_initiative_id: The fully qualified id of the policy initiative.
1071
1071
  """
1072
1072
  pulumi.set(__self__, "assignment_parameters", assignment_parameters)
@@ -1076,7 +1076,7 @@ class PolicyInitiativeAssignmentPropertiesArgs:
1076
1076
  @pulumi.getter(name="assignmentParameters")
1077
1077
  def assignment_parameters(self) -> Any:
1078
1078
  """
1079
- The parameters for the assignment of policy initiatives.
1079
+ The parameters of the assigned policy initiative.
1080
1080
  """
1081
1081
  return pulumi.get(self, "assignment_parameters")
1082
1082
 
@@ -1100,15 +1100,15 @@ class PolicyInitiativeAssignmentPropertiesArgs:
1100
1100
  if not MYPY:
1101
1101
  class SandboxManagementGroupPropertiesArgsDict(TypedDict):
1102
1102
  """
1103
- Sandbox management group properties.
1103
+ The 'Sandbox' management group properties.
1104
1104
  """
1105
1105
  create: pulumi.Input[bool]
1106
1106
  """
1107
- When set to false this management group will not be created. The default value is false.
1107
+ 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.
1108
1108
  """
1109
1109
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgsDict']]]
1110
1110
  """
1111
- Array of initiative assignments to be applied to the management group.
1111
+ Array of policy initiatives applied to the management group.
1112
1112
  """
1113
1113
  elif False:
1114
1114
  SandboxManagementGroupPropertiesArgsDict: TypeAlias = Mapping[str, Any]
@@ -1119,9 +1119,9 @@ class SandboxManagementGroupPropertiesArgs:
1119
1119
  create: pulumi.Input[bool],
1120
1120
  policy_initiatives_assignment_properties: pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]):
1121
1121
  """
1122
- Sandbox management group properties.
1123
- :param pulumi.Input[bool] create: When set to false this management group will not be created. The default value is false.
1124
- :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of initiative assignments to be applied to the management group.
1122
+ The 'Sandbox' management group properties.
1123
+ :param pulumi.Input[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.
1124
+ :param pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]] policy_initiatives_assignment_properties: Array of policy initiatives applied to the management group.
1125
1125
  """
1126
1126
  pulumi.set(__self__, "create", create)
1127
1127
  pulumi.set(__self__, "policy_initiatives_assignment_properties", policy_initiatives_assignment_properties)
@@ -1130,7 +1130,7 @@ class SandboxManagementGroupPropertiesArgs:
1130
1130
  @pulumi.getter
1131
1131
  def create(self) -> pulumi.Input[bool]:
1132
1132
  """
1133
- When set to false this management group will not be created. The default value is false.
1133
+ 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.
1134
1134
  """
1135
1135
  return pulumi.get(self, "create")
1136
1136
 
@@ -1142,7 +1142,7 @@ class SandboxManagementGroupPropertiesArgs:
1142
1142
  @pulumi.getter(name="policyInitiativesAssignmentProperties")
1143
1143
  def policy_initiatives_assignment_properties(self) -> pulumi.Input[Sequence[pulumi.Input['PolicyInitiativeAssignmentPropertiesArgs']]]:
1144
1144
  """
1145
- Array of initiative assignments to be applied to the management group.
1145
+ Array of policy initiatives applied to the management group.
1146
1146
  """
1147
1147
  return pulumi.get(self, "policy_initiatives_assignment_properties")
1148
1148
 
@@ -1154,7 +1154,7 @@ class SandboxManagementGroupPropertiesArgs:
1154
1154
  if not MYPY:
1155
1155
  class TagsArgsDict(TypedDict):
1156
1156
  """
1157
- The details associated with tags.
1157
+ Key-value pairs that can be assigned to this resource.
1158
1158
  """
1159
1159
  name: pulumi.Input[str]
1160
1160
  """
@@ -1173,7 +1173,7 @@ class TagsArgs:
1173
1173
  name: pulumi.Input[str],
1174
1174
  value: Optional[pulumi.Input[str]] = None):
1175
1175
  """
1176
- The details associated with tags.
1176
+ Key-value pairs that can be assigned to this resource.
1177
1177
  :param pulumi.Input[str] name: A tag name.
1178
1178
  :param pulumi.Input[str] value: A tag value.
1179
1179
  """