pulumi-azure-native 2.29.1a1708613115__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.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
  693. {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
  694. {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
  695. {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2123 @@
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
+ 'CorsConfigurationResponse',
16
+ 'DicomServiceAuthenticationConfigurationResponse',
17
+ 'EncryptionResponse',
18
+ 'EncryptionResponseCustomerManagedKeyEncryption',
19
+ 'FhirServiceAcrConfigurationResponse',
20
+ 'FhirServiceAuthenticationConfigurationResponse',
21
+ 'FhirServiceCorsConfigurationResponse',
22
+ 'FhirServiceExportConfigurationResponse',
23
+ 'FhirServiceImportConfigurationResponse',
24
+ 'ImplementationGuidesConfigurationResponse',
25
+ 'IotEventHubIngestionEndpointConfigurationResponse',
26
+ 'IotMappingPropertiesResponse',
27
+ 'PrivateEndpointConnectionResponse',
28
+ 'PrivateEndpointResponse',
29
+ 'PrivateLinkServiceConnectionStateResponse',
30
+ 'ResourceVersionPolicyConfigurationResponse',
31
+ 'ServiceAccessPolicyEntryResponse',
32
+ 'ServiceAcrConfigurationInfoResponse',
33
+ 'ServiceAuthenticationConfigurationInfoResponse',
34
+ 'ServiceCorsConfigurationInfoResponse',
35
+ 'ServiceCosmosDbConfigurationInfoResponse',
36
+ 'ServiceExportConfigurationInfoResponse',
37
+ 'ServiceImportConfigurationInfoResponse',
38
+ 'ServiceManagedIdentityResponseIdentity',
39
+ 'ServiceOciArtifactEntryResponse',
40
+ 'ServicesPropertiesResponse',
41
+ 'ServicesResourceResponseIdentity',
42
+ 'SmartIdentityProviderApplicationResponse',
43
+ 'SmartIdentityProviderConfigurationResponse',
44
+ 'StorageConfigurationResponse',
45
+ 'SystemDataResponse',
46
+ 'UserAssignedIdentityResponse',
47
+ 'WorkspaceResponseProperties',
48
+ ]
49
+
50
+ @pulumi.output_type
51
+ class CorsConfigurationResponse(dict):
52
+ """
53
+ The settings for the CORS configuration of the service instance.
54
+ """
55
+ @staticmethod
56
+ def __key_warning(key: str):
57
+ suggest = None
58
+ if key == "allowCredentials":
59
+ suggest = "allow_credentials"
60
+ elif key == "maxAge":
61
+ suggest = "max_age"
62
+
63
+ if suggest:
64
+ pulumi.log.warn(f"Key '{key}' not found in CorsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
65
+
66
+ def __getitem__(self, key: str) -> Any:
67
+ CorsConfigurationResponse.__key_warning(key)
68
+ return super().__getitem__(key)
69
+
70
+ def get(self, key: str, default = None) -> Any:
71
+ CorsConfigurationResponse.__key_warning(key)
72
+ return super().get(key, default)
73
+
74
+ def __init__(__self__, *,
75
+ allow_credentials: Optional[bool] = None,
76
+ headers: Optional[Sequence[str]] = None,
77
+ max_age: Optional[int] = None,
78
+ methods: Optional[Sequence[str]] = None,
79
+ origins: Optional[Sequence[str]] = None):
80
+ """
81
+ The settings for the CORS configuration of the service instance.
82
+ :param bool allow_credentials: If credentials are allowed via CORS.
83
+ :param Sequence[str] headers: The headers to be allowed via CORS.
84
+ :param int max_age: The max age to be allowed via CORS.
85
+ :param Sequence[str] methods: The methods to be allowed via CORS.
86
+ :param Sequence[str] origins: The origins to be allowed via CORS.
87
+ """
88
+ if allow_credentials is not None:
89
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
90
+ if headers is not None:
91
+ pulumi.set(__self__, "headers", headers)
92
+ if max_age is not None:
93
+ pulumi.set(__self__, "max_age", max_age)
94
+ if methods is not None:
95
+ pulumi.set(__self__, "methods", methods)
96
+ if origins is not None:
97
+ pulumi.set(__self__, "origins", origins)
98
+
99
+ @property
100
+ @pulumi.getter(name="allowCredentials")
101
+ def allow_credentials(self) -> Optional[bool]:
102
+ """
103
+ If credentials are allowed via CORS.
104
+ """
105
+ return pulumi.get(self, "allow_credentials")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def headers(self) -> Optional[Sequence[str]]:
110
+ """
111
+ The headers to be allowed via CORS.
112
+ """
113
+ return pulumi.get(self, "headers")
114
+
115
+ @property
116
+ @pulumi.getter(name="maxAge")
117
+ def max_age(self) -> Optional[int]:
118
+ """
119
+ The max age to be allowed via CORS.
120
+ """
121
+ return pulumi.get(self, "max_age")
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def methods(self) -> Optional[Sequence[str]]:
126
+ """
127
+ The methods to be allowed via CORS.
128
+ """
129
+ return pulumi.get(self, "methods")
130
+
131
+ @property
132
+ @pulumi.getter
133
+ def origins(self) -> Optional[Sequence[str]]:
134
+ """
135
+ The origins to be allowed via CORS.
136
+ """
137
+ return pulumi.get(self, "origins")
138
+
139
+
140
+ @pulumi.output_type
141
+ class DicomServiceAuthenticationConfigurationResponse(dict):
142
+ """
143
+ Authentication configuration information
144
+ """
145
+ def __init__(__self__, *,
146
+ audiences: Sequence[str],
147
+ authority: str):
148
+ """
149
+ Authentication configuration information
150
+ :param Sequence[str] audiences: The audiences for the service
151
+ :param str authority: The authority url for the service
152
+ """
153
+ pulumi.set(__self__, "audiences", audiences)
154
+ pulumi.set(__self__, "authority", authority)
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def audiences(self) -> Sequence[str]:
159
+ """
160
+ The audiences for the service
161
+ """
162
+ return pulumi.get(self, "audiences")
163
+
164
+ @property
165
+ @pulumi.getter
166
+ def authority(self) -> str:
167
+ """
168
+ The authority url for the service
169
+ """
170
+ return pulumi.get(self, "authority")
171
+
172
+
173
+ @pulumi.output_type
174
+ class EncryptionResponse(dict):
175
+ """
176
+ Settings to encrypt a service
177
+ """
178
+ @staticmethod
179
+ def __key_warning(key: str):
180
+ suggest = None
181
+ if key == "customerManagedKeyEncryption":
182
+ suggest = "customer_managed_key_encryption"
183
+
184
+ if suggest:
185
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionResponse. Access the value via the '{suggest}' property getter instead.")
186
+
187
+ def __getitem__(self, key: str) -> Any:
188
+ EncryptionResponse.__key_warning(key)
189
+ return super().__getitem__(key)
190
+
191
+ def get(self, key: str, default = None) -> Any:
192
+ EncryptionResponse.__key_warning(key)
193
+ return super().get(key, default)
194
+
195
+ def __init__(__self__, *,
196
+ customer_managed_key_encryption: Optional['outputs.EncryptionResponseCustomerManagedKeyEncryption'] = None):
197
+ """
198
+ Settings to encrypt a service
199
+ :param 'EncryptionResponseCustomerManagedKeyEncryption' customer_managed_key_encryption: The encryption settings for the customer-managed key
200
+ """
201
+ if customer_managed_key_encryption is not None:
202
+ pulumi.set(__self__, "customer_managed_key_encryption", customer_managed_key_encryption)
203
+
204
+ @property
205
+ @pulumi.getter(name="customerManagedKeyEncryption")
206
+ def customer_managed_key_encryption(self) -> Optional['outputs.EncryptionResponseCustomerManagedKeyEncryption']:
207
+ """
208
+ The encryption settings for the customer-managed key
209
+ """
210
+ return pulumi.get(self, "customer_managed_key_encryption")
211
+
212
+
213
+ @pulumi.output_type
214
+ class EncryptionResponseCustomerManagedKeyEncryption(dict):
215
+ """
216
+ The encryption settings for the customer-managed key
217
+ """
218
+ @staticmethod
219
+ def __key_warning(key: str):
220
+ suggest = None
221
+ if key == "keyEncryptionKeyUrl":
222
+ suggest = "key_encryption_key_url"
223
+
224
+ if suggest:
225
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionResponseCustomerManagedKeyEncryption. Access the value via the '{suggest}' property getter instead.")
226
+
227
+ def __getitem__(self, key: str) -> Any:
228
+ EncryptionResponseCustomerManagedKeyEncryption.__key_warning(key)
229
+ return super().__getitem__(key)
230
+
231
+ def get(self, key: str, default = None) -> Any:
232
+ EncryptionResponseCustomerManagedKeyEncryption.__key_warning(key)
233
+ return super().get(key, default)
234
+
235
+ def __init__(__self__, *,
236
+ key_encryption_key_url: Optional[str] = None):
237
+ """
238
+ The encryption settings for the customer-managed key
239
+ :param str key_encryption_key_url: The URL of the key to use for encryption
240
+ """
241
+ if key_encryption_key_url is not None:
242
+ pulumi.set(__self__, "key_encryption_key_url", key_encryption_key_url)
243
+
244
+ @property
245
+ @pulumi.getter(name="keyEncryptionKeyUrl")
246
+ def key_encryption_key_url(self) -> Optional[str]:
247
+ """
248
+ The URL of the key to use for encryption
249
+ """
250
+ return pulumi.get(self, "key_encryption_key_url")
251
+
252
+
253
+ @pulumi.output_type
254
+ class FhirServiceAcrConfigurationResponse(dict):
255
+ """
256
+ Azure container registry configuration information
257
+ """
258
+ @staticmethod
259
+ def __key_warning(key: str):
260
+ suggest = None
261
+ if key == "loginServers":
262
+ suggest = "login_servers"
263
+ elif key == "ociArtifacts":
264
+ suggest = "oci_artifacts"
265
+
266
+ if suggest:
267
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceAcrConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
268
+
269
+ def __getitem__(self, key: str) -> Any:
270
+ FhirServiceAcrConfigurationResponse.__key_warning(key)
271
+ return super().__getitem__(key)
272
+
273
+ def get(self, key: str, default = None) -> Any:
274
+ FhirServiceAcrConfigurationResponse.__key_warning(key)
275
+ return super().get(key, default)
276
+
277
+ def __init__(__self__, *,
278
+ login_servers: Optional[Sequence[str]] = None,
279
+ oci_artifacts: Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']] = None):
280
+ """
281
+ Azure container registry configuration information
282
+ :param Sequence[str] login_servers: The list of the Azure container registry login servers.
283
+ :param Sequence['ServiceOciArtifactEntryResponse'] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
284
+ """
285
+ if login_servers is not None:
286
+ pulumi.set(__self__, "login_servers", login_servers)
287
+ if oci_artifacts is not None:
288
+ pulumi.set(__self__, "oci_artifacts", oci_artifacts)
289
+
290
+ @property
291
+ @pulumi.getter(name="loginServers")
292
+ def login_servers(self) -> Optional[Sequence[str]]:
293
+ """
294
+ The list of the Azure container registry login servers.
295
+ """
296
+ return pulumi.get(self, "login_servers")
297
+
298
+ @property
299
+ @pulumi.getter(name="ociArtifacts")
300
+ def oci_artifacts(self) -> Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']]:
301
+ """
302
+ The list of Open Container Initiative (OCI) artifacts.
303
+ """
304
+ return pulumi.get(self, "oci_artifacts")
305
+
306
+
307
+ @pulumi.output_type
308
+ class FhirServiceAuthenticationConfigurationResponse(dict):
309
+ """
310
+ Authentication configuration information
311
+ """
312
+ @staticmethod
313
+ def __key_warning(key: str):
314
+ suggest = None
315
+ if key == "smartIdentityProviders":
316
+ suggest = "smart_identity_providers"
317
+ elif key == "smartProxyEnabled":
318
+ suggest = "smart_proxy_enabled"
319
+
320
+ if suggest:
321
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceAuthenticationConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
322
+
323
+ def __getitem__(self, key: str) -> Any:
324
+ FhirServiceAuthenticationConfigurationResponse.__key_warning(key)
325
+ return super().__getitem__(key)
326
+
327
+ def get(self, key: str, default = None) -> Any:
328
+ FhirServiceAuthenticationConfigurationResponse.__key_warning(key)
329
+ return super().get(key, default)
330
+
331
+ def __init__(__self__, *,
332
+ audience: Optional[str] = None,
333
+ authority: Optional[str] = None,
334
+ smart_identity_providers: Optional[Sequence['outputs.SmartIdentityProviderConfigurationResponse']] = None,
335
+ smart_proxy_enabled: Optional[bool] = None):
336
+ """
337
+ Authentication configuration information
338
+ :param str audience: The audience url for the service
339
+ :param str authority: The authority url for the service
340
+ :param Sequence['SmartIdentityProviderConfigurationResponse'] smart_identity_providers: The array of identity provider configurations for SMART on FHIR authentication.
341
+ :param bool smart_proxy_enabled: If the SMART on FHIR proxy is enabled
342
+ """
343
+ if audience is not None:
344
+ pulumi.set(__self__, "audience", audience)
345
+ if authority is not None:
346
+ pulumi.set(__self__, "authority", authority)
347
+ if smart_identity_providers is not None:
348
+ pulumi.set(__self__, "smart_identity_providers", smart_identity_providers)
349
+ if smart_proxy_enabled is not None:
350
+ pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
351
+
352
+ @property
353
+ @pulumi.getter
354
+ def audience(self) -> Optional[str]:
355
+ """
356
+ The audience url for the service
357
+ """
358
+ return pulumi.get(self, "audience")
359
+
360
+ @property
361
+ @pulumi.getter
362
+ def authority(self) -> Optional[str]:
363
+ """
364
+ The authority url for the service
365
+ """
366
+ return pulumi.get(self, "authority")
367
+
368
+ @property
369
+ @pulumi.getter(name="smartIdentityProviders")
370
+ def smart_identity_providers(self) -> Optional[Sequence['outputs.SmartIdentityProviderConfigurationResponse']]:
371
+ """
372
+ The array of identity provider configurations for SMART on FHIR authentication.
373
+ """
374
+ return pulumi.get(self, "smart_identity_providers")
375
+
376
+ @property
377
+ @pulumi.getter(name="smartProxyEnabled")
378
+ def smart_proxy_enabled(self) -> Optional[bool]:
379
+ """
380
+ If the SMART on FHIR proxy is enabled
381
+ """
382
+ return pulumi.get(self, "smart_proxy_enabled")
383
+
384
+
385
+ @pulumi.output_type
386
+ class FhirServiceCorsConfigurationResponse(dict):
387
+ """
388
+ The settings for the CORS configuration of the service instance.
389
+ """
390
+ @staticmethod
391
+ def __key_warning(key: str):
392
+ suggest = None
393
+ if key == "allowCredentials":
394
+ suggest = "allow_credentials"
395
+ elif key == "maxAge":
396
+ suggest = "max_age"
397
+
398
+ if suggest:
399
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceCorsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
400
+
401
+ def __getitem__(self, key: str) -> Any:
402
+ FhirServiceCorsConfigurationResponse.__key_warning(key)
403
+ return super().__getitem__(key)
404
+
405
+ def get(self, key: str, default = None) -> Any:
406
+ FhirServiceCorsConfigurationResponse.__key_warning(key)
407
+ return super().get(key, default)
408
+
409
+ def __init__(__self__, *,
410
+ allow_credentials: Optional[bool] = None,
411
+ headers: Optional[Sequence[str]] = None,
412
+ max_age: Optional[int] = None,
413
+ methods: Optional[Sequence[str]] = None,
414
+ origins: Optional[Sequence[str]] = None):
415
+ """
416
+ The settings for the CORS configuration of the service instance.
417
+ :param bool allow_credentials: If credentials are allowed via CORS.
418
+ :param Sequence[str] headers: The headers to be allowed via CORS.
419
+ :param int max_age: The max age to be allowed via CORS.
420
+ :param Sequence[str] methods: The methods to be allowed via CORS.
421
+ :param Sequence[str] origins: The origins to be allowed via CORS.
422
+ """
423
+ if allow_credentials is not None:
424
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
425
+ if headers is not None:
426
+ pulumi.set(__self__, "headers", headers)
427
+ if max_age is not None:
428
+ pulumi.set(__self__, "max_age", max_age)
429
+ if methods is not None:
430
+ pulumi.set(__self__, "methods", methods)
431
+ if origins is not None:
432
+ pulumi.set(__self__, "origins", origins)
433
+
434
+ @property
435
+ @pulumi.getter(name="allowCredentials")
436
+ def allow_credentials(self) -> Optional[bool]:
437
+ """
438
+ If credentials are allowed via CORS.
439
+ """
440
+ return pulumi.get(self, "allow_credentials")
441
+
442
+ @property
443
+ @pulumi.getter
444
+ def headers(self) -> Optional[Sequence[str]]:
445
+ """
446
+ The headers to be allowed via CORS.
447
+ """
448
+ return pulumi.get(self, "headers")
449
+
450
+ @property
451
+ @pulumi.getter(name="maxAge")
452
+ def max_age(self) -> Optional[int]:
453
+ """
454
+ The max age to be allowed via CORS.
455
+ """
456
+ return pulumi.get(self, "max_age")
457
+
458
+ @property
459
+ @pulumi.getter
460
+ def methods(self) -> Optional[Sequence[str]]:
461
+ """
462
+ The methods to be allowed via CORS.
463
+ """
464
+ return pulumi.get(self, "methods")
465
+
466
+ @property
467
+ @pulumi.getter
468
+ def origins(self) -> Optional[Sequence[str]]:
469
+ """
470
+ The origins to be allowed via CORS.
471
+ """
472
+ return pulumi.get(self, "origins")
473
+
474
+
475
+ @pulumi.output_type
476
+ class FhirServiceExportConfigurationResponse(dict):
477
+ """
478
+ Export operation configuration information
479
+ """
480
+ @staticmethod
481
+ def __key_warning(key: str):
482
+ suggest = None
483
+ if key == "storageAccountName":
484
+ suggest = "storage_account_name"
485
+
486
+ if suggest:
487
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceExportConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
488
+
489
+ def __getitem__(self, key: str) -> Any:
490
+ FhirServiceExportConfigurationResponse.__key_warning(key)
491
+ return super().__getitem__(key)
492
+
493
+ def get(self, key: str, default = None) -> Any:
494
+ FhirServiceExportConfigurationResponse.__key_warning(key)
495
+ return super().get(key, default)
496
+
497
+ def __init__(__self__, *,
498
+ storage_account_name: Optional[str] = None):
499
+ """
500
+ Export operation configuration information
501
+ :param str storage_account_name: The name of the default export storage account.
502
+ """
503
+ if storage_account_name is not None:
504
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
505
+
506
+ @property
507
+ @pulumi.getter(name="storageAccountName")
508
+ def storage_account_name(self) -> Optional[str]:
509
+ """
510
+ The name of the default export storage account.
511
+ """
512
+ return pulumi.get(self, "storage_account_name")
513
+
514
+
515
+ @pulumi.output_type
516
+ class FhirServiceImportConfigurationResponse(dict):
517
+ """
518
+ Import operation configuration information
519
+ """
520
+ @staticmethod
521
+ def __key_warning(key: str):
522
+ suggest = None
523
+ if key == "initialImportMode":
524
+ suggest = "initial_import_mode"
525
+ elif key == "integrationDataStore":
526
+ suggest = "integration_data_store"
527
+
528
+ if suggest:
529
+ pulumi.log.warn(f"Key '{key}' not found in FhirServiceImportConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
530
+
531
+ def __getitem__(self, key: str) -> Any:
532
+ FhirServiceImportConfigurationResponse.__key_warning(key)
533
+ return super().__getitem__(key)
534
+
535
+ def get(self, key: str, default = None) -> Any:
536
+ FhirServiceImportConfigurationResponse.__key_warning(key)
537
+ return super().get(key, default)
538
+
539
+ def __init__(__self__, *,
540
+ enabled: Optional[bool] = None,
541
+ initial_import_mode: Optional[bool] = None,
542
+ integration_data_store: Optional[str] = None):
543
+ """
544
+ Import operation configuration information
545
+ :param bool enabled: If the import operation is enabled.
546
+ :param bool initial_import_mode: If the FHIR service is in InitialImportMode.
547
+ :param str integration_data_store: The name of the default integration storage account.
548
+ """
549
+ if enabled is not None:
550
+ pulumi.set(__self__, "enabled", enabled)
551
+ if initial_import_mode is not None:
552
+ pulumi.set(__self__, "initial_import_mode", initial_import_mode)
553
+ if integration_data_store is not None:
554
+ pulumi.set(__self__, "integration_data_store", integration_data_store)
555
+
556
+ @property
557
+ @pulumi.getter
558
+ def enabled(self) -> Optional[bool]:
559
+ """
560
+ If the import operation is enabled.
561
+ """
562
+ return pulumi.get(self, "enabled")
563
+
564
+ @property
565
+ @pulumi.getter(name="initialImportMode")
566
+ def initial_import_mode(self) -> Optional[bool]:
567
+ """
568
+ If the FHIR service is in InitialImportMode.
569
+ """
570
+ return pulumi.get(self, "initial_import_mode")
571
+
572
+ @property
573
+ @pulumi.getter(name="integrationDataStore")
574
+ def integration_data_store(self) -> Optional[str]:
575
+ """
576
+ The name of the default integration storage account.
577
+ """
578
+ return pulumi.get(self, "integration_data_store")
579
+
580
+
581
+ @pulumi.output_type
582
+ class ImplementationGuidesConfigurationResponse(dict):
583
+ """
584
+ The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.
585
+ """
586
+ @staticmethod
587
+ def __key_warning(key: str):
588
+ suggest = None
589
+ if key == "usCoreMissingData":
590
+ suggest = "us_core_missing_data"
591
+
592
+ if suggest:
593
+ pulumi.log.warn(f"Key '{key}' not found in ImplementationGuidesConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
594
+
595
+ def __getitem__(self, key: str) -> Any:
596
+ ImplementationGuidesConfigurationResponse.__key_warning(key)
597
+ return super().__getitem__(key)
598
+
599
+ def get(self, key: str, default = None) -> Any:
600
+ ImplementationGuidesConfigurationResponse.__key_warning(key)
601
+ return super().get(key, default)
602
+
603
+ def __init__(__self__, *,
604
+ us_core_missing_data: Optional[bool] = None):
605
+ """
606
+ The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.
607
+ :param bool us_core_missing_data: If US Core Missing Data requirement is enabled.
608
+ """
609
+ if us_core_missing_data is not None:
610
+ pulumi.set(__self__, "us_core_missing_data", us_core_missing_data)
611
+
612
+ @property
613
+ @pulumi.getter(name="usCoreMissingData")
614
+ def us_core_missing_data(self) -> Optional[bool]:
615
+ """
616
+ If US Core Missing Data requirement is enabled.
617
+ """
618
+ return pulumi.get(self, "us_core_missing_data")
619
+
620
+
621
+ @pulumi.output_type
622
+ class IotEventHubIngestionEndpointConfigurationResponse(dict):
623
+ """
624
+ Event Hub ingestion endpoint configuration
625
+ """
626
+ @staticmethod
627
+ def __key_warning(key: str):
628
+ suggest = None
629
+ if key == "consumerGroup":
630
+ suggest = "consumer_group"
631
+ elif key == "eventHubName":
632
+ suggest = "event_hub_name"
633
+ elif key == "fullyQualifiedEventHubNamespace":
634
+ suggest = "fully_qualified_event_hub_namespace"
635
+
636
+ if suggest:
637
+ pulumi.log.warn(f"Key '{key}' not found in IotEventHubIngestionEndpointConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
638
+
639
+ def __getitem__(self, key: str) -> Any:
640
+ IotEventHubIngestionEndpointConfigurationResponse.__key_warning(key)
641
+ return super().__getitem__(key)
642
+
643
+ def get(self, key: str, default = None) -> Any:
644
+ IotEventHubIngestionEndpointConfigurationResponse.__key_warning(key)
645
+ return super().get(key, default)
646
+
647
+ def __init__(__self__, *,
648
+ consumer_group: Optional[str] = None,
649
+ event_hub_name: Optional[str] = None,
650
+ fully_qualified_event_hub_namespace: Optional[str] = None):
651
+ """
652
+ Event Hub ingestion endpoint configuration
653
+ :param str consumer_group: Consumer group of the event hub to connected to.
654
+ :param str event_hub_name: Event Hub name to connect to.
655
+ :param str fully_qualified_event_hub_namespace: Fully qualified namespace of the Event Hub to connect to.
656
+ """
657
+ if consumer_group is not None:
658
+ pulumi.set(__self__, "consumer_group", consumer_group)
659
+ if event_hub_name is not None:
660
+ pulumi.set(__self__, "event_hub_name", event_hub_name)
661
+ if fully_qualified_event_hub_namespace is not None:
662
+ pulumi.set(__self__, "fully_qualified_event_hub_namespace", fully_qualified_event_hub_namespace)
663
+
664
+ @property
665
+ @pulumi.getter(name="consumerGroup")
666
+ def consumer_group(self) -> Optional[str]:
667
+ """
668
+ Consumer group of the event hub to connected to.
669
+ """
670
+ return pulumi.get(self, "consumer_group")
671
+
672
+ @property
673
+ @pulumi.getter(name="eventHubName")
674
+ def event_hub_name(self) -> Optional[str]:
675
+ """
676
+ Event Hub name to connect to.
677
+ """
678
+ return pulumi.get(self, "event_hub_name")
679
+
680
+ @property
681
+ @pulumi.getter(name="fullyQualifiedEventHubNamespace")
682
+ def fully_qualified_event_hub_namespace(self) -> Optional[str]:
683
+ """
684
+ Fully qualified namespace of the Event Hub to connect to.
685
+ """
686
+ return pulumi.get(self, "fully_qualified_event_hub_namespace")
687
+
688
+
689
+ @pulumi.output_type
690
+ class IotMappingPropertiesResponse(dict):
691
+ """
692
+ The mapping content.
693
+ """
694
+ def __init__(__self__, *,
695
+ content: Optional[Any] = None):
696
+ """
697
+ The mapping content.
698
+ :param Any content: The mapping.
699
+ """
700
+ if content is not None:
701
+ pulumi.set(__self__, "content", content)
702
+
703
+ @property
704
+ @pulumi.getter
705
+ def content(self) -> Optional[Any]:
706
+ """
707
+ The mapping.
708
+ """
709
+ return pulumi.get(self, "content")
710
+
711
+
712
+ @pulumi.output_type
713
+ class PrivateEndpointConnectionResponse(dict):
714
+ """
715
+ The Private Endpoint Connection resource.
716
+ """
717
+ @staticmethod
718
+ def __key_warning(key: str):
719
+ suggest = None
720
+ if key == "privateLinkServiceConnectionState":
721
+ suggest = "private_link_service_connection_state"
722
+ elif key == "provisioningState":
723
+ suggest = "provisioning_state"
724
+ elif key == "privateEndpoint":
725
+ suggest = "private_endpoint"
726
+
727
+ if suggest:
728
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
729
+
730
+ def __getitem__(self, key: str) -> Any:
731
+ PrivateEndpointConnectionResponse.__key_warning(key)
732
+ return super().__getitem__(key)
733
+
734
+ def get(self, key: str, default = None) -> Any:
735
+ PrivateEndpointConnectionResponse.__key_warning(key)
736
+ return super().get(key, default)
737
+
738
+ def __init__(__self__, *,
739
+ id: str,
740
+ name: str,
741
+ private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
742
+ provisioning_state: str,
743
+ type: str,
744
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
745
+ """
746
+ The Private Endpoint Connection resource.
747
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
748
+ :param str name: The name of the resource
749
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
750
+ :param str provisioning_state: The provisioning state of the private endpoint connection resource.
751
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
752
+ :param 'PrivateEndpointResponse' private_endpoint: The resource of private end point.
753
+ """
754
+ pulumi.set(__self__, "id", id)
755
+ pulumi.set(__self__, "name", name)
756
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
757
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
758
+ pulumi.set(__self__, "type", type)
759
+ if private_endpoint is not None:
760
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
761
+
762
+ @property
763
+ @pulumi.getter
764
+ def id(self) -> str:
765
+ """
766
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
767
+ """
768
+ return pulumi.get(self, "id")
769
+
770
+ @property
771
+ @pulumi.getter
772
+ def name(self) -> str:
773
+ """
774
+ The name of the resource
775
+ """
776
+ return pulumi.get(self, "name")
777
+
778
+ @property
779
+ @pulumi.getter(name="privateLinkServiceConnectionState")
780
+ def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
781
+ """
782
+ A collection of information about the state of the connection between service consumer and provider.
783
+ """
784
+ return pulumi.get(self, "private_link_service_connection_state")
785
+
786
+ @property
787
+ @pulumi.getter(name="provisioningState")
788
+ def provisioning_state(self) -> str:
789
+ """
790
+ The provisioning state of the private endpoint connection resource.
791
+ """
792
+ return pulumi.get(self, "provisioning_state")
793
+
794
+ @property
795
+ @pulumi.getter
796
+ def type(self) -> str:
797
+ """
798
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
799
+ """
800
+ return pulumi.get(self, "type")
801
+
802
+ @property
803
+ @pulumi.getter(name="privateEndpoint")
804
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
805
+ """
806
+ The resource of private end point.
807
+ """
808
+ return pulumi.get(self, "private_endpoint")
809
+
810
+
811
+ @pulumi.output_type
812
+ class PrivateEndpointResponse(dict):
813
+ """
814
+ The Private Endpoint resource.
815
+ """
816
+ def __init__(__self__, *,
817
+ id: str):
818
+ """
819
+ The Private Endpoint resource.
820
+ :param str id: The ARM identifier for Private Endpoint
821
+ """
822
+ pulumi.set(__self__, "id", id)
823
+
824
+ @property
825
+ @pulumi.getter
826
+ def id(self) -> str:
827
+ """
828
+ The ARM identifier for Private Endpoint
829
+ """
830
+ return pulumi.get(self, "id")
831
+
832
+
833
+ @pulumi.output_type
834
+ class PrivateLinkServiceConnectionStateResponse(dict):
835
+ """
836
+ A collection of information about the state of the connection between service consumer and provider.
837
+ """
838
+ @staticmethod
839
+ def __key_warning(key: str):
840
+ suggest = None
841
+ if key == "actionsRequired":
842
+ suggest = "actions_required"
843
+
844
+ if suggest:
845
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
846
+
847
+ def __getitem__(self, key: str) -> Any:
848
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
849
+ return super().__getitem__(key)
850
+
851
+ def get(self, key: str, default = None) -> Any:
852
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
853
+ return super().get(key, default)
854
+
855
+ def __init__(__self__, *,
856
+ actions_required: Optional[str] = None,
857
+ description: Optional[str] = None,
858
+ status: Optional[str] = None):
859
+ """
860
+ A collection of information about the state of the connection between service consumer and provider.
861
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
862
+ :param str description: The reason for approval/rejection of the connection.
863
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
864
+ """
865
+ if actions_required is not None:
866
+ pulumi.set(__self__, "actions_required", actions_required)
867
+ if description is not None:
868
+ pulumi.set(__self__, "description", description)
869
+ if status is not None:
870
+ pulumi.set(__self__, "status", status)
871
+
872
+ @property
873
+ @pulumi.getter(name="actionsRequired")
874
+ def actions_required(self) -> Optional[str]:
875
+ """
876
+ A message indicating if changes on the service provider require any updates on the consumer.
877
+ """
878
+ return pulumi.get(self, "actions_required")
879
+
880
+ @property
881
+ @pulumi.getter
882
+ def description(self) -> Optional[str]:
883
+ """
884
+ The reason for approval/rejection of the connection.
885
+ """
886
+ return pulumi.get(self, "description")
887
+
888
+ @property
889
+ @pulumi.getter
890
+ def status(self) -> Optional[str]:
891
+ """
892
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
893
+ """
894
+ return pulumi.get(self, "status")
895
+
896
+
897
+ @pulumi.output_type
898
+ class ResourceVersionPolicyConfigurationResponse(dict):
899
+ """
900
+ The settings for history tracking for FHIR resources.
901
+ """
902
+ @staticmethod
903
+ def __key_warning(key: str):
904
+ suggest = None
905
+ if key == "resourceTypeOverrides":
906
+ suggest = "resource_type_overrides"
907
+
908
+ if suggest:
909
+ pulumi.log.warn(f"Key '{key}' not found in ResourceVersionPolicyConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
910
+
911
+ def __getitem__(self, key: str) -> Any:
912
+ ResourceVersionPolicyConfigurationResponse.__key_warning(key)
913
+ return super().__getitem__(key)
914
+
915
+ def get(self, key: str, default = None) -> Any:
916
+ ResourceVersionPolicyConfigurationResponse.__key_warning(key)
917
+ return super().get(key, default)
918
+
919
+ def __init__(__self__, *,
920
+ default: Optional[str] = None,
921
+ resource_type_overrides: Optional[Mapping[str, str]] = None):
922
+ """
923
+ The settings for history tracking for FHIR resources.
924
+ :param str default: The default value for tracking history across all resources.
925
+ :param Mapping[str, str] resource_type_overrides: A list of FHIR Resources and their version policy overrides.
926
+ """
927
+ if default is not None:
928
+ pulumi.set(__self__, "default", default)
929
+ if resource_type_overrides is not None:
930
+ pulumi.set(__self__, "resource_type_overrides", resource_type_overrides)
931
+
932
+ @property
933
+ @pulumi.getter
934
+ def default(self) -> Optional[str]:
935
+ """
936
+ The default value for tracking history across all resources.
937
+ """
938
+ return pulumi.get(self, "default")
939
+
940
+ @property
941
+ @pulumi.getter(name="resourceTypeOverrides")
942
+ def resource_type_overrides(self) -> Optional[Mapping[str, str]]:
943
+ """
944
+ A list of FHIR Resources and their version policy overrides.
945
+ """
946
+ return pulumi.get(self, "resource_type_overrides")
947
+
948
+
949
+ @pulumi.output_type
950
+ class ServiceAccessPolicyEntryResponse(dict):
951
+ """
952
+ An access policy entry.
953
+ """
954
+ @staticmethod
955
+ def __key_warning(key: str):
956
+ suggest = None
957
+ if key == "objectId":
958
+ suggest = "object_id"
959
+
960
+ if suggest:
961
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAccessPolicyEntryResponse. Access the value via the '{suggest}' property getter instead.")
962
+
963
+ def __getitem__(self, key: str) -> Any:
964
+ ServiceAccessPolicyEntryResponse.__key_warning(key)
965
+ return super().__getitem__(key)
966
+
967
+ def get(self, key: str, default = None) -> Any:
968
+ ServiceAccessPolicyEntryResponse.__key_warning(key)
969
+ return super().get(key, default)
970
+
971
+ def __init__(__self__, *,
972
+ object_id: str):
973
+ """
974
+ An access policy entry.
975
+ :param str object_id: An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
976
+ """
977
+ pulumi.set(__self__, "object_id", object_id)
978
+
979
+ @property
980
+ @pulumi.getter(name="objectId")
981
+ def object_id(self) -> str:
982
+ """
983
+ An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
984
+ """
985
+ return pulumi.get(self, "object_id")
986
+
987
+
988
+ @pulumi.output_type
989
+ class ServiceAcrConfigurationInfoResponse(dict):
990
+ """
991
+ Azure container registry configuration information
992
+ """
993
+ @staticmethod
994
+ def __key_warning(key: str):
995
+ suggest = None
996
+ if key == "loginServers":
997
+ suggest = "login_servers"
998
+ elif key == "ociArtifacts":
999
+ suggest = "oci_artifacts"
1000
+
1001
+ if suggest:
1002
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAcrConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1003
+
1004
+ def __getitem__(self, key: str) -> Any:
1005
+ ServiceAcrConfigurationInfoResponse.__key_warning(key)
1006
+ return super().__getitem__(key)
1007
+
1008
+ def get(self, key: str, default = None) -> Any:
1009
+ ServiceAcrConfigurationInfoResponse.__key_warning(key)
1010
+ return super().get(key, default)
1011
+
1012
+ def __init__(__self__, *,
1013
+ login_servers: Optional[Sequence[str]] = None,
1014
+ oci_artifacts: Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']] = None):
1015
+ """
1016
+ Azure container registry configuration information
1017
+ :param Sequence[str] login_servers: The list of the ACR login servers.
1018
+ :param Sequence['ServiceOciArtifactEntryResponse'] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
1019
+ """
1020
+ if login_servers is not None:
1021
+ pulumi.set(__self__, "login_servers", login_servers)
1022
+ if oci_artifacts is not None:
1023
+ pulumi.set(__self__, "oci_artifacts", oci_artifacts)
1024
+
1025
+ @property
1026
+ @pulumi.getter(name="loginServers")
1027
+ def login_servers(self) -> Optional[Sequence[str]]:
1028
+ """
1029
+ The list of the ACR login servers.
1030
+ """
1031
+ return pulumi.get(self, "login_servers")
1032
+
1033
+ @property
1034
+ @pulumi.getter(name="ociArtifacts")
1035
+ def oci_artifacts(self) -> Optional[Sequence['outputs.ServiceOciArtifactEntryResponse']]:
1036
+ """
1037
+ The list of Open Container Initiative (OCI) artifacts.
1038
+ """
1039
+ return pulumi.get(self, "oci_artifacts")
1040
+
1041
+
1042
+ @pulumi.output_type
1043
+ class ServiceAuthenticationConfigurationInfoResponse(dict):
1044
+ """
1045
+ Authentication configuration information
1046
+ """
1047
+ @staticmethod
1048
+ def __key_warning(key: str):
1049
+ suggest = None
1050
+ if key == "smartProxyEnabled":
1051
+ suggest = "smart_proxy_enabled"
1052
+
1053
+ if suggest:
1054
+ pulumi.log.warn(f"Key '{key}' not found in ServiceAuthenticationConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1055
+
1056
+ def __getitem__(self, key: str) -> Any:
1057
+ ServiceAuthenticationConfigurationInfoResponse.__key_warning(key)
1058
+ return super().__getitem__(key)
1059
+
1060
+ def get(self, key: str, default = None) -> Any:
1061
+ ServiceAuthenticationConfigurationInfoResponse.__key_warning(key)
1062
+ return super().get(key, default)
1063
+
1064
+ def __init__(__self__, *,
1065
+ audience: Optional[str] = None,
1066
+ authority: Optional[str] = None,
1067
+ smart_proxy_enabled: Optional[bool] = None):
1068
+ """
1069
+ Authentication configuration information
1070
+ :param str audience: The audience url for the service
1071
+ :param str authority: The authority url for the service
1072
+ :param bool smart_proxy_enabled: If the SMART on FHIR proxy is enabled
1073
+ """
1074
+ if audience is not None:
1075
+ pulumi.set(__self__, "audience", audience)
1076
+ if authority is not None:
1077
+ pulumi.set(__self__, "authority", authority)
1078
+ if smart_proxy_enabled is not None:
1079
+ pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
1080
+
1081
+ @property
1082
+ @pulumi.getter
1083
+ def audience(self) -> Optional[str]:
1084
+ """
1085
+ The audience url for the service
1086
+ """
1087
+ return pulumi.get(self, "audience")
1088
+
1089
+ @property
1090
+ @pulumi.getter
1091
+ def authority(self) -> Optional[str]:
1092
+ """
1093
+ The authority url for the service
1094
+ """
1095
+ return pulumi.get(self, "authority")
1096
+
1097
+ @property
1098
+ @pulumi.getter(name="smartProxyEnabled")
1099
+ def smart_proxy_enabled(self) -> Optional[bool]:
1100
+ """
1101
+ If the SMART on FHIR proxy is enabled
1102
+ """
1103
+ return pulumi.get(self, "smart_proxy_enabled")
1104
+
1105
+
1106
+ @pulumi.output_type
1107
+ class ServiceCorsConfigurationInfoResponse(dict):
1108
+ """
1109
+ The settings for the CORS configuration of the service instance.
1110
+ """
1111
+ @staticmethod
1112
+ def __key_warning(key: str):
1113
+ suggest = None
1114
+ if key == "allowCredentials":
1115
+ suggest = "allow_credentials"
1116
+ elif key == "maxAge":
1117
+ suggest = "max_age"
1118
+
1119
+ if suggest:
1120
+ pulumi.log.warn(f"Key '{key}' not found in ServiceCorsConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1121
+
1122
+ def __getitem__(self, key: str) -> Any:
1123
+ ServiceCorsConfigurationInfoResponse.__key_warning(key)
1124
+ return super().__getitem__(key)
1125
+
1126
+ def get(self, key: str, default = None) -> Any:
1127
+ ServiceCorsConfigurationInfoResponse.__key_warning(key)
1128
+ return super().get(key, default)
1129
+
1130
+ def __init__(__self__, *,
1131
+ allow_credentials: Optional[bool] = None,
1132
+ headers: Optional[Sequence[str]] = None,
1133
+ max_age: Optional[int] = None,
1134
+ methods: Optional[Sequence[str]] = None,
1135
+ origins: Optional[Sequence[str]] = None):
1136
+ """
1137
+ The settings for the CORS configuration of the service instance.
1138
+ :param bool allow_credentials: If credentials are allowed via CORS.
1139
+ :param Sequence[str] headers: The headers to be allowed via CORS.
1140
+ :param int max_age: The max age to be allowed via CORS.
1141
+ :param Sequence[str] methods: The methods to be allowed via CORS.
1142
+ :param Sequence[str] origins: The origins to be allowed via CORS.
1143
+ """
1144
+ if allow_credentials is not None:
1145
+ pulumi.set(__self__, "allow_credentials", allow_credentials)
1146
+ if headers is not None:
1147
+ pulumi.set(__self__, "headers", headers)
1148
+ if max_age is not None:
1149
+ pulumi.set(__self__, "max_age", max_age)
1150
+ if methods is not None:
1151
+ pulumi.set(__self__, "methods", methods)
1152
+ if origins is not None:
1153
+ pulumi.set(__self__, "origins", origins)
1154
+
1155
+ @property
1156
+ @pulumi.getter(name="allowCredentials")
1157
+ def allow_credentials(self) -> Optional[bool]:
1158
+ """
1159
+ If credentials are allowed via CORS.
1160
+ """
1161
+ return pulumi.get(self, "allow_credentials")
1162
+
1163
+ @property
1164
+ @pulumi.getter
1165
+ def headers(self) -> Optional[Sequence[str]]:
1166
+ """
1167
+ The headers to be allowed via CORS.
1168
+ """
1169
+ return pulumi.get(self, "headers")
1170
+
1171
+ @property
1172
+ @pulumi.getter(name="maxAge")
1173
+ def max_age(self) -> Optional[int]:
1174
+ """
1175
+ The max age to be allowed via CORS.
1176
+ """
1177
+ return pulumi.get(self, "max_age")
1178
+
1179
+ @property
1180
+ @pulumi.getter
1181
+ def methods(self) -> Optional[Sequence[str]]:
1182
+ """
1183
+ The methods to be allowed via CORS.
1184
+ """
1185
+ return pulumi.get(self, "methods")
1186
+
1187
+ @property
1188
+ @pulumi.getter
1189
+ def origins(self) -> Optional[Sequence[str]]:
1190
+ """
1191
+ The origins to be allowed via CORS.
1192
+ """
1193
+ return pulumi.get(self, "origins")
1194
+
1195
+
1196
+ @pulumi.output_type
1197
+ class ServiceCosmosDbConfigurationInfoResponse(dict):
1198
+ """
1199
+ The settings for the Cosmos DB database backing the service.
1200
+ """
1201
+ @staticmethod
1202
+ def __key_warning(key: str):
1203
+ suggest = None
1204
+ if key == "crossTenantCmkApplicationId":
1205
+ suggest = "cross_tenant_cmk_application_id"
1206
+ elif key == "keyVaultKeyUri":
1207
+ suggest = "key_vault_key_uri"
1208
+ elif key == "offerThroughput":
1209
+ suggest = "offer_throughput"
1210
+
1211
+ if suggest:
1212
+ pulumi.log.warn(f"Key '{key}' not found in ServiceCosmosDbConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1213
+
1214
+ def __getitem__(self, key: str) -> Any:
1215
+ ServiceCosmosDbConfigurationInfoResponse.__key_warning(key)
1216
+ return super().__getitem__(key)
1217
+
1218
+ def get(self, key: str, default = None) -> Any:
1219
+ ServiceCosmosDbConfigurationInfoResponse.__key_warning(key)
1220
+ return super().get(key, default)
1221
+
1222
+ def __init__(__self__, *,
1223
+ cross_tenant_cmk_application_id: Optional[str] = None,
1224
+ key_vault_key_uri: Optional[str] = None,
1225
+ offer_throughput: Optional[int] = None):
1226
+ """
1227
+ The settings for the Cosmos DB database backing the service.
1228
+ :param str cross_tenant_cmk_application_id: The multi-tenant application id used to enable CMK access for services in a data sovereign region.
1229
+ :param str key_vault_key_uri: The URI of the customer-managed key for the backing database.
1230
+ :param int offer_throughput: The provisioned throughput for the backing database.
1231
+ """
1232
+ if cross_tenant_cmk_application_id is not None:
1233
+ pulumi.set(__self__, "cross_tenant_cmk_application_id", cross_tenant_cmk_application_id)
1234
+ if key_vault_key_uri is not None:
1235
+ pulumi.set(__self__, "key_vault_key_uri", key_vault_key_uri)
1236
+ if offer_throughput is not None:
1237
+ pulumi.set(__self__, "offer_throughput", offer_throughput)
1238
+
1239
+ @property
1240
+ @pulumi.getter(name="crossTenantCmkApplicationId")
1241
+ def cross_tenant_cmk_application_id(self) -> Optional[str]:
1242
+ """
1243
+ The multi-tenant application id used to enable CMK access for services in a data sovereign region.
1244
+ """
1245
+ return pulumi.get(self, "cross_tenant_cmk_application_id")
1246
+
1247
+ @property
1248
+ @pulumi.getter(name="keyVaultKeyUri")
1249
+ def key_vault_key_uri(self) -> Optional[str]:
1250
+ """
1251
+ The URI of the customer-managed key for the backing database.
1252
+ """
1253
+ return pulumi.get(self, "key_vault_key_uri")
1254
+
1255
+ @property
1256
+ @pulumi.getter(name="offerThroughput")
1257
+ def offer_throughput(self) -> Optional[int]:
1258
+ """
1259
+ The provisioned throughput for the backing database.
1260
+ """
1261
+ return pulumi.get(self, "offer_throughput")
1262
+
1263
+
1264
+ @pulumi.output_type
1265
+ class ServiceExportConfigurationInfoResponse(dict):
1266
+ """
1267
+ Export operation configuration information
1268
+ """
1269
+ @staticmethod
1270
+ def __key_warning(key: str):
1271
+ suggest = None
1272
+ if key == "storageAccountName":
1273
+ suggest = "storage_account_name"
1274
+
1275
+ if suggest:
1276
+ pulumi.log.warn(f"Key '{key}' not found in ServiceExportConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1277
+
1278
+ def __getitem__(self, key: str) -> Any:
1279
+ ServiceExportConfigurationInfoResponse.__key_warning(key)
1280
+ return super().__getitem__(key)
1281
+
1282
+ def get(self, key: str, default = None) -> Any:
1283
+ ServiceExportConfigurationInfoResponse.__key_warning(key)
1284
+ return super().get(key, default)
1285
+
1286
+ def __init__(__self__, *,
1287
+ storage_account_name: Optional[str] = None):
1288
+ """
1289
+ Export operation configuration information
1290
+ :param str storage_account_name: The name of the default export storage account.
1291
+ """
1292
+ if storage_account_name is not None:
1293
+ pulumi.set(__self__, "storage_account_name", storage_account_name)
1294
+
1295
+ @property
1296
+ @pulumi.getter(name="storageAccountName")
1297
+ def storage_account_name(self) -> Optional[str]:
1298
+ """
1299
+ The name of the default export storage account.
1300
+ """
1301
+ return pulumi.get(self, "storage_account_name")
1302
+
1303
+
1304
+ @pulumi.output_type
1305
+ class ServiceImportConfigurationInfoResponse(dict):
1306
+ """
1307
+ Import operation configuration information
1308
+ """
1309
+ @staticmethod
1310
+ def __key_warning(key: str):
1311
+ suggest = None
1312
+ if key == "initialImportMode":
1313
+ suggest = "initial_import_mode"
1314
+ elif key == "integrationDataStore":
1315
+ suggest = "integration_data_store"
1316
+
1317
+ if suggest:
1318
+ pulumi.log.warn(f"Key '{key}' not found in ServiceImportConfigurationInfoResponse. Access the value via the '{suggest}' property getter instead.")
1319
+
1320
+ def __getitem__(self, key: str) -> Any:
1321
+ ServiceImportConfigurationInfoResponse.__key_warning(key)
1322
+ return super().__getitem__(key)
1323
+
1324
+ def get(self, key: str, default = None) -> Any:
1325
+ ServiceImportConfigurationInfoResponse.__key_warning(key)
1326
+ return super().get(key, default)
1327
+
1328
+ def __init__(__self__, *,
1329
+ enabled: Optional[bool] = None,
1330
+ initial_import_mode: Optional[bool] = None,
1331
+ integration_data_store: Optional[str] = None):
1332
+ """
1333
+ Import operation configuration information
1334
+ :param bool enabled: If the import operation is enabled.
1335
+ :param bool initial_import_mode: If the FHIR service is in InitialImportMode.
1336
+ :param str integration_data_store: The name of the default integration storage account.
1337
+ """
1338
+ if enabled is not None:
1339
+ pulumi.set(__self__, "enabled", enabled)
1340
+ if initial_import_mode is not None:
1341
+ pulumi.set(__self__, "initial_import_mode", initial_import_mode)
1342
+ if integration_data_store is not None:
1343
+ pulumi.set(__self__, "integration_data_store", integration_data_store)
1344
+
1345
+ @property
1346
+ @pulumi.getter
1347
+ def enabled(self) -> Optional[bool]:
1348
+ """
1349
+ If the import operation is enabled.
1350
+ """
1351
+ return pulumi.get(self, "enabled")
1352
+
1353
+ @property
1354
+ @pulumi.getter(name="initialImportMode")
1355
+ def initial_import_mode(self) -> Optional[bool]:
1356
+ """
1357
+ If the FHIR service is in InitialImportMode.
1358
+ """
1359
+ return pulumi.get(self, "initial_import_mode")
1360
+
1361
+ @property
1362
+ @pulumi.getter(name="integrationDataStore")
1363
+ def integration_data_store(self) -> Optional[str]:
1364
+ """
1365
+ The name of the default integration storage account.
1366
+ """
1367
+ return pulumi.get(self, "integration_data_store")
1368
+
1369
+
1370
+ @pulumi.output_type
1371
+ class ServiceManagedIdentityResponseIdentity(dict):
1372
+ """
1373
+ Setting indicating whether the service has a managed identity associated with it.
1374
+ """
1375
+ @staticmethod
1376
+ def __key_warning(key: str):
1377
+ suggest = None
1378
+ if key == "principalId":
1379
+ suggest = "principal_id"
1380
+ elif key == "tenantId":
1381
+ suggest = "tenant_id"
1382
+ elif key == "userAssignedIdentities":
1383
+ suggest = "user_assigned_identities"
1384
+
1385
+ if suggest:
1386
+ pulumi.log.warn(f"Key '{key}' not found in ServiceManagedIdentityResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1387
+
1388
+ def __getitem__(self, key: str) -> Any:
1389
+ ServiceManagedIdentityResponseIdentity.__key_warning(key)
1390
+ return super().__getitem__(key)
1391
+
1392
+ def get(self, key: str, default = None) -> Any:
1393
+ ServiceManagedIdentityResponseIdentity.__key_warning(key)
1394
+ return super().get(key, default)
1395
+
1396
+ def __init__(__self__, *,
1397
+ principal_id: str,
1398
+ tenant_id: str,
1399
+ type: str,
1400
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1401
+ """
1402
+ Setting indicating whether the service has a managed identity associated with it.
1403
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1404
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1405
+ :param str type: Type of identity being specified, currently SystemAssigned and None are allowed.
1406
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1407
+ """
1408
+ pulumi.set(__self__, "principal_id", principal_id)
1409
+ pulumi.set(__self__, "tenant_id", tenant_id)
1410
+ pulumi.set(__self__, "type", type)
1411
+ if user_assigned_identities is not None:
1412
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1413
+
1414
+ @property
1415
+ @pulumi.getter(name="principalId")
1416
+ def principal_id(self) -> str:
1417
+ """
1418
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1419
+ """
1420
+ return pulumi.get(self, "principal_id")
1421
+
1422
+ @property
1423
+ @pulumi.getter(name="tenantId")
1424
+ def tenant_id(self) -> str:
1425
+ """
1426
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1427
+ """
1428
+ return pulumi.get(self, "tenant_id")
1429
+
1430
+ @property
1431
+ @pulumi.getter
1432
+ def type(self) -> str:
1433
+ """
1434
+ Type of identity being specified, currently SystemAssigned and None are allowed.
1435
+ """
1436
+ return pulumi.get(self, "type")
1437
+
1438
+ @property
1439
+ @pulumi.getter(name="userAssignedIdentities")
1440
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1441
+ """
1442
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1443
+ """
1444
+ return pulumi.get(self, "user_assigned_identities")
1445
+
1446
+
1447
+ @pulumi.output_type
1448
+ class ServiceOciArtifactEntryResponse(dict):
1449
+ """
1450
+ An Open Container Initiative (OCI) artifact.
1451
+ """
1452
+ @staticmethod
1453
+ def __key_warning(key: str):
1454
+ suggest = None
1455
+ if key == "imageName":
1456
+ suggest = "image_name"
1457
+ elif key == "loginServer":
1458
+ suggest = "login_server"
1459
+
1460
+ if suggest:
1461
+ pulumi.log.warn(f"Key '{key}' not found in ServiceOciArtifactEntryResponse. Access the value via the '{suggest}' property getter instead.")
1462
+
1463
+ def __getitem__(self, key: str) -> Any:
1464
+ ServiceOciArtifactEntryResponse.__key_warning(key)
1465
+ return super().__getitem__(key)
1466
+
1467
+ def get(self, key: str, default = None) -> Any:
1468
+ ServiceOciArtifactEntryResponse.__key_warning(key)
1469
+ return super().get(key, default)
1470
+
1471
+ def __init__(__self__, *,
1472
+ digest: Optional[str] = None,
1473
+ image_name: Optional[str] = None,
1474
+ login_server: Optional[str] = None):
1475
+ """
1476
+ An Open Container Initiative (OCI) artifact.
1477
+ :param str digest: The artifact digest.
1478
+ :param str image_name: The artifact name.
1479
+ :param str login_server: The Azure Container Registry login server.
1480
+ """
1481
+ if digest is not None:
1482
+ pulumi.set(__self__, "digest", digest)
1483
+ if image_name is not None:
1484
+ pulumi.set(__self__, "image_name", image_name)
1485
+ if login_server is not None:
1486
+ pulumi.set(__self__, "login_server", login_server)
1487
+
1488
+ @property
1489
+ @pulumi.getter
1490
+ def digest(self) -> Optional[str]:
1491
+ """
1492
+ The artifact digest.
1493
+ """
1494
+ return pulumi.get(self, "digest")
1495
+
1496
+ @property
1497
+ @pulumi.getter(name="imageName")
1498
+ def image_name(self) -> Optional[str]:
1499
+ """
1500
+ The artifact name.
1501
+ """
1502
+ return pulumi.get(self, "image_name")
1503
+
1504
+ @property
1505
+ @pulumi.getter(name="loginServer")
1506
+ def login_server(self) -> Optional[str]:
1507
+ """
1508
+ The Azure Container Registry login server.
1509
+ """
1510
+ return pulumi.get(self, "login_server")
1511
+
1512
+
1513
+ @pulumi.output_type
1514
+ class ServicesPropertiesResponse(dict):
1515
+ """
1516
+ The properties of a service instance.
1517
+ """
1518
+ @staticmethod
1519
+ def __key_warning(key: str):
1520
+ suggest = None
1521
+ if key == "provisioningState":
1522
+ suggest = "provisioning_state"
1523
+ elif key == "accessPolicies":
1524
+ suggest = "access_policies"
1525
+ elif key == "acrConfiguration":
1526
+ suggest = "acr_configuration"
1527
+ elif key == "authenticationConfiguration":
1528
+ suggest = "authentication_configuration"
1529
+ elif key == "corsConfiguration":
1530
+ suggest = "cors_configuration"
1531
+ elif key == "cosmosDbConfiguration":
1532
+ suggest = "cosmos_db_configuration"
1533
+ elif key == "exportConfiguration":
1534
+ suggest = "export_configuration"
1535
+ elif key == "importConfiguration":
1536
+ suggest = "import_configuration"
1537
+ elif key == "privateEndpointConnections":
1538
+ suggest = "private_endpoint_connections"
1539
+ elif key == "publicNetworkAccess":
1540
+ suggest = "public_network_access"
1541
+
1542
+ if suggest:
1543
+ pulumi.log.warn(f"Key '{key}' not found in ServicesPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1544
+
1545
+ def __getitem__(self, key: str) -> Any:
1546
+ ServicesPropertiesResponse.__key_warning(key)
1547
+ return super().__getitem__(key)
1548
+
1549
+ def get(self, key: str, default = None) -> Any:
1550
+ ServicesPropertiesResponse.__key_warning(key)
1551
+ return super().get(key, default)
1552
+
1553
+ def __init__(__self__, *,
1554
+ provisioning_state: str,
1555
+ access_policies: Optional[Sequence['outputs.ServiceAccessPolicyEntryResponse']] = None,
1556
+ acr_configuration: Optional['outputs.ServiceAcrConfigurationInfoResponse'] = None,
1557
+ authentication_configuration: Optional['outputs.ServiceAuthenticationConfigurationInfoResponse'] = None,
1558
+ cors_configuration: Optional['outputs.ServiceCorsConfigurationInfoResponse'] = None,
1559
+ cosmos_db_configuration: Optional['outputs.ServiceCosmosDbConfigurationInfoResponse'] = None,
1560
+ export_configuration: Optional['outputs.ServiceExportConfigurationInfoResponse'] = None,
1561
+ import_configuration: Optional['outputs.ServiceImportConfigurationInfoResponse'] = None,
1562
+ private_endpoint_connections: Optional[Sequence['outputs.PrivateEndpointConnectionResponse']] = None,
1563
+ public_network_access: Optional[str] = None):
1564
+ """
1565
+ The properties of a service instance.
1566
+ :param str provisioning_state: The provisioning state.
1567
+ :param Sequence['ServiceAccessPolicyEntryResponse'] access_policies: The access policies of the service instance.
1568
+ :param 'ServiceAcrConfigurationInfoResponse' acr_configuration: The azure container registry settings used for convert data operation of the service instance.
1569
+ :param 'ServiceAuthenticationConfigurationInfoResponse' authentication_configuration: The authentication configuration for the service instance.
1570
+ :param 'ServiceCorsConfigurationInfoResponse' cors_configuration: The settings for the CORS configuration of the service instance.
1571
+ :param 'ServiceCosmosDbConfigurationInfoResponse' cosmos_db_configuration: The settings for the Cosmos DB database backing the service.
1572
+ :param 'ServiceExportConfigurationInfoResponse' export_configuration: The settings for the export operation of the service instance.
1573
+ :param 'ServiceImportConfigurationInfoResponse' import_configuration: The settings for the import operation of the service instance.
1574
+ :param Sequence['PrivateEndpointConnectionResponse'] private_endpoint_connections: The list of private endpoint connections that are set up for this resource.
1575
+ :param str public_network_access: Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1576
+ """
1577
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1578
+ if access_policies is not None:
1579
+ pulumi.set(__self__, "access_policies", access_policies)
1580
+ if acr_configuration is not None:
1581
+ pulumi.set(__self__, "acr_configuration", acr_configuration)
1582
+ if authentication_configuration is not None:
1583
+ pulumi.set(__self__, "authentication_configuration", authentication_configuration)
1584
+ if cors_configuration is not None:
1585
+ pulumi.set(__self__, "cors_configuration", cors_configuration)
1586
+ if cosmos_db_configuration is not None:
1587
+ pulumi.set(__self__, "cosmos_db_configuration", cosmos_db_configuration)
1588
+ if export_configuration is not None:
1589
+ pulumi.set(__self__, "export_configuration", export_configuration)
1590
+ if import_configuration is not None:
1591
+ pulumi.set(__self__, "import_configuration", import_configuration)
1592
+ if private_endpoint_connections is not None:
1593
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
1594
+ if public_network_access is not None:
1595
+ pulumi.set(__self__, "public_network_access", public_network_access)
1596
+
1597
+ @property
1598
+ @pulumi.getter(name="provisioningState")
1599
+ def provisioning_state(self) -> str:
1600
+ """
1601
+ The provisioning state.
1602
+ """
1603
+ return pulumi.get(self, "provisioning_state")
1604
+
1605
+ @property
1606
+ @pulumi.getter(name="accessPolicies")
1607
+ def access_policies(self) -> Optional[Sequence['outputs.ServiceAccessPolicyEntryResponse']]:
1608
+ """
1609
+ The access policies of the service instance.
1610
+ """
1611
+ return pulumi.get(self, "access_policies")
1612
+
1613
+ @property
1614
+ @pulumi.getter(name="acrConfiguration")
1615
+ def acr_configuration(self) -> Optional['outputs.ServiceAcrConfigurationInfoResponse']:
1616
+ """
1617
+ The azure container registry settings used for convert data operation of the service instance.
1618
+ """
1619
+ return pulumi.get(self, "acr_configuration")
1620
+
1621
+ @property
1622
+ @pulumi.getter(name="authenticationConfiguration")
1623
+ def authentication_configuration(self) -> Optional['outputs.ServiceAuthenticationConfigurationInfoResponse']:
1624
+ """
1625
+ The authentication configuration for the service instance.
1626
+ """
1627
+ return pulumi.get(self, "authentication_configuration")
1628
+
1629
+ @property
1630
+ @pulumi.getter(name="corsConfiguration")
1631
+ def cors_configuration(self) -> Optional['outputs.ServiceCorsConfigurationInfoResponse']:
1632
+ """
1633
+ The settings for the CORS configuration of the service instance.
1634
+ """
1635
+ return pulumi.get(self, "cors_configuration")
1636
+
1637
+ @property
1638
+ @pulumi.getter(name="cosmosDbConfiguration")
1639
+ def cosmos_db_configuration(self) -> Optional['outputs.ServiceCosmosDbConfigurationInfoResponse']:
1640
+ """
1641
+ The settings for the Cosmos DB database backing the service.
1642
+ """
1643
+ return pulumi.get(self, "cosmos_db_configuration")
1644
+
1645
+ @property
1646
+ @pulumi.getter(name="exportConfiguration")
1647
+ def export_configuration(self) -> Optional['outputs.ServiceExportConfigurationInfoResponse']:
1648
+ """
1649
+ The settings for the export operation of the service instance.
1650
+ """
1651
+ return pulumi.get(self, "export_configuration")
1652
+
1653
+ @property
1654
+ @pulumi.getter(name="importConfiguration")
1655
+ def import_configuration(self) -> Optional['outputs.ServiceImportConfigurationInfoResponse']:
1656
+ """
1657
+ The settings for the import operation of the service instance.
1658
+ """
1659
+ return pulumi.get(self, "import_configuration")
1660
+
1661
+ @property
1662
+ @pulumi.getter(name="privateEndpointConnections")
1663
+ def private_endpoint_connections(self) -> Optional[Sequence['outputs.PrivateEndpointConnectionResponse']]:
1664
+ """
1665
+ The list of private endpoint connections that are set up for this resource.
1666
+ """
1667
+ return pulumi.get(self, "private_endpoint_connections")
1668
+
1669
+ @property
1670
+ @pulumi.getter(name="publicNetworkAccess")
1671
+ def public_network_access(self) -> Optional[str]:
1672
+ """
1673
+ Control permission for data plane traffic coming from public networks while private endpoint is enabled.
1674
+ """
1675
+ return pulumi.get(self, "public_network_access")
1676
+
1677
+
1678
+ @pulumi.output_type
1679
+ class ServicesResourceResponseIdentity(dict):
1680
+ """
1681
+ Setting indicating whether the service has a managed identity associated with it.
1682
+ """
1683
+ @staticmethod
1684
+ def __key_warning(key: str):
1685
+ suggest = None
1686
+ if key == "principalId":
1687
+ suggest = "principal_id"
1688
+ elif key == "tenantId":
1689
+ suggest = "tenant_id"
1690
+
1691
+ if suggest:
1692
+ pulumi.log.warn(f"Key '{key}' not found in ServicesResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1693
+
1694
+ def __getitem__(self, key: str) -> Any:
1695
+ ServicesResourceResponseIdentity.__key_warning(key)
1696
+ return super().__getitem__(key)
1697
+
1698
+ def get(self, key: str, default = None) -> Any:
1699
+ ServicesResourceResponseIdentity.__key_warning(key)
1700
+ return super().get(key, default)
1701
+
1702
+ def __init__(__self__, *,
1703
+ principal_id: str,
1704
+ tenant_id: str,
1705
+ type: Optional[str] = None):
1706
+ """
1707
+ Setting indicating whether the service has a managed identity associated with it.
1708
+ :param str principal_id: The principal ID of the resource identity.
1709
+ :param str tenant_id: The tenant ID of the resource.
1710
+ :param str type: Type of identity being specified, currently SystemAssigned and None are allowed.
1711
+ """
1712
+ pulumi.set(__self__, "principal_id", principal_id)
1713
+ pulumi.set(__self__, "tenant_id", tenant_id)
1714
+ if type is not None:
1715
+ pulumi.set(__self__, "type", type)
1716
+
1717
+ @property
1718
+ @pulumi.getter(name="principalId")
1719
+ def principal_id(self) -> str:
1720
+ """
1721
+ The principal ID of the resource identity.
1722
+ """
1723
+ return pulumi.get(self, "principal_id")
1724
+
1725
+ @property
1726
+ @pulumi.getter(name="tenantId")
1727
+ def tenant_id(self) -> str:
1728
+ """
1729
+ The tenant ID of the resource.
1730
+ """
1731
+ return pulumi.get(self, "tenant_id")
1732
+
1733
+ @property
1734
+ @pulumi.getter
1735
+ def type(self) -> Optional[str]:
1736
+ """
1737
+ Type of identity being specified, currently SystemAssigned and None are allowed.
1738
+ """
1739
+ return pulumi.get(self, "type")
1740
+
1741
+
1742
+ @pulumi.output_type
1743
+ class SmartIdentityProviderApplicationResponse(dict):
1744
+ """
1745
+ An Application configured in the Identity Provider used to access FHIR resources.
1746
+ """
1747
+ @staticmethod
1748
+ def __key_warning(key: str):
1749
+ suggest = None
1750
+ if key == "allowedDataActions":
1751
+ suggest = "allowed_data_actions"
1752
+ elif key == "clientId":
1753
+ suggest = "client_id"
1754
+
1755
+ if suggest:
1756
+ pulumi.log.warn(f"Key '{key}' not found in SmartIdentityProviderApplicationResponse. Access the value via the '{suggest}' property getter instead.")
1757
+
1758
+ def __getitem__(self, key: str) -> Any:
1759
+ SmartIdentityProviderApplicationResponse.__key_warning(key)
1760
+ return super().__getitem__(key)
1761
+
1762
+ def get(self, key: str, default = None) -> Any:
1763
+ SmartIdentityProviderApplicationResponse.__key_warning(key)
1764
+ return super().get(key, default)
1765
+
1766
+ def __init__(__self__, *,
1767
+ allowed_data_actions: Optional[Sequence[str]] = None,
1768
+ audience: Optional[str] = None,
1769
+ client_id: Optional[str] = None):
1770
+ """
1771
+ An Application configured in the Identity Provider used to access FHIR resources.
1772
+ :param Sequence[str] allowed_data_actions: The actions that are permitted to be performed on FHIR resources for the application.
1773
+ :param str audience: The audience that will be used to validate bearer tokens against the given authority.
1774
+ :param str client_id: The application client id defined in the identity provider. This value will be used to validate bearer tokens against the given authority.
1775
+ """
1776
+ if allowed_data_actions is not None:
1777
+ pulumi.set(__self__, "allowed_data_actions", allowed_data_actions)
1778
+ if audience is not None:
1779
+ pulumi.set(__self__, "audience", audience)
1780
+ if client_id is not None:
1781
+ pulumi.set(__self__, "client_id", client_id)
1782
+
1783
+ @property
1784
+ @pulumi.getter(name="allowedDataActions")
1785
+ def allowed_data_actions(self) -> Optional[Sequence[str]]:
1786
+ """
1787
+ The actions that are permitted to be performed on FHIR resources for the application.
1788
+ """
1789
+ return pulumi.get(self, "allowed_data_actions")
1790
+
1791
+ @property
1792
+ @pulumi.getter
1793
+ def audience(self) -> Optional[str]:
1794
+ """
1795
+ The audience that will be used to validate bearer tokens against the given authority.
1796
+ """
1797
+ return pulumi.get(self, "audience")
1798
+
1799
+ @property
1800
+ @pulumi.getter(name="clientId")
1801
+ def client_id(self) -> Optional[str]:
1802
+ """
1803
+ The application client id defined in the identity provider. This value will be used to validate bearer tokens against the given authority.
1804
+ """
1805
+ return pulumi.get(self, "client_id")
1806
+
1807
+
1808
+ @pulumi.output_type
1809
+ class SmartIdentityProviderConfigurationResponse(dict):
1810
+ """
1811
+ An object to configure an identity provider for use with SMART on FHIR authentication.
1812
+ """
1813
+ def __init__(__self__, *,
1814
+ applications: Optional[Sequence['outputs.SmartIdentityProviderApplicationResponse']] = None,
1815
+ authority: Optional[str] = None):
1816
+ """
1817
+ An object to configure an identity provider for use with SMART on FHIR authentication.
1818
+ :param Sequence['SmartIdentityProviderApplicationResponse'] applications: The array of identity provider applications for SMART on FHIR authentication.
1819
+ :param str authority: The identity provider token authority also known as the token issuing authority.
1820
+ """
1821
+ if applications is not None:
1822
+ pulumi.set(__self__, "applications", applications)
1823
+ if authority is not None:
1824
+ pulumi.set(__self__, "authority", authority)
1825
+
1826
+ @property
1827
+ @pulumi.getter
1828
+ def applications(self) -> Optional[Sequence['outputs.SmartIdentityProviderApplicationResponse']]:
1829
+ """
1830
+ The array of identity provider applications for SMART on FHIR authentication.
1831
+ """
1832
+ return pulumi.get(self, "applications")
1833
+
1834
+ @property
1835
+ @pulumi.getter
1836
+ def authority(self) -> Optional[str]:
1837
+ """
1838
+ The identity provider token authority also known as the token issuing authority.
1839
+ """
1840
+ return pulumi.get(self, "authority")
1841
+
1842
+
1843
+ @pulumi.output_type
1844
+ class StorageConfigurationResponse(dict):
1845
+ """
1846
+ The configuration of connected storage
1847
+ """
1848
+ @staticmethod
1849
+ def __key_warning(key: str):
1850
+ suggest = None
1851
+ if key == "fileSystemName":
1852
+ suggest = "file_system_name"
1853
+ elif key == "storageResourceId":
1854
+ suggest = "storage_resource_id"
1855
+
1856
+ if suggest:
1857
+ pulumi.log.warn(f"Key '{key}' not found in StorageConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1858
+
1859
+ def __getitem__(self, key: str) -> Any:
1860
+ StorageConfigurationResponse.__key_warning(key)
1861
+ return super().__getitem__(key)
1862
+
1863
+ def get(self, key: str, default = None) -> Any:
1864
+ StorageConfigurationResponse.__key_warning(key)
1865
+ return super().get(key, default)
1866
+
1867
+ def __init__(__self__, *,
1868
+ file_system_name: Optional[str] = None,
1869
+ storage_resource_id: Optional[str] = None):
1870
+ """
1871
+ The configuration of connected storage
1872
+ :param str file_system_name: The filesystem name of connected storage account.
1873
+ :param str storage_resource_id: The resource id of connected storage account.
1874
+ """
1875
+ if file_system_name is not None:
1876
+ pulumi.set(__self__, "file_system_name", file_system_name)
1877
+ if storage_resource_id is not None:
1878
+ pulumi.set(__self__, "storage_resource_id", storage_resource_id)
1879
+
1880
+ @property
1881
+ @pulumi.getter(name="fileSystemName")
1882
+ def file_system_name(self) -> Optional[str]:
1883
+ """
1884
+ The filesystem name of connected storage account.
1885
+ """
1886
+ return pulumi.get(self, "file_system_name")
1887
+
1888
+ @property
1889
+ @pulumi.getter(name="storageResourceId")
1890
+ def storage_resource_id(self) -> Optional[str]:
1891
+ """
1892
+ The resource id of connected storage account.
1893
+ """
1894
+ return pulumi.get(self, "storage_resource_id")
1895
+
1896
+
1897
+ @pulumi.output_type
1898
+ class SystemDataResponse(dict):
1899
+ """
1900
+ Metadata pertaining to creation and last modification of the resource.
1901
+ """
1902
+ @staticmethod
1903
+ def __key_warning(key: str):
1904
+ suggest = None
1905
+ if key == "createdAt":
1906
+ suggest = "created_at"
1907
+ elif key == "createdBy":
1908
+ suggest = "created_by"
1909
+ elif key == "createdByType":
1910
+ suggest = "created_by_type"
1911
+ elif key == "lastModifiedAt":
1912
+ suggest = "last_modified_at"
1913
+ elif key == "lastModifiedBy":
1914
+ suggest = "last_modified_by"
1915
+ elif key == "lastModifiedByType":
1916
+ suggest = "last_modified_by_type"
1917
+
1918
+ if suggest:
1919
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1920
+
1921
+ def __getitem__(self, key: str) -> Any:
1922
+ SystemDataResponse.__key_warning(key)
1923
+ return super().__getitem__(key)
1924
+
1925
+ def get(self, key: str, default = None) -> Any:
1926
+ SystemDataResponse.__key_warning(key)
1927
+ return super().get(key, default)
1928
+
1929
+ def __init__(__self__, *,
1930
+ created_at: Optional[str] = None,
1931
+ created_by: Optional[str] = None,
1932
+ created_by_type: Optional[str] = None,
1933
+ last_modified_at: Optional[str] = None,
1934
+ last_modified_by: Optional[str] = None,
1935
+ last_modified_by_type: Optional[str] = None):
1936
+ """
1937
+ Metadata pertaining to creation and last modification of the resource.
1938
+ :param str created_at: The timestamp of resource creation (UTC).
1939
+ :param str created_by: The identity that created the resource.
1940
+ :param str created_by_type: The type of identity that created the resource.
1941
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1942
+ :param str last_modified_by: The identity that last modified the resource.
1943
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1944
+ """
1945
+ if created_at is not None:
1946
+ pulumi.set(__self__, "created_at", created_at)
1947
+ if created_by is not None:
1948
+ pulumi.set(__self__, "created_by", created_by)
1949
+ if created_by_type is not None:
1950
+ pulumi.set(__self__, "created_by_type", created_by_type)
1951
+ if last_modified_at is not None:
1952
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1953
+ if last_modified_by is not None:
1954
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1955
+ if last_modified_by_type is not None:
1956
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1957
+
1958
+ @property
1959
+ @pulumi.getter(name="createdAt")
1960
+ def created_at(self) -> Optional[str]:
1961
+ """
1962
+ The timestamp of resource creation (UTC).
1963
+ """
1964
+ return pulumi.get(self, "created_at")
1965
+
1966
+ @property
1967
+ @pulumi.getter(name="createdBy")
1968
+ def created_by(self) -> Optional[str]:
1969
+ """
1970
+ The identity that created the resource.
1971
+ """
1972
+ return pulumi.get(self, "created_by")
1973
+
1974
+ @property
1975
+ @pulumi.getter(name="createdByType")
1976
+ def created_by_type(self) -> Optional[str]:
1977
+ """
1978
+ The type of identity that created the resource.
1979
+ """
1980
+ return pulumi.get(self, "created_by_type")
1981
+
1982
+ @property
1983
+ @pulumi.getter(name="lastModifiedAt")
1984
+ def last_modified_at(self) -> Optional[str]:
1985
+ """
1986
+ The timestamp of resource last modification (UTC)
1987
+ """
1988
+ return pulumi.get(self, "last_modified_at")
1989
+
1990
+ @property
1991
+ @pulumi.getter(name="lastModifiedBy")
1992
+ def last_modified_by(self) -> Optional[str]:
1993
+ """
1994
+ The identity that last modified the resource.
1995
+ """
1996
+ return pulumi.get(self, "last_modified_by")
1997
+
1998
+ @property
1999
+ @pulumi.getter(name="lastModifiedByType")
2000
+ def last_modified_by_type(self) -> Optional[str]:
2001
+ """
2002
+ The type of identity that last modified the resource.
2003
+ """
2004
+ return pulumi.get(self, "last_modified_by_type")
2005
+
2006
+
2007
+ @pulumi.output_type
2008
+ class UserAssignedIdentityResponse(dict):
2009
+ """
2010
+ User assigned identity properties
2011
+ """
2012
+ @staticmethod
2013
+ def __key_warning(key: str):
2014
+ suggest = None
2015
+ if key == "clientId":
2016
+ suggest = "client_id"
2017
+ elif key == "principalId":
2018
+ suggest = "principal_id"
2019
+
2020
+ if suggest:
2021
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
2022
+
2023
+ def __getitem__(self, key: str) -> Any:
2024
+ UserAssignedIdentityResponse.__key_warning(key)
2025
+ return super().__getitem__(key)
2026
+
2027
+ def get(self, key: str, default = None) -> Any:
2028
+ UserAssignedIdentityResponse.__key_warning(key)
2029
+ return super().get(key, default)
2030
+
2031
+ def __init__(__self__, *,
2032
+ client_id: str,
2033
+ principal_id: str):
2034
+ """
2035
+ User assigned identity properties
2036
+ :param str client_id: The client ID of the assigned identity.
2037
+ :param str principal_id: The principal ID of the assigned identity.
2038
+ """
2039
+ pulumi.set(__self__, "client_id", client_id)
2040
+ pulumi.set(__self__, "principal_id", principal_id)
2041
+
2042
+ @property
2043
+ @pulumi.getter(name="clientId")
2044
+ def client_id(self) -> str:
2045
+ """
2046
+ The client ID of the assigned identity.
2047
+ """
2048
+ return pulumi.get(self, "client_id")
2049
+
2050
+ @property
2051
+ @pulumi.getter(name="principalId")
2052
+ def principal_id(self) -> str:
2053
+ """
2054
+ The principal ID of the assigned identity.
2055
+ """
2056
+ return pulumi.get(self, "principal_id")
2057
+
2058
+
2059
+ @pulumi.output_type
2060
+ class WorkspaceResponseProperties(dict):
2061
+ """
2062
+ Workspaces resource specific properties.
2063
+ """
2064
+ @staticmethod
2065
+ def __key_warning(key: str):
2066
+ suggest = None
2067
+ if key == "privateEndpointConnections":
2068
+ suggest = "private_endpoint_connections"
2069
+ elif key == "provisioningState":
2070
+ suggest = "provisioning_state"
2071
+ elif key == "publicNetworkAccess":
2072
+ suggest = "public_network_access"
2073
+
2074
+ if suggest:
2075
+ pulumi.log.warn(f"Key '{key}' not found in WorkspaceResponseProperties. Access the value via the '{suggest}' property getter instead.")
2076
+
2077
+ def __getitem__(self, key: str) -> Any:
2078
+ WorkspaceResponseProperties.__key_warning(key)
2079
+ return super().__getitem__(key)
2080
+
2081
+ def get(self, key: str, default = None) -> Any:
2082
+ WorkspaceResponseProperties.__key_warning(key)
2083
+ return super().get(key, default)
2084
+
2085
+ def __init__(__self__, *,
2086
+ private_endpoint_connections: Sequence['outputs.PrivateEndpointConnectionResponse'],
2087
+ provisioning_state: str,
2088
+ public_network_access: str):
2089
+ """
2090
+ Workspaces resource specific properties.
2091
+ :param Sequence['PrivateEndpointConnectionResponse'] private_endpoint_connections: The list of private endpoint connections that are set up for this resource.
2092
+ :param str provisioning_state: The provisioning state.
2093
+ :param str public_network_access: Control permission for data plane traffic coming from public networks while private endpoint is enabled.
2094
+ """
2095
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
2096
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
2097
+ pulumi.set(__self__, "public_network_access", public_network_access)
2098
+
2099
+ @property
2100
+ @pulumi.getter(name="privateEndpointConnections")
2101
+ def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
2102
+ """
2103
+ The list of private endpoint connections that are set up for this resource.
2104
+ """
2105
+ return pulumi.get(self, "private_endpoint_connections")
2106
+
2107
+ @property
2108
+ @pulumi.getter(name="provisioningState")
2109
+ def provisioning_state(self) -> str:
2110
+ """
2111
+ The provisioning state.
2112
+ """
2113
+ return pulumi.get(self, "provisioning_state")
2114
+
2115
+ @property
2116
+ @pulumi.getter(name="publicNetworkAccess")
2117
+ def public_network_access(self) -> str:
2118
+ """
2119
+ Control permission for data plane traffic coming from public networks while private endpoint is enabled.
2120
+ """
2121
+ return pulumi.get(self, "public_network_access")
2122
+
2123
+