pulumi-azure-native 2.29.1a1708510433__py3-none-any.whl → 2.29.1a1708705299__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 (695) hide show
  1. pulumi_azure_native/__init__.py +184 -0
  2. pulumi_azure_native/_utilities.py +2 -6
  3. pulumi_azure_native/app/__init__.py +7 -0
  4. pulumi_azure_native/app/_enums.py +19 -0
  5. pulumi_azure_native/app/_inputs.py +164 -0
  6. pulumi_azure_native/app/app_resiliency.py +5 -1
  7. pulumi_azure_native/app/build.py +5 -1
  8. pulumi_azure_native/app/builder.py +5 -1
  9. pulumi_azure_native/app/certificate.py +3 -3
  10. pulumi_azure_native/app/connected_environment.py +3 -3
  11. pulumi_azure_native/app/connected_environments_certificate.py +3 -3
  12. pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
  13. pulumi_azure_native/app/connected_environments_storage.py +3 -3
  14. pulumi_azure_native/app/container_app.py +3 -3
  15. pulumi_azure_native/app/container_apps_auth_config.py +3 -3
  16. pulumi_azure_native/app/container_apps_source_control.py +3 -3
  17. pulumi_azure_native/app/dapr_component.py +3 -3
  18. pulumi_azure_native/app/dapr_component_resiliency_policy.py +5 -1
  19. pulumi_azure_native/app/dapr_subscription.py +5 -1
  20. pulumi_azure_native/app/dot_net_component.py +285 -0
  21. pulumi_azure_native/app/get_app_resiliency.py +4 -0
  22. pulumi_azure_native/app/get_build.py +4 -0
  23. pulumi_azure_native/app/get_builder.py +4 -0
  24. pulumi_azure_native/app/get_certificate.py +2 -2
  25. pulumi_azure_native/app/get_connected_environment.py +2 -2
  26. pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
  27. pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
  28. pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
  29. pulumi_azure_native/app/get_container_app.py +2 -2
  30. pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
  31. pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
  32. pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
  33. pulumi_azure_native/app/get_dapr_component.py +2 -2
  34. pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +4 -0
  35. pulumi_azure_native/app/get_dapr_subscription.py +4 -0
  36. pulumi_azure_native/app/get_dot_net_component.py +177 -0
  37. pulumi_azure_native/app/get_java_component.py +177 -0
  38. pulumi_azure_native/app/get_job.py +2 -2
  39. pulumi_azure_native/app/get_managed_certificate.py +2 -2
  40. pulumi_azure_native/app/get_managed_environment.py +2 -2
  41. pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
  42. pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
  43. pulumi_azure_native/app/java_component.py +285 -0
  44. pulumi_azure_native/app/job.py +3 -3
  45. pulumi_azure_native/app/list_build_auth_token.py +4 -0
  46. pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
  47. pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
  48. pulumi_azure_native/app/list_container_app_secrets.py +2 -2
  49. pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
  50. pulumi_azure_native/app/list_job_secrets.py +2 -2
  51. pulumi_azure_native/app/managed_certificate.py +3 -3
  52. pulumi_azure_native/app/managed_environment.py +3 -3
  53. pulumi_azure_native/app/managed_environments_storage.py +3 -3
  54. pulumi_azure_native/app/outputs.py +212 -0
  55. pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
  56. pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
  57. pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
  58. pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
  59. pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
  60. pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
  61. pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
  62. pulumi_azure_native/app/v20221001/certificate.py +1 -1
  63. pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
  64. pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
  65. pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
  66. pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
  67. pulumi_azure_native/app/v20221001/container_app.py +1 -1
  68. pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
  69. pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
  70. pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
  71. pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
  72. pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
  73. pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
  74. pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
  75. pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
  76. pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
  77. pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
  78. pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
  79. pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
  80. pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
  81. pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
  82. pulumi_azure_native/app/v20230401preview/job.py +1 -1
  83. pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
  84. pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
  85. pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
  86. pulumi_azure_native/app/v20230501/certificate.py +1 -1
  87. pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
  88. pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
  89. pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
  90. pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
  91. pulumi_azure_native/app/v20230501/container_app.py +1 -1
  92. pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
  93. pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
  94. pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
  95. pulumi_azure_native/app/v20230501/job.py +1 -1
  96. pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
  97. pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
  98. pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
  99. pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
  100. pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
  101. pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
  102. pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
  103. pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
  104. pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
  105. pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
  106. pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
  107. pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
  108. pulumi_azure_native/app/v20230502preview/job.py +1 -1
  109. pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
  110. pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
  111. pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
  112. pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
  113. pulumi_azure_native/app/v20230801preview/build.py +1 -1
  114. pulumi_azure_native/app/v20230801preview/builder.py +1 -1
  115. pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
  116. pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
  117. pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
  118. pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
  119. pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
  120. pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
  121. pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
  122. pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
  123. pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
  124. pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
  125. pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
  126. pulumi_azure_native/app/v20230801preview/job.py +1 -1
  127. pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
  128. pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
  129. pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
  130. pulumi_azure_native/app/v20231102preview/__init__.py +58 -0
  131. pulumi_azure_native/app/v20231102preview/_enums.py +239 -0
  132. pulumi_azure_native/app/v20231102preview/_inputs.py +7921 -0
  133. pulumi_azure_native/app/v20231102preview/app_resiliency.py +359 -0
  134. pulumi_azure_native/app/v20231102preview/build.py +294 -0
  135. pulumi_azure_native/app/v20231102preview/builder.py +322 -0
  136. pulumi_azure_native/app/v20231102preview/certificate.py +274 -0
  137. pulumi_azure_native/app/v20231102preview/connected_environment.py +370 -0
  138. pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +274 -0
  139. pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +451 -0
  140. pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +216 -0
  141. pulumi_azure_native/app/v20231102preview/container_app.py +526 -0
  142. pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +361 -0
  143. pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +291 -0
  144. pulumi_azure_native/app/v20231102preview/dapr_component.py +451 -0
  145. pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +264 -0
  146. pulumi_azure_native/app/v20231102preview/dapr_subscription.py +388 -0
  147. pulumi_azure_native/app/v20231102preview/dot_net_component.py +283 -0
  148. pulumi_azure_native/app/v20231102preview/get_app_resiliency.py +201 -0
  149. pulumi_azure_native/app/v20231102preview/get_build.py +214 -0
  150. pulumi_azure_native/app/v20231102preview/get_builder.py +196 -0
  151. pulumi_azure_native/app/v20231102preview/get_certificate.py +162 -0
  152. pulumi_azure_native/app/v20231102preview/get_connected_environment.py +235 -0
  153. pulumi_azure_native/app/v20231102preview/get_connected_environments_certificate.py +162 -0
  154. pulumi_azure_native/app/v20231102preview/get_connected_environments_dapr_component.py +240 -0
  155. pulumi_azure_native/app/v20231102preview/get_connected_environments_storage.py +136 -0
  156. pulumi_azure_native/app/v20231102preview/get_container_app.py +339 -0
  157. pulumi_azure_native/app/v20231102preview/get_container_app_auth_token.py +170 -0
  158. pulumi_azure_native/app/v20231102preview/get_container_apps_auth_config.py +201 -0
  159. pulumi_azure_native/app/v20231102preview/get_container_apps_source_control.py +177 -0
  160. pulumi_azure_native/app/v20231102preview/get_dapr_component.py +240 -0
  161. pulumi_azure_native/app/v20231102preview/get_dapr_component_resiliency_policy.py +154 -0
  162. pulumi_azure_native/app/v20231102preview/get_dapr_subscription.py +214 -0
  163. pulumi_azure_native/app/v20231102preview/get_dot_net_component.py +175 -0
  164. pulumi_azure_native/app/v20231102preview/get_java_component.py +175 -0
  165. pulumi_azure_native/app/v20231102preview/get_job.py +261 -0
  166. pulumi_azure_native/app/v20231102preview/get_managed_certificate.py +162 -0
  167. pulumi_azure_native/app/v20231102preview/get_managed_environment.py +406 -0
  168. pulumi_azure_native/app/v20231102preview/get_managed_environment_auth_token.py +170 -0
  169. pulumi_azure_native/app/v20231102preview/get_managed_environments_storage.py +136 -0
  170. pulumi_azure_native/app/v20231102preview/java_component.py +283 -0
  171. pulumi_azure_native/app/v20231102preview/job.py +428 -0
  172. pulumi_azure_native/app/v20231102preview/list_build_auth_token.py +96 -0
  173. pulumi_azure_native/app/v20231102preview/list_connected_environments_dapr_component_secrets.py +84 -0
  174. pulumi_azure_native/app/v20231102preview/list_container_app_custom_host_name_analysis.py +227 -0
  175. pulumi_azure_native/app/v20231102preview/list_container_app_secrets.py +79 -0
  176. pulumi_azure_native/app/v20231102preview/list_dapr_component_secrets.py +84 -0
  177. pulumi_azure_native/app/v20231102preview/list_job_secrets.py +79 -0
  178. pulumi_azure_native/app/v20231102preview/managed_certificate.py +274 -0
  179. pulumi_azure_native/app/v20231102preview/managed_environment.py +679 -0
  180. pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +216 -0
  181. pulumi_azure_native/app/v20231102preview/outputs.py +9200 -0
  182. pulumi_azure_native/containerservice/__init__.py +6 -0
  183. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  184. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  185. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  186. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  187. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  188. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  189. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  190. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  191. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  192. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  193. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  194. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  195. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  196. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  197. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  198. pulumi_azure_native/containerservice/snapshot.py +3 -3
  199. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  200. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  201. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  202. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  203. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  204. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  205. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  206. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  207. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  208. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  209. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  210. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  211. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  212. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  213. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  214. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  215. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  216. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  217. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  218. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  219. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  220. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  221. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  222. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  223. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  224. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  225. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  226. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  227. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  228. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  229. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  230. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  231. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  232. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  233. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  234. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  235. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  236. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  237. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  238. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  239. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  240. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  241. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  242. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  243. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  244. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  245. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  246. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  247. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  248. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  249. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  250. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  251. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  252. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  253. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  254. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  255. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  256. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  257. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  258. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  259. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  260. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  261. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  262. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  263. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  264. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  265. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  266. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  267. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  268. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  269. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  270. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  271. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  272. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  273. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  274. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  275. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  276. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  277. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  278. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  279. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  280. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  281. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  282. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  283. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  284. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  285. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  286. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  287. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  288. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  289. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  290. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  291. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  292. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  293. pulumi_azure_native/containerservice/v20240101/__init__.py +25 -0
  294. pulumi_azure_native/containerservice/v20240101/_enums.py +620 -0
  295. pulumi_azure_native/containerservice/v20240101/_inputs.py +5394 -0
  296. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1357 -0
  297. pulumi_azure_native/containerservice/v20240101/get_agent_pool.py +656 -0
  298. pulumi_azure_native/containerservice/v20240101/get_maintenance_configuration.py +162 -0
  299. pulumi_azure_native/containerservice/v20240101/get_managed_cluster.py +703 -0
  300. pulumi_azure_native/containerservice/v20240101/get_private_endpoint_connection.py +149 -0
  301. pulumi_azure_native/containerservice/v20240101/get_snapshot.py +248 -0
  302. pulumi_azure_native/containerservice/v20240101/get_trusted_access_role_binding.py +162 -0
  303. pulumi_azure_native/containerservice/v20240101/list_managed_cluster_admin_credentials.py +84 -0
  304. pulumi_azure_native/containerservice/v20240101/list_managed_cluster_monitoring_user_credentials.py +84 -0
  305. pulumi_azure_native/containerservice/v20240101/list_managed_cluster_user_credentials.py +89 -0
  306. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +274 -0
  307. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1319 -0
  308. pulumi_azure_native/containerservice/v20240101/outputs.py +6265 -0
  309. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +246 -0
  310. pulumi_azure_native/containerservice/v20240101/snapshot.py +342 -0
  311. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +255 -0
  312. pulumi_azure_native/containerservice/v20240102preview/__init__.py +27 -0
  313. pulumi_azure_native/containerservice/v20240102preview/_enums.py +794 -0
  314. pulumi_azure_native/containerservice/v20240102preview/_inputs.py +6636 -0
  315. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1647 -0
  316. pulumi_azure_native/containerservice/v20240102preview/get_agent_pool.py +786 -0
  317. pulumi_azure_native/containerservice/v20240102preview/get_maintenance_configuration.py +162 -0
  318. pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster.py +807 -0
  319. pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster_snapshot.py +183 -0
  320. pulumi_azure_native/containerservice/v20240102preview/get_private_endpoint_connection.py +149 -0
  321. pulumi_azure_native/containerservice/v20240102preview/get_snapshot.py +248 -0
  322. pulumi_azure_native/containerservice/v20240102preview/get_trusted_access_role_binding.py +162 -0
  323. pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_admin_credentials.py +84 -0
  324. pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
  325. pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_user_credentials.py +89 -0
  326. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +274 -0
  327. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1551 -0
  328. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +292 -0
  329. pulumi_azure_native/containerservice/v20240102preview/outputs.py +7775 -0
  330. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +246 -0
  331. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +342 -0
  332. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +255 -0
  333. pulumi_azure_native/databasewatcher/__init__.py +24 -0
  334. pulumi_azure_native/databasewatcher/_enums.py +68 -0
  335. pulumi_azure_native/databasewatcher/_inputs.py +228 -0
  336. pulumi_azure_native/databasewatcher/get_shared_private_link_resource.py +203 -0
  337. pulumi_azure_native/databasewatcher/get_target.py +203 -0
  338. pulumi_azure_native/databasewatcher/get_watcher.py +198 -0
  339. pulumi_azure_native/databasewatcher/outputs.py +447 -0
  340. pulumi_azure_native/databasewatcher/shared_private_link_resource.py +326 -0
  341. pulumi_azure_native/databasewatcher/target.py +347 -0
  342. pulumi_azure_native/databasewatcher/v20230901preview/__init__.py +16 -0
  343. pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +68 -0
  344. pulumi_azure_native/databasewatcher/v20230901preview/_inputs.py +228 -0
  345. pulumi_azure_native/databasewatcher/v20230901preview/get_shared_private_link_resource.py +201 -0
  346. pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +201 -0
  347. pulumi_azure_native/databasewatcher/v20230901preview/get_watcher.py +196 -0
  348. pulumi_azure_native/databasewatcher/v20230901preview/outputs.py +447 -0
  349. pulumi_azure_native/databasewatcher/v20230901preview/shared_private_link_resource.py +324 -0
  350. pulumi_azure_native/databasewatcher/v20230901preview/target.py +345 -0
  351. pulumi_azure_native/databasewatcher/v20230901preview/watcher.py +302 -0
  352. pulumi_azure_native/databasewatcher/watcher.py +304 -0
  353. pulumi_azure_native/databox/__init__.py +3 -0
  354. pulumi_azure_native/databox/get_job.py +2 -2
  355. pulumi_azure_native/databox/job.py +3 -3
  356. pulumi_azure_native/databox/list_job_credentials.py +2 -2
  357. pulumi_azure_native/databox/v20221201/job.py +1 -1
  358. pulumi_azure_native/databox/v20230301/job.py +1 -1
  359. pulumi_azure_native/databox/v20231201/job.py +1 -1
  360. pulumi_azure_native/databox/v20240201preview/job.py +1 -1
  361. pulumi_azure_native/databox/v20240301preview/__init__.py +13 -0
  362. pulumi_azure_native/databox/v20240301preview/_enums.py +301 -0
  363. pulumi_azure_native/databox/v20240301preview/_inputs.py +2366 -0
  364. pulumi_azure_native/databox/v20240301preview/get_job.py +396 -0
  365. pulumi_azure_native/databox/v20240301preview/job.py +534 -0
  366. pulumi_azure_native/databox/v20240301preview/list_job_credentials.py +92 -0
  367. pulumi_azure_native/databox/v20240301preview/outputs.py +6392 -0
  368. pulumi_azure_native/datafactory/_enums.py +29 -0
  369. pulumi_azure_native/datafactory/_inputs.py +1095 -8
  370. pulumi_azure_native/datafactory/dataset.py +7 -7
  371. pulumi_azure_native/datafactory/linked_service.py +7 -7
  372. pulumi_azure_native/datafactory/outputs.py +1002 -2
  373. pulumi_azure_native/datafactory/v20180601/_enums.py +29 -0
  374. pulumi_azure_native/datafactory/v20180601/_inputs.py +1095 -8
  375. pulumi_azure_native/datafactory/v20180601/dataset.py +7 -7
  376. pulumi_azure_native/datafactory/v20180601/linked_service.py +7 -7
  377. pulumi_azure_native/datafactory/v20180601/outputs.py +1002 -2
  378. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  379. pulumi_azure_native/dbforpostgresql/cluster.py +5 -1
  380. pulumi_azure_native/dbforpostgresql/firewall_rule.py +2 -2
  381. pulumi_azure_native/dbforpostgresql/get_cluster.py +4 -0
  382. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  383. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  384. pulumi_azure_native/dbforpostgresql/get_role.py +4 -0
  385. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +3 -3
  386. pulumi_azure_native/dbforpostgresql/role.py +5 -1
  387. pulumi_azure_native/dbforpostgresql/v20201005privatepreview/firewall_rule.py +1 -1
  388. pulumi_azure_native/dbforpostgresql/v20201005privatepreview/server_group.py +1 -1
  389. pulumi_azure_native/dbforpostgresql/v20221108/cluster.py +1 -1
  390. pulumi_azure_native/dbforpostgresql/v20221108/firewall_rule.py +1 -1
  391. pulumi_azure_native/dbforpostgresql/v20221108/private_endpoint_connection.py +1 -1
  392. pulumi_azure_native/dbforpostgresql/v20221108/role.py +1 -1
  393. pulumi_azure_native/dbforpostgresql/v20230302preview/__init__.py +18 -0
  394. pulumi_azure_native/dbforpostgresql/v20230302preview/_enums.py +43 -0
  395. pulumi_azure_native/dbforpostgresql/v20230302preview/_inputs.py +178 -0
  396. pulumi_azure_native/dbforpostgresql/v20230302preview/cluster.py +923 -0
  397. pulumi_azure_native/dbforpostgresql/v20230302preview/firewall_rule.py +255 -0
  398. pulumi_azure_native/dbforpostgresql/v20230302preview/get_cluster.py +508 -0
  399. pulumi_azure_native/dbforpostgresql/v20230302preview/get_firewall_rule.py +162 -0
  400. pulumi_azure_native/dbforpostgresql/v20230302preview/get_private_endpoint_connection.py +175 -0
  401. pulumi_azure_native/dbforpostgresql/v20230302preview/get_role.py +176 -0
  402. pulumi_azure_native/dbforpostgresql/v20230302preview/outputs.py +536 -0
  403. pulumi_azure_native/dbforpostgresql/v20230302preview/private_endpoint_connection.py +247 -0
  404. pulumi_azure_native/dbforpostgresql/v20230302preview/role.py +306 -0
  405. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  406. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  407. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  408. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  409. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  410. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  411. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  412. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  413. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  414. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  415. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  416. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  417. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  418. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  419. pulumi_azure_native/healthcareapis/service.py +3 -3
  420. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  421. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  422. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  423. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  424. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  425. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  426. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  427. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  428. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  429. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  430. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  431. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  432. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  433. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  434. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  435. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  436. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
  437. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
  438. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
  439. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
  440. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
  441. pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
  442. pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
  443. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
  444. pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
  445. pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
  446. pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
  447. pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
  448. pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
  449. pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
  450. pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
  451. pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
  452. pulumi_azure_native/healthcareapis/v20240301/__init__.py +26 -0
  453. pulumi_azure_native/healthcareapis/v20240301/_enums.py +93 -0
  454. pulumi_azure_native/healthcareapis/v20240301/_inputs.py +1432 -0
  455. pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +431 -0
  456. pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +585 -0
  457. pulumi_azure_native/healthcareapis/v20240301/get_dicom_service.py +292 -0
  458. pulumi_azure_native/healthcareapis/v20240301/get_fhir_service.py +344 -0
  459. pulumi_azure_native/healthcareapis/v20240301/get_iot_connector.py +214 -0
  460. pulumi_azure_native/healthcareapis/v20240301/get_iot_connector_fhir_destination.py +193 -0
  461. pulumi_azure_native/healthcareapis/v20240301/get_private_endpoint_connection.py +162 -0
  462. pulumi_azure_native/healthcareapis/v20240301/get_service.py +196 -0
  463. pulumi_azure_native/healthcareapis/v20240301/get_workspace.py +170 -0
  464. pulumi_azure_native/healthcareapis/v20240301/get_workspace_private_endpoint_connection.py +162 -0
  465. pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +352 -0
  466. pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +337 -0
  467. pulumi_azure_native/healthcareapis/v20240301/outputs.py +2123 -0
  468. pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +237 -0
  469. pulumi_azure_native/healthcareapis/v20240301/service.py +322 -0
  470. pulumi_azure_native/healthcareapis/v20240301/workspace.py +242 -0
  471. pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +237 -0
  472. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  473. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  474. pulumi_azure_native/maps/__init__.py +3 -0
  475. pulumi_azure_native/maps/account.py +3 -3
  476. pulumi_azure_native/maps/creator.py +3 -3
  477. pulumi_azure_native/maps/get_account.py +2 -2
  478. pulumi_azure_native/maps/get_creator.py +2 -2
  479. pulumi_azure_native/maps/get_private_endpoint_connection.py +4 -0
  480. pulumi_azure_native/maps/list_account_keys.py +2 -2
  481. pulumi_azure_native/maps/list_account_sas.py +2 -2
  482. pulumi_azure_native/maps/private_endpoint_connection.py +5 -1
  483. pulumi_azure_native/maps/v20180501/account.py +1 -1
  484. pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
  485. pulumi_azure_native/maps/v20210201/account.py +1 -1
  486. pulumi_azure_native/maps/v20210201/creator.py +1 -1
  487. pulumi_azure_native/maps/v20211201preview/account.py +1 -1
  488. pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
  489. pulumi_azure_native/maps/v20230601/account.py +1 -1
  490. pulumi_azure_native/maps/v20230601/creator.py +1 -1
  491. pulumi_azure_native/maps/v20230801preview/account.py +1 -1
  492. pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
  493. pulumi_azure_native/maps/v20231201preview/account.py +1 -1
  494. pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
  495. pulumi_azure_native/maps/v20231201preview/private_endpoint_connection.py +1 -1
  496. pulumi_azure_native/maps/v20240101preview/__init__.py +18 -0
  497. pulumi_azure_native/maps/v20240101preview/_enums.py +73 -0
  498. pulumi_azure_native/maps/v20240101preview/_inputs.py +568 -0
  499. pulumi_azure_native/maps/v20240101preview/account.py +341 -0
  500. pulumi_azure_native/maps/v20240101preview/creator.py +274 -0
  501. pulumi_azure_native/maps/v20240101preview/get_account.py +196 -0
  502. pulumi_azure_native/maps/v20240101preview/get_creator.py +162 -0
  503. pulumi_azure_native/maps/v20240101preview/get_private_endpoint_connection.py +175 -0
  504. pulumi_azure_native/maps/v20240101preview/list_account_keys.py +117 -0
  505. pulumi_azure_native/maps/v20240101preview/list_account_sas.py +117 -0
  506. pulumi_azure_native/maps/v20240101preview/outputs.py +1100 -0
  507. pulumi_azure_native/maps/v20240101preview/private_endpoint_connection.py +247 -0
  508. pulumi_azure_native/mobilenetwork/__init__.py +3 -0
  509. pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
  510. pulumi_azure_native/mobilenetwork/data_network.py +3 -3
  511. pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
  512. pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
  513. pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
  514. pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
  515. pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
  516. pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
  517. pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
  518. pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
  519. pulumi_azure_native/mobilenetwork/get_service.py +2 -2
  520. pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
  521. pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
  522. pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
  523. pulumi_azure_native/mobilenetwork/get_site.py +2 -2
  524. pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
  525. pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
  526. pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
  527. pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
  528. pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
  529. pulumi_azure_native/mobilenetwork/service.py +3 -3
  530. pulumi_azure_native/mobilenetwork/sim.py +3 -3
  531. pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
  532. pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
  533. pulumi_azure_native/mobilenetwork/site.py +3 -3
  534. pulumi_azure_native/mobilenetwork/slice.py +3 -3
  535. pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
  536. pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
  537. pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
  538. pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
  539. pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
  540. pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
  541. pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
  542. pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
  543. pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
  544. pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
  545. pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
  546. pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
  547. pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
  548. pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
  549. pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
  550. pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
  551. pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
  552. pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
  553. pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
  554. pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
  555. pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
  556. pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
  557. pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
  558. pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
  559. pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
  560. pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
  561. pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
  562. pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
  563. pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
  564. pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
  565. pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
  566. pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
  567. pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
  568. pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
  569. pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
  570. pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
  571. pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
  572. pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
  573. pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
  574. pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
  575. pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
  576. pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
  577. pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
  578. pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
  579. pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
  580. pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
  581. pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
  582. pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
  583. pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
  584. pulumi_azure_native/mobilenetwork/v20240201/__init__.py +36 -0
  585. pulumi_azure_native/mobilenetwork/v20240201/_enums.py +196 -0
  586. pulumi_azure_native/mobilenetwork/v20240201/_inputs.py +1910 -0
  587. pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +443 -0
  588. pulumi_azure_native/mobilenetwork/v20240201/data_network.py +282 -0
  589. pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +215 -0
  590. pulumi_azure_native/mobilenetwork/v20240201/get_attached_data_network.py +237 -0
  591. pulumi_azure_native/mobilenetwork/v20240201/get_data_network.py +175 -0
  592. pulumi_azure_native/mobilenetwork/v20240201/get_diagnostics_package.py +162 -0
  593. pulumi_azure_native/mobilenetwork/v20240201/get_mobile_network.py +209 -0
  594. pulumi_azure_native/mobilenetwork/v20240201/get_packet_capture.py +240 -0
  595. pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_control_plane.py +391 -0
  596. pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_data_plane.py +188 -0
  597. pulumi_azure_native/mobilenetwork/v20240201/get_service.py +201 -0
  598. pulumi_azure_native/mobilenetwork/v20240201/get_sim.py +253 -0
  599. pulumi_azure_native/mobilenetwork/v20240201/get_sim_group.py +196 -0
  600. pulumi_azure_native/mobilenetwork/v20240201/get_sim_policy.py +240 -0
  601. pulumi_azure_native/mobilenetwork/v20240201/get_site.py +175 -0
  602. pulumi_azure_native/mobilenetwork/v20240201/get_slice.py +188 -0
  603. pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +332 -0
  604. pulumi_azure_native/mobilenetwork/v20240201/outputs.py +2449 -0
  605. pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +363 -0
  606. pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +708 -0
  607. pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +313 -0
  608. pulumi_azure_native/mobilenetwork/v20240201/service.py +344 -0
  609. pulumi_azure_native/mobilenetwork/v20240201/sim.py +422 -0
  610. pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +321 -0
  611. pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +417 -0
  612. pulumi_azure_native/mobilenetwork/v20240201/site.py +263 -0
  613. pulumi_azure_native/mobilenetwork/v20240201/slice.py +313 -0
  614. pulumi_azure_native/recoveryservices/__init__.py +3 -0
  615. pulumi_azure_native/recoveryservices/get_vault.py +2 -2
  616. pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
  617. pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
  618. pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
  619. pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
  620. pulumi_azure_native/recoveryservices/v20240101/__init__.py +12 -0
  621. pulumi_azure_native/recoveryservices/v20240101/_enums.py +102 -0
  622. pulumi_azure_native/recoveryservices/v20240101/_inputs.py +652 -0
  623. pulumi_azure_native/recoveryservices/v20240101/get_vault.py +196 -0
  624. pulumi_azure_native/recoveryservices/v20240101/outputs.py +1597 -0
  625. pulumi_azure_native/recoveryservices/v20240101/vault.py +321 -0
  626. pulumi_azure_native/recoveryservices/vault.py +3 -3
  627. pulumi_azure_native/redhatopenshift/__init__.py +3 -0
  628. pulumi_azure_native/redhatopenshift/get_machine_pool.py +2 -2
  629. pulumi_azure_native/redhatopenshift/get_open_shift_cluster.py +2 -2
  630. pulumi_azure_native/redhatopenshift/get_secret.py +2 -2
  631. pulumi_azure_native/redhatopenshift/get_sync_identity_provider.py +2 -2
  632. pulumi_azure_native/redhatopenshift/get_sync_set.py +2 -2
  633. pulumi_azure_native/redhatopenshift/list_open_shift_cluster_admin_credentials.py +2 -2
  634. pulumi_azure_native/redhatopenshift/list_open_shift_cluster_credentials.py +2 -2
  635. pulumi_azure_native/redhatopenshift/machine_pool.py +3 -3
  636. pulumi_azure_native/redhatopenshift/open_shift_cluster.py +3 -3
  637. pulumi_azure_native/redhatopenshift/secret.py +3 -3
  638. pulumi_azure_native/redhatopenshift/sync_identity_provider.py +3 -3
  639. pulumi_azure_native/redhatopenshift/sync_set.py +3 -3
  640. pulumi_azure_native/redhatopenshift/v20220904/machine_pool.py +1 -1
  641. pulumi_azure_native/redhatopenshift/v20220904/open_shift_cluster.py +1 -1
  642. pulumi_azure_native/redhatopenshift/v20220904/secret.py +1 -1
  643. pulumi_azure_native/redhatopenshift/v20220904/sync_identity_provider.py +1 -1
  644. pulumi_azure_native/redhatopenshift/v20220904/sync_set.py +1 -1
  645. pulumi_azure_native/redhatopenshift/v20230401/machine_pool.py +1 -1
  646. pulumi_azure_native/redhatopenshift/v20230401/open_shift_cluster.py +1 -1
  647. pulumi_azure_native/redhatopenshift/v20230401/secret.py +1 -1
  648. pulumi_azure_native/redhatopenshift/v20230401/sync_identity_provider.py +1 -1
  649. pulumi_azure_native/redhatopenshift/v20230401/sync_set.py +1 -1
  650. pulumi_azure_native/redhatopenshift/v20230701preview/machine_pool.py +1 -1
  651. pulumi_azure_native/redhatopenshift/v20230701preview/open_shift_cluster.py +1 -1
  652. pulumi_azure_native/redhatopenshift/v20230701preview/secret.py +1 -1
  653. pulumi_azure_native/redhatopenshift/v20230701preview/sync_identity_provider.py +1 -1
  654. pulumi_azure_native/redhatopenshift/v20230701preview/sync_set.py +1 -1
  655. pulumi_azure_native/redhatopenshift/v20230904/machine_pool.py +1 -1
  656. pulumi_azure_native/redhatopenshift/v20230904/open_shift_cluster.py +1 -1
  657. pulumi_azure_native/redhatopenshift/v20230904/secret.py +1 -1
  658. pulumi_azure_native/redhatopenshift/v20230904/sync_identity_provider.py +1 -1
  659. pulumi_azure_native/redhatopenshift/v20230904/sync_set.py +1 -1
  660. pulumi_azure_native/redhatopenshift/v20231122/__init__.py +22 -0
  661. pulumi_azure_native/redhatopenshift/v20231122/_enums.py +67 -0
  662. pulumi_azure_native/redhatopenshift/v20231122/_inputs.py +544 -0
  663. pulumi_azure_native/redhatopenshift/v20231122/get_machine_pool.py +133 -0
  664. pulumi_azure_native/redhatopenshift/v20231122/get_open_shift_cluster.py +274 -0
  665. pulumi_azure_native/redhatopenshift/v20231122/get_secret.py +136 -0
  666. pulumi_azure_native/redhatopenshift/v20231122/get_sync_identity_provider.py +133 -0
  667. pulumi_azure_native/redhatopenshift/v20231122/get_sync_set.py +136 -0
  668. pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_admin_credentials.py +78 -0
  669. pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_credentials.py +91 -0
  670. pulumi_azure_native/redhatopenshift/v20231122/machine_pool.py +206 -0
  671. pulumi_azure_native/redhatopenshift/v20231122/open_shift_cluster.py +476 -0
  672. pulumi_azure_native/redhatopenshift/v20231122/outputs.py +794 -0
  673. pulumi_azure_native/redhatopenshift/v20231122/secret.py +214 -0
  674. pulumi_azure_native/redhatopenshift/v20231122/sync_identity_provider.py +206 -0
  675. pulumi_azure_native/redhatopenshift/v20231122/sync_set.py +214 -0
  676. pulumi_azure_native/standbypool/__init__.py +22 -0
  677. pulumi_azure_native/standbypool/_enums.py +34 -0
  678. pulumi_azure_native/standbypool/_inputs.py +183 -0
  679. pulumi_azure_native/standbypool/get_standby_container_group_pool.py +185 -0
  680. pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +198 -0
  681. pulumi_azure_native/standbypool/outputs.py +333 -0
  682. pulumi_azure_native/standbypool/standby_container_group_pool.py +296 -0
  683. pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +324 -0
  684. pulumi_azure_native/standbypool/v20231201preview/__init__.py +14 -0
  685. pulumi_azure_native/standbypool/v20231201preview/_enums.py +34 -0
  686. pulumi_azure_native/standbypool/v20231201preview/_inputs.py +183 -0
  687. pulumi_azure_native/standbypool/v20231201preview/get_standby_container_group_pool.py +183 -0
  688. pulumi_azure_native/standbypool/v20231201preview/get_standby_virtual_machine_pool.py +196 -0
  689. pulumi_azure_native/standbypool/v20231201preview/outputs.py +333 -0
  690. pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +294 -0
  691. pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +322 -0
  692. {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
  693. {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
  694. {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
  695. {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,333 @@
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
+
14
+ __all__ = [
15
+ 'ContainerGroupProfileResponse',
16
+ 'ContainerGroupPropertiesResponse',
17
+ 'StandbyContainerGroupPoolElasticityProfileResponse',
18
+ 'StandbyVirtualMachinePoolElasticityProfileResponse',
19
+ 'SubnetResponse',
20
+ 'SystemDataResponse',
21
+ ]
22
+
23
+ @pulumi.output_type
24
+ class ContainerGroupProfileResponse(dict):
25
+ """
26
+ Details of the ContainerGroupProfile.
27
+ """
28
+ def __init__(__self__, *,
29
+ id: str,
30
+ revision: Optional[float] = None):
31
+ """
32
+ Details of the ContainerGroupProfile.
33
+ :param str id: Specifies container group profile id of standby container groups.
34
+ :param float revision: Specifies revision of container group profile.
35
+ """
36
+ pulumi.set(__self__, "id", id)
37
+ if revision is not None:
38
+ pulumi.set(__self__, "revision", revision)
39
+
40
+ @property
41
+ @pulumi.getter
42
+ def id(self) -> str:
43
+ """
44
+ Specifies container group profile id of standby container groups.
45
+ """
46
+ return pulumi.get(self, "id")
47
+
48
+ @property
49
+ @pulumi.getter
50
+ def revision(self) -> Optional[float]:
51
+ """
52
+ Specifies revision of container group profile.
53
+ """
54
+ return pulumi.get(self, "revision")
55
+
56
+
57
+ @pulumi.output_type
58
+ class ContainerGroupPropertiesResponse(dict):
59
+ """
60
+ Details of the ContainerGroupProperties.
61
+ """
62
+ @staticmethod
63
+ def __key_warning(key: str):
64
+ suggest = None
65
+ if key == "containerGroupProfile":
66
+ suggest = "container_group_profile"
67
+ elif key == "subnetIds":
68
+ suggest = "subnet_ids"
69
+
70
+ if suggest:
71
+ pulumi.log.warn(f"Key '{key}' not found in ContainerGroupPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
72
+
73
+ def __getitem__(self, key: str) -> Any:
74
+ ContainerGroupPropertiesResponse.__key_warning(key)
75
+ return super().__getitem__(key)
76
+
77
+ def get(self, key: str, default = None) -> Any:
78
+ ContainerGroupPropertiesResponse.__key_warning(key)
79
+ return super().get(key, default)
80
+
81
+ def __init__(__self__, *,
82
+ container_group_profile: 'outputs.ContainerGroupProfileResponse',
83
+ subnet_ids: Optional[Sequence['outputs.SubnetResponse']] = None):
84
+ """
85
+ Details of the ContainerGroupProperties.
86
+ :param 'ContainerGroupProfileResponse' container_group_profile: Specifies container group profile of standby container groups.
87
+ :param Sequence['SubnetResponse'] subnet_ids: Specifies subnet Ids for container group.
88
+ """
89
+ pulumi.set(__self__, "container_group_profile", container_group_profile)
90
+ if subnet_ids is not None:
91
+ pulumi.set(__self__, "subnet_ids", subnet_ids)
92
+
93
+ @property
94
+ @pulumi.getter(name="containerGroupProfile")
95
+ def container_group_profile(self) -> 'outputs.ContainerGroupProfileResponse':
96
+ """
97
+ Specifies container group profile of standby container groups.
98
+ """
99
+ return pulumi.get(self, "container_group_profile")
100
+
101
+ @property
102
+ @pulumi.getter(name="subnetIds")
103
+ def subnet_ids(self) -> Optional[Sequence['outputs.SubnetResponse']]:
104
+ """
105
+ Specifies subnet Ids for container group.
106
+ """
107
+ return pulumi.get(self, "subnet_ids")
108
+
109
+
110
+ @pulumi.output_type
111
+ class StandbyContainerGroupPoolElasticityProfileResponse(dict):
112
+ """
113
+ Specifies the elasticity profile of the standby container group pools.
114
+ """
115
+ @staticmethod
116
+ def __key_warning(key: str):
117
+ suggest = None
118
+ if key == "maxReadyCapacity":
119
+ suggest = "max_ready_capacity"
120
+ elif key == "refillPolicy":
121
+ suggest = "refill_policy"
122
+
123
+ if suggest:
124
+ pulumi.log.warn(f"Key '{key}' not found in StandbyContainerGroupPoolElasticityProfileResponse. Access the value via the '{suggest}' property getter instead.")
125
+
126
+ def __getitem__(self, key: str) -> Any:
127
+ StandbyContainerGroupPoolElasticityProfileResponse.__key_warning(key)
128
+ return super().__getitem__(key)
129
+
130
+ def get(self, key: str, default = None) -> Any:
131
+ StandbyContainerGroupPoolElasticityProfileResponse.__key_warning(key)
132
+ return super().get(key, default)
133
+
134
+ def __init__(__self__, *,
135
+ max_ready_capacity: float,
136
+ refill_policy: Optional[str] = None):
137
+ """
138
+ Specifies the elasticity profile of the standby container group pools.
139
+ :param float max_ready_capacity: Specifies maximum number of standby container groups in the standby pool.
140
+ :param str refill_policy: Specifies refill policy of the pool.
141
+ """
142
+ pulumi.set(__self__, "max_ready_capacity", max_ready_capacity)
143
+ if refill_policy is not None:
144
+ pulumi.set(__self__, "refill_policy", refill_policy)
145
+
146
+ @property
147
+ @pulumi.getter(name="maxReadyCapacity")
148
+ def max_ready_capacity(self) -> float:
149
+ """
150
+ Specifies maximum number of standby container groups in the standby pool.
151
+ """
152
+ return pulumi.get(self, "max_ready_capacity")
153
+
154
+ @property
155
+ @pulumi.getter(name="refillPolicy")
156
+ def refill_policy(self) -> Optional[str]:
157
+ """
158
+ Specifies refill policy of the pool.
159
+ """
160
+ return pulumi.get(self, "refill_policy")
161
+
162
+
163
+ @pulumi.output_type
164
+ class StandbyVirtualMachinePoolElasticityProfileResponse(dict):
165
+ """
166
+ Details of the elasticity profile.
167
+ """
168
+ @staticmethod
169
+ def __key_warning(key: str):
170
+ suggest = None
171
+ if key == "maxReadyCapacity":
172
+ suggest = "max_ready_capacity"
173
+
174
+ if suggest:
175
+ pulumi.log.warn(f"Key '{key}' not found in StandbyVirtualMachinePoolElasticityProfileResponse. Access the value via the '{suggest}' property getter instead.")
176
+
177
+ def __getitem__(self, key: str) -> Any:
178
+ StandbyVirtualMachinePoolElasticityProfileResponse.__key_warning(key)
179
+ return super().__getitem__(key)
180
+
181
+ def get(self, key: str, default = None) -> Any:
182
+ StandbyVirtualMachinePoolElasticityProfileResponse.__key_warning(key)
183
+ return super().get(key, default)
184
+
185
+ def __init__(__self__, *,
186
+ max_ready_capacity: float):
187
+ """
188
+ Details of the elasticity profile.
189
+ :param float max_ready_capacity: Specifies maximum number of virtual machines in the standby virtual machine pool.
190
+ """
191
+ pulumi.set(__self__, "max_ready_capacity", max_ready_capacity)
192
+
193
+ @property
194
+ @pulumi.getter(name="maxReadyCapacity")
195
+ def max_ready_capacity(self) -> float:
196
+ """
197
+ Specifies maximum number of virtual machines in the standby virtual machine pool.
198
+ """
199
+ return pulumi.get(self, "max_ready_capacity")
200
+
201
+
202
+ @pulumi.output_type
203
+ class SubnetResponse(dict):
204
+ """
205
+ Subnet of container group
206
+ """
207
+ def __init__(__self__, *,
208
+ id: str):
209
+ """
210
+ Subnet of container group
211
+ :param str id: Specifies ARM resource id of the subnet.
212
+ """
213
+ pulumi.set(__self__, "id", id)
214
+
215
+ @property
216
+ @pulumi.getter
217
+ def id(self) -> str:
218
+ """
219
+ Specifies ARM resource id of the subnet.
220
+ """
221
+ return pulumi.get(self, "id")
222
+
223
+
224
+ @pulumi.output_type
225
+ class SystemDataResponse(dict):
226
+ """
227
+ Metadata pertaining to creation and last modification of the resource.
228
+ """
229
+ @staticmethod
230
+ def __key_warning(key: str):
231
+ suggest = None
232
+ if key == "createdAt":
233
+ suggest = "created_at"
234
+ elif key == "createdBy":
235
+ suggest = "created_by"
236
+ elif key == "createdByType":
237
+ suggest = "created_by_type"
238
+ elif key == "lastModifiedAt":
239
+ suggest = "last_modified_at"
240
+ elif key == "lastModifiedBy":
241
+ suggest = "last_modified_by"
242
+ elif key == "lastModifiedByType":
243
+ suggest = "last_modified_by_type"
244
+
245
+ if suggest:
246
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
247
+
248
+ def __getitem__(self, key: str) -> Any:
249
+ SystemDataResponse.__key_warning(key)
250
+ return super().__getitem__(key)
251
+
252
+ def get(self, key: str, default = None) -> Any:
253
+ SystemDataResponse.__key_warning(key)
254
+ return super().get(key, default)
255
+
256
+ def __init__(__self__, *,
257
+ created_at: Optional[str] = None,
258
+ created_by: Optional[str] = None,
259
+ created_by_type: Optional[str] = None,
260
+ last_modified_at: Optional[str] = None,
261
+ last_modified_by: Optional[str] = None,
262
+ last_modified_by_type: Optional[str] = None):
263
+ """
264
+ Metadata pertaining to creation and last modification of the resource.
265
+ :param str created_at: The timestamp of resource creation (UTC).
266
+ :param str created_by: The identity that created the resource.
267
+ :param str created_by_type: The type of identity that created the resource.
268
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
269
+ :param str last_modified_by: The identity that last modified the resource.
270
+ :param str last_modified_by_type: The type of identity that last modified the resource.
271
+ """
272
+ if created_at is not None:
273
+ pulumi.set(__self__, "created_at", created_at)
274
+ if created_by is not None:
275
+ pulumi.set(__self__, "created_by", created_by)
276
+ if created_by_type is not None:
277
+ pulumi.set(__self__, "created_by_type", created_by_type)
278
+ if last_modified_at is not None:
279
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
280
+ if last_modified_by is not None:
281
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
282
+ if last_modified_by_type is not None:
283
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
284
+
285
+ @property
286
+ @pulumi.getter(name="createdAt")
287
+ def created_at(self) -> Optional[str]:
288
+ """
289
+ The timestamp of resource creation (UTC).
290
+ """
291
+ return pulumi.get(self, "created_at")
292
+
293
+ @property
294
+ @pulumi.getter(name="createdBy")
295
+ def created_by(self) -> Optional[str]:
296
+ """
297
+ The identity that created the resource.
298
+ """
299
+ return pulumi.get(self, "created_by")
300
+
301
+ @property
302
+ @pulumi.getter(name="createdByType")
303
+ def created_by_type(self) -> Optional[str]:
304
+ """
305
+ The type of identity that created the resource.
306
+ """
307
+ return pulumi.get(self, "created_by_type")
308
+
309
+ @property
310
+ @pulumi.getter(name="lastModifiedAt")
311
+ def last_modified_at(self) -> Optional[str]:
312
+ """
313
+ The timestamp of resource last modification (UTC)
314
+ """
315
+ return pulumi.get(self, "last_modified_at")
316
+
317
+ @property
318
+ @pulumi.getter(name="lastModifiedBy")
319
+ def last_modified_by(self) -> Optional[str]:
320
+ """
321
+ The identity that last modified the resource.
322
+ """
323
+ return pulumi.get(self, "last_modified_by")
324
+
325
+ @property
326
+ @pulumi.getter(name="lastModifiedByType")
327
+ def last_modified_by_type(self) -> Optional[str]:
328
+ """
329
+ The type of identity that last modified the resource.
330
+ """
331
+ return pulumi.get(self, "last_modified_by_type")
332
+
333
+
@@ -0,0 +1,294 @@
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__ = ['StandbyContainerGroupPoolArgs', 'StandbyContainerGroupPool']
16
+
17
+ @pulumi.input_type
18
+ class StandbyContainerGroupPoolArgs:
19
+ def __init__(__self__, *,
20
+ container_group_properties: pulumi.Input['ContainerGroupPropertiesArgs'],
21
+ elasticity_profile: pulumi.Input['StandbyContainerGroupPoolElasticityProfileArgs'],
22
+ resource_group_name: pulumi.Input[str],
23
+ location: Optional[pulumi.Input[str]] = None,
24
+ standby_container_group_pool_name: Optional[pulumi.Input[str]] = None,
25
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
26
+ """
27
+ The set of arguments for constructing a StandbyContainerGroupPool resource.
28
+ :param pulumi.Input['ContainerGroupPropertiesArgs'] container_group_properties: Specifies container group properties of standby container group pools.
29
+ :param pulumi.Input['StandbyContainerGroupPoolElasticityProfileArgs'] elasticity_profile: Specifies elasticity profile of standby container group pools.
30
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
31
+ :param pulumi.Input[str] location: The geo-location where the resource lives
32
+ :param pulumi.Input[str] standby_container_group_pool_name: Name of the standby container group pool
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
34
+ """
35
+ pulumi.set(__self__, "container_group_properties", container_group_properties)
36
+ pulumi.set(__self__, "elasticity_profile", elasticity_profile)
37
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
38
+ if location is not None:
39
+ pulumi.set(__self__, "location", location)
40
+ if standby_container_group_pool_name is not None:
41
+ pulumi.set(__self__, "standby_container_group_pool_name", standby_container_group_pool_name)
42
+ if tags is not None:
43
+ pulumi.set(__self__, "tags", tags)
44
+
45
+ @property
46
+ @pulumi.getter(name="containerGroupProperties")
47
+ def container_group_properties(self) -> pulumi.Input['ContainerGroupPropertiesArgs']:
48
+ """
49
+ Specifies container group properties of standby container group pools.
50
+ """
51
+ return pulumi.get(self, "container_group_properties")
52
+
53
+ @container_group_properties.setter
54
+ def container_group_properties(self, value: pulumi.Input['ContainerGroupPropertiesArgs']):
55
+ pulumi.set(self, "container_group_properties", value)
56
+
57
+ @property
58
+ @pulumi.getter(name="elasticityProfile")
59
+ def elasticity_profile(self) -> pulumi.Input['StandbyContainerGroupPoolElasticityProfileArgs']:
60
+ """
61
+ Specifies elasticity profile of standby container group pools.
62
+ """
63
+ return pulumi.get(self, "elasticity_profile")
64
+
65
+ @elasticity_profile.setter
66
+ def elasticity_profile(self, value: pulumi.Input['StandbyContainerGroupPoolElasticityProfileArgs']):
67
+ pulumi.set(self, "elasticity_profile", value)
68
+
69
+ @property
70
+ @pulumi.getter(name="resourceGroupName")
71
+ def resource_group_name(self) -> pulumi.Input[str]:
72
+ """
73
+ The name of the resource group. The name is case insensitive.
74
+ """
75
+ return pulumi.get(self, "resource_group_name")
76
+
77
+ @resource_group_name.setter
78
+ def resource_group_name(self, value: pulumi.Input[str]):
79
+ pulumi.set(self, "resource_group_name", value)
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def location(self) -> Optional[pulumi.Input[str]]:
84
+ """
85
+ The geo-location where the resource lives
86
+ """
87
+ return pulumi.get(self, "location")
88
+
89
+ @location.setter
90
+ def location(self, value: Optional[pulumi.Input[str]]):
91
+ pulumi.set(self, "location", value)
92
+
93
+ @property
94
+ @pulumi.getter(name="standbyContainerGroupPoolName")
95
+ def standby_container_group_pool_name(self) -> Optional[pulumi.Input[str]]:
96
+ """
97
+ Name of the standby container group pool
98
+ """
99
+ return pulumi.get(self, "standby_container_group_pool_name")
100
+
101
+ @standby_container_group_pool_name.setter
102
+ def standby_container_group_pool_name(self, value: Optional[pulumi.Input[str]]):
103
+ pulumi.set(self, "standby_container_group_pool_name", value)
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
108
+ """
109
+ Resource tags.
110
+ """
111
+ return pulumi.get(self, "tags")
112
+
113
+ @tags.setter
114
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
115
+ pulumi.set(self, "tags", value)
116
+
117
+
118
+ class StandbyContainerGroupPool(pulumi.CustomResource):
119
+ @overload
120
+ def __init__(__self__,
121
+ resource_name: str,
122
+ opts: Optional[pulumi.ResourceOptions] = None,
123
+ container_group_properties: Optional[pulumi.Input[pulumi.InputType['ContainerGroupPropertiesArgs']]] = None,
124
+ elasticity_profile: Optional[pulumi.Input[pulumi.InputType['StandbyContainerGroupPoolElasticityProfileArgs']]] = None,
125
+ location: Optional[pulumi.Input[str]] = None,
126
+ resource_group_name: Optional[pulumi.Input[str]] = None,
127
+ standby_container_group_pool_name: Optional[pulumi.Input[str]] = None,
128
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
129
+ __props__=None):
130
+ """
131
+ A StandbyContainerGroupPoolResource.
132
+
133
+ :param str resource_name: The name of the resource.
134
+ :param pulumi.ResourceOptions opts: Options for the resource.
135
+ :param pulumi.Input[pulumi.InputType['ContainerGroupPropertiesArgs']] container_group_properties: Specifies container group properties of standby container group pools.
136
+ :param pulumi.Input[pulumi.InputType['StandbyContainerGroupPoolElasticityProfileArgs']] elasticity_profile: Specifies elasticity profile of standby container group pools.
137
+ :param pulumi.Input[str] location: The geo-location where the resource lives
138
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
139
+ :param pulumi.Input[str] standby_container_group_pool_name: Name of the standby container group pool
140
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
141
+ """
142
+ ...
143
+ @overload
144
+ def __init__(__self__,
145
+ resource_name: str,
146
+ args: StandbyContainerGroupPoolArgs,
147
+ opts: Optional[pulumi.ResourceOptions] = None):
148
+ """
149
+ A StandbyContainerGroupPoolResource.
150
+
151
+ :param str resource_name: The name of the resource.
152
+ :param StandbyContainerGroupPoolArgs args: The arguments to use to populate this resource's properties.
153
+ :param pulumi.ResourceOptions opts: Options for the resource.
154
+ """
155
+ ...
156
+ def __init__(__self__, resource_name: str, *args, **kwargs):
157
+ resource_args, opts = _utilities.get_resource_args_opts(StandbyContainerGroupPoolArgs, pulumi.ResourceOptions, *args, **kwargs)
158
+ if resource_args is not None:
159
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
160
+ else:
161
+ __self__._internal_init(resource_name, *args, **kwargs)
162
+
163
+ def _internal_init(__self__,
164
+ resource_name: str,
165
+ opts: Optional[pulumi.ResourceOptions] = None,
166
+ container_group_properties: Optional[pulumi.Input[pulumi.InputType['ContainerGroupPropertiesArgs']]] = None,
167
+ elasticity_profile: Optional[pulumi.Input[pulumi.InputType['StandbyContainerGroupPoolElasticityProfileArgs']]] = None,
168
+ location: Optional[pulumi.Input[str]] = None,
169
+ resource_group_name: Optional[pulumi.Input[str]] = None,
170
+ standby_container_group_pool_name: Optional[pulumi.Input[str]] = None,
171
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
172
+ __props__=None):
173
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
174
+ if not isinstance(opts, pulumi.ResourceOptions):
175
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
176
+ if opts.id is None:
177
+ if __props__ is not None:
178
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
179
+ __props__ = StandbyContainerGroupPoolArgs.__new__(StandbyContainerGroupPoolArgs)
180
+
181
+ if container_group_properties is None and not opts.urn:
182
+ raise TypeError("Missing required property 'container_group_properties'")
183
+ __props__.__dict__["container_group_properties"] = container_group_properties
184
+ if elasticity_profile is None and not opts.urn:
185
+ raise TypeError("Missing required property 'elasticity_profile'")
186
+ __props__.__dict__["elasticity_profile"] = elasticity_profile
187
+ __props__.__dict__["location"] = location
188
+ if resource_group_name is None and not opts.urn:
189
+ raise TypeError("Missing required property 'resource_group_name'")
190
+ __props__.__dict__["resource_group_name"] = resource_group_name
191
+ __props__.__dict__["standby_container_group_pool_name"] = standby_container_group_pool_name
192
+ __props__.__dict__["tags"] = tags
193
+ __props__.__dict__["name"] = None
194
+ __props__.__dict__["provisioning_state"] = None
195
+ __props__.__dict__["system_data"] = None
196
+ __props__.__dict__["type"] = None
197
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:standbypool:StandbyContainerGroupPool")])
198
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
199
+ super(StandbyContainerGroupPool, __self__).__init__(
200
+ 'azure-native:standbypool/v20231201preview:StandbyContainerGroupPool',
201
+ resource_name,
202
+ __props__,
203
+ opts)
204
+
205
+ @staticmethod
206
+ def get(resource_name: str,
207
+ id: pulumi.Input[str],
208
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'StandbyContainerGroupPool':
209
+ """
210
+ Get an existing StandbyContainerGroupPool resource's state with the given name, id, and optional extra
211
+ properties used to qualify the lookup.
212
+
213
+ :param str resource_name: The unique name of the resulting resource.
214
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
215
+ :param pulumi.ResourceOptions opts: Options for the resource.
216
+ """
217
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
218
+
219
+ __props__ = StandbyContainerGroupPoolArgs.__new__(StandbyContainerGroupPoolArgs)
220
+
221
+ __props__.__dict__["container_group_properties"] = None
222
+ __props__.__dict__["elasticity_profile"] = None
223
+ __props__.__dict__["location"] = None
224
+ __props__.__dict__["name"] = None
225
+ __props__.__dict__["provisioning_state"] = None
226
+ __props__.__dict__["system_data"] = None
227
+ __props__.__dict__["tags"] = None
228
+ __props__.__dict__["type"] = None
229
+ return StandbyContainerGroupPool(resource_name, opts=opts, __props__=__props__)
230
+
231
+ @property
232
+ @pulumi.getter(name="containerGroupProperties")
233
+ def container_group_properties(self) -> pulumi.Output['outputs.ContainerGroupPropertiesResponse']:
234
+ """
235
+ Specifies container group properties of standby container group pools.
236
+ """
237
+ return pulumi.get(self, "container_group_properties")
238
+
239
+ @property
240
+ @pulumi.getter(name="elasticityProfile")
241
+ def elasticity_profile(self) -> pulumi.Output['outputs.StandbyContainerGroupPoolElasticityProfileResponse']:
242
+ """
243
+ Specifies elasticity profile of standby container group pools.
244
+ """
245
+ return pulumi.get(self, "elasticity_profile")
246
+
247
+ @property
248
+ @pulumi.getter
249
+ def location(self) -> pulumi.Output[str]:
250
+ """
251
+ The geo-location where the resource lives
252
+ """
253
+ return pulumi.get(self, "location")
254
+
255
+ @property
256
+ @pulumi.getter
257
+ def name(self) -> pulumi.Output[str]:
258
+ """
259
+ The name of the resource
260
+ """
261
+ return pulumi.get(self, "name")
262
+
263
+ @property
264
+ @pulumi.getter(name="provisioningState")
265
+ def provisioning_state(self) -> pulumi.Output[str]:
266
+ """
267
+ The status of the last operation.
268
+ """
269
+ return pulumi.get(self, "provisioning_state")
270
+
271
+ @property
272
+ @pulumi.getter(name="systemData")
273
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
274
+ """
275
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
276
+ """
277
+ return pulumi.get(self, "system_data")
278
+
279
+ @property
280
+ @pulumi.getter
281
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
282
+ """
283
+ Resource tags.
284
+ """
285
+ return pulumi.get(self, "tags")
286
+
287
+ @property
288
+ @pulumi.getter
289
+ def type(self) -> pulumi.Output[str]:
290
+ """
291
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
292
+ """
293
+ return pulumi.get(self, "type")
294
+