pulumi-azure-native 2.39.1a1714476289__py3-none-any.whl → 2.40.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 (256) hide show
  1. pulumi_azure_native/__init__.py +59 -1
  2. pulumi_azure_native/cache/__init__.py +3 -0
  3. pulumi_azure_native/cache/database.py +3 -3
  4. pulumi_azure_native/cache/enterprise_private_endpoint_connection.py +3 -3
  5. pulumi_azure_native/cache/get_database.py +2 -2
  6. pulumi_azure_native/cache/get_enterprise_private_endpoint_connection.py +2 -2
  7. pulumi_azure_native/cache/get_redis_enterprise.py +2 -2
  8. pulumi_azure_native/cache/list_database_keys.py +2 -2
  9. pulumi_azure_native/cache/redis_enterprise.py +3 -3
  10. pulumi_azure_native/cache/v20201001preview/redis_enterprise.py +1 -1
  11. pulumi_azure_native/cache/v20230301preview/database.py +1 -1
  12. pulumi_azure_native/cache/v20230301preview/enterprise_private_endpoint_connection.py +1 -1
  13. pulumi_azure_native/cache/v20230301preview/redis_enterprise.py +1 -1
  14. pulumi_azure_native/cache/v20230701/database.py +1 -1
  15. pulumi_azure_native/cache/v20230701/enterprise_private_endpoint_connection.py +1 -1
  16. pulumi_azure_native/cache/v20230701/redis_enterprise.py +1 -1
  17. pulumi_azure_native/cache/v20230801preview/database.py +1 -1
  18. pulumi_azure_native/cache/v20230801preview/enterprise_private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/cache/v20230801preview/redis_enterprise.py +1 -1
  20. pulumi_azure_native/cache/v20231001preview/database.py +1 -1
  21. pulumi_azure_native/cache/v20231001preview/enterprise_private_endpoint_connection.py +1 -1
  22. pulumi_azure_native/cache/v20231001preview/redis_enterprise.py +1 -1
  23. pulumi_azure_native/cache/v20231101/database.py +1 -1
  24. pulumi_azure_native/cache/v20231101/enterprise_private_endpoint_connection.py +1 -1
  25. pulumi_azure_native/cache/v20231101/redis_enterprise.py +1 -1
  26. pulumi_azure_native/cache/v20240201/database.py +1 -1
  27. pulumi_azure_native/cache/v20240201/enterprise_private_endpoint_connection.py +1 -1
  28. pulumi_azure_native/cache/v20240201/redis_enterprise.py +1 -1
  29. pulumi_azure_native/cache/v20240301preview/__init__.py +17 -0
  30. pulumi_azure_native/cache/v20240301preview/_enums.py +124 -0
  31. pulumi_azure_native/cache/v20240301preview/_inputs.py +438 -0
  32. pulumi_azure_native/cache/v20240301preview/database.py +439 -0
  33. pulumi_azure_native/cache/v20240301preview/enterprise_private_endpoint_connection.py +227 -0
  34. pulumi_azure_native/cache/v20240301preview/get_database.py +253 -0
  35. pulumi_azure_native/cache/v20240301preview/get_enterprise_private_endpoint_connection.py +149 -0
  36. pulumi_azure_native/cache/v20240301preview/get_redis_enterprise.py +261 -0
  37. pulumi_azure_native/cache/v20240301preview/list_database_keys.py +96 -0
  38. pulumi_azure_native/cache/v20240301preview/outputs.py +740 -0
  39. pulumi_azure_native/cache/v20240301preview/redis_enterprise.py +410 -0
  40. pulumi_azure_native/containerservice/__init__.py +5 -0
  41. pulumi_azure_native/containerservice/_enums.py +23 -0
  42. pulumi_azure_native/containerservice/_inputs.py +98 -0
  43. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  44. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  45. pulumi_azure_native/containerservice/get_load_balancer.py +203 -0
  46. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  47. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  48. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  49. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  50. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  51. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  52. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  53. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  54. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  55. pulumi_azure_native/containerservice/load_balancer.py +365 -0
  56. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  57. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  58. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  59. pulumi_azure_native/containerservice/outputs.py +103 -0
  60. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  61. pulumi_azure_native/containerservice/snapshot.py +3 -3
  62. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  63. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  64. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  65. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  66. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  67. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  68. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  69. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  70. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  71. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  72. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  73. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  74. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  75. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  76. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  77. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  78. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  79. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  80. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  81. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  82. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  83. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  84. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  85. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  86. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  87. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  88. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  89. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  90. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  91. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  92. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  93. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  94. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  95. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  96. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  97. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  98. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  99. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  100. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  101. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  102. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  104. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  105. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  106. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  107. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  108. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  109. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  110. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  111. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  112. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  113. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  114. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  115. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  116. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  117. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  118. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  119. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  120. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  121. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  122. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  123. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  124. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  125. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  126. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  127. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  128. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  129. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  130. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  131. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  132. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  133. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  134. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  135. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  136. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  137. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  138. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  139. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  140. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  141. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  142. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  143. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  144. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  145. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  146. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  147. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  148. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  149. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  150. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  151. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  152. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  153. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  154. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  155. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  156. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  157. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  158. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  159. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  160. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  161. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  162. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  163. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  164. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  165. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
  166. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  167. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  168. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  169. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  170. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  171. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  172. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  173. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  174. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  175. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  176. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  177. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  178. pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
  179. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  180. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  181. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  182. pulumi_azure_native/containerservice/v20240302preview/__init__.py +29 -0
  183. pulumi_azure_native/containerservice/v20240302preview/_enums.py +840 -0
  184. pulumi_azure_native/containerservice/v20240302preview/_inputs.py +6966 -0
  185. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1686 -0
  186. pulumi_azure_native/containerservice/v20240302preview/get_agent_pool.py +812 -0
  187. pulumi_azure_native/containerservice/v20240302preview/get_load_balancer.py +201 -0
  188. pulumi_azure_native/containerservice/v20240302preview/get_maintenance_configuration.py +162 -0
  189. pulumi_azure_native/containerservice/v20240302preview/get_managed_cluster.py +833 -0
  190. pulumi_azure_native/containerservice/v20240302preview/get_managed_cluster_snapshot.py +183 -0
  191. pulumi_azure_native/containerservice/v20240302preview/get_private_endpoint_connection.py +149 -0
  192. pulumi_azure_native/containerservice/v20240302preview/get_snapshot.py +248 -0
  193. pulumi_azure_native/containerservice/v20240302preview/get_trusted_access_role_binding.py +162 -0
  194. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_admin_credentials.py +84 -0
  195. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
  196. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_user_credentials.py +89 -0
  197. pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +363 -0
  198. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +274 -0
  199. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1590 -0
  200. pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +292 -0
  201. pulumi_azure_native/containerservice/v20240302preview/outputs.py +8118 -0
  202. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +246 -0
  203. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +342 -0
  204. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +255 -0
  205. pulumi_azure_native/monitor/__init__.py +7 -0
  206. pulumi_azure_native/monitor/_enums.py +140 -0
  207. pulumi_azure_native/monitor/_inputs.py +1122 -0
  208. pulumi_azure_native/monitor/azure_monitor_workspace.py +5 -1
  209. pulumi_azure_native/monitor/get_azure_monitor_workspace.py +4 -0
  210. pulumi_azure_native/monitor/get_pipeline_group.py +250 -0
  211. pulumi_azure_native/monitor/outputs.py +1338 -182
  212. pulumi_azure_native/monitor/pipeline_group.py +443 -0
  213. pulumi_azure_native/monitor/v20230403/azure_monitor_workspace.py +1 -1
  214. pulumi_azure_native/monitor/v20231001preview/__init__.py +14 -0
  215. pulumi_azure_native/monitor/v20231001preview/_enums.py +140 -0
  216. pulumi_azure_native/monitor/v20231001preview/_inputs.py +1122 -0
  217. pulumi_azure_native/monitor/v20231001preview/azure_monitor_workspace.py +282 -0
  218. pulumi_azure_native/monitor/v20231001preview/get_azure_monitor_workspace.py +222 -0
  219. pulumi_azure_native/monitor/v20231001preview/get_pipeline_group.py +248 -0
  220. pulumi_azure_native/monitor/v20231001preview/outputs.py +1641 -0
  221. pulumi_azure_native/monitor/v20231001preview/pipeline_group.py +441 -0
  222. pulumi_azure_native/portalservices/__init__.py +18 -0
  223. pulumi_azure_native/portalservices/copilot_setting.py +165 -0
  224. pulumi_azure_native/portalservices/get_copilot_setting.py +132 -0
  225. pulumi_azure_native/portalservices/outputs.py +125 -0
  226. pulumi_azure_native/portalservices/v20240401preview/__init__.py +10 -0
  227. pulumi_azure_native/portalservices/v20240401preview/copilot_setting.py +163 -0
  228. pulumi_azure_native/portalservices/v20240401preview/get_copilot_setting.py +130 -0
  229. pulumi_azure_native/portalservices/v20240401preview/outputs.py +125 -0
  230. pulumi_azure_native/resources/_inputs.py +2 -2
  231. pulumi_azure_native/resources/deployment_stack_at_management_group.py +5 -1
  232. pulumi_azure_native/resources/deployment_stack_at_resource_group.py +5 -1
  233. pulumi_azure_native/resources/deployment_stack_at_subscription.py +5 -1
  234. pulumi_azure_native/resources/get_deployment_stack_at_management_group.py +4 -0
  235. pulumi_azure_native/resources/get_deployment_stack_at_resource_group.py +4 -0
  236. pulumi_azure_native/resources/get_deployment_stack_at_subscription.py +4 -0
  237. pulumi_azure_native/resources/outputs.py +2 -2
  238. pulumi_azure_native/resources/v20220801preview/_inputs.py +2 -2
  239. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_management_group.py +1 -1
  240. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_resource_group.py +1 -1
  241. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_subscription.py +1 -1
  242. pulumi_azure_native/resources/v20220801preview/outputs.py +2 -2
  243. pulumi_azure_native/resources/v20240301/__init__.py +6 -0
  244. pulumi_azure_native/resources/v20240301/_enums.py +28 -0
  245. pulumi_azure_native/resources/v20240301/_inputs.py +302 -4
  246. pulumi_azure_native/resources/v20240301/deployment_stack_at_management_group.py +589 -0
  247. pulumi_azure_native/resources/v20240301/deployment_stack_at_resource_group.py +589 -0
  248. pulumi_azure_native/resources/v20240301/deployment_stack_at_subscription.py +568 -0
  249. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_management_group.py +365 -0
  250. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_resource_group.py +365 -0
  251. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_subscription.py +360 -0
  252. pulumi_azure_native/resources/v20240301/outputs.py +677 -4
  253. {pulumi_azure_native-2.39.1a1714476289.dist-info → pulumi_azure_native-2.40.0.dist-info}/METADATA +1 -1
  254. {pulumi_azure_native-2.39.1a1714476289.dist-info → pulumi_azure_native-2.40.0.dist-info}/RECORD +256 -194
  255. {pulumi_azure_native-2.39.1a1714476289.dist-info → pulumi_azure_native-2.40.0.dist-info}/WHEEL +0 -0
  256. {pulumi_azure_native-2.39.1a1714476289.dist-info → pulumi_azure_native-2.40.0.dist-info}/top_level.txt +0 -0
