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