pulumi-azure-native 2.40.0a1714482437__py3-none-any.whl → 2.40.0a1714979708__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.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/METADATA +1 -1
  254. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/RECORD +256 -194
  255. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/WHEEL +0 -0
  256. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,568 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+ from ._inputs import *
14
+
15
+ __all__ = ['DeploymentStackAtSubscriptionArgs', 'DeploymentStackAtSubscription']
16
+
17
+ @pulumi.input_type
18
+ class DeploymentStackAtSubscriptionArgs:
19
+ def __init__(__self__, *,
20
+ action_on_unmanage: pulumi.Input['ActionOnUnmanageArgs'],
21
+ deny_settings: pulumi.Input['DenySettingsArgs'],
22
+ bypass_stack_out_of_sync_error: Optional[pulumi.Input[bool]] = None,
23
+ debug_setting: Optional[pulumi.Input['DeploymentStacksDebugSettingArgs']] = None,
24
+ deployment_scope: Optional[pulumi.Input[str]] = None,
25
+ deployment_stack_name: Optional[pulumi.Input[str]] = None,
26
+ description: Optional[pulumi.Input[str]] = None,
27
+ location: Optional[pulumi.Input[str]] = None,
28
+ parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input['DeploymentParameterArgs']]]] = None,
29
+ parameters_link: Optional[pulumi.Input['DeploymentStacksParametersLinkArgs']] = None,
30
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
+ template: Optional[Any] = None,
32
+ template_link: Optional[pulumi.Input['DeploymentStacksTemplateLinkArgs']] = None):
33
+ """
34
+ The set of arguments for constructing a DeploymentStackAtSubscription resource.
35
+ :param pulumi.Input['ActionOnUnmanageArgs'] action_on_unmanage: Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
36
+ :param pulumi.Input['DenySettingsArgs'] deny_settings: Defines how resources deployed by the stack are locked.
37
+ :param pulumi.Input[bool] bypass_stack_out_of_sync_error: Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
38
+ :param pulumi.Input['DeploymentStacksDebugSettingArgs'] debug_setting: The debug setting of the deployment.
39
+ :param pulumi.Input[str] deployment_scope: The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
40
+ :param pulumi.Input[str] deployment_stack_name: Name of the deployment stack.
41
+ :param pulumi.Input[str] description: Deployment stack description. Max length of 4096 characters.
42
+ :param pulumi.Input[str] location: The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
43
+ :param pulumi.Input[Mapping[str, pulumi.Input['DeploymentParameterArgs']]] parameters: Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both.
44
+ :param pulumi.Input['DeploymentStacksParametersLinkArgs'] parameters_link: The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
45
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Deployment stack resource tags.
46
+ :param Any template: The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
47
+ :param pulumi.Input['DeploymentStacksTemplateLinkArgs'] template_link: The URI of the template. Use either the templateLink property or the template property, but not both.
48
+ """
49
+ pulumi.set(__self__, "action_on_unmanage", action_on_unmanage)
50
+ pulumi.set(__self__, "deny_settings", deny_settings)
51
+ if bypass_stack_out_of_sync_error is not None:
52
+ pulumi.set(__self__, "bypass_stack_out_of_sync_error", bypass_stack_out_of_sync_error)
53
+ if debug_setting is not None:
54
+ pulumi.set(__self__, "debug_setting", debug_setting)
55
+ if deployment_scope is not None:
56
+ pulumi.set(__self__, "deployment_scope", deployment_scope)
57
+ if deployment_stack_name is not None:
58
+ pulumi.set(__self__, "deployment_stack_name", deployment_stack_name)
59
+ if description is not None:
60
+ pulumi.set(__self__, "description", description)
61
+ if location is not None:
62
+ pulumi.set(__self__, "location", location)
63
+ if parameters is not None:
64
+ pulumi.set(__self__, "parameters", parameters)
65
+ if parameters_link is not None:
66
+ pulumi.set(__self__, "parameters_link", parameters_link)
67
+ if tags is not None:
68
+ pulumi.set(__self__, "tags", tags)
69
+ if template is not None:
70
+ pulumi.set(__self__, "template", template)
71
+ if template_link is not None:
72
+ pulumi.set(__self__, "template_link", template_link)
73
+
74
+ @property
75
+ @pulumi.getter(name="actionOnUnmanage")
76
+ def action_on_unmanage(self) -> pulumi.Input['ActionOnUnmanageArgs']:
77
+ """
78
+ Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
79
+ """
80
+ return pulumi.get(self, "action_on_unmanage")
81
+
82
+ @action_on_unmanage.setter
83
+ def action_on_unmanage(self, value: pulumi.Input['ActionOnUnmanageArgs']):
84
+ pulumi.set(self, "action_on_unmanage", value)
85
+
86
+ @property
87
+ @pulumi.getter(name="denySettings")
88
+ def deny_settings(self) -> pulumi.Input['DenySettingsArgs']:
89
+ """
90
+ Defines how resources deployed by the stack are locked.
91
+ """
92
+ return pulumi.get(self, "deny_settings")
93
+
94
+ @deny_settings.setter
95
+ def deny_settings(self, value: pulumi.Input['DenySettingsArgs']):
96
+ pulumi.set(self, "deny_settings", value)
97
+
98
+ @property
99
+ @pulumi.getter(name="bypassStackOutOfSyncError")
100
+ def bypass_stack_out_of_sync_error(self) -> Optional[pulumi.Input[bool]]:
101
+ """
102
+ Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
103
+ """
104
+ return pulumi.get(self, "bypass_stack_out_of_sync_error")
105
+
106
+ @bypass_stack_out_of_sync_error.setter
107
+ def bypass_stack_out_of_sync_error(self, value: Optional[pulumi.Input[bool]]):
108
+ pulumi.set(self, "bypass_stack_out_of_sync_error", value)
109
+
110
+ @property
111
+ @pulumi.getter(name="debugSetting")
112
+ def debug_setting(self) -> Optional[pulumi.Input['DeploymentStacksDebugSettingArgs']]:
113
+ """
114
+ The debug setting of the deployment.
115
+ """
116
+ return pulumi.get(self, "debug_setting")
117
+
118
+ @debug_setting.setter
119
+ def debug_setting(self, value: Optional[pulumi.Input['DeploymentStacksDebugSettingArgs']]):
120
+ pulumi.set(self, "debug_setting", value)
121
+
122
+ @property
123
+ @pulumi.getter(name="deploymentScope")
124
+ def deployment_scope(self) -> Optional[pulumi.Input[str]]:
125
+ """
126
+ The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
127
+ """
128
+ return pulumi.get(self, "deployment_scope")
129
+
130
+ @deployment_scope.setter
131
+ def deployment_scope(self, value: Optional[pulumi.Input[str]]):
132
+ pulumi.set(self, "deployment_scope", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="deploymentStackName")
136
+ def deployment_stack_name(self) -> Optional[pulumi.Input[str]]:
137
+ """
138
+ Name of the deployment stack.
139
+ """
140
+ return pulumi.get(self, "deployment_stack_name")
141
+
142
+ @deployment_stack_name.setter
143
+ def deployment_stack_name(self, value: Optional[pulumi.Input[str]]):
144
+ pulumi.set(self, "deployment_stack_name", value)
145
+
146
+ @property
147
+ @pulumi.getter
148
+ def description(self) -> Optional[pulumi.Input[str]]:
149
+ """
150
+ Deployment stack description. Max length of 4096 characters.
151
+ """
152
+ return pulumi.get(self, "description")
153
+
154
+ @description.setter
155
+ def description(self, value: Optional[pulumi.Input[str]]):
156
+ pulumi.set(self, "description", value)
157
+
158
+ @property
159
+ @pulumi.getter
160
+ def location(self) -> Optional[pulumi.Input[str]]:
161
+ """
162
+ The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
163
+ """
164
+ return pulumi.get(self, "location")
165
+
166
+ @location.setter
167
+ def location(self, value: Optional[pulumi.Input[str]]):
168
+ pulumi.set(self, "location", value)
169
+
170
+ @property
171
+ @pulumi.getter
172
+ def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['DeploymentParameterArgs']]]]:
173
+ """
174
+ Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both.
175
+ """
176
+ return pulumi.get(self, "parameters")
177
+
178
+ @parameters.setter
179
+ def parameters(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['DeploymentParameterArgs']]]]):
180
+ pulumi.set(self, "parameters", value)
181
+
182
+ @property
183
+ @pulumi.getter(name="parametersLink")
184
+ def parameters_link(self) -> Optional[pulumi.Input['DeploymentStacksParametersLinkArgs']]:
185
+ """
186
+ The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
187
+ """
188
+ return pulumi.get(self, "parameters_link")
189
+
190
+ @parameters_link.setter
191
+ def parameters_link(self, value: Optional[pulumi.Input['DeploymentStacksParametersLinkArgs']]):
192
+ pulumi.set(self, "parameters_link", value)
193
+
194
+ @property
195
+ @pulumi.getter
196
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
197
+ """
198
+ Deployment stack resource tags.
199
+ """
200
+ return pulumi.get(self, "tags")
201
+
202
+ @tags.setter
203
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
204
+ pulumi.set(self, "tags", value)
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def template(self) -> Optional[Any]:
209
+ """
210
+ The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
211
+ """
212
+ return pulumi.get(self, "template")
213
+
214
+ @template.setter
215
+ def template(self, value: Optional[Any]):
216
+ pulumi.set(self, "template", value)
217
+
218
+ @property
219
+ @pulumi.getter(name="templateLink")
220
+ def template_link(self) -> Optional[pulumi.Input['DeploymentStacksTemplateLinkArgs']]:
221
+ """
222
+ The URI of the template. Use either the templateLink property or the template property, but not both.
223
+ """
224
+ return pulumi.get(self, "template_link")
225
+
226
+ @template_link.setter
227
+ def template_link(self, value: Optional[pulumi.Input['DeploymentStacksTemplateLinkArgs']]):
228
+ pulumi.set(self, "template_link", value)
229
+
230
+
231
+ class DeploymentStackAtSubscription(pulumi.CustomResource):
232
+ @overload
233
+ def __init__(__self__,
234
+ resource_name: str,
235
+ opts: Optional[pulumi.ResourceOptions] = None,
236
+ action_on_unmanage: Optional[pulumi.Input[pulumi.InputType['ActionOnUnmanageArgs']]] = None,
237
+ bypass_stack_out_of_sync_error: Optional[pulumi.Input[bool]] = None,
238
+ debug_setting: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksDebugSettingArgs']]] = None,
239
+ deny_settings: Optional[pulumi.Input[pulumi.InputType['DenySettingsArgs']]] = None,
240
+ deployment_scope: Optional[pulumi.Input[str]] = None,
241
+ deployment_stack_name: Optional[pulumi.Input[str]] = None,
242
+ description: Optional[pulumi.Input[str]] = None,
243
+ location: Optional[pulumi.Input[str]] = None,
244
+ parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[pulumi.InputType['DeploymentParameterArgs']]]]] = None,
245
+ parameters_link: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksParametersLinkArgs']]] = None,
246
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
247
+ template: Optional[Any] = None,
248
+ template_link: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksTemplateLinkArgs']]] = None,
249
+ __props__=None):
250
+ """
251
+ Deployment stack object.
252
+
253
+ :param str resource_name: The name of the resource.
254
+ :param pulumi.ResourceOptions opts: Options for the resource.
255
+ :param pulumi.Input[pulumi.InputType['ActionOnUnmanageArgs']] action_on_unmanage: Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
256
+ :param pulumi.Input[bool] bypass_stack_out_of_sync_error: Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
257
+ :param pulumi.Input[pulumi.InputType['DeploymentStacksDebugSettingArgs']] debug_setting: The debug setting of the deployment.
258
+ :param pulumi.Input[pulumi.InputType['DenySettingsArgs']] deny_settings: Defines how resources deployed by the stack are locked.
259
+ :param pulumi.Input[str] deployment_scope: The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
260
+ :param pulumi.Input[str] deployment_stack_name: Name of the deployment stack.
261
+ :param pulumi.Input[str] description: Deployment stack description. Max length of 4096 characters.
262
+ :param pulumi.Input[str] location: The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
263
+ :param pulumi.Input[Mapping[str, pulumi.Input[pulumi.InputType['DeploymentParameterArgs']]]] parameters: Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both.
264
+ :param pulumi.Input[pulumi.InputType['DeploymentStacksParametersLinkArgs']] parameters_link: The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
265
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Deployment stack resource tags.
266
+ :param Any template: The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
267
+ :param pulumi.Input[pulumi.InputType['DeploymentStacksTemplateLinkArgs']] template_link: The URI of the template. Use either the templateLink property or the template property, but not both.
268
+ """
269
+ ...
270
+ @overload
271
+ def __init__(__self__,
272
+ resource_name: str,
273
+ args: DeploymentStackAtSubscriptionArgs,
274
+ opts: Optional[pulumi.ResourceOptions] = None):
275
+ """
276
+ Deployment stack object.
277
+
278
+ :param str resource_name: The name of the resource.
279
+ :param DeploymentStackAtSubscriptionArgs args: The arguments to use to populate this resource's properties.
280
+ :param pulumi.ResourceOptions opts: Options for the resource.
281
+ """
282
+ ...
283
+ def __init__(__self__, resource_name: str, *args, **kwargs):
284
+ resource_args, opts = _utilities.get_resource_args_opts(DeploymentStackAtSubscriptionArgs, pulumi.ResourceOptions, *args, **kwargs)
285
+ if resource_args is not None:
286
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
287
+ else:
288
+ __self__._internal_init(resource_name, *args, **kwargs)
289
+
290
+ def _internal_init(__self__,
291
+ resource_name: str,
292
+ opts: Optional[pulumi.ResourceOptions] = None,
293
+ action_on_unmanage: Optional[pulumi.Input[pulumi.InputType['ActionOnUnmanageArgs']]] = None,
294
+ bypass_stack_out_of_sync_error: Optional[pulumi.Input[bool]] = None,
295
+ debug_setting: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksDebugSettingArgs']]] = None,
296
+ deny_settings: Optional[pulumi.Input[pulumi.InputType['DenySettingsArgs']]] = None,
297
+ deployment_scope: Optional[pulumi.Input[str]] = None,
298
+ deployment_stack_name: Optional[pulumi.Input[str]] = None,
299
+ description: Optional[pulumi.Input[str]] = None,
300
+ location: Optional[pulumi.Input[str]] = None,
301
+ parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[pulumi.InputType['DeploymentParameterArgs']]]]] = None,
302
+ parameters_link: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksParametersLinkArgs']]] = None,
303
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
304
+ template: Optional[Any] = None,
305
+ template_link: Optional[pulumi.Input[pulumi.InputType['DeploymentStacksTemplateLinkArgs']]] = None,
306
+ __props__=None):
307
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
308
+ if not isinstance(opts, pulumi.ResourceOptions):
309
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
310
+ if opts.id is None:
311
+ if __props__ is not None:
312
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
313
+ __props__ = DeploymentStackAtSubscriptionArgs.__new__(DeploymentStackAtSubscriptionArgs)
314
+
315
+ if action_on_unmanage is None and not opts.urn:
316
+ raise TypeError("Missing required property 'action_on_unmanage'")
317
+ __props__.__dict__["action_on_unmanage"] = action_on_unmanage
318
+ __props__.__dict__["bypass_stack_out_of_sync_error"] = bypass_stack_out_of_sync_error
319
+ __props__.__dict__["debug_setting"] = debug_setting
320
+ if deny_settings is None and not opts.urn:
321
+ raise TypeError("Missing required property 'deny_settings'")
322
+ __props__.__dict__["deny_settings"] = deny_settings
323
+ __props__.__dict__["deployment_scope"] = deployment_scope
324
+ __props__.__dict__["deployment_stack_name"] = deployment_stack_name
325
+ __props__.__dict__["description"] = description
326
+ __props__.__dict__["location"] = location
327
+ __props__.__dict__["parameters"] = parameters
328
+ __props__.__dict__["parameters_link"] = parameters_link
329
+ __props__.__dict__["tags"] = tags
330
+ __props__.__dict__["template"] = template
331
+ __props__.__dict__["template_link"] = template_link
332
+ __props__.__dict__["correlation_id"] = None
333
+ __props__.__dict__["deleted_resources"] = None
334
+ __props__.__dict__["deployment_id"] = None
335
+ __props__.__dict__["detached_resources"] = None
336
+ __props__.__dict__["duration"] = None
337
+ __props__.__dict__["error"] = None
338
+ __props__.__dict__["failed_resources"] = None
339
+ __props__.__dict__["name"] = None
340
+ __props__.__dict__["outputs"] = None
341
+ __props__.__dict__["provisioning_state"] = None
342
+ __props__.__dict__["resources"] = None
343
+ __props__.__dict__["system_data"] = None
344
+ __props__.__dict__["type"] = None
345
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:resources:DeploymentStackAtSubscription"), pulumi.Alias(type_="azure-native:resources/v20220801preview:DeploymentStackAtSubscription")])
346
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
347
+ super(DeploymentStackAtSubscription, __self__).__init__(
348
+ 'azure-native:resources/v20240301:DeploymentStackAtSubscription',
349
+ resource_name,
350
+ __props__,
351
+ opts)
352
+
353
+ @staticmethod
354
+ def get(resource_name: str,
355
+ id: pulumi.Input[str],
356
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'DeploymentStackAtSubscription':
357
+ """
358
+ Get an existing DeploymentStackAtSubscription resource's state with the given name, id, and optional extra
359
+ properties used to qualify the lookup.
360
+
361
+ :param str resource_name: The unique name of the resulting resource.
362
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
363
+ :param pulumi.ResourceOptions opts: Options for the resource.
364
+ """
365
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
366
+
367
+ __props__ = DeploymentStackAtSubscriptionArgs.__new__(DeploymentStackAtSubscriptionArgs)
368
+
369
+ __props__.__dict__["action_on_unmanage"] = None
370
+ __props__.__dict__["correlation_id"] = None
371
+ __props__.__dict__["debug_setting"] = None
372
+ __props__.__dict__["deleted_resources"] = None
373
+ __props__.__dict__["deny_settings"] = None
374
+ __props__.__dict__["deployment_id"] = None
375
+ __props__.__dict__["deployment_scope"] = None
376
+ __props__.__dict__["description"] = None
377
+ __props__.__dict__["detached_resources"] = None
378
+ __props__.__dict__["duration"] = None
379
+ __props__.__dict__["error"] = None
380
+ __props__.__dict__["failed_resources"] = None
381
+ __props__.__dict__["location"] = None
382
+ __props__.__dict__["name"] = None
383
+ __props__.__dict__["outputs"] = None
384
+ __props__.__dict__["parameters"] = None
385
+ __props__.__dict__["parameters_link"] = None
386
+ __props__.__dict__["provisioning_state"] = None
387
+ __props__.__dict__["resources"] = None
388
+ __props__.__dict__["system_data"] = None
389
+ __props__.__dict__["tags"] = None
390
+ __props__.__dict__["type"] = None
391
+ return DeploymentStackAtSubscription(resource_name, opts=opts, __props__=__props__)
392
+
393
+ @property
394
+ @pulumi.getter(name="actionOnUnmanage")
395
+ def action_on_unmanage(self) -> pulumi.Output['outputs.ActionOnUnmanageResponse']:
396
+ """
397
+ Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
398
+ """
399
+ return pulumi.get(self, "action_on_unmanage")
400
+
401
+ @property
402
+ @pulumi.getter(name="correlationId")
403
+ def correlation_id(self) -> pulumi.Output[str]:
404
+ """
405
+ The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
406
+ """
407
+ return pulumi.get(self, "correlation_id")
408
+
409
+ @property
410
+ @pulumi.getter(name="debugSetting")
411
+ def debug_setting(self) -> pulumi.Output[Optional['outputs.DeploymentStacksDebugSettingResponse']]:
412
+ """
413
+ The debug setting of the deployment.
414
+ """
415
+ return pulumi.get(self, "debug_setting")
416
+
417
+ @property
418
+ @pulumi.getter(name="deletedResources")
419
+ def deleted_resources(self) -> pulumi.Output[Sequence['outputs.ResourceReferenceResponse']]:
420
+ """
421
+ An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
422
+ """
423
+ return pulumi.get(self, "deleted_resources")
424
+
425
+ @property
426
+ @pulumi.getter(name="denySettings")
427
+ def deny_settings(self) -> pulumi.Output['outputs.DenySettingsResponse']:
428
+ """
429
+ Defines how resources deployed by the stack are locked.
430
+ """
431
+ return pulumi.get(self, "deny_settings")
432
+
433
+ @property
434
+ @pulumi.getter(name="deploymentId")
435
+ def deployment_id(self) -> pulumi.Output[str]:
436
+ """
437
+ The resourceId of the deployment resource created by the deployment stack.
438
+ """
439
+ return pulumi.get(self, "deployment_id")
440
+
441
+ @property
442
+ @pulumi.getter(name="deploymentScope")
443
+ def deployment_scope(self) -> pulumi.Output[Optional[str]]:
444
+ """
445
+ The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
446
+ """
447
+ return pulumi.get(self, "deployment_scope")
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def description(self) -> pulumi.Output[Optional[str]]:
452
+ """
453
+ Deployment stack description. Max length of 4096 characters.
454
+ """
455
+ return pulumi.get(self, "description")
456
+
457
+ @property
458
+ @pulumi.getter(name="detachedResources")
459
+ def detached_resources(self) -> pulumi.Output[Sequence['outputs.ResourceReferenceResponse']]:
460
+ """
461
+ An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
462
+ """
463
+ return pulumi.get(self, "detached_resources")
464
+
465
+ @property
466
+ @pulumi.getter
467
+ def duration(self) -> pulumi.Output[str]:
468
+ """
469
+ The duration of the last successful Deployment stack update.
470
+ """
471
+ return pulumi.get(self, "duration")
472
+
473
+ @property
474
+ @pulumi.getter
475
+ def error(self) -> pulumi.Output[Optional['outputs.ErrorDetailResponse']]:
476
+ """
477
+ The error detail.
478
+ """
479
+ return pulumi.get(self, "error")
480
+
481
+ @property
482
+ @pulumi.getter(name="failedResources")
483
+ def failed_resources(self) -> pulumi.Output[Sequence['outputs.ResourceReferenceExtendedResponse']]:
484
+ """
485
+ An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
486
+ """
487
+ return pulumi.get(self, "failed_resources")
488
+
489
+ @property
490
+ @pulumi.getter
491
+ def location(self) -> pulumi.Output[Optional[str]]:
492
+ """
493
+ The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
494
+ """
495
+ return pulumi.get(self, "location")
496
+
497
+ @property
498
+ @pulumi.getter
499
+ def name(self) -> pulumi.Output[str]:
500
+ """
501
+ Name of this resource.
502
+ """
503
+ return pulumi.get(self, "name")
504
+
505
+ @property
506
+ @pulumi.getter
507
+ def outputs(self) -> pulumi.Output[Any]:
508
+ """
509
+ The outputs of the deployment resource created by the deployment stack.
510
+ """
511
+ return pulumi.get(self, "outputs")
512
+
513
+ @property
514
+ @pulumi.getter
515
+ def parameters(self) -> pulumi.Output[Optional[Mapping[str, 'outputs.DeploymentParameterResponse']]]:
516
+ """
517
+ Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both.
518
+ """
519
+ return pulumi.get(self, "parameters")
520
+
521
+ @property
522
+ @pulumi.getter(name="parametersLink")
523
+ def parameters_link(self) -> pulumi.Output[Optional['outputs.DeploymentStacksParametersLinkResponse']]:
524
+ """
525
+ The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
526
+ """
527
+ return pulumi.get(self, "parameters_link")
528
+
529
+ @property
530
+ @pulumi.getter(name="provisioningState")
531
+ def provisioning_state(self) -> pulumi.Output[str]:
532
+ """
533
+ State of the deployment stack.
534
+ """
535
+ return pulumi.get(self, "provisioning_state")
536
+
537
+ @property
538
+ @pulumi.getter
539
+ def resources(self) -> pulumi.Output[Sequence['outputs.ManagedResourceReferenceResponse']]:
540
+ """
541
+ An array of resources currently managed by the deployment stack.
542
+ """
543
+ return pulumi.get(self, "resources")
544
+
545
+ @property
546
+ @pulumi.getter(name="systemData")
547
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
548
+ """
549
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
550
+ """
551
+ return pulumi.get(self, "system_data")
552
+
553
+ @property
554
+ @pulumi.getter
555
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
556
+ """
557
+ Deployment stack resource tags.
558
+ """
559
+ return pulumi.get(self, "tags")
560
+
561
+ @property
562
+ @pulumi.getter
563
+ def type(self) -> pulumi.Output[str]:
564
+ """
565
+ Type of this resource.
566
+ """
567
+ return pulumi.get(self, "type")
568
+