@@ -96,7 +96,7 @@ class DenySettingsArgs:
96
96
  Defines how resources deployed by the deployment stack are locked.
97
97
  :param pulumi.Input[Union[str, 'DenySettingsMode']] mode: denySettings Mode.
98
98
  :param pulumi.Input[bool] apply_to_child_scopes: DenySettings will be applied to child scopes.
99
- :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
99
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
100
100
  :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_principals: List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
101
101
  """
102
102
  pulumi.set(__self__, "mode", mode)
@@ -135,7 +135,7 @@ class DenySettingsArgs:
135
135
  @pulumi.getter(name="excludedActions")
136
136
  def excluded_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
137
137
  """
138
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
138
+ List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
139
139
  """
140
140
  return pulumi.get(self, "excluded_actions")
141
141
 
@@ -250,6 +250,8 @@ class DeploymentStackAtManagementGroup(pulumi.CustomResource):
250
250
  Deployment stack object.
251
251
  Azure REST API version: 2022-08-01-preview.
252
252
 
253
+ Other available API versions: 2024-03-01.
254
+
253
255
  :param str resource_name: The name of the resource.
254
256
  :param pulumi.ResourceOptions opts: Options for the resource.
255
257
  :param pulumi.Input[pulumi.InputType['DeploymentStackPropertiesActionOnUnmanageArgs']] action_on_unmanage: Defines the behavior of resources that are not managed immediately after the stack is updated.
@@ -276,6 +278,8 @@ class DeploymentStackAtManagementGroup(pulumi.CustomResource):
276
278
  Deployment stack object.
277
279
  Azure REST API version: 2022-08-01-preview.
278
280
 
281
+ Other available API versions: 2024-03-01.
282
+
279
283
  :param str resource_name: The name of the resource.
280
284
  :param DeploymentStackAtManagementGroupArgs args: The arguments to use to populate this resource's properties.
281
285
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -344,7 +348,7 @@ class DeploymentStackAtManagementGroup(pulumi.CustomResource):
344
348
  __props__.__dict__["resources"] = None
345
349
  __props__.__dict__["system_data"] = None
346
350
  __props__.__dict__["type"] = None
347
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtManagementGroup")])
351
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtManagementGroup"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtManagementGroup")])
348
352
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
349
353
  super(DeploymentStackAtManagementGroup, __self__).__init__(
350
354
  'azure-native:resources:DeploymentStackAtManagementGroup',
@@ -250,6 +250,8 @@ class DeploymentStackAtResourceGroup(pulumi.CustomResource):
250
250
  Deployment stack object.
251
251
  Azure REST API version: 2022-08-01-preview.
252
252
 
253
+ Other available API versions: 2024-03-01.
254
+
253
255
  :param str resource_name: The name of the resource.
254
256
  :param pulumi.ResourceOptions opts: Options for the resource.
255
257
  :param pulumi.Input[pulumi.InputType['DeploymentStackPropertiesActionOnUnmanageArgs']] action_on_unmanage: Defines the behavior of resources that are not managed immediately after the stack is updated.
@@ -276,6 +278,8 @@ class DeploymentStackAtResourceGroup(pulumi.CustomResource):
276
278
  Deployment stack object.
277
279
  Azure REST API version: 2022-08-01-preview.
278
280
 
281
+ Other available API versions: 2024-03-01.
282
+
279
283
  :param str resource_name: The name of the resource.
280
284
  :param DeploymentStackAtResourceGroupArgs args: The arguments to use to populate this resource's properties.
281
285
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -344,7 +348,7 @@ class DeploymentStackAtResourceGroup(pulumi.CustomResource):
344
348
  __props__.__dict__["resources"] = None
345
349
  __props__.__dict__["system_data"] = None
346
350
  __props__.__dict__["type"] = None
347
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtResourceGroup")])
351
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtResourceGroup"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtResourceGroup")])
348
352
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
349
353
  super(DeploymentStackAtResourceGroup, __self__).__init__(
350
354
  'azure-native:resources:DeploymentStackAtResourceGroup',
@@ -234,6 +234,8 @@ class DeploymentStackAtSubscription(pulumi.CustomResource):
234
234
  Deployment stack object.
235
235
  Azure REST API version: 2022-08-01-preview.
236
236
 
237
+ Other available API versions: 2024-03-01.
238
+
237
239
  :param str resource_name: The name of the resource.
238
240
  :param pulumi.ResourceOptions opts: Options for the resource.
239
241
  :param pulumi.Input[pulumi.InputType['DeploymentStackPropertiesActionOnUnmanageArgs']] action_on_unmanage: Defines the behavior of resources that are not managed immediately after the stack is updated.
@@ -259,6 +261,8 @@ class DeploymentStackAtSubscription(pulumi.CustomResource):
259
261
  Deployment stack object.
260
262
  Azure REST API version: 2022-08-01-preview.
261
263
 
264
+ Other available API versions: 2024-03-01.
265
+
262
266
  :param str resource_name: The name of the resource.
263
267
  :param DeploymentStackAtSubscriptionArgs args: The arguments to use to populate this resource's properties.
264
268
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -323,7 +327,7 @@ class DeploymentStackAtSubscription(pulumi.CustomResource):
323
327
  __props__.__dict__["resources"] = None
324
328
  __props__.__dict__["system_data"] = None
325
329
  __props__.__dict__["type"] = None
326
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtSubscription")])
330
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtSubscription"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtSubscription")])
327
331
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
328
332
  super(DeploymentStackAtSubscription, __self__).__init__(
329
333
  'azure-native:resources:DeploymentStackAtSubscription',
@@ -304,6 +304,8 @@ def get_deployment_stack_at_management_group(deployment_stack_name: Optional[str
304
304
  Gets a Deployment Stack with a given name.
305
305
  Azure REST API version: 2022-08-01-preview.
306
306
 
307
+ Other available API versions: 2024-03-01.
308
+
307
309
 
308
310
  :param str deployment_stack_name: Name of the deployment stack.
309
311
  :param str management_group_id: Management Group.
@@ -347,6 +349,8 @@ def get_deployment_stack_at_management_group_output(deployment_stack_name: Optio
347
349
  Gets a Deployment Stack with a given name.
348
350
  Azure REST API version: 2022-08-01-preview.
349
351
 
352
+ Other available API versions: 2024-03-01.
353
+
350
354
 
351
355
  :param str deployment_stack_name: Name of the deployment stack.
352
356
  :param str management_group_id: Management Group.
@@ -304,6 +304,8 @@ def get_deployment_stack_at_resource_group(deployment_stack_name: Optional[str]
304
304
  Gets a Deployment Stack with a given name.
305
305
  Azure REST API version: 2022-08-01-preview.
306
306
 
307
+ Other available API versions: 2024-03-01.
308
+
307
309
 
308
310
  :param str deployment_stack_name: Name of the deployment stack.
309
311
  :param str resource_group_name: The name of the resource group. The name is case insensitive.
@@ -347,6 +349,8 @@ def get_deployment_stack_at_resource_group_output(deployment_stack_name: Optiona
347
349
  Gets a Deployment Stack with a given name.
348
350
  Azure REST API version: 2022-08-01-preview.
349
351
 
352
+ Other available API versions: 2024-03-01.
353
+
350
354
 
351
355
  :param str deployment_stack_name: Name of the deployment stack.
352
356
  :param str resource_group_name: The name of the resource group. The name is case insensitive.
@@ -303,6 +303,8 @@ def get_deployment_stack_at_subscription(deployment_stack_name: Optional[str] =
303
303
  Gets a Deployment Stack with a given name.
304
304
  Azure REST API version: 2022-08-01-preview.
305
305
 
306
+ Other available API versions: 2024-03-01.
307
+
306
308
 
307
309
  :param str deployment_stack_name: Name of the deployment stack.
308
310
  """
