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,2449 @@
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
+ 'AmbrResponse',
16
+ 'AsyncOperationIdResponse',
17
+ 'AttachedDataNetworkResourceIdResponse',
18
+ 'AzureStackEdgeDeviceResourceIdResponse',
19
+ 'AzureStackHCIClusterResourceIdResponse',
20
+ 'CertificateProvisioningResponse',
21
+ 'ConnectedClusterResourceIdResponse',
22
+ 'CustomLocationResourceIdResponse',
23
+ 'DataNetworkConfigurationResponse',
24
+ 'DataNetworkResourceIdResponse',
25
+ 'DiagnosticsUploadConfigurationResponse',
26
+ 'EventHubConfigurationResponse',
27
+ 'HomeNetworkPrivateKeysProvisioningResponse',
28
+ 'HomeNetworkPublicKeyResponse',
29
+ 'HttpsServerCertificateResponse',
30
+ 'InstallationResponse',
31
+ 'InterfacePropertiesResponse',
32
+ 'KeyVaultKeyResponse',
33
+ 'LocalDiagnosticsAccessConfigurationResponse',
34
+ 'ManagedServiceIdentityResponse',
35
+ 'MobileNetworkResourceIdResponse',
36
+ 'NASRerouteConfigurationResponse',
37
+ 'NaptConfigurationResponse',
38
+ 'PccRuleConfigurationResponse',
39
+ 'PccRuleQosPolicyResponse',
40
+ 'PinholeTimeoutsResponse',
41
+ 'PlatformConfigurationResponse',
42
+ 'PlmnIdResponse',
43
+ 'PortRangeResponse',
44
+ 'PortReuseHoldTimesResponse',
45
+ 'PublicLandMobileNetworkResponse',
46
+ 'PublicLandMobileNetworkResponseHomeNetworkPublicKeys',
47
+ 'QosPolicyResponse',
48
+ 'ServiceDataFlowTemplateResponse',
49
+ 'ServiceResourceIdResponse',
50
+ 'SignalingConfigurationResponse',
51
+ 'SimPolicyResourceIdResponse',
52
+ 'SimStaticIpPropertiesResponse',
53
+ 'SimStaticIpPropertiesResponseStaticIp',
54
+ 'SiteResourceIdResponse',
55
+ 'SliceConfigurationResponse',
56
+ 'SliceResourceIdResponse',
57
+ 'SnssaiResponse',
58
+ 'SubResourceResponse',
59
+ 'SystemDataResponse',
60
+ 'UserAssignedIdentityResponse',
61
+ ]
62
+
63
+ @pulumi.output_type
64
+ class AmbrResponse(dict):
65
+ """
66
+ Aggregate maximum bit rate.
67
+ """
68
+ def __init__(__self__, *,
69
+ downlink: str,
70
+ uplink: str):
71
+ """
72
+ Aggregate maximum bit rate.
73
+ :param str downlink: Downlink bit rate.
74
+ :param str uplink: Uplink bit rate.
75
+ """
76
+ pulumi.set(__self__, "downlink", downlink)
77
+ pulumi.set(__self__, "uplink", uplink)
78
+
79
+ @property
80
+ @pulumi.getter
81
+ def downlink(self) -> str:
82
+ """
83
+ Downlink bit rate.
84
+ """
85
+ return pulumi.get(self, "downlink")
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def uplink(self) -> str:
90
+ """
91
+ Uplink bit rate.
92
+ """
93
+ return pulumi.get(self, "uplink")
94
+
95
+
96
+ @pulumi.output_type
97
+ class AsyncOperationIdResponse(dict):
98
+ """
99
+ Reference to an Azure Async Operation ID.
100
+ """
101
+ def __init__(__self__, *,
102
+ id: str):
103
+ """
104
+ Reference to an Azure Async Operation ID.
105
+ :param str id: Azure Async Operation ID.
106
+ """
107
+ pulumi.set(__self__, "id", id)
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def id(self) -> str:
112
+ """
113
+ Azure Async Operation ID.
114
+ """
115
+ return pulumi.get(self, "id")
116
+
117
+
118
+ @pulumi.output_type
119
+ class AttachedDataNetworkResourceIdResponse(dict):
120
+ """
121
+ Reference to an attached data network resource.
122
+ """
123
+ def __init__(__self__, *,
124
+ id: str):
125
+ """
126
+ Reference to an attached data network resource.
127
+ :param str id: Attached data network resource ID.
128
+ """
129
+ pulumi.set(__self__, "id", id)
130
+
131
+ @property
132
+ @pulumi.getter
133
+ def id(self) -> str:
134
+ """
135
+ Attached data network resource ID.
136
+ """
137
+ return pulumi.get(self, "id")
138
+
139
+
140
+ @pulumi.output_type
141
+ class AzureStackEdgeDeviceResourceIdResponse(dict):
142
+ """
143
+ Reference to an Azure Stack Edge device resource.
144
+ """
145
+ def __init__(__self__, *,
146
+ id: str):
147
+ """
148
+ Reference to an Azure Stack Edge device resource.
149
+ :param str id: Azure Stack Edge device resource ID.
150
+ """
151
+ pulumi.set(__self__, "id", id)
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def id(self) -> str:
156
+ """
157
+ Azure Stack Edge device resource ID.
158
+ """
159
+ return pulumi.get(self, "id")
160
+
161
+
162
+ @pulumi.output_type
163
+ class AzureStackHCIClusterResourceIdResponse(dict):
164
+ """
165
+ Reference to an Azure Stack HCI cluster resource.
166
+ """
167
+ def __init__(__self__, *,
168
+ id: str):
169
+ """
170
+ Reference to an Azure Stack HCI cluster resource.
171
+ :param str id: Azure Stack HCI cluster resource ID.
172
+ """
173
+ pulumi.set(__self__, "id", id)
174
+
175
+ @property
176
+ @pulumi.getter
177
+ def id(self) -> str:
178
+ """
179
+ Azure Stack HCI cluster resource ID.
180
+ """
181
+ return pulumi.get(self, "id")
182
+
183
+
184
+ @pulumi.output_type
185
+ class CertificateProvisioningResponse(dict):
186
+ """
187
+ Certificate provisioning state
188
+ """
189
+ def __init__(__self__, *,
190
+ reason: str,
191
+ state: str):
192
+ """
193
+ Certificate provisioning state
194
+ :param str reason: Reason for certificate provisioning failure.
195
+ :param str state: The certificate's provisioning state
196
+ """
197
+ pulumi.set(__self__, "reason", reason)
198
+ pulumi.set(__self__, "state", state)
199
+
200
+ @property
201
+ @pulumi.getter
202
+ def reason(self) -> str:
203
+ """
204
+ Reason for certificate provisioning failure.
205
+ """
206
+ return pulumi.get(self, "reason")
207
+
208
+ @property
209
+ @pulumi.getter
210
+ def state(self) -> str:
211
+ """
212
+ The certificate's provisioning state
213
+ """
214
+ return pulumi.get(self, "state")
215
+
216
+
217
+ @pulumi.output_type
218
+ class ConnectedClusterResourceIdResponse(dict):
219
+ """
220
+ Reference to an Azure Arc custom location resource.
221
+ """
222
+ def __init__(__self__, *,
223
+ id: str):
224
+ """
225
+ Reference to an Azure Arc custom location resource.
226
+ :param str id: Azure Arc connected cluster resource ID.
227
+ """
228
+ pulumi.set(__self__, "id", id)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def id(self) -> str:
233
+ """
234
+ Azure Arc connected cluster resource ID.
235
+ """
236
+ return pulumi.get(self, "id")
237
+
238
+
239
+ @pulumi.output_type
240
+ class CustomLocationResourceIdResponse(dict):
241
+ """
242
+ Reference to an Azure Arc custom location resource.
243
+ """
244
+ def __init__(__self__, *,
245
+ id: str):
246
+ """
247
+ Reference to an Azure Arc custom location resource.
248
+ :param str id: Azure Arc custom location resource ID.
249
+ """
250
+ pulumi.set(__self__, "id", id)
251
+
252
+ @property
253
+ @pulumi.getter
254
+ def id(self) -> str:
255
+ """
256
+ Azure Arc custom location resource ID.
257
+ """
258
+ return pulumi.get(self, "id")
259
+
260
+
261
+ @pulumi.output_type
262
+ class DataNetworkConfigurationResponse(dict):
263
+ """
264
+ Settings controlling data network use
265
+ """
266
+ @staticmethod
267
+ def __key_warning(key: str):
268
+ suggest = None
269
+ if key == "allowedServices":
270
+ suggest = "allowed_services"
271
+ elif key == "dataNetwork":
272
+ suggest = "data_network"
273
+ elif key == "sessionAmbr":
274
+ suggest = "session_ambr"
275
+ elif key == "additionalAllowedSessionTypes":
276
+ suggest = "additional_allowed_session_types"
277
+ elif key == "allocationAndRetentionPriorityLevel":
278
+ suggest = "allocation_and_retention_priority_level"
279
+ elif key == "defaultSessionType":
280
+ suggest = "default_session_type"
281
+ elif key == "fiveQi":
282
+ suggest = "five_qi"
283
+ elif key == "maximumNumberOfBufferedPackets":
284
+ suggest = "maximum_number_of_buffered_packets"
285
+ elif key == "preemptionCapability":
286
+ suggest = "preemption_capability"
287
+ elif key == "preemptionVulnerability":
288
+ suggest = "preemption_vulnerability"
289
+
290
+ if suggest:
291
+ pulumi.log.warn(f"Key '{key}' not found in DataNetworkConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
292
+
293
+ def __getitem__(self, key: str) -> Any:
294
+ DataNetworkConfigurationResponse.__key_warning(key)
295
+ return super().__getitem__(key)
296
+
297
+ def get(self, key: str, default = None) -> Any:
298
+ DataNetworkConfigurationResponse.__key_warning(key)
299
+ return super().get(key, default)
300
+
301
+ def __init__(__self__, *,
302
+ allowed_services: Sequence['outputs.ServiceResourceIdResponse'],
303
+ data_network: 'outputs.DataNetworkResourceIdResponse',
304
+ session_ambr: 'outputs.AmbrResponse',
305
+ additional_allowed_session_types: Optional[Sequence[str]] = None,
306
+ allocation_and_retention_priority_level: Optional[int] = None,
307
+ default_session_type: Optional[str] = None,
308
+ five_qi: Optional[int] = None,
309
+ maximum_number_of_buffered_packets: Optional[int] = None,
310
+ preemption_capability: Optional[str] = None,
311
+ preemption_vulnerability: Optional[str] = None):
312
+ """
313
+ Settings controlling data network use
314
+ :param Sequence['ServiceResourceIdResponse'] allowed_services: List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
315
+ :param 'DataNetworkResourceIdResponse' data_network: A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
316
+ :param 'AmbrResponse' session_ambr: Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
317
+ :param Sequence[str] additional_allowed_session_types: Allowed session types in addition to the default session type. Must not duplicate the default session type.
318
+ :param int allocation_and_retention_priority_level: Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
319
+ :param str default_session_type: The default PDU session type, which is used if the UE does not request a specific session type.
320
+ :param int five_qi: Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
321
+ :param int maximum_number_of_buffered_packets: The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
322
+ :param str preemption_capability: Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
323
+ :param str preemption_vulnerability: Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
324
+ """
325
+ pulumi.set(__self__, "allowed_services", allowed_services)
326
+ pulumi.set(__self__, "data_network", data_network)
327
+ pulumi.set(__self__, "session_ambr", session_ambr)
328
+ if additional_allowed_session_types is not None:
329
+ pulumi.set(__self__, "additional_allowed_session_types", additional_allowed_session_types)
330
+ if allocation_and_retention_priority_level is None:
331
+ allocation_and_retention_priority_level = 9
332
+ if allocation_and_retention_priority_level is not None:
333
+ pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
334
+ if default_session_type is None:
335
+ default_session_type = 'IPv4'
336
+ if default_session_type is not None:
337
+ pulumi.set(__self__, "default_session_type", default_session_type)
338
+ if five_qi is None:
339
+ five_qi = 9
340
+ if five_qi is not None:
341
+ pulumi.set(__self__, "five_qi", five_qi)
342
+ if maximum_number_of_buffered_packets is None:
343
+ maximum_number_of_buffered_packets = 10
344
+ if maximum_number_of_buffered_packets is not None:
345
+ pulumi.set(__self__, "maximum_number_of_buffered_packets", maximum_number_of_buffered_packets)
346
+ if preemption_capability is None:
347
+ preemption_capability = 'NotPreempt'
348
+ if preemption_capability is not None:
349
+ pulumi.set(__self__, "preemption_capability", preemption_capability)
350
+ if preemption_vulnerability is None:
351
+ preemption_vulnerability = 'Preemptable'
352
+ if preemption_vulnerability is not None:
353
+ pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
354
+
355
+ @property
356
+ @pulumi.getter(name="allowedServices")
357
+ def allowed_services(self) -> Sequence['outputs.ServiceResourceIdResponse']:
358
+ """
359
+ List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
360
+ """
361
+ return pulumi.get(self, "allowed_services")
362
+
363
+ @property
364
+ @pulumi.getter(name="dataNetwork")
365
+ def data_network(self) -> 'outputs.DataNetworkResourceIdResponse':
366
+ """
367
+ A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
368
+ """
369
+ return pulumi.get(self, "data_network")
370
+
371
+ @property
372
+ @pulumi.getter(name="sessionAmbr")
373
+ def session_ambr(self) -> 'outputs.AmbrResponse':
374
+ """
375
+ Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
376
+ """
377
+ return pulumi.get(self, "session_ambr")
378
+
379
+ @property
380
+ @pulumi.getter(name="additionalAllowedSessionTypes")
381
+ def additional_allowed_session_types(self) -> Optional[Sequence[str]]:
382
+ """
383
+ Allowed session types in addition to the default session type. Must not duplicate the default session type.
384
+ """
385
+ return pulumi.get(self, "additional_allowed_session_types")
386
+
387
+ @property
388
+ @pulumi.getter(name="allocationAndRetentionPriorityLevel")
389
+ def allocation_and_retention_priority_level(self) -> Optional[int]:
390
+ """
391
+ Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
392
+ """
393
+ return pulumi.get(self, "allocation_and_retention_priority_level")
394
+
395
+ @property
396
+ @pulumi.getter(name="defaultSessionType")
397
+ def default_session_type(self) -> Optional[str]:
398
+ """
399
+ The default PDU session type, which is used if the UE does not request a specific session type.
400
+ """
401
+ return pulumi.get(self, "default_session_type")
402
+
403
+ @property
404
+ @pulumi.getter(name="fiveQi")
405
+ def five_qi(self) -> Optional[int]:
406
+ """
407
+ Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
408
+ """
409
+ return pulumi.get(self, "five_qi")
410
+
411
+ @property
412
+ @pulumi.getter(name="maximumNumberOfBufferedPackets")
413
+ def maximum_number_of_buffered_packets(self) -> Optional[int]:
414
+ """
415
+ The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
416
+ """
417
+ return pulumi.get(self, "maximum_number_of_buffered_packets")
418
+
419
+ @property
420
+ @pulumi.getter(name="preemptionCapability")
421
+ def preemption_capability(self) -> Optional[str]:
422
+ """
423
+ Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
424
+ """
425
+ return pulumi.get(self, "preemption_capability")
426
+
427
+ @property
428
+ @pulumi.getter(name="preemptionVulnerability")
429
+ def preemption_vulnerability(self) -> Optional[str]:
430
+ """
431
+ Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
432
+ """
433
+ return pulumi.get(self, "preemption_vulnerability")
434
+
435
+
436
+ @pulumi.output_type
437
+ class DataNetworkResourceIdResponse(dict):
438
+ """
439
+ Reference to a data network resource.
440
+ """
441
+ def __init__(__self__, *,
442
+ id: str):
443
+ """
444
+ Reference to a data network resource.
445
+ :param str id: Data network resource ID.
446
+ """
447
+ pulumi.set(__self__, "id", id)
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def id(self) -> str:
452
+ """
453
+ Data network resource ID.
454
+ """
455
+ return pulumi.get(self, "id")
456
+
457
+
458
+ @pulumi.output_type
459
+ class DiagnosticsUploadConfigurationResponse(dict):
460
+ """
461
+ Configuration for uploading packet core diagnostics.
462
+ """
463
+ @staticmethod
464
+ def __key_warning(key: str):
465
+ suggest = None
466
+ if key == "storageAccountContainerUrl":
467
+ suggest = "storage_account_container_url"
468
+
469
+ if suggest:
470
+ pulumi.log.warn(f"Key '{key}' not found in DiagnosticsUploadConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
471
+
472
+ def __getitem__(self, key: str) -> Any:
473
+ DiagnosticsUploadConfigurationResponse.__key_warning(key)
474
+ return super().__getitem__(key)
475
+
476
+ def get(self, key: str, default = None) -> Any:
477
+ DiagnosticsUploadConfigurationResponse.__key_warning(key)
478
+ return super().get(key, default)
479
+
480
+ def __init__(__self__, *,
481
+ storage_account_container_url: str):
482
+ """
483
+ Configuration for uploading packet core diagnostics.
484
+ :param str storage_account_container_url: The Storage Account Container URL to upload diagnostics to.
485
+ """
486
+ pulumi.set(__self__, "storage_account_container_url", storage_account_container_url)
487
+
488
+ @property
489
+ @pulumi.getter(name="storageAccountContainerUrl")
490
+ def storage_account_container_url(self) -> str:
491
+ """
492
+ The Storage Account Container URL to upload diagnostics to.
493
+ """
494
+ return pulumi.get(self, "storage_account_container_url")
495
+
496
+
497
+ @pulumi.output_type
498
+ class EventHubConfigurationResponse(dict):
499
+ """
500
+ Configuration for sending packet core events to Azure Event Hub.
501
+ """
502
+ @staticmethod
503
+ def __key_warning(key: str):
504
+ suggest = None
505
+ if key == "reportingInterval":
506
+ suggest = "reporting_interval"
507
+
508
+ if suggest:
509
+ pulumi.log.warn(f"Key '{key}' not found in EventHubConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
510
+
511
+ def __getitem__(self, key: str) -> Any:
512
+ EventHubConfigurationResponse.__key_warning(key)
513
+ return super().__getitem__(key)
514
+
515
+ def get(self, key: str, default = None) -> Any:
516
+ EventHubConfigurationResponse.__key_warning(key)
517
+ return super().get(key, default)
518
+
519
+ def __init__(__self__, *,
520
+ id: str,
521
+ reporting_interval: Optional[int] = None):
522
+ """
523
+ Configuration for sending packet core events to Azure Event Hub.
524
+ :param str id: Resource ID of Azure Event Hub to send packet core events to.
525
+ :param int reporting_interval: The duration (in seconds) between UE usage reports.
526
+ """
527
+ pulumi.set(__self__, "id", id)
528
+ if reporting_interval is None:
529
+ reporting_interval = 1800
530
+ if reporting_interval is not None:
531
+ pulumi.set(__self__, "reporting_interval", reporting_interval)
532
+
533
+ @property
534
+ @pulumi.getter
535
+ def id(self) -> str:
536
+ """
537
+ Resource ID of Azure Event Hub to send packet core events to.
538
+ """
539
+ return pulumi.get(self, "id")
540
+
541
+ @property
542
+ @pulumi.getter(name="reportingInterval")
543
+ def reporting_interval(self) -> Optional[int]:
544
+ """
545
+ The duration (in seconds) between UE usage reports.
546
+ """
547
+ return pulumi.get(self, "reporting_interval")
548
+
549
+
550
+ @pulumi.output_type
551
+ class HomeNetworkPrivateKeysProvisioningResponse(dict):
552
+ def __init__(__self__, *,
553
+ state: str):
554
+ """
555
+ :param str state: The provisioning state of the private keys for SUPI concealment.
556
+ """
557
+ pulumi.set(__self__, "state", state)
558
+
559
+ @property
560
+ @pulumi.getter
561
+ def state(self) -> str:
562
+ """
563
+ The provisioning state of the private keys for SUPI concealment.
564
+ """
565
+ return pulumi.get(self, "state")
566
+
567
+
568
+ @pulumi.output_type
569
+ class HomeNetworkPublicKeyResponse(dict):
570
+ """
571
+ A key used for SUPI concealment.
572
+ """
573
+ def __init__(__self__, *,
574
+ id: int,
575
+ url: Optional[str] = None):
576
+ """
577
+ A key used for SUPI concealment.
578
+ :param int id: The Home Network Public Key Identifier determines which public key was used to generate the SUCI sent to the AMF. See TS 23.003 Section 2.2B Section 5.
579
+ :param str url: The URL of Azure Key Vault secret containing the private key, versioned or unversioned. For example: https://contosovault.vault.azure.net/secrets/mySuciPrivateKey/562a4bb76b524a1493a6afe8e536ee78.
580
+ """
581
+ pulumi.set(__self__, "id", id)
582
+ if url is not None:
583
+ pulumi.set(__self__, "url", url)
584
+
585
+ @property
586
+ @pulumi.getter
587
+ def id(self) -> int:
588
+ """
589
+ The Home Network Public Key Identifier determines which public key was used to generate the SUCI sent to the AMF. See TS 23.003 Section 2.2B Section 5.
590
+ """
591
+ return pulumi.get(self, "id")
592
+
593
+ @property
594
+ @pulumi.getter
595
+ def url(self) -> Optional[str]:
596
+ """
597
+ The URL of Azure Key Vault secret containing the private key, versioned or unversioned. For example: https://contosovault.vault.azure.net/secrets/mySuciPrivateKey/562a4bb76b524a1493a6afe8e536ee78.
598
+ """
599
+ return pulumi.get(self, "url")
600
+
601
+
602
+ @pulumi.output_type
603
+ class HttpsServerCertificateResponse(dict):
604
+ """
605
+ HTTPS server certificate configuration.
606
+ """
607
+ @staticmethod
608
+ def __key_warning(key: str):
609
+ suggest = None
610
+ if key == "certificateUrl":
611
+ suggest = "certificate_url"
612
+
613
+ if suggest:
614
+ pulumi.log.warn(f"Key '{key}' not found in HttpsServerCertificateResponse. Access the value via the '{suggest}' property getter instead.")
615
+
616
+ def __getitem__(self, key: str) -> Any:
617
+ HttpsServerCertificateResponse.__key_warning(key)
618
+ return super().__getitem__(key)
619
+
620
+ def get(self, key: str, default = None) -> Any:
621
+ HttpsServerCertificateResponse.__key_warning(key)
622
+ return super().get(key, default)
623
+
624
+ def __init__(__self__, *,
625
+ certificate_url: str,
626
+ provisioning: 'outputs.CertificateProvisioningResponse'):
627
+ """
628
+ HTTPS server certificate configuration.
629
+ :param str certificate_url: The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
630
+ :param 'CertificateProvisioningResponse' provisioning: The provisioning state of the certificate.
631
+ """
632
+ pulumi.set(__self__, "certificate_url", certificate_url)
633
+ pulumi.set(__self__, "provisioning", provisioning)
634
+
635
+ @property
636
+ @pulumi.getter(name="certificateUrl")
637
+ def certificate_url(self) -> str:
638
+ """
639
+ The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
640
+ """
641
+ return pulumi.get(self, "certificate_url")
642
+
643
+ @property
644
+ @pulumi.getter
645
+ def provisioning(self) -> 'outputs.CertificateProvisioningResponse':
646
+ """
647
+ The provisioning state of the certificate.
648
+ """
649
+ return pulumi.get(self, "provisioning")
650
+
651
+
652
+ @pulumi.output_type
653
+ class InstallationResponse(dict):
654
+ """
655
+ The installation state of the packet core.
656
+ """
657
+ @staticmethod
658
+ def __key_warning(key: str):
659
+ suggest = None
660
+ if key == "reinstallRequired":
661
+ suggest = "reinstall_required"
662
+ elif key == "desiredState":
663
+ suggest = "desired_state"
664
+
665
+ if suggest:
666
+ pulumi.log.warn(f"Key '{key}' not found in InstallationResponse. Access the value via the '{suggest}' property getter instead.")
667
+
668
+ def __getitem__(self, key: str) -> Any:
669
+ InstallationResponse.__key_warning(key)
670
+ return super().__getitem__(key)
671
+
672
+ def get(self, key: str, default = None) -> Any:
673
+ InstallationResponse.__key_warning(key)
674
+ return super().get(key, default)
675
+
676
+ def __init__(__self__, *,
677
+ operation: 'outputs.AsyncOperationIdResponse',
678
+ reasons: Sequence[str],
679
+ reinstall_required: str,
680
+ state: str,
681
+ desired_state: Optional[str] = None):
682
+ """
683
+ The installation state of the packet core.
684
+ :param 'AsyncOperationIdResponse' operation: A reference to an in-progress installation operation
685
+ :param Sequence[str] reasons: Reason(s) for the current installation state of the packet core.
686
+ :param str reinstall_required: Whether a reinstall of the packet core is required to pick up the latest configuration changes.
687
+ :param str state: Installation state
688
+ :param str desired_state: The desired installation state
689
+ """
690
+ pulumi.set(__self__, "operation", operation)
691
+ pulumi.set(__self__, "reasons", reasons)
692
+ pulumi.set(__self__, "reinstall_required", reinstall_required)
693
+ pulumi.set(__self__, "state", state)
694
+ if desired_state is None:
695
+ desired_state = 'Installed'
696
+ if desired_state is not None:
697
+ pulumi.set(__self__, "desired_state", desired_state)
698
+
699
+ @property
700
+ @pulumi.getter
701
+ def operation(self) -> 'outputs.AsyncOperationIdResponse':
702
+ """
703
+ A reference to an in-progress installation operation
704
+ """
705
+ return pulumi.get(self, "operation")
706
+
707
+ @property
708
+ @pulumi.getter
709
+ def reasons(self) -> Sequence[str]:
710
+ """
711
+ Reason(s) for the current installation state of the packet core.
712
+ """
713
+ return pulumi.get(self, "reasons")
714
+
715
+ @property
716
+ @pulumi.getter(name="reinstallRequired")
717
+ def reinstall_required(self) -> str:
718
+ """
719
+ Whether a reinstall of the packet core is required to pick up the latest configuration changes.
720
+ """
721
+ return pulumi.get(self, "reinstall_required")
722
+
723
+ @property
724
+ @pulumi.getter
725
+ def state(self) -> str:
726
+ """
727
+ Installation state
728
+ """
729
+ return pulumi.get(self, "state")
730
+
731
+ @property
732
+ @pulumi.getter(name="desiredState")
733
+ def desired_state(self) -> Optional[str]:
734
+ """
735
+ The desired installation state
736
+ """
737
+ return pulumi.get(self, "desired_state")
738
+
739
+
740
+ @pulumi.output_type
741
+ class InterfacePropertiesResponse(dict):
742
+ """
743
+ Interface properties
744
+ """
745
+ @staticmethod
746
+ def __key_warning(key: str):
747
+ suggest = None
748
+ if key == "ipv4Address":
749
+ suggest = "ipv4_address"
750
+ elif key == "ipv4Gateway":
751
+ suggest = "ipv4_gateway"
752
+ elif key == "ipv4Subnet":
753
+ suggest = "ipv4_subnet"
754
+
755
+ if suggest:
756
+ pulumi.log.warn(f"Key '{key}' not found in InterfacePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
757
+
758
+ def __getitem__(self, key: str) -> Any:
759
+ InterfacePropertiesResponse.__key_warning(key)
760
+ return super().__getitem__(key)
761
+
762
+ def get(self, key: str, default = None) -> Any:
763
+ InterfacePropertiesResponse.__key_warning(key)
764
+ return super().get(key, default)
765
+
766
+ def __init__(__self__, *,
767
+ ipv4_address: Optional[str] = None,
768
+ ipv4_gateway: Optional[str] = None,
769
+ ipv4_subnet: Optional[str] = None,
770
+ name: Optional[str] = None):
771
+ """
772
+ Interface properties
773
+ :param str ipv4_address: The IPv4 address.
774
+ :param str ipv4_gateway: The default IPv4 gateway (router).
775
+ :param str ipv4_subnet: The IPv4 subnet.
776
+ :param str name: The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.
777
+ """
778
+ if ipv4_address is not None:
779
+ pulumi.set(__self__, "ipv4_address", ipv4_address)
780
+ if ipv4_gateway is not None:
781
+ pulumi.set(__self__, "ipv4_gateway", ipv4_gateway)
782
+ if ipv4_subnet is not None:
783
+ pulumi.set(__self__, "ipv4_subnet", ipv4_subnet)
784
+ if name is not None:
785
+ pulumi.set(__self__, "name", name)
786
+
787
+ @property
788
+ @pulumi.getter(name="ipv4Address")
789
+ def ipv4_address(self) -> Optional[str]:
790
+ """
791
+ The IPv4 address.
792
+ """
793
+ return pulumi.get(self, "ipv4_address")
794
+
795
+ @property
796
+ @pulumi.getter(name="ipv4Gateway")
797
+ def ipv4_gateway(self) -> Optional[str]:
798
+ """
799
+ The default IPv4 gateway (router).
800
+ """
801
+ return pulumi.get(self, "ipv4_gateway")
802
+
803
+ @property
804
+ @pulumi.getter(name="ipv4Subnet")
805
+ def ipv4_subnet(self) -> Optional[str]:
806
+ """
807
+ The IPv4 subnet.
808
+ """
809
+ return pulumi.get(self, "ipv4_subnet")
810
+
811
+ @property
812
+ @pulumi.getter
813
+ def name(self) -> Optional[str]:
814
+ """
815
+ The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.
816
+ """
817
+ return pulumi.get(self, "name")
818
+
819
+
820
+ @pulumi.output_type
821
+ class KeyVaultKeyResponse(dict):
822
+ """
823
+ An Azure key vault key.
824
+ """
825
+ @staticmethod
826
+ def __key_warning(key: str):
827
+ suggest = None
828
+ if key == "keyUrl":
829
+ suggest = "key_url"
830
+
831
+ if suggest:
832
+ pulumi.log.warn(f"Key '{key}' not found in KeyVaultKeyResponse. Access the value via the '{suggest}' property getter instead.")
833
+
834
+ def __getitem__(self, key: str) -> Any:
835
+ KeyVaultKeyResponse.__key_warning(key)
836
+ return super().__getitem__(key)
837
+
838
+ def get(self, key: str, default = None) -> Any:
839
+ KeyVaultKeyResponse.__key_warning(key)
840
+ return super().get(key, default)
841
+
842
+ def __init__(__self__, *,
843
+ key_url: Optional[str] = None):
844
+ """
845
+ An Azure key vault key.
846
+ :param str key_url: The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.
847
+ """
848
+ if key_url is not None:
849
+ pulumi.set(__self__, "key_url", key_url)
850
+
851
+ @property
852
+ @pulumi.getter(name="keyUrl")
853
+ def key_url(self) -> Optional[str]:
854
+ """
855
+ The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.
856
+ """
857
+ return pulumi.get(self, "key_url")
858
+
859
+
860
+ @pulumi.output_type
861
+ class LocalDiagnosticsAccessConfigurationResponse(dict):
862
+ """
863
+ The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
864
+ """
865
+ @staticmethod
866
+ def __key_warning(key: str):
867
+ suggest = None
868
+ if key == "authenticationType":
869
+ suggest = "authentication_type"
870
+ elif key == "httpsServerCertificate":
871
+ suggest = "https_server_certificate"
872
+
873
+ if suggest:
874
+ pulumi.log.warn(f"Key '{key}' not found in LocalDiagnosticsAccessConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
875
+
876
+ def __getitem__(self, key: str) -> Any:
877
+ LocalDiagnosticsAccessConfigurationResponse.__key_warning(key)
878
+ return super().__getitem__(key)
879
+
880
+ def get(self, key: str, default = None) -> Any:
881
+ LocalDiagnosticsAccessConfigurationResponse.__key_warning(key)
882
+ return super().get(key, default)
883
+
884
+ def __init__(__self__, *,
885
+ authentication_type: str,
886
+ https_server_certificate: Optional['outputs.HttpsServerCertificateResponse'] = None):
887
+ """
888
+ The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
889
+ :param str authentication_type: How to authenticate users who access local diagnostics APIs.
890
+ :param 'HttpsServerCertificateResponse' https_server_certificate: The HTTPS server TLS certificate used to secure local access to diagnostics.
891
+ """
892
+ pulumi.set(__self__, "authentication_type", authentication_type)
893
+ if https_server_certificate is not None:
894
+ pulumi.set(__self__, "https_server_certificate", https_server_certificate)
895
+
896
+ @property
897
+ @pulumi.getter(name="authenticationType")
898
+ def authentication_type(self) -> str:
899
+ """
900
+ How to authenticate users who access local diagnostics APIs.
901
+ """
902
+ return pulumi.get(self, "authentication_type")
903
+
904
+ @property
905
+ @pulumi.getter(name="httpsServerCertificate")
906
+ def https_server_certificate(self) -> Optional['outputs.HttpsServerCertificateResponse']:
907
+ """
908
+ The HTTPS server TLS certificate used to secure local access to diagnostics.
909
+ """
910
+ return pulumi.get(self, "https_server_certificate")
911
+
912
+
913
+ @pulumi.output_type
914
+ class ManagedServiceIdentityResponse(dict):
915
+ """
916
+ Managed service identity (User assigned identity)
917
+ """
918
+ @staticmethod
919
+ def __key_warning(key: str):
920
+ suggest = None
921
+ if key == "userAssignedIdentities":
922
+ suggest = "user_assigned_identities"
923
+
924
+ if suggest:
925
+ pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
926
+
927
+ def __getitem__(self, key: str) -> Any:
928
+ ManagedServiceIdentityResponse.__key_warning(key)
929
+ return super().__getitem__(key)
930
+
931
+ def get(self, key: str, default = None) -> Any:
932
+ ManagedServiceIdentityResponse.__key_warning(key)
933
+ return super().get(key, default)
934
+
935
+ def __init__(__self__, *,
936
+ type: str,
937
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
938
+ """
939
+ Managed service identity (User assigned identity)
940
+ :param str type: Type of managed service identity (currently only UserAssigned allowed).
941
+ :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.
942
+ """
943
+ pulumi.set(__self__, "type", type)
944
+ if user_assigned_identities is not None:
945
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
946
+
947
+ @property
948
+ @pulumi.getter
949
+ def type(self) -> str:
950
+ """
951
+ Type of managed service identity (currently only UserAssigned allowed).
952
+ """
953
+ return pulumi.get(self, "type")
954
+
955
+ @property
956
+ @pulumi.getter(name="userAssignedIdentities")
957
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
958
+ """
959
+ 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.
960
+ """
961
+ return pulumi.get(self, "user_assigned_identities")
962
+
963
+
964
+ @pulumi.output_type
965
+ class MobileNetworkResourceIdResponse(dict):
966
+ """
967
+ Reference to a mobile network resource.
968
+ """
969
+ def __init__(__self__, *,
970
+ id: str):
971
+ """
972
+ Reference to a mobile network resource.
973
+ :param str id: Mobile network resource ID.
974
+ """
975
+ pulumi.set(__self__, "id", id)
976
+
977
+ @property
978
+ @pulumi.getter
979
+ def id(self) -> str:
980
+ """
981
+ Mobile network resource ID.
982
+ """
983
+ return pulumi.get(self, "id")
984
+
985
+
986
+ @pulumi.output_type
987
+ class NASRerouteConfigurationResponse(dict):
988
+ """
989
+ Configuration enabling NAS reroute.
990
+ """
991
+ @staticmethod
992
+ def __key_warning(key: str):
993
+ suggest = None
994
+ if key == "macroMmeGroupId":
995
+ suggest = "macro_mme_group_id"
996
+
997
+ if suggest:
998
+ pulumi.log.warn(f"Key '{key}' not found in NASRerouteConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
999
+
1000
+ def __getitem__(self, key: str) -> Any:
1001
+ NASRerouteConfigurationResponse.__key_warning(key)
1002
+ return super().__getitem__(key)
1003
+
1004
+ def get(self, key: str, default = None) -> Any:
1005
+ NASRerouteConfigurationResponse.__key_warning(key)
1006
+ return super().get(key, default)
1007
+
1008
+ def __init__(__self__, *,
1009
+ macro_mme_group_id: int):
1010
+ """
1011
+ Configuration enabling NAS reroute.
1012
+ :param int macro_mme_group_id: The macro network's MME group ID. This is where unknown UEs are sent to via NAS reroute.
1013
+ """
1014
+ pulumi.set(__self__, "macro_mme_group_id", macro_mme_group_id)
1015
+
1016
+ @property
1017
+ @pulumi.getter(name="macroMmeGroupId")
1018
+ def macro_mme_group_id(self) -> int:
1019
+ """
1020
+ The macro network's MME group ID. This is where unknown UEs are sent to via NAS reroute.
1021
+ """
1022
+ return pulumi.get(self, "macro_mme_group_id")
1023
+
1024
+
1025
+ @pulumi.output_type
1026
+ class NaptConfigurationResponse(dict):
1027
+ """
1028
+ The network address and port translation settings to use for the attached data network.
1029
+ """
1030
+ @staticmethod
1031
+ def __key_warning(key: str):
1032
+ suggest = None
1033
+ if key == "pinholeLimits":
1034
+ suggest = "pinhole_limits"
1035
+ elif key == "pinholeTimeouts":
1036
+ suggest = "pinhole_timeouts"
1037
+ elif key == "portRange":
1038
+ suggest = "port_range"
1039
+ elif key == "portReuseHoldTime":
1040
+ suggest = "port_reuse_hold_time"
1041
+
1042
+ if suggest:
1043
+ pulumi.log.warn(f"Key '{key}' not found in NaptConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1044
+
1045
+ def __getitem__(self, key: str) -> Any:
1046
+ NaptConfigurationResponse.__key_warning(key)
1047
+ return super().__getitem__(key)
1048
+
1049
+ def get(self, key: str, default = None) -> Any:
1050
+ NaptConfigurationResponse.__key_warning(key)
1051
+ return super().get(key, default)
1052
+
1053
+ def __init__(__self__, *,
1054
+ enabled: Optional[str] = None,
1055
+ pinhole_limits: Optional[int] = None,
1056
+ pinhole_timeouts: Optional['outputs.PinholeTimeoutsResponse'] = None,
1057
+ port_range: Optional['outputs.PortRangeResponse'] = None,
1058
+ port_reuse_hold_time: Optional['outputs.PortReuseHoldTimesResponse'] = None):
1059
+ """
1060
+ The network address and port translation settings to use for the attached data network.
1061
+ :param str enabled: Whether NAPT is enabled for connections to this attached data network.
1062
+ :param int pinhole_limits: Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.
1063
+ :param 'PinholeTimeoutsResponse' pinhole_timeouts: Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
1064
+ :param 'PortRangeResponse' port_range: Range of port numbers to use as translated ports on each translated address.
1065
+ If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
1066
+ (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
1067
+ :param 'PortReuseHoldTimesResponse' port_reuse_hold_time: The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be at least 1 second.
1068
+ """
1069
+ if enabled is not None:
1070
+ pulumi.set(__self__, "enabled", enabled)
1071
+ if pinhole_limits is None:
1072
+ pinhole_limits = 65536
1073
+ if pinhole_limits is not None:
1074
+ pulumi.set(__self__, "pinhole_limits", pinhole_limits)
1075
+ if pinhole_timeouts is not None:
1076
+ pulumi.set(__self__, "pinhole_timeouts", pinhole_timeouts)
1077
+ if port_range is not None:
1078
+ pulumi.set(__self__, "port_range", port_range)
1079
+ if port_reuse_hold_time is not None:
1080
+ pulumi.set(__self__, "port_reuse_hold_time", port_reuse_hold_time)
1081
+
1082
+ @property
1083
+ @pulumi.getter
1084
+ def enabled(self) -> Optional[str]:
1085
+ """
1086
+ Whether NAPT is enabled for connections to this attached data network.
1087
+ """
1088
+ return pulumi.get(self, "enabled")
1089
+
1090
+ @property
1091
+ @pulumi.getter(name="pinholeLimits")
1092
+ def pinhole_limits(self) -> Optional[int]:
1093
+ """
1094
+ Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.
1095
+ """
1096
+ return pulumi.get(self, "pinhole_limits")
1097
+
1098
+ @property
1099
+ @pulumi.getter(name="pinholeTimeouts")
1100
+ def pinhole_timeouts(self) -> Optional['outputs.PinholeTimeoutsResponse']:
1101
+ """
1102
+ Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
1103
+ """
1104
+ return pulumi.get(self, "pinhole_timeouts")
1105
+
1106
+ @property
1107
+ @pulumi.getter(name="portRange")
1108
+ def port_range(self) -> Optional['outputs.PortRangeResponse']:
1109
+ """
1110
+ Range of port numbers to use as translated ports on each translated address.
1111
+ If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
1112
+ (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
1113
+ """
1114
+ return pulumi.get(self, "port_range")
1115
+
1116
+ @property
1117
+ @pulumi.getter(name="portReuseHoldTime")
1118
+ def port_reuse_hold_time(self) -> Optional['outputs.PortReuseHoldTimesResponse']:
1119
+ """
1120
+ The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be at least 1 second.
1121
+ """
1122
+ return pulumi.get(self, "port_reuse_hold_time")
1123
+
1124
+
1125
+ @pulumi.output_type
1126
+ class PccRuleConfigurationResponse(dict):
1127
+ """
1128
+ Data flow policy rule configuration
1129
+ """
1130
+ @staticmethod
1131
+ def __key_warning(key: str):
1132
+ suggest = None
1133
+ if key == "ruleName":
1134
+ suggest = "rule_name"
1135
+ elif key == "rulePrecedence":
1136
+ suggest = "rule_precedence"
1137
+ elif key == "serviceDataFlowTemplates":
1138
+ suggest = "service_data_flow_templates"
1139
+ elif key == "ruleQosPolicy":
1140
+ suggest = "rule_qos_policy"
1141
+ elif key == "trafficControl":
1142
+ suggest = "traffic_control"
1143
+
1144
+ if suggest:
1145
+ pulumi.log.warn(f"Key '{key}' not found in PccRuleConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1146
+
1147
+ def __getitem__(self, key: str) -> Any:
1148
+ PccRuleConfigurationResponse.__key_warning(key)
1149
+ return super().__getitem__(key)
1150
+
1151
+ def get(self, key: str, default = None) -> Any:
1152
+ PccRuleConfigurationResponse.__key_warning(key)
1153
+ return super().get(key, default)
1154
+
1155
+ def __init__(__self__, *,
1156
+ rule_name: str,
1157
+ rule_precedence: int,
1158
+ service_data_flow_templates: Sequence['outputs.ServiceDataFlowTemplateResponse'],
1159
+ rule_qos_policy: Optional['outputs.PccRuleQosPolicyResponse'] = None,
1160
+ traffic_control: Optional[str] = None):
1161
+ """
1162
+ Data flow policy rule configuration
1163
+ :param str rule_name: The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
1164
+ :param int rule_precedence: A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
1165
+ :param Sequence['ServiceDataFlowTemplateResponse'] service_data_flow_templates: The set of data flow templates to use for this data flow policy rule.
1166
+ :param 'PccRuleQosPolicyResponse' rule_qos_policy: The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
1167
+ :param str traffic_control: Determines whether flows that match this data flow policy rule are permitted.
1168
+ """
1169
+ pulumi.set(__self__, "rule_name", rule_name)
1170
+ pulumi.set(__self__, "rule_precedence", rule_precedence)
1171
+ pulumi.set(__self__, "service_data_flow_templates", service_data_flow_templates)
1172
+ if rule_qos_policy is not None:
1173
+ pulumi.set(__self__, "rule_qos_policy", rule_qos_policy)
1174
+ if traffic_control is None:
1175
+ traffic_control = 'Enabled'
1176
+ if traffic_control is not None:
1177
+ pulumi.set(__self__, "traffic_control", traffic_control)
1178
+
1179
+ @property
1180
+ @pulumi.getter(name="ruleName")
1181
+ def rule_name(self) -> str:
1182
+ """
1183
+ The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
1184
+ """
1185
+ return pulumi.get(self, "rule_name")
1186
+
1187
+ @property
1188
+ @pulumi.getter(name="rulePrecedence")
1189
+ def rule_precedence(self) -> int:
1190
+ """
1191
+ A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
1192
+ """
1193
+ return pulumi.get(self, "rule_precedence")
1194
+
1195
+ @property
1196
+ @pulumi.getter(name="serviceDataFlowTemplates")
1197
+ def service_data_flow_templates(self) -> Sequence['outputs.ServiceDataFlowTemplateResponse']:
1198
+ """
1199
+ The set of data flow templates to use for this data flow policy rule.
1200
+ """
1201
+ return pulumi.get(self, "service_data_flow_templates")
1202
+
1203
+ @property
1204
+ @pulumi.getter(name="ruleQosPolicy")
1205
+ def rule_qos_policy(self) -> Optional['outputs.PccRuleQosPolicyResponse']:
1206
+ """
1207
+ The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
1208
+ """
1209
+ return pulumi.get(self, "rule_qos_policy")
1210
+
1211
+ @property
1212
+ @pulumi.getter(name="trafficControl")
1213
+ def traffic_control(self) -> Optional[str]:
1214
+ """
1215
+ Determines whether flows that match this data flow policy rule are permitted.
1216
+ """
1217
+ return pulumi.get(self, "traffic_control")
1218
+
1219
+
1220
+ @pulumi.output_type
1221
+ class PccRuleQosPolicyResponse(dict):
1222
+ """
1223
+ Data flow policy rule QoS policy
1224
+ """
1225
+ @staticmethod
1226
+ def __key_warning(key: str):
1227
+ suggest = None
1228
+ if key == "maximumBitRate":
1229
+ suggest = "maximum_bit_rate"
1230
+ elif key == "allocationAndRetentionPriorityLevel":
1231
+ suggest = "allocation_and_retention_priority_level"
1232
+ elif key == "fiveQi":
1233
+ suggest = "five_qi"
1234
+ elif key == "guaranteedBitRate":
1235
+ suggest = "guaranteed_bit_rate"
1236
+ elif key == "preemptionCapability":
1237
+ suggest = "preemption_capability"
1238
+ elif key == "preemptionVulnerability":
1239
+ suggest = "preemption_vulnerability"
1240
+
1241
+ if suggest:
1242
+ pulumi.log.warn(f"Key '{key}' not found in PccRuleQosPolicyResponse. Access the value via the '{suggest}' property getter instead.")
1243
+
1244
+ def __getitem__(self, key: str) -> Any:
1245
+ PccRuleQosPolicyResponse.__key_warning(key)
1246
+ return super().__getitem__(key)
1247
+
1248
+ def get(self, key: str, default = None) -> Any:
1249
+ PccRuleQosPolicyResponse.__key_warning(key)
1250
+ return super().get(key, default)
1251
+
1252
+ def __init__(__self__, *,
1253
+ maximum_bit_rate: 'outputs.AmbrResponse',
1254
+ allocation_and_retention_priority_level: Optional[int] = None,
1255
+ five_qi: Optional[int] = None,
1256
+ guaranteed_bit_rate: Optional['outputs.AmbrResponse'] = None,
1257
+ preemption_capability: Optional[str] = None,
1258
+ preemption_vulnerability: Optional[str] = None):
1259
+ """
1260
+ Data flow policy rule QoS policy
1261
+ :param 'AmbrResponse' maximum_bit_rate: The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
1262
+ :param int allocation_and_retention_priority_level: QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1263
+ :param int five_qi: 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
1264
+ :param 'AmbrResponse' guaranteed_bit_rate: The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.
1265
+ :param str preemption_capability: QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1266
+ :param str preemption_vulnerability: QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1267
+ """
1268
+ pulumi.set(__self__, "maximum_bit_rate", maximum_bit_rate)
1269
+ if allocation_and_retention_priority_level is None:
1270
+ allocation_and_retention_priority_level = 9
1271
+ if allocation_and_retention_priority_level is not None:
1272
+ pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
1273
+ if five_qi is None:
1274
+ five_qi = 9
1275
+ if five_qi is not None:
1276
+ pulumi.set(__self__, "five_qi", five_qi)
1277
+ if guaranteed_bit_rate is not None:
1278
+ pulumi.set(__self__, "guaranteed_bit_rate", guaranteed_bit_rate)
1279
+ if preemption_capability is None:
1280
+ preemption_capability = 'NotPreempt'
1281
+ if preemption_capability is not None:
1282
+ pulumi.set(__self__, "preemption_capability", preemption_capability)
1283
+ if preemption_vulnerability is None:
1284
+ preemption_vulnerability = 'Preemptable'
1285
+ if preemption_vulnerability is not None:
1286
+ pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
1287
+
1288
+ @property
1289
+ @pulumi.getter(name="maximumBitRate")
1290
+ def maximum_bit_rate(self) -> 'outputs.AmbrResponse':
1291
+ """
1292
+ The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
1293
+ """
1294
+ return pulumi.get(self, "maximum_bit_rate")
1295
+
1296
+ @property
1297
+ @pulumi.getter(name="allocationAndRetentionPriorityLevel")
1298
+ def allocation_and_retention_priority_level(self) -> Optional[int]:
1299
+ """
1300
+ QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1301
+ """
1302
+ return pulumi.get(self, "allocation_and_retention_priority_level")
1303
+
1304
+ @property
1305
+ @pulumi.getter(name="fiveQi")
1306
+ def five_qi(self) -> Optional[int]:
1307
+ """
1308
+ 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
1309
+ """
1310
+ return pulumi.get(self, "five_qi")
1311
+
1312
+ @property
1313
+ @pulumi.getter(name="guaranteedBitRate")
1314
+ def guaranteed_bit_rate(self) -> Optional['outputs.AmbrResponse']:
1315
+ """
1316
+ The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.
1317
+ """
1318
+ return pulumi.get(self, "guaranteed_bit_rate")
1319
+
1320
+ @property
1321
+ @pulumi.getter(name="preemptionCapability")
1322
+ def preemption_capability(self) -> Optional[str]:
1323
+ """
1324
+ QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1325
+ """
1326
+ return pulumi.get(self, "preemption_capability")
1327
+
1328
+ @property
1329
+ @pulumi.getter(name="preemptionVulnerability")
1330
+ def preemption_vulnerability(self) -> Optional[str]:
1331
+ """
1332
+ QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1333
+ """
1334
+ return pulumi.get(self, "preemption_vulnerability")
1335
+
1336
+
1337
+ @pulumi.output_type
1338
+ class PinholeTimeoutsResponse(dict):
1339
+ """
1340
+ Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
1341
+ """
1342
+ def __init__(__self__, *,
1343
+ icmp: Optional[int] = None,
1344
+ tcp: Optional[int] = None,
1345
+ udp: Optional[int] = None):
1346
+ """
1347
+ Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
1348
+ :param int icmp: Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 30 seconds.
1349
+ :param int tcp: Pinhole timeout for TCP pinholes in seconds. Default for TCP is 3 minutes.
1350
+ :param int udp: Pinhole timeout for UDP pinholes in seconds. Default for UDP is 30 seconds.
1351
+ """
1352
+ if icmp is None:
1353
+ icmp = 30
1354
+ if icmp is not None:
1355
+ pulumi.set(__self__, "icmp", icmp)
1356
+ if tcp is None:
1357
+ tcp = 180
1358
+ if tcp is not None:
1359
+ pulumi.set(__self__, "tcp", tcp)
1360
+ if udp is None:
1361
+ udp = 30
1362
+ if udp is not None:
1363
+ pulumi.set(__self__, "udp", udp)
1364
+
1365
+ @property
1366
+ @pulumi.getter
1367
+ def icmp(self) -> Optional[int]:
1368
+ """
1369
+ Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 30 seconds.
1370
+ """
1371
+ return pulumi.get(self, "icmp")
1372
+
1373
+ @property
1374
+ @pulumi.getter
1375
+ def tcp(self) -> Optional[int]:
1376
+ """
1377
+ Pinhole timeout for TCP pinholes in seconds. Default for TCP is 3 minutes.
1378
+ """
1379
+ return pulumi.get(self, "tcp")
1380
+
1381
+ @property
1382
+ @pulumi.getter
1383
+ def udp(self) -> Optional[int]:
1384
+ """
1385
+ Pinhole timeout for UDP pinholes in seconds. Default for UDP is 30 seconds.
1386
+ """
1387
+ return pulumi.get(self, "udp")
1388
+
1389
+
1390
+ @pulumi.output_type
1391
+ class PlatformConfigurationResponse(dict):
1392
+ """
1393
+ The platform where the packet core is deployed.
1394
+ """
1395
+ @staticmethod
1396
+ def __key_warning(key: str):
1397
+ suggest = None
1398
+ if key == "azureStackEdgeDevices":
1399
+ suggest = "azure_stack_edge_devices"
1400
+ elif key == "azureStackEdgeDevice":
1401
+ suggest = "azure_stack_edge_device"
1402
+ elif key == "azureStackHciCluster":
1403
+ suggest = "azure_stack_hci_cluster"
1404
+ elif key == "connectedCluster":
1405
+ suggest = "connected_cluster"
1406
+ elif key == "customLocation":
1407
+ suggest = "custom_location"
1408
+
1409
+ if suggest:
1410
+ pulumi.log.warn(f"Key '{key}' not found in PlatformConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1411
+
1412
+ def __getitem__(self, key: str) -> Any:
1413
+ PlatformConfigurationResponse.__key_warning(key)
1414
+ return super().__getitem__(key)
1415
+
1416
+ def get(self, key: str, default = None) -> Any:
1417
+ PlatformConfigurationResponse.__key_warning(key)
1418
+ return super().get(key, default)
1419
+
1420
+ def __init__(__self__, *,
1421
+ azure_stack_edge_devices: Sequence['outputs.AzureStackEdgeDeviceResourceIdResponse'],
1422
+ type: str,
1423
+ azure_stack_edge_device: Optional['outputs.AzureStackEdgeDeviceResourceIdResponse'] = None,
1424
+ azure_stack_hci_cluster: Optional['outputs.AzureStackHCIClusterResourceIdResponse'] = None,
1425
+ connected_cluster: Optional['outputs.ConnectedClusterResourceIdResponse'] = None,
1426
+ custom_location: Optional['outputs.CustomLocationResourceIdResponse'] = None):
1427
+ """
1428
+ The platform where the packet core is deployed.
1429
+ :param Sequence['AzureStackEdgeDeviceResourceIdResponse'] azure_stack_edge_devices: The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
1430
+ :param str type: The platform type where packet core is deployed.
1431
+ :param 'AzureStackEdgeDeviceResourceIdResponse' azure_stack_edge_device: The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
1432
+ :param 'AzureStackHCIClusterResourceIdResponse' azure_stack_hci_cluster: The Azure Stack HCI cluster where the packet core is deployed.
1433
+ :param 'ConnectedClusterResourceIdResponse' connected_cluster: Azure Arc connected cluster where the packet core is deployed.
1434
+ :param 'CustomLocationResourceIdResponse' custom_location: Azure Arc custom location where the packet core is deployed.
1435
+ """
1436
+ pulumi.set(__self__, "azure_stack_edge_devices", azure_stack_edge_devices)
1437
+ pulumi.set(__self__, "type", type)
1438
+ if azure_stack_edge_device is not None:
1439
+ pulumi.set(__self__, "azure_stack_edge_device", azure_stack_edge_device)
1440
+ if azure_stack_hci_cluster is not None:
1441
+ pulumi.set(__self__, "azure_stack_hci_cluster", azure_stack_hci_cluster)
1442
+ if connected_cluster is not None:
1443
+ pulumi.set(__self__, "connected_cluster", connected_cluster)
1444
+ if custom_location is not None:
1445
+ pulumi.set(__self__, "custom_location", custom_location)
1446
+
1447
+ @property
1448
+ @pulumi.getter(name="azureStackEdgeDevices")
1449
+ def azure_stack_edge_devices(self) -> Sequence['outputs.AzureStackEdgeDeviceResourceIdResponse']:
1450
+ """
1451
+ The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
1452
+ """
1453
+ return pulumi.get(self, "azure_stack_edge_devices")
1454
+
1455
+ @property
1456
+ @pulumi.getter
1457
+ def type(self) -> str:
1458
+ """
1459
+ The platform type where packet core is deployed.
1460
+ """
1461
+ return pulumi.get(self, "type")
1462
+
1463
+ @property
1464
+ @pulumi.getter(name="azureStackEdgeDevice")
1465
+ def azure_stack_edge_device(self) -> Optional['outputs.AzureStackEdgeDeviceResourceIdResponse']:
1466
+ """
1467
+ The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
1468
+ """
1469
+ return pulumi.get(self, "azure_stack_edge_device")
1470
+
1471
+ @property
1472
+ @pulumi.getter(name="azureStackHciCluster")
1473
+ def azure_stack_hci_cluster(self) -> Optional['outputs.AzureStackHCIClusterResourceIdResponse']:
1474
+ """
1475
+ The Azure Stack HCI cluster where the packet core is deployed.
1476
+ """
1477
+ return pulumi.get(self, "azure_stack_hci_cluster")
1478
+
1479
+ @property
1480
+ @pulumi.getter(name="connectedCluster")
1481
+ def connected_cluster(self) -> Optional['outputs.ConnectedClusterResourceIdResponse']:
1482
+ """
1483
+ Azure Arc connected cluster where the packet core is deployed.
1484
+ """
1485
+ return pulumi.get(self, "connected_cluster")
1486
+
1487
+ @property
1488
+ @pulumi.getter(name="customLocation")
1489
+ def custom_location(self) -> Optional['outputs.CustomLocationResourceIdResponse']:
1490
+ """
1491
+ Azure Arc custom location where the packet core is deployed.
1492
+ """
1493
+ return pulumi.get(self, "custom_location")
1494
+
1495
+
1496
+ @pulumi.output_type
1497
+ class PlmnIdResponse(dict):
1498
+ """
1499
+ Public land mobile network (PLMN) ID. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.
1500
+ """
1501
+ def __init__(__self__, *,
1502
+ mcc: str,
1503
+ mnc: str):
1504
+ """
1505
+ Public land mobile network (PLMN) ID. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.
1506
+ :param str mcc: Mobile country code (MCC).
1507
+ :param str mnc: Mobile network code (MNC).
1508
+ """
1509
+ pulumi.set(__self__, "mcc", mcc)
1510
+ pulumi.set(__self__, "mnc", mnc)
1511
+
1512
+ @property
1513
+ @pulumi.getter
1514
+ def mcc(self) -> str:
1515
+ """
1516
+ Mobile country code (MCC).
1517
+ """
1518
+ return pulumi.get(self, "mcc")
1519
+
1520
+ @property
1521
+ @pulumi.getter
1522
+ def mnc(self) -> str:
1523
+ """
1524
+ Mobile network code (MNC).
1525
+ """
1526
+ return pulumi.get(self, "mnc")
1527
+
1528
+
1529
+ @pulumi.output_type
1530
+ class PortRangeResponse(dict):
1531
+ """
1532
+ Range of port numbers to use as translated ports on each translated address.
1533
+ If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
1534
+ (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
1535
+ """
1536
+ @staticmethod
1537
+ def __key_warning(key: str):
1538
+ suggest = None
1539
+ if key == "maxPort":
1540
+ suggest = "max_port"
1541
+ elif key == "minPort":
1542
+ suggest = "min_port"
1543
+
1544
+ if suggest:
1545
+ pulumi.log.warn(f"Key '{key}' not found in PortRangeResponse. Access the value via the '{suggest}' property getter instead.")
1546
+
1547
+ def __getitem__(self, key: str) -> Any:
1548
+ PortRangeResponse.__key_warning(key)
1549
+ return super().__getitem__(key)
1550
+
1551
+ def get(self, key: str, default = None) -> Any:
1552
+ PortRangeResponse.__key_warning(key)
1553
+ return super().get(key, default)
1554
+
1555
+ def __init__(__self__, *,
1556
+ max_port: Optional[int] = None,
1557
+ min_port: Optional[int] = None):
1558
+ """
1559
+ Range of port numbers to use as translated ports on each translated address.
1560
+ If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
1561
+ (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
1562
+ :param int max_port: The maximum port number
1563
+ :param int min_port: The minimum port number
1564
+ """
1565
+ if max_port is None:
1566
+ max_port = 49999
1567
+ if max_port is not None:
1568
+ pulumi.set(__self__, "max_port", max_port)
1569
+ if min_port is None:
1570
+ min_port = 1024
1571
+ if min_port is not None:
1572
+ pulumi.set(__self__, "min_port", min_port)
1573
+
1574
+ @property
1575
+ @pulumi.getter(name="maxPort")
1576
+ def max_port(self) -> Optional[int]:
1577
+ """
1578
+ The maximum port number
1579
+ """
1580
+ return pulumi.get(self, "max_port")
1581
+
1582
+ @property
1583
+ @pulumi.getter(name="minPort")
1584
+ def min_port(self) -> Optional[int]:
1585
+ """
1586
+ The minimum port number
1587
+ """
1588
+ return pulumi.get(self, "min_port")
1589
+
1590
+
1591
+ @pulumi.output_type
1592
+ class PortReuseHoldTimesResponse(dict):
1593
+ """
1594
+ The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.
1595
+ """
1596
+ def __init__(__self__, *,
1597
+ tcp: Optional[int] = None,
1598
+ udp: Optional[int] = None):
1599
+ """
1600
+ The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.
1601
+ :param int tcp: Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.
1602
+ :param int udp: Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.
1603
+ """
1604
+ if tcp is None:
1605
+ tcp = 120
1606
+ if tcp is not None:
1607
+ pulumi.set(__self__, "tcp", tcp)
1608
+ if udp is None:
1609
+ udp = 60
1610
+ if udp is not None:
1611
+ pulumi.set(__self__, "udp", udp)
1612
+
1613
+ @property
1614
+ @pulumi.getter
1615
+ def tcp(self) -> Optional[int]:
1616
+ """
1617
+ Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.
1618
+ """
1619
+ return pulumi.get(self, "tcp")
1620
+
1621
+ @property
1622
+ @pulumi.getter
1623
+ def udp(self) -> Optional[int]:
1624
+ """
1625
+ Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.
1626
+ """
1627
+ return pulumi.get(self, "udp")
1628
+
1629
+
1630
+ @pulumi.output_type
1631
+ class PublicLandMobileNetworkResponse(dict):
1632
+ """
1633
+ Configuration relating to a particular PLMN
1634
+ """
1635
+ @staticmethod
1636
+ def __key_warning(key: str):
1637
+ suggest = None
1638
+ if key == "homeNetworkPublicKeys":
1639
+ suggest = "home_network_public_keys"
1640
+
1641
+ if suggest:
1642
+ pulumi.log.warn(f"Key '{key}' not found in PublicLandMobileNetworkResponse. Access the value via the '{suggest}' property getter instead.")
1643
+
1644
+ def __getitem__(self, key: str) -> Any:
1645
+ PublicLandMobileNetworkResponse.__key_warning(key)
1646
+ return super().__getitem__(key)
1647
+
1648
+ def get(self, key: str, default = None) -> Any:
1649
+ PublicLandMobileNetworkResponse.__key_warning(key)
1650
+ return super().get(key, default)
1651
+
1652
+ def __init__(__self__, *,
1653
+ mcc: str,
1654
+ mnc: str,
1655
+ home_network_public_keys: Optional['outputs.PublicLandMobileNetworkResponseHomeNetworkPublicKeys'] = None):
1656
+ """
1657
+ Configuration relating to a particular PLMN
1658
+ :param str mcc: Mobile country code (MCC).
1659
+ :param str mnc: Mobile network code (MNC).
1660
+ :param 'PublicLandMobileNetworkResponseHomeNetworkPublicKeys' home_network_public_keys: Configuration relating to SUPI concealment.
1661
+ """
1662
+ pulumi.set(__self__, "mcc", mcc)
1663
+ pulumi.set(__self__, "mnc", mnc)
1664
+ if home_network_public_keys is not None:
1665
+ pulumi.set(__self__, "home_network_public_keys", home_network_public_keys)
1666
+
1667
+ @property
1668
+ @pulumi.getter
1669
+ def mcc(self) -> str:
1670
+ """
1671
+ Mobile country code (MCC).
1672
+ """
1673
+ return pulumi.get(self, "mcc")
1674
+
1675
+ @property
1676
+ @pulumi.getter
1677
+ def mnc(self) -> str:
1678
+ """
1679
+ Mobile network code (MNC).
1680
+ """
1681
+ return pulumi.get(self, "mnc")
1682
+
1683
+ @property
1684
+ @pulumi.getter(name="homeNetworkPublicKeys")
1685
+ def home_network_public_keys(self) -> Optional['outputs.PublicLandMobileNetworkResponseHomeNetworkPublicKeys']:
1686
+ """
1687
+ Configuration relating to SUPI concealment.
1688
+ """
1689
+ return pulumi.get(self, "home_network_public_keys")
1690
+
1691
+
1692
+ @pulumi.output_type
1693
+ class PublicLandMobileNetworkResponseHomeNetworkPublicKeys(dict):
1694
+ """
1695
+ Configuration relating to SUPI concealment.
1696
+ """
1697
+ @staticmethod
1698
+ def __key_warning(key: str):
1699
+ suggest = None
1700
+ if key == "profileA":
1701
+ suggest = "profile_a"
1702
+ elif key == "profileB":
1703
+ suggest = "profile_b"
1704
+
1705
+ if suggest:
1706
+ pulumi.log.warn(f"Key '{key}' not found in PublicLandMobileNetworkResponseHomeNetworkPublicKeys. Access the value via the '{suggest}' property getter instead.")
1707
+
1708
+ def __getitem__(self, key: str) -> Any:
1709
+ PublicLandMobileNetworkResponseHomeNetworkPublicKeys.__key_warning(key)
1710
+ return super().__getitem__(key)
1711
+
1712
+ def get(self, key: str, default = None) -> Any:
1713
+ PublicLandMobileNetworkResponseHomeNetworkPublicKeys.__key_warning(key)
1714
+ return super().get(key, default)
1715
+
1716
+ def __init__(__self__, *,
1717
+ profile_a: Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']] = None,
1718
+ profile_b: Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']] = None):
1719
+ """
1720
+ Configuration relating to SUPI concealment.
1721
+ :param Sequence['HomeNetworkPublicKeyResponse'] profile_a: This provides a mapping to identify which public key has been used for SUPI concealment using the Profile A Protection Scheme.
1722
+ :param Sequence['HomeNetworkPublicKeyResponse'] profile_b: This provides a mapping to identify which public key has been used for SUPI concealment using the Profile B Protection Scheme.
1723
+ """
1724
+ if profile_a is not None:
1725
+ pulumi.set(__self__, "profile_a", profile_a)
1726
+ if profile_b is not None:
1727
+ pulumi.set(__self__, "profile_b", profile_b)
1728
+
1729
+ @property
1730
+ @pulumi.getter(name="profileA")
1731
+ def profile_a(self) -> Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']]:
1732
+ """
1733
+ This provides a mapping to identify which public key has been used for SUPI concealment using the Profile A Protection Scheme.
1734
+ """
1735
+ return pulumi.get(self, "profile_a")
1736
+
1737
+ @property
1738
+ @pulumi.getter(name="profileB")
1739
+ def profile_b(self) -> Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']]:
1740
+ """
1741
+ This provides a mapping to identify which public key has been used for SUPI concealment using the Profile B Protection Scheme.
1742
+ """
1743
+ return pulumi.get(self, "profile_b")
1744
+
1745
+
1746
+ @pulumi.output_type
1747
+ class QosPolicyResponse(dict):
1748
+ """
1749
+ QoS policy
1750
+ """
1751
+ @staticmethod
1752
+ def __key_warning(key: str):
1753
+ suggest = None
1754
+ if key == "maximumBitRate":
1755
+ suggest = "maximum_bit_rate"
1756
+ elif key == "allocationAndRetentionPriorityLevel":
1757
+ suggest = "allocation_and_retention_priority_level"
1758
+ elif key == "fiveQi":
1759
+ suggest = "five_qi"
1760
+ elif key == "preemptionCapability":
1761
+ suggest = "preemption_capability"
1762
+ elif key == "preemptionVulnerability":
1763
+ suggest = "preemption_vulnerability"
1764
+
1765
+ if suggest:
1766
+ pulumi.log.warn(f"Key '{key}' not found in QosPolicyResponse. Access the value via the '{suggest}' property getter instead.")
1767
+
1768
+ def __getitem__(self, key: str) -> Any:
1769
+ QosPolicyResponse.__key_warning(key)
1770
+ return super().__getitem__(key)
1771
+
1772
+ def get(self, key: str, default = None) -> Any:
1773
+ QosPolicyResponse.__key_warning(key)
1774
+ return super().get(key, default)
1775
+
1776
+ def __init__(__self__, *,
1777
+ maximum_bit_rate: 'outputs.AmbrResponse',
1778
+ allocation_and_retention_priority_level: Optional[int] = None,
1779
+ five_qi: Optional[int] = None,
1780
+ preemption_capability: Optional[str] = None,
1781
+ preemption_vulnerability: Optional[str] = None):
1782
+ """
1783
+ QoS policy
1784
+ :param 'AmbrResponse' maximum_bit_rate: The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
1785
+ :param int allocation_and_retention_priority_level: QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1786
+ :param int five_qi: 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
1787
+ :param str preemption_capability: QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1788
+ :param str preemption_vulnerability: QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1789
+ """
1790
+ pulumi.set(__self__, "maximum_bit_rate", maximum_bit_rate)
1791
+ if allocation_and_retention_priority_level is None:
1792
+ allocation_and_retention_priority_level = 9
1793
+ if allocation_and_retention_priority_level is not None:
1794
+ pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
1795
+ if five_qi is None:
1796
+ five_qi = 9
1797
+ if five_qi is not None:
1798
+ pulumi.set(__self__, "five_qi", five_qi)
1799
+ if preemption_capability is None:
1800
+ preemption_capability = 'NotPreempt'
1801
+ if preemption_capability is not None:
1802
+ pulumi.set(__self__, "preemption_capability", preemption_capability)
1803
+ if preemption_vulnerability is None:
1804
+ preemption_vulnerability = 'Preemptable'
1805
+ if preemption_vulnerability is not None:
1806
+ pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
1807
+
1808
+ @property
1809
+ @pulumi.getter(name="maximumBitRate")
1810
+ def maximum_bit_rate(self) -> 'outputs.AmbrResponse':
1811
+ """
1812
+ The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
1813
+ """
1814
+ return pulumi.get(self, "maximum_bit_rate")
1815
+
1816
+ @property
1817
+ @pulumi.getter(name="allocationAndRetentionPriorityLevel")
1818
+ def allocation_and_retention_priority_level(self) -> Optional[int]:
1819
+ """
1820
+ QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1821
+ """
1822
+ return pulumi.get(self, "allocation_and_retention_priority_level")
1823
+
1824
+ @property
1825
+ @pulumi.getter(name="fiveQi")
1826
+ def five_qi(self) -> Optional[int]:
1827
+ """
1828
+ 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
1829
+ """
1830
+ return pulumi.get(self, "five_qi")
1831
+
1832
+ @property
1833
+ @pulumi.getter(name="preemptionCapability")
1834
+ def preemption_capability(self) -> Optional[str]:
1835
+ """
1836
+ QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1837
+ """
1838
+ return pulumi.get(self, "preemption_capability")
1839
+
1840
+ @property
1841
+ @pulumi.getter(name="preemptionVulnerability")
1842
+ def preemption_vulnerability(self) -> Optional[str]:
1843
+ """
1844
+ QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
1845
+ """
1846
+ return pulumi.get(self, "preemption_vulnerability")
1847
+
1848
+
1849
+ @pulumi.output_type
1850
+ class ServiceDataFlowTemplateResponse(dict):
1851
+ """
1852
+ Data flow template
1853
+ """
1854
+ @staticmethod
1855
+ def __key_warning(key: str):
1856
+ suggest = None
1857
+ if key == "remoteIpList":
1858
+ suggest = "remote_ip_list"
1859
+ elif key == "templateName":
1860
+ suggest = "template_name"
1861
+
1862
+ if suggest:
1863
+ pulumi.log.warn(f"Key '{key}' not found in ServiceDataFlowTemplateResponse. Access the value via the '{suggest}' property getter instead.")
1864
+
1865
+ def __getitem__(self, key: str) -> Any:
1866
+ ServiceDataFlowTemplateResponse.__key_warning(key)
1867
+ return super().__getitem__(key)
1868
+
1869
+ def get(self, key: str, default = None) -> Any:
1870
+ ServiceDataFlowTemplateResponse.__key_warning(key)
1871
+ return super().get(key, default)
1872
+
1873
+ def __init__(__self__, *,
1874
+ direction: str,
1875
+ protocol: Sequence[str],
1876
+ remote_ip_list: Sequence[str],
1877
+ template_name: str,
1878
+ ports: Optional[Sequence[str]] = None):
1879
+ """
1880
+ Data flow template
1881
+ :param str direction: The direction of this flow.
1882
+ :param Sequence[str] protocol: A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.
1883
+ :param Sequence[str] remote_ip_list: The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
1884
+ :param str template_name: The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.
1885
+ :param Sequence[str] ports: The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as <FirstPort>-<LastPort>. For example: [`8080`, `8082-8085`].
1886
+ """
1887
+ pulumi.set(__self__, "direction", direction)
1888
+ pulumi.set(__self__, "protocol", protocol)
1889
+ pulumi.set(__self__, "remote_ip_list", remote_ip_list)
1890
+ pulumi.set(__self__, "template_name", template_name)
1891
+ if ports is not None:
1892
+ pulumi.set(__self__, "ports", ports)
1893
+
1894
+ @property
1895
+ @pulumi.getter
1896
+ def direction(self) -> str:
1897
+ """
1898
+ The direction of this flow.
1899
+ """
1900
+ return pulumi.get(self, "direction")
1901
+
1902
+ @property
1903
+ @pulumi.getter
1904
+ def protocol(self) -> Sequence[str]:
1905
+ """
1906
+ A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.
1907
+ """
1908
+ return pulumi.get(self, "protocol")
1909
+
1910
+ @property
1911
+ @pulumi.getter(name="remoteIpList")
1912
+ def remote_ip_list(self) -> Sequence[str]:
1913
+ """
1914
+ The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
1915
+ """
1916
+ return pulumi.get(self, "remote_ip_list")
1917
+
1918
+ @property
1919
+ @pulumi.getter(name="templateName")
1920
+ def template_name(self) -> str:
1921
+ """
1922
+ The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.
1923
+ """
1924
+ return pulumi.get(self, "template_name")
1925
+
1926
+ @property
1927
+ @pulumi.getter
1928
+ def ports(self) -> Optional[Sequence[str]]:
1929
+ """
1930
+ The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as <FirstPort>-<LastPort>. For example: [`8080`, `8082-8085`].
1931
+ """
1932
+ return pulumi.get(self, "ports")
1933
+
1934
+
1935
+ @pulumi.output_type
1936
+ class ServiceResourceIdResponse(dict):
1937
+ """
1938
+ Reference to a service resource.
1939
+ """
1940
+ def __init__(__self__, *,
1941
+ id: str):
1942
+ """
1943
+ Reference to a service resource.
1944
+ :param str id: Service resource ID.
1945
+ """
1946
+ pulumi.set(__self__, "id", id)
1947
+
1948
+ @property
1949
+ @pulumi.getter
1950
+ def id(self) -> str:
1951
+ """
1952
+ Service resource ID.
1953
+ """
1954
+ return pulumi.get(self, "id")
1955
+
1956
+
1957
+ @pulumi.output_type
1958
+ class SignalingConfigurationResponse(dict):
1959
+ """
1960
+ Signaling configuration for the packet core.
1961
+ """
1962
+ @staticmethod
1963
+ def __key_warning(key: str):
1964
+ suggest = None
1965
+ if key == "nasReroute":
1966
+ suggest = "nas_reroute"
1967
+
1968
+ if suggest:
1969
+ pulumi.log.warn(f"Key '{key}' not found in SignalingConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1970
+
1971
+ def __getitem__(self, key: str) -> Any:
1972
+ SignalingConfigurationResponse.__key_warning(key)
1973
+ return super().__getitem__(key)
1974
+
1975
+ def get(self, key: str, default = None) -> Any:
1976
+ SignalingConfigurationResponse.__key_warning(key)
1977
+ return super().get(key, default)
1978
+
1979
+ def __init__(__self__, *,
1980
+ nas_reroute: Optional['outputs.NASRerouteConfigurationResponse'] = None):
1981
+ """
1982
+ Signaling configuration for the packet core.
1983
+ :param 'NASRerouteConfigurationResponse' nas_reroute: Configuration enabling 4G NAS reroute.
1984
+ """
1985
+ if nas_reroute is not None:
1986
+ pulumi.set(__self__, "nas_reroute", nas_reroute)
1987
+
1988
+ @property
1989
+ @pulumi.getter(name="nasReroute")
1990
+ def nas_reroute(self) -> Optional['outputs.NASRerouteConfigurationResponse']:
1991
+ """
1992
+ Configuration enabling 4G NAS reroute.
1993
+ """
1994
+ return pulumi.get(self, "nas_reroute")
1995
+
1996
+
1997
+ @pulumi.output_type
1998
+ class SimPolicyResourceIdResponse(dict):
1999
+ """
2000
+ Reference to a SIM policy resource.
2001
+ """
2002
+ def __init__(__self__, *,
2003
+ id: str):
2004
+ """
2005
+ Reference to a SIM policy resource.
2006
+ :param str id: SIM policy resource ID.
2007
+ """
2008
+ pulumi.set(__self__, "id", id)
2009
+
2010
+ @property
2011
+ @pulumi.getter
2012
+ def id(self) -> str:
2013
+ """
2014
+ SIM policy resource ID.
2015
+ """
2016
+ return pulumi.get(self, "id")
2017
+
2018
+
2019
+ @pulumi.output_type
2020
+ class SimStaticIpPropertiesResponse(dict):
2021
+ """
2022
+ Static IP configuration for a SIM, scoped to a particular attached data network and slice.
2023
+ """
2024
+ @staticmethod
2025
+ def __key_warning(key: str):
2026
+ suggest = None
2027
+ if key == "attachedDataNetwork":
2028
+ suggest = "attached_data_network"
2029
+ elif key == "staticIp":
2030
+ suggest = "static_ip"
2031
+
2032
+ if suggest:
2033
+ pulumi.log.warn(f"Key '{key}' not found in SimStaticIpPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2034
+
2035
+ def __getitem__(self, key: str) -> Any:
2036
+ SimStaticIpPropertiesResponse.__key_warning(key)
2037
+ return super().__getitem__(key)
2038
+
2039
+ def get(self, key: str, default = None) -> Any:
2040
+ SimStaticIpPropertiesResponse.__key_warning(key)
2041
+ return super().get(key, default)
2042
+
2043
+ def __init__(__self__, *,
2044
+ attached_data_network: Optional['outputs.AttachedDataNetworkResourceIdResponse'] = None,
2045
+ slice: Optional['outputs.SliceResourceIdResponse'] = None,
2046
+ static_ip: Optional['outputs.SimStaticIpPropertiesResponseStaticIp'] = None):
2047
+ """
2048
+ Static IP configuration for a SIM, scoped to a particular attached data network and slice.
2049
+ :param 'AttachedDataNetworkResourceIdResponse' attached_data_network: The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The attached data network must be in the same location as the SIM.
2050
+ :param 'SliceResourceIdResponse' slice: The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The slice must be in the same location as the SIM.
2051
+ :param 'SimStaticIpPropertiesResponseStaticIp' static_ip: The static IP configuration for the SIM to use at the defined network scope.
2052
+ """
2053
+ if attached_data_network is not None:
2054
+ pulumi.set(__self__, "attached_data_network", attached_data_network)
2055
+ if slice is not None:
2056
+ pulumi.set(__self__, "slice", slice)
2057
+ if static_ip is not None:
2058
+ pulumi.set(__self__, "static_ip", static_ip)
2059
+
2060
+ @property
2061
+ @pulumi.getter(name="attachedDataNetwork")
2062
+ def attached_data_network(self) -> Optional['outputs.AttachedDataNetworkResourceIdResponse']:
2063
+ """
2064
+ The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The attached data network must be in the same location as the SIM.
2065
+ """
2066
+ return pulumi.get(self, "attached_data_network")
2067
+
2068
+ @property
2069
+ @pulumi.getter
2070
+ def slice(self) -> Optional['outputs.SliceResourceIdResponse']:
2071
+ """
2072
+ The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The slice must be in the same location as the SIM.
2073
+ """
2074
+ return pulumi.get(self, "slice")
2075
+
2076
+ @property
2077
+ @pulumi.getter(name="staticIp")
2078
+ def static_ip(self) -> Optional['outputs.SimStaticIpPropertiesResponseStaticIp']:
2079
+ """
2080
+ The static IP configuration for the SIM to use at the defined network scope.
2081
+ """
2082
+ return pulumi.get(self, "static_ip")
2083
+
2084
+
2085
+ @pulumi.output_type
2086
+ class SimStaticIpPropertiesResponseStaticIp(dict):
2087
+ """
2088
+ The static IP configuration for the SIM to use at the defined network scope.
2089
+ """
2090
+ @staticmethod
2091
+ def __key_warning(key: str):
2092
+ suggest = None
2093
+ if key == "ipv4Address":
2094
+ suggest = "ipv4_address"
2095
+
2096
+ if suggest:
2097
+ pulumi.log.warn(f"Key '{key}' not found in SimStaticIpPropertiesResponseStaticIp. Access the value via the '{suggest}' property getter instead.")
2098
+
2099
+ def __getitem__(self, key: str) -> Any:
2100
+ SimStaticIpPropertiesResponseStaticIp.__key_warning(key)
2101
+ return super().__getitem__(key)
2102
+
2103
+ def get(self, key: str, default = None) -> Any:
2104
+ SimStaticIpPropertiesResponseStaticIp.__key_warning(key)
2105
+ return super().get(key, default)
2106
+
2107
+ def __init__(__self__, *,
2108
+ ipv4_address: Optional[str] = None):
2109
+ """
2110
+ The static IP configuration for the SIM to use at the defined network scope.
2111
+ :param str ipv4_address: The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.
2112
+ """
2113
+ if ipv4_address is not None:
2114
+ pulumi.set(__self__, "ipv4_address", ipv4_address)
2115
+
2116
+ @property
2117
+ @pulumi.getter(name="ipv4Address")
2118
+ def ipv4_address(self) -> Optional[str]:
2119
+ """
2120
+ The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.
2121
+ """
2122
+ return pulumi.get(self, "ipv4_address")
2123
+
2124
+
2125
+ @pulumi.output_type
2126
+ class SiteResourceIdResponse(dict):
2127
+ """
2128
+ Reference to a site resource.
2129
+ """
2130
+ def __init__(__self__, *,
2131
+ id: str):
2132
+ """
2133
+ Reference to a site resource.
2134
+ :param str id: Site resource ID.
2135
+ """
2136
+ pulumi.set(__self__, "id", id)
2137
+
2138
+ @property
2139
+ @pulumi.getter
2140
+ def id(self) -> str:
2141
+ """
2142
+ Site resource ID.
2143
+ """
2144
+ return pulumi.get(self, "id")
2145
+
2146
+
2147
+ @pulumi.output_type
2148
+ class SliceConfigurationResponse(dict):
2149
+ """
2150
+ Per-slice settings
2151
+ """
2152
+ @staticmethod
2153
+ def __key_warning(key: str):
2154
+ suggest = None
2155
+ if key == "dataNetworkConfigurations":
2156
+ suggest = "data_network_configurations"
2157
+ elif key == "defaultDataNetwork":
2158
+ suggest = "default_data_network"
2159
+
2160
+ if suggest:
2161
+ pulumi.log.warn(f"Key '{key}' not found in SliceConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
2162
+
2163
+ def __getitem__(self, key: str) -> Any:
2164
+ SliceConfigurationResponse.__key_warning(key)
2165
+ return super().__getitem__(key)
2166
+
2167
+ def get(self, key: str, default = None) -> Any:
2168
+ SliceConfigurationResponse.__key_warning(key)
2169
+ return super().get(key, default)
2170
+
2171
+ def __init__(__self__, *,
2172
+ data_network_configurations: Sequence['outputs.DataNetworkConfigurationResponse'],
2173
+ default_data_network: 'outputs.DataNetworkResourceIdResponse',
2174
+ slice: 'outputs.SliceResourceIdResponse'):
2175
+ """
2176
+ Per-slice settings
2177
+ :param Sequence['DataNetworkConfigurationResponse'] data_network_configurations: The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
2178
+ :param 'DataNetworkResourceIdResponse' default_data_network: The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map. The data network must be in the same location as the SIM policy.
2179
+ :param 'SliceResourceIdResponse' slice: A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
2180
+ """
2181
+ pulumi.set(__self__, "data_network_configurations", data_network_configurations)
2182
+ pulumi.set(__self__, "default_data_network", default_data_network)
2183
+ pulumi.set(__self__, "slice", slice)
2184
+
2185
+ @property
2186
+ @pulumi.getter(name="dataNetworkConfigurations")
2187
+ def data_network_configurations(self) -> Sequence['outputs.DataNetworkConfigurationResponse']:
2188
+ """
2189
+ The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
2190
+ """
2191
+ return pulumi.get(self, "data_network_configurations")
2192
+
2193
+ @property
2194
+ @pulumi.getter(name="defaultDataNetwork")
2195
+ def default_data_network(self) -> 'outputs.DataNetworkResourceIdResponse':
2196
+ """
2197
+ The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map. The data network must be in the same location as the SIM policy.
2198
+ """
2199
+ return pulumi.get(self, "default_data_network")
2200
+
2201
+ @property
2202
+ @pulumi.getter
2203
+ def slice(self) -> 'outputs.SliceResourceIdResponse':
2204
+ """
2205
+ A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
2206
+ """
2207
+ return pulumi.get(self, "slice")
2208
+
2209
+
2210
+ @pulumi.output_type
2211
+ class SliceResourceIdResponse(dict):
2212
+ """
2213
+ Reference to a slice resource.
2214
+ """
2215
+ def __init__(__self__, *,
2216
+ id: str):
2217
+ """
2218
+ Reference to a slice resource.
2219
+ :param str id: Slice resource ID.
2220
+ """
2221
+ pulumi.set(__self__, "id", id)
2222
+
2223
+ @property
2224
+ @pulumi.getter
2225
+ def id(self) -> str:
2226
+ """
2227
+ Slice resource ID.
2228
+ """
2229
+ return pulumi.get(self, "id")
2230
+
2231
+
2232
+ @pulumi.output_type
2233
+ class SnssaiResponse(dict):
2234
+ """
2235
+ Single-network slice selection assistance information (S-NSSAI).
2236
+ """
2237
+ def __init__(__self__, *,
2238
+ sst: int,
2239
+ sd: Optional[str] = None):
2240
+ """
2241
+ Single-network slice selection assistance information (S-NSSAI).
2242
+ :param int sst: Slice/service type (SST).
2243
+ :param str sd: Slice differentiator (SD).
2244
+ """
2245
+ pulumi.set(__self__, "sst", sst)
2246
+ if sd is not None:
2247
+ pulumi.set(__self__, "sd", sd)
2248
+
2249
+ @property
2250
+ @pulumi.getter
2251
+ def sst(self) -> int:
2252
+ """
2253
+ Slice/service type (SST).
2254
+ """
2255
+ return pulumi.get(self, "sst")
2256
+
2257
+ @property
2258
+ @pulumi.getter
2259
+ def sd(self) -> Optional[str]:
2260
+ """
2261
+ Slice differentiator (SD).
2262
+ """
2263
+ return pulumi.get(self, "sd")
2264
+
2265
+
2266
+ @pulumi.output_type
2267
+ class SubResourceResponse(dict):
2268
+ """
2269
+ Reference to another sub resource.
2270
+ """
2271
+ def __init__(__self__, *,
2272
+ id: str):
2273
+ """
2274
+ Reference to another sub resource.
2275
+ :param str id: Resource ID.
2276
+ """
2277
+ pulumi.set(__self__, "id", id)
2278
+
2279
+ @property
2280
+ @pulumi.getter
2281
+ def id(self) -> str:
2282
+ """
2283
+ Resource ID.
2284
+ """
2285
+ return pulumi.get(self, "id")
2286
+
2287
+
2288
+ @pulumi.output_type
2289
+ class SystemDataResponse(dict):
2290
+ """
2291
+ Metadata pertaining to creation and last modification of the resource.
2292
+ """
2293
+ @staticmethod
2294
+ def __key_warning(key: str):
2295
+ suggest = None
2296
+ if key == "createdAt":
2297
+ suggest = "created_at"
2298
+ elif key == "createdBy":
2299
+ suggest = "created_by"
2300
+ elif key == "createdByType":
2301
+ suggest = "created_by_type"
2302
+ elif key == "lastModifiedAt":
2303
+ suggest = "last_modified_at"
2304
+ elif key == "lastModifiedBy":
2305
+ suggest = "last_modified_by"
2306
+ elif key == "lastModifiedByType":
2307
+ suggest = "last_modified_by_type"
2308
+
2309
+ if suggest:
2310
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
2311
+
2312
+ def __getitem__(self, key: str) -> Any:
2313
+ SystemDataResponse.__key_warning(key)
2314
+ return super().__getitem__(key)
2315
+
2316
+ def get(self, key: str, default = None) -> Any:
2317
+ SystemDataResponse.__key_warning(key)
2318
+ return super().get(key, default)
2319
+
2320
+ def __init__(__self__, *,
2321
+ created_at: Optional[str] = None,
2322
+ created_by: Optional[str] = None,
2323
+ created_by_type: Optional[str] = None,
2324
+ last_modified_at: Optional[str] = None,
2325
+ last_modified_by: Optional[str] = None,
2326
+ last_modified_by_type: Optional[str] = None):
2327
+ """
2328
+ Metadata pertaining to creation and last modification of the resource.
2329
+ :param str created_at: The timestamp of resource creation (UTC).
2330
+ :param str created_by: The identity that created the resource.
2331
+ :param str created_by_type: The type of identity that created the resource.
2332
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
2333
+ :param str last_modified_by: The identity that last modified the resource.
2334
+ :param str last_modified_by_type: The type of identity that last modified the resource.
2335
+ """
2336
+ if created_at is not None:
2337
+ pulumi.set(__self__, "created_at", created_at)
2338
+ if created_by is not None:
2339
+ pulumi.set(__self__, "created_by", created_by)
2340
+ if created_by_type is not None:
2341
+ pulumi.set(__self__, "created_by_type", created_by_type)
2342
+ if last_modified_at is not None:
2343
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
2344
+ if last_modified_by is not None:
2345
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
2346
+ if last_modified_by_type is not None:
2347
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
2348
+
2349
+ @property
2350
+ @pulumi.getter(name="createdAt")
2351
+ def created_at(self) -> Optional[str]:
2352
+ """
2353
+ The timestamp of resource creation (UTC).
2354
+ """
2355
+ return pulumi.get(self, "created_at")
2356
+
2357
+ @property
2358
+ @pulumi.getter(name="createdBy")
2359
+ def created_by(self) -> Optional[str]:
2360
+ """
2361
+ The identity that created the resource.
2362
+ """
2363
+ return pulumi.get(self, "created_by")
2364
+
2365
+ @property
2366
+ @pulumi.getter(name="createdByType")
2367
+ def created_by_type(self) -> Optional[str]:
2368
+ """
2369
+ The type of identity that created the resource.
2370
+ """
2371
+ return pulumi.get(self, "created_by_type")
2372
+
2373
+ @property
2374
+ @pulumi.getter(name="lastModifiedAt")
2375
+ def last_modified_at(self) -> Optional[str]:
2376
+ """
2377
+ The timestamp of resource last modification (UTC)
2378
+ """
2379
+ return pulumi.get(self, "last_modified_at")
2380
+
2381
+ @property
2382
+ @pulumi.getter(name="lastModifiedBy")
2383
+ def last_modified_by(self) -> Optional[str]:
2384
+ """
2385
+ The identity that last modified the resource.
2386
+ """
2387
+ return pulumi.get(self, "last_modified_by")
2388
+
2389
+ @property
2390
+ @pulumi.getter(name="lastModifiedByType")
2391
+ def last_modified_by_type(self) -> Optional[str]:
2392
+ """
2393
+ The type of identity that last modified the resource.
2394
+ """
2395
+ return pulumi.get(self, "last_modified_by_type")
2396
+
2397
+
2398
+ @pulumi.output_type
2399
+ class UserAssignedIdentityResponse(dict):
2400
+ """
2401
+ User assigned identity properties
2402
+ """
2403
+ @staticmethod
2404
+ def __key_warning(key: str):
2405
+ suggest = None
2406
+ if key == "clientId":
2407
+ suggest = "client_id"
2408
+ elif key == "principalId":
2409
+ suggest = "principal_id"
2410
+
2411
+ if suggest:
2412
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
2413
+
2414
+ def __getitem__(self, key: str) -> Any:
2415
+ UserAssignedIdentityResponse.__key_warning(key)
2416
+ return super().__getitem__(key)
2417
+
2418
+ def get(self, key: str, default = None) -> Any:
2419
+ UserAssignedIdentityResponse.__key_warning(key)
2420
+ return super().get(key, default)
2421
+
2422
+ def __init__(__self__, *,
2423
+ client_id: str,
2424
+ principal_id: str):
2425
+ """
2426
+ User assigned identity properties
2427
+ :param str client_id: The client ID of the assigned identity.
2428
+ :param str principal_id: The principal ID of the assigned identity.
2429
+ """
2430
+ pulumi.set(__self__, "client_id", client_id)
2431
+ pulumi.set(__self__, "principal_id", principal_id)
2432
+
2433
+ @property
2434
+ @pulumi.getter(name="clientId")
2435
+ def client_id(self) -> str:
2436
+ """
2437
+ The client ID of the assigned identity.
2438
+ """
2439
+ return pulumi.get(self, "client_id")
2440
+
2441
+ @property
2442
+ @pulumi.getter(name="principalId")
2443
+ def principal_id(self) -> str:
2444
+ """
2445
+ The principal ID of the assigned identity.
2446
+ """
2447
+ return pulumi.get(self, "principal_id")
2448
+
2449
+