@@ -343,6 +345,8 @@ def get_deployment_stack_at_subscription_output(deployment_stack_name: Optional[
343
345
  Gets a Deployment Stack with a given name.
344
346
  Azure REST API version: 2022-08-01-preview.
345
347
 
348
+ Other available API versions: 2024-03-01.
349
+
346
350
 
347
351
  :param str deployment_stack_name: Name of the deployment stack.
348
352
  """
@@ -539,7 +539,7 @@ class DenySettingsResponse(dict):
539
539
  Defines how resources deployed by the deployment stack are locked.
540
540
  :param str mode: denySettings Mode.
541
541
  :param bool apply_to_child_scopes: DenySettings will be applied to child scopes.
542
- :param Sequence[str] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
542
+ :param Sequence[str] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
543
543
  :param Sequence[str] excluded_principals: List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
544
544
  """
545
545
  pulumi.set(__self__, "mode", mode)
@@ -570,7 +570,7 @@ class DenySettingsResponse(dict):
570
570
  @pulumi.getter(name="excludedActions")
571
571
  def excluded_actions(self) -> Optional[Sequence[str]]:
572
572
  """
573
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
573
+ List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
574
574
  """
575
575
  return pulumi.get(self, "excluded_actions")
576
576
 
@@ -29,7 +29,7 @@ class DenySettingsArgs:
29
29
  Defines how resources deployed by the deployment stack are locked.
30
30
  :param pulumi.Input[Union[str, 'DenySettingsMode']] mode: denySettings Mode.
31
31
  :param pulumi.Input[bool] apply_to_child_scopes: DenySettings will be applied to child scopes.
32
- :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
32
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
33
33
  :param pulumi.Input[Sequence[pulumi.Input[str]]] excluded_principals: List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
34
34
  """
35
35
  pulumi.set(__self__, "mode", mode)
@@ -68,7 +68,7 @@ class DenySettingsArgs:
68
68
  @pulumi.getter(name="excludedActions")
69
69
  def excluded_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
70
70
  """
71
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
71
+ List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
72
72
  """
73
73
  return pulumi.get(self, "excluded_actions")
74
74
 
@@ -342,7 +342,7 @@ class DeploymentStackAtManagementGroup(pulumi.CustomResource):
342
342
  __props__.__dict__["resources"] = None
343
343
  __props__.__dict__["system_data"] = None
344
344
  __props__.__dict__["type"] = None
345
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtManagementGroup")])
345
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtManagementGroup"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtManagementGroup")])
346
346
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
347
347
  super(DeploymentStackAtManagementGroup, __self__).__init__(
348
348
  'azure-native:resources/v20220801preview:DeploymentStackAtManagementGroup',
@@ -342,7 +342,7 @@ class DeploymentStackAtResourceGroup(pulumi.CustomResource):
342
342
  __props__.__dict__["resources"] = None
343
343
  __props__.__dict__["system_data"] = None
344
344
  __props__.__dict__["type"] = None
345
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtResourceGroup")])
345
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtResourceGroup"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtResourceGroup")])
346
346
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
347
347
  super(DeploymentStackAtResourceGroup, __self__).__init__(
348
348
  'azure-native:resources/v20220801preview:DeploymentStackAtResourceGroup',
@@ -321,7 +321,7 @@ class DeploymentStackAtSubscription(pulumi.CustomResource):
321
321
  __props__.__dict__["resources"] = None
322
322
  __props__.__dict__["system_data"] = None
323
323
  __props__.__dict__["type"] = None
324
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtSubscription")])
324
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtSubscription"), pulumi.Alias(type_="azure-native:resources/v20240301:DeploymentStackAtSubscription")])
325
325
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
326
326
  super(DeploymentStackAtSubscription, __self__).__init__(
327
327
  'azure-native:resources/v20220801preview:DeploymentStackAtSubscription',
@@ -60,7 +60,7 @@ class DenySettingsResponse(dict):
60
60
  Defines how resources deployed by the deployment stack are locked.
61
61
  :param str mode: denySettings Mode.
62
62
  :param bool apply_to_child_scopes: DenySettings will be applied to child scopes.
63
- :param Sequence[str] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
63
+ :param Sequence[str] excluded_actions: List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
64
64
  :param Sequence[str] excluded_principals: List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
65
65
  """
66
66
  pulumi.set(__self__, "mode", mode)
@@ -91,7 +91,7 @@ class DenySettingsResponse(dict):
91
91
  @pulumi.getter(name="excludedActions")
92
92
  def excluded_actions(self) -> Optional[Sequence[str]]:
93
93
  """
94
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
94
+ List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*\\/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
95
95
  """
96
96
  return pulumi.get(self, "excluded_actions")
97
97
 
@@ -11,11 +11,17 @@ from .deployment_at_management_group_scope import *
11
11
  from .deployment_at_scope import *
12
12
  from .deployment_at_subscription_scope import *
13
13
  from .deployment_at_tenant_scope import *
14
+ from .deployment_stack_at_management_group import *
15
+ from .deployment_stack_at_resource_group import *
16
+ from .deployment_stack_at_subscription import *
14
17
  from .get_deployment import *
15
18
  from .get_deployment_at_management_group_scope import *
16
19
  from .get_deployment_at_scope import *
17
20
  from .get_deployment_at_subscription_scope import *
18
21
  from .get_deployment_at_tenant_scope import *
22
+ from .get_deployment_stack_at_management_group import *
23
+ from .get_deployment_stack_at_resource_group import *
24
+ from .get_deployment_stack_at_subscription import *
19
25
  from .get_resource import *
20
26
  from .get_resource_group import *
21
27
  from .get_tag_at_scope import *
@@ -5,7 +5,9 @@
5
5
  from enum import Enum
6
6
 
7
7
  __all__ = [
8
+ 'DenySettingsMode',
8
9
  'DeploymentMode',
10
+ 'DeploymentStacksDeleteDetachEnum',
9
11
  'ExpressionEvaluationOptionsScopeType',
10
12
  'ExtendedLocationType',
11
13
  'OnErrorDeploymentType',
@@ -13,6 +15,24 @@ __all__ = [
13
15
  ]
14
16
 
15
17
 
18
+ class DenySettingsMode(str, Enum):
19
+ """
20
+ denySettings Mode that defines denied actions.
21
+ """
22
+ DENY_DELETE = "denyDelete"
23
+ """
24
+ Authorized users are able to read and modify the resources, but cannot delete.
25
+ """
26
+ DENY_WRITE_AND_DELETE = "denyWriteAndDelete"
27
+ """
28
+ Authorized users can read from a resource, but cannot modify or delete it.
29
+ """
30
+ NONE = "none"
31
+ """
32
+ No denyAssignments have been applied.
33
+ """
34
+
35
+
16
36
  class DeploymentMode(str, Enum):
17
37
  """
18
38
  The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.
@@ -21,6 +41,14 @@ class DeploymentMode(str, Enum):
21
41
  COMPLETE = "Complete"
22
42
 
23
43
 
44
+ class DeploymentStacksDeleteDetachEnum(str, Enum):
45
+ """
46
+ Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
47
+ """
48
+ DELETE = "delete"
49
+ DETACH = "detach"
50
+
51
+
24
52
  class ExpressionEvaluationOptionsScopeType(str, Enum):
25
53
  """
26
54
  The scope to be used for evaluation of parameters, variables and functions in a nested template.