pulumi-azure-native 2.47.1__py3-none-any.whl → 2.48.0__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 (295) hide show
  1. pulumi_azure_native/__init__.py +91 -2
  2. pulumi_azure_native/billing/__init__.py +11 -0
  3. pulumi_azure_native/billing/_enums.py +71 -0
  4. pulumi_azure_native/billing/_inputs.py +1274 -0
  5. pulumi_azure_native/billing/associated_tenant.py +226 -0
  6. pulumi_azure_native/billing/billing_profile.py +225 -0
  7. pulumi_azure_native/billing/billing_role_assignment_by_billing_account.py +5 -1
  8. pulumi_azure_native/billing/billing_role_assignment_by_department.py +5 -1
  9. pulumi_azure_native/billing/billing_role_assignment_by_enrollment_account.py +5 -1
  10. pulumi_azure_native/billing/get_associated_tenant.py +146 -0
  11. pulumi_azure_native/billing/get_billing_profile.py +146 -0
  12. pulumi_azure_native/billing/get_billing_role_assignment_by_billing_account.py +4 -0
  13. pulumi_azure_native/billing/get_billing_role_assignment_by_department.py +4 -0
  14. pulumi_azure_native/billing/get_billing_role_assignment_by_enrollment_account.py +4 -0
  15. pulumi_azure_native/billing/get_invoice_section.py +151 -0
  16. pulumi_azure_native/billing/invoice_section.py +247 -0
  17. pulumi_azure_native/billing/list_billing_account_invoice_sections_by_create_subscription_permission.py +2 -2
  18. pulumi_azure_native/billing/outputs.py +1728 -17
  19. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_billing_account.py +1 -1
  20. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_department.py +1 -1
  21. pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_enrollment_account.py +1 -1
  22. pulumi_azure_native/billing/v20240401/__init__.py +23 -0
  23. pulumi_azure_native/billing/v20240401/_enums.py +71 -0
  24. pulumi_azure_native/billing/v20240401/_inputs.py +1394 -0
  25. pulumi_azure_native/billing/v20240401/associated_tenant.py +224 -0
  26. pulumi_azure_native/billing/v20240401/billing_profile.py +223 -0
  27. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_billing_account.py +223 -0
  28. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_department.py +244 -0
  29. pulumi_azure_native/billing/v20240401/billing_role_assignment_by_enrollment_account.py +244 -0
  30. pulumi_azure_native/billing/v20240401/get_associated_tenant.py +144 -0
  31. pulumi_azure_native/billing/v20240401/get_billing_profile.py +144 -0
  32. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_billing_account.py +144 -0
  33. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_department.py +149 -0
  34. pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_enrollment_account.py +149 -0
  35. pulumi_azure_native/billing/v20240401/get_invoice_section.py +149 -0
  36. pulumi_azure_native/billing/v20240401/invoice_section.py +245 -0
  37. pulumi_azure_native/billing/v20240401/list_billing_account_invoice_sections_by_create_subscription_permission.py +92 -0
  38. pulumi_azure_native/billing/v20240401/outputs.py +2305 -0
  39. pulumi_azure_native/containerinstance/__init__.py +3 -0
  40. pulumi_azure_native/containerinstance/container_group.py +3 -3
  41. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  42. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  43. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  44. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  45. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  46. pulumi_azure_native/containerinstance/v20240501preview/__init__.py +12 -0
  47. pulumi_azure_native/containerinstance/v20240501preview/_enums.py +127 -0
  48. pulumi_azure_native/containerinstance/v20240501preview/_inputs.py +2019 -0
  49. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +808 -0
  50. pulumi_azure_native/containerinstance/v20240501preview/get_container_group.py +420 -0
  51. pulumi_azure_native/containerinstance/v20240501preview/outputs.py +2605 -0
  52. pulumi_azure_native/dbformysql/azure_ad_administrator.py +3 -3
  53. pulumi_azure_native/dbformysql/configuration.py +3 -3
  54. pulumi_azure_native/dbformysql/database.py +3 -3
  55. pulumi_azure_native/dbformysql/firewall_rule.py +3 -3
  56. pulumi_azure_native/dbformysql/get_azure_ad_administrator.py +2 -2
  57. pulumi_azure_native/dbformysql/get_configuration.py +2 -2
  58. pulumi_azure_native/dbformysql/get_database.py +2 -2
  59. pulumi_azure_native/dbformysql/get_firewall_rule.py +2 -2
  60. pulumi_azure_native/dbformysql/v20200701privatepreview/configuration.py +1 -1
  61. pulumi_azure_native/dbformysql/v20220101/azure_ad_administrator.py +1 -1
  62. pulumi_azure_native/dbformysql/v20220101/configuration.py +1 -1
  63. pulumi_azure_native/dbformysql/v20220101/database.py +1 -1
  64. pulumi_azure_native/dbformysql/v20220101/firewall_rule.py +1 -1
  65. pulumi_azure_native/dbformysql/v20230601preview/azure_ad_administrator.py +1 -1
  66. pulumi_azure_native/dbformysql/v20230601preview/configuration.py +1 -1
  67. pulumi_azure_native/dbformysql/v20230601preview/database.py +1 -1
  68. pulumi_azure_native/dbformysql/v20230601preview/firewall_rule.py +1 -1
  69. pulumi_azure_native/dbformysql/v20230630/azure_ad_administrator.py +1 -1
  70. pulumi_azure_native/dbformysql/v20230630/configuration.py +1 -1
  71. pulumi_azure_native/dbformysql/v20230630/database.py +1 -1
  72. pulumi_azure_native/dbformysql/v20230630/firewall_rule.py +1 -1
  73. pulumi_azure_native/dbformysql/v20231230/__init__.py +8 -0
  74. pulumi_azure_native/dbformysql/v20231230/_enums.py +17 -0
  75. pulumi_azure_native/dbformysql/v20231230/azure_ad_administrator.py +331 -0
  76. pulumi_azure_native/dbformysql/v20231230/configuration.py +353 -0
  77. pulumi_azure_native/dbformysql/v20231230/database.py +243 -0
  78. pulumi_azure_native/dbformysql/v20231230/firewall_rule.py +245 -0
  79. pulumi_azure_native/dbformysql/v20231230/get_azure_ad_administrator.py +188 -0
  80. pulumi_azure_native/dbformysql/v20231230/get_configuration.py +266 -0
  81. pulumi_azure_native/dbformysql/v20231230/get_database.py +149 -0
  82. pulumi_azure_native/dbformysql/v20231230/get_firewall_rule.py +149 -0
  83. pulumi_azure_native/devcenter/__init__.py +4 -0
  84. pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
  85. pulumi_azure_native/devcenter/catalog.py +3 -3
  86. pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
  87. pulumi_azure_native/devcenter/dev_center.py +3 -3
  88. pulumi_azure_native/devcenter/encryption_set.py +3 -3
  89. pulumi_azure_native/devcenter/environment_type.py +3 -3
  90. pulumi_azure_native/devcenter/gallery.py +3 -3
  91. pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
  92. pulumi_azure_native/devcenter/get_catalog.py +2 -2
  93. pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
  94. pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
  95. pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
  96. pulumi_azure_native/devcenter/get_dev_center.py +2 -2
  97. pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
  98. pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
  99. pulumi_azure_native/devcenter/get_environment_type.py +2 -2
  100. pulumi_azure_native/devcenter/get_gallery.py +2 -2
  101. pulumi_azure_native/devcenter/get_network_connection.py +2 -2
  102. pulumi_azure_native/devcenter/get_plan.py +2 -2
  103. pulumi_azure_native/devcenter/get_plan_member.py +2 -2
  104. pulumi_azure_native/devcenter/get_pool.py +2 -2
  105. pulumi_azure_native/devcenter/get_project.py +2 -2
  106. pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
  107. pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
  108. pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +213 -0
  109. pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
  110. pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
  111. pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
  112. pulumi_azure_native/devcenter/get_schedule.py +2 -2
  113. pulumi_azure_native/devcenter/list_skus_by_project.py +4 -0
  114. pulumi_azure_native/devcenter/network_connection.py +3 -3
  115. pulumi_azure_native/devcenter/outputs.py +226 -0
  116. pulumi_azure_native/devcenter/plan.py +3 -3
  117. pulumi_azure_native/devcenter/plan_member.py +3 -3
  118. pulumi_azure_native/devcenter/pool.py +3 -3
  119. pulumi_azure_native/devcenter/project.py +3 -3
  120. pulumi_azure_native/devcenter/project_catalog.py +3 -3
  121. pulumi_azure_native/devcenter/project_environment_type.py +3 -3
  122. pulumi_azure_native/devcenter/schedule.py +3 -3
  123. pulumi_azure_native/devcenter/v20221111preview/dev_box_definition.py +1 -1
  124. pulumi_azure_native/devcenter/v20230401/attached_network_by_dev_center.py +1 -1
  125. pulumi_azure_native/devcenter/v20230401/catalog.py +1 -1
  126. pulumi_azure_native/devcenter/v20230401/dev_box_definition.py +1 -1
  127. pulumi_azure_native/devcenter/v20230401/dev_center.py +1 -1
  128. pulumi_azure_native/devcenter/v20230401/environment_type.py +1 -1
  129. pulumi_azure_native/devcenter/v20230401/gallery.py +1 -1
  130. pulumi_azure_native/devcenter/v20230401/network_connection.py +1 -1
  131. pulumi_azure_native/devcenter/v20230401/pool.py +1 -1
  132. pulumi_azure_native/devcenter/v20230401/project.py +1 -1
  133. pulumi_azure_native/devcenter/v20230401/project_environment_type.py +1 -1
  134. pulumi_azure_native/devcenter/v20230401/schedule.py +1 -1
  135. pulumi_azure_native/devcenter/v20230801preview/attached_network_by_dev_center.py +1 -1
  136. pulumi_azure_native/devcenter/v20230801preview/catalog.py +1 -1
  137. pulumi_azure_native/devcenter/v20230801preview/dev_box_definition.py +1 -1
  138. pulumi_azure_native/devcenter/v20230801preview/dev_center.py +1 -1
  139. pulumi_azure_native/devcenter/v20230801preview/environment_type.py +1 -1
  140. pulumi_azure_native/devcenter/v20230801preview/gallery.py +1 -1
  141. pulumi_azure_native/devcenter/v20230801preview/network_connection.py +1 -1
  142. pulumi_azure_native/devcenter/v20230801preview/pool.py +1 -1
  143. pulumi_azure_native/devcenter/v20230801preview/project.py +1 -1
  144. pulumi_azure_native/devcenter/v20230801preview/project_environment_type.py +1 -1
  145. pulumi_azure_native/devcenter/v20230801preview/schedule.py +1 -1
  146. pulumi_azure_native/devcenter/v20231001preview/attached_network_by_dev_center.py +1 -1
  147. pulumi_azure_native/devcenter/v20231001preview/catalog.py +1 -1
  148. pulumi_azure_native/devcenter/v20231001preview/dev_box_definition.py +1 -1
  149. pulumi_azure_native/devcenter/v20231001preview/dev_center.py +1 -1
  150. pulumi_azure_native/devcenter/v20231001preview/environment_type.py +1 -1
  151. pulumi_azure_native/devcenter/v20231001preview/gallery.py +1 -1
  152. pulumi_azure_native/devcenter/v20231001preview/network_connection.py +1 -1
  153. pulumi_azure_native/devcenter/v20231001preview/pool.py +1 -1
  154. pulumi_azure_native/devcenter/v20231001preview/project.py +1 -1
  155. pulumi_azure_native/devcenter/v20231001preview/project_environment_type.py +1 -1
  156. pulumi_azure_native/devcenter/v20231001preview/schedule.py +1 -1
  157. pulumi_azure_native/devcenter/v20240201/attached_network_by_dev_center.py +1 -1
  158. pulumi_azure_native/devcenter/v20240201/catalog.py +1 -1
  159. pulumi_azure_native/devcenter/v20240201/dev_box_definition.py +1 -1
  160. pulumi_azure_native/devcenter/v20240201/dev_center.py +1 -1
  161. pulumi_azure_native/devcenter/v20240201/environment_type.py +1 -1
  162. pulumi_azure_native/devcenter/v20240201/gallery.py +1 -1
  163. pulumi_azure_native/devcenter/v20240201/network_connection.py +1 -1
  164. pulumi_azure_native/devcenter/v20240201/pool.py +1 -1
  165. pulumi_azure_native/devcenter/v20240201/project.py +1 -1
  166. pulumi_azure_native/devcenter/v20240201/project_catalog.py +1 -1
  167. pulumi_azure_native/devcenter/v20240201/project_environment_type.py +1 -1
  168. pulumi_azure_native/devcenter/v20240201/schedule.py +1 -1
  169. pulumi_azure_native/devcenter/v20240501preview/attached_network_by_dev_center.py +1 -1
  170. pulumi_azure_native/devcenter/v20240501preview/catalog.py +1 -1
  171. pulumi_azure_native/devcenter/v20240501preview/dev_box_definition.py +1 -1
  172. pulumi_azure_native/devcenter/v20240501preview/dev_center.py +1 -1
  173. pulumi_azure_native/devcenter/v20240501preview/encryption_set.py +1 -1
  174. pulumi_azure_native/devcenter/v20240501preview/environment_type.py +1 -1
  175. pulumi_azure_native/devcenter/v20240501preview/gallery.py +1 -1
  176. pulumi_azure_native/devcenter/v20240501preview/network_connection.py +1 -1
  177. pulumi_azure_native/devcenter/v20240501preview/plan.py +1 -1
  178. pulumi_azure_native/devcenter/v20240501preview/plan_member.py +1 -1
  179. pulumi_azure_native/devcenter/v20240501preview/pool.py +1 -1
  180. pulumi_azure_native/devcenter/v20240501preview/project.py +1 -1
  181. pulumi_azure_native/devcenter/v20240501preview/project_catalog.py +1 -1
  182. pulumi_azure_native/devcenter/v20240501preview/project_environment_type.py +1 -1
  183. pulumi_azure_native/devcenter/v20240501preview/schedule.py +1 -1
  184. pulumi_azure_native/devcenter/v20240601preview/attached_network_by_dev_center.py +1 -1
  185. pulumi_azure_native/devcenter/v20240601preview/catalog.py +1 -1
  186. pulumi_azure_native/devcenter/v20240601preview/dev_box_definition.py +1 -1
  187. pulumi_azure_native/devcenter/v20240601preview/dev_center.py +1 -1
  188. pulumi_azure_native/devcenter/v20240601preview/encryption_set.py +1 -1
  189. pulumi_azure_native/devcenter/v20240601preview/environment_type.py +1 -1
  190. pulumi_azure_native/devcenter/v20240601preview/gallery.py +1 -1
  191. pulumi_azure_native/devcenter/v20240601preview/network_connection.py +1 -1
  192. pulumi_azure_native/devcenter/v20240601preview/plan.py +1 -1
  193. pulumi_azure_native/devcenter/v20240601preview/plan_member.py +1 -1
  194. pulumi_azure_native/devcenter/v20240601preview/pool.py +1 -1
  195. pulumi_azure_native/devcenter/v20240601preview/project.py +1 -1
  196. pulumi_azure_native/devcenter/v20240601preview/project_catalog.py +1 -1
  197. pulumi_azure_native/devcenter/v20240601preview/project_environment_type.py +1 -1
  198. pulumi_azure_native/devcenter/v20240601preview/schedule.py +1 -1
  199. pulumi_azure_native/devcenter/v20240701preview/__init__.py +48 -0
  200. pulumi_azure_native/devcenter/v20240701preview/_enums.py +209 -0
  201. pulumi_azure_native/devcenter/v20240701preview/_inputs.py +595 -0
  202. pulumi_azure_native/devcenter/v20240701preview/attached_network_by_dev_center.py +255 -0
  203. pulumi_azure_native/devcenter/v20240701preview/catalog.py +363 -0
  204. pulumi_azure_native/devcenter/v20240701preview/dev_box_definition.py +413 -0
  205. pulumi_azure_native/devcenter/v20240701preview/dev_center.py +447 -0
  206. pulumi_azure_native/devcenter/v20240701preview/encryption_set.py +342 -0
  207. pulumi_azure_native/devcenter/v20240701preview/environment_type.py +253 -0
  208. pulumi_azure_native/devcenter/v20240701preview/gallery.py +225 -0
  209. pulumi_azure_native/devcenter/v20240701preview/get_attached_network_by_dev_center.py +188 -0
  210. pulumi_azure_native/devcenter/v20240701preview/get_catalog.py +253 -0
  211. pulumi_azure_native/devcenter/v20240701preview/get_catalog_sync_error_details.py +110 -0
  212. pulumi_azure_native/devcenter/v20240701preview/get_customization_task_error_details.py +89 -0
  213. pulumi_azure_native/devcenter/v20240701preview/get_dev_box_definition.py +266 -0
  214. pulumi_azure_native/devcenter/v20240701preview/get_dev_center.py +261 -0
  215. pulumi_azure_native/devcenter/v20240701preview/get_encryption_set.py +201 -0
  216. pulumi_azure_native/devcenter/v20240701preview/get_environment_definition_error_details.py +89 -0
  217. pulumi_azure_native/devcenter/v20240701preview/get_environment_type.py +162 -0
  218. pulumi_azure_native/devcenter/v20240701preview/get_gallery.py +149 -0
  219. pulumi_azure_native/devcenter/v20240701preview/get_network_connection.py +261 -0
  220. pulumi_azure_native/devcenter/v20240701preview/get_plan.py +170 -0
  221. pulumi_azure_native/devcenter/v20240701preview/get_plan_member.py +175 -0
  222. pulumi_azure_native/devcenter/v20240701preview/get_pool.py +344 -0
  223. pulumi_azure_native/devcenter/v20240701preview/get_project.py +248 -0
  224. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog.py +253 -0
  225. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_environment_definition_error_details.py +89 -0
  226. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_image_definition_build_details.py +211 -0
  227. pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_sync_error_details.py +110 -0
  228. pulumi_azure_native/devcenter/v20240701preview/get_project_environment_type.py +253 -0
  229. pulumi_azure_native/devcenter/v20240701preview/get_project_inherited_settings.py +92 -0
  230. pulumi_azure_native/devcenter/v20240701preview/get_schedule.py +224 -0
  231. pulumi_azure_native/devcenter/v20240701preview/list_skus_by_project.py +92 -0
  232. pulumi_azure_native/devcenter/v20240701preview/network_connection.py +448 -0
  233. pulumi_azure_native/devcenter/v20240701preview/outputs.py +1673 -0
  234. pulumi_azure_native/devcenter/v20240701preview/plan.py +263 -0
  235. pulumi_azure_native/devcenter/v20240701preview/plan_member.py +283 -0
  236. pulumi_azure_native/devcenter/v20240701preview/pool.py +608 -0
  237. pulumi_azure_native/devcenter/v20240701preview/project.py +418 -0
  238. pulumi_azure_native/devcenter/v20240701preview/project_catalog.py +363 -0
  239. pulumi_azure_native/devcenter/v20240701preview/project_environment_type.py +439 -0
  240. pulumi_azure_native/devcenter/v20240701preview/schedule.py +434 -0
  241. pulumi_azure_native/fabric/__init__.py +20 -0
  242. pulumi_azure_native/fabric/_enums.py +19 -0
  243. pulumi_azure_native/fabric/_inputs.py +78 -0
  244. pulumi_azure_native/fabric/fabric_capacity.py +306 -0
  245. pulumi_azure_native/fabric/get_fabric_capacity.py +198 -0
  246. pulumi_azure_native/fabric/outputs.py +183 -0
  247. pulumi_azure_native/fabric/v20231101/__init__.py +12 -0
  248. pulumi_azure_native/fabric/v20231101/_enums.py +19 -0
  249. pulumi_azure_native/fabric/v20231101/_inputs.py +78 -0
  250. pulumi_azure_native/fabric/v20231101/fabric_capacity.py +304 -0
  251. pulumi_azure_native/fabric/v20231101/get_fabric_capacity.py +196 -0
  252. pulumi_azure_native/fabric/v20231101/outputs.py +183 -0
  253. pulumi_azure_native/kubernetes/__init__.py +3 -0
  254. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  255. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  256. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  257. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  258. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  259. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  260. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
  261. pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
  262. pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +1 -1
  263. pulumi_azure_native/kubernetes/v20240701preview/__init__.py +13 -0
  264. pulumi_azure_native/kubernetes/v20240701preview/_enums.py +76 -0
  265. pulumi_azure_native/kubernetes/v20240701preview/_inputs.py +401 -0
  266. pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +788 -0
  267. pulumi_azure_native/kubernetes/v20240701preview/get_connected_cluster.py +469 -0
  268. pulumi_azure_native/kubernetes/v20240701preview/list_connected_cluster_user_credential.py +103 -0
  269. pulumi_azure_native/kubernetes/v20240701preview/outputs.py +827 -0
  270. pulumi_azure_native/loadtestservice/__init__.py +7 -0
  271. pulumi_azure_native/loadtestservice/get_load_test.py +2 -2
  272. pulumi_azure_native/loadtestservice/get_load_test_mapping.py +159 -0
  273. pulumi_azure_native/loadtestservice/get_load_test_profile_mapping.py +159 -0
  274. pulumi_azure_native/loadtestservice/load_test.py +3 -3
  275. pulumi_azure_native/loadtestservice/load_test_mapping.py +253 -0
  276. pulumi_azure_native/loadtestservice/load_test_profile_mapping.py +253 -0
  277. pulumi_azure_native/loadtestservice/v20211201preview/load_test.py +1 -1
  278. pulumi_azure_native/loadtestservice/v20221201/load_test.py +1 -1
  279. pulumi_azure_native/loadtestservice/v20231201preview/__init__.py +16 -0
  280. pulumi_azure_native/loadtestservice/v20231201preview/_enums.py +34 -0
  281. pulumi_azure_native/loadtestservice/v20231201preview/_inputs.py +137 -0
  282. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test.py +209 -0
  283. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_mapping.py +157 -0
  284. pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_profile_mapping.py +157 -0
  285. pulumi_azure_native/loadtestservice/v20231201preview/load_test.py +331 -0
  286. pulumi_azure_native/loadtestservice/v20231201preview/load_test_mapping.py +251 -0
  287. pulumi_azure_native/loadtestservice/v20231201preview/load_test_profile_mapping.py +251 -0
  288. pulumi_azure_native/loadtestservice/v20231201preview/outputs.py +364 -0
  289. pulumi_azure_native/portal/_inputs.py +61 -202
  290. pulumi_azure_native/portal/outputs.py +51 -192
  291. pulumi_azure_native/pulumi-plugin.json +1 -1
  292. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/METADATA +1 -1
  293. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/RECORD +295 -180
  294. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/WHEEL +1 -1
  295. {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/top_level.txt +0 -0
@@ -205,6 +205,8 @@ if typing.TYPE_CHECKING:
205
205
  eventhub = __eventhub
206
206
  import pulumi_azure_native.extendedlocation as __extendedlocation
207
207
  extendedlocation = __extendedlocation
208
+ import pulumi_azure_native.fabric as __fabric
209
+ fabric = __fabric
208
210
  import pulumi_azure_native.features as __features
209
211
  features = __features
210
212
  import pulumi_azure_native.fluidrelay as __fluidrelay
@@ -558,6 +560,7 @@ else:
558
560
  eventgrid = _utilities.lazy_import('pulumi_azure_native.eventgrid')
559
561
  eventhub = _utilities.lazy_import('pulumi_azure_native.eventhub')
560
562
  extendedlocation = _utilities.lazy_import('pulumi_azure_native.extendedlocation')
563
+ fabric = _utilities.lazy_import('pulumi_azure_native.fabric')
561
564
  features = _utilities.lazy_import('pulumi_azure_native.features')
562
565
  fluidrelay = _utilities.lazy_import('pulumi_azure_native.fluidrelay')
563
566
  graphservices = _utilities.lazy_import('pulumi_azure_native.graphservices')
@@ -3359,9 +3362,12 @@ _utilities.register(
3359
3362
  "mod": "billing",
3360
3363
  "fqn": "pulumi_azure_native.billing",
3361
3364
  "classes": {
3365
+ "azure-native:billing:AssociatedTenant": "AssociatedTenant",
3366
+ "azure-native:billing:BillingProfile": "BillingProfile",
3362
3367
  "azure-native:billing:BillingRoleAssignmentByBillingAccount": "BillingRoleAssignmentByBillingAccount",
3363
3368
  "azure-native:billing:BillingRoleAssignmentByDepartment": "BillingRoleAssignmentByDepartment",
3364
- "azure-native:billing:BillingRoleAssignmentByEnrollmentAccount": "BillingRoleAssignmentByEnrollmentAccount"
3369
+ "azure-native:billing:BillingRoleAssignmentByEnrollmentAccount": "BillingRoleAssignmentByEnrollmentAccount",
3370
+ "azure-native:billing:InvoiceSection": "InvoiceSection"
3365
3371
  }
3366
3372
  },
3367
3373
  {
@@ -3374,6 +3380,19 @@ _utilities.register(
3374
3380
  "azure-native:billing/v20191001preview:BillingRoleAssignmentByEnrollmentAccount": "BillingRoleAssignmentByEnrollmentAccount"
3375
3381
  }
3376
3382
  },
3383
+ {
3384
+ "pkg": "azure-native",
3385
+ "mod": "billing/v20240401",
3386
+ "fqn": "pulumi_azure_native.billing.v20240401",
3387
+ "classes": {
3388
+ "azure-native:billing/v20240401:AssociatedTenant": "AssociatedTenant",
3389
+ "azure-native:billing/v20240401:BillingProfile": "BillingProfile",
3390
+ "azure-native:billing/v20240401:BillingRoleAssignmentByBillingAccount": "BillingRoleAssignmentByBillingAccount",
3391
+ "azure-native:billing/v20240401:BillingRoleAssignmentByDepartment": "BillingRoleAssignmentByDepartment",
3392
+ "azure-native:billing/v20240401:BillingRoleAssignmentByEnrollmentAccount": "BillingRoleAssignmentByEnrollmentAccount",
3393
+ "azure-native:billing/v20240401:InvoiceSection": "InvoiceSection"
3394
+ }
3395
+ },
3377
3396
  {
3378
3397
  "pkg": "azure-native",
3379
3398
  "mod": "blueprint",
@@ -4694,6 +4713,14 @@ _utilities.register(
4694
4713
  "azure-native:containerinstance/v20230501:ContainerGroup": "ContainerGroup"
4695
4714
  }
4696
4715
  },
4716
+ {
4717
+ "pkg": "azure-native",
4718
+ "mod": "containerinstance/v20240501preview",
4719
+ "fqn": "pulumi_azure_native.containerinstance.v20240501preview",
4720
+ "classes": {
4721
+ "azure-native:containerinstance/v20240501preview:ContainerGroup": "ContainerGroup"
4722
+ }
4723
+ },
4697
4724
  {
4698
4725
  "pkg": "azure-native",
4699
4726
  "mod": "containerregistry",
@@ -6483,6 +6510,10 @@ _utilities.register(
6483
6510
  "mod": "dbformysql/v20231230",
6484
6511
  "fqn": "pulumi_azure_native.dbformysql.v20231230",
6485
6512
  "classes": {
6513
+ "azure-native:dbformysql/v20231230:AzureADAdministrator": "AzureADAdministrator",
6514
+ "azure-native:dbformysql/v20231230:Configuration": "Configuration",
6515
+ "azure-native:dbformysql/v20231230:Database": "Database",
6516
+ "azure-native:dbformysql/v20231230:FirewallRule": "FirewallRule",
6486
6517
  "azure-native:dbformysql/v20231230:Server": "Server"
6487
6518
  }
6488
6519
  },
@@ -7081,6 +7112,28 @@ _utilities.register(
7081
7112
  "azure-native:devcenter/v20240601preview:Schedule": "Schedule"
7082
7113
  }
7083
7114
  },
7115
+ {
7116
+ "pkg": "azure-native",
7117
+ "mod": "devcenter/v20240701preview",
7118
+ "fqn": "pulumi_azure_native.devcenter.v20240701preview",
7119
+ "classes": {
7120
+ "azure-native:devcenter/v20240701preview:AttachedNetworkByDevCenter": "AttachedNetworkByDevCenter",
7121
+ "azure-native:devcenter/v20240701preview:Catalog": "Catalog",
7122
+ "azure-native:devcenter/v20240701preview:DevBoxDefinition": "DevBoxDefinition",
7123
+ "azure-native:devcenter/v20240701preview:DevCenter": "DevCenter",
7124
+ "azure-native:devcenter/v20240701preview:EncryptionSet": "EncryptionSet",
7125
+ "azure-native:devcenter/v20240701preview:EnvironmentType": "EnvironmentType",
7126
+ "azure-native:devcenter/v20240701preview:Gallery": "Gallery",
7127
+ "azure-native:devcenter/v20240701preview:NetworkConnection": "NetworkConnection",
7128
+ "azure-native:devcenter/v20240701preview:Plan": "Plan",
7129
+ "azure-native:devcenter/v20240701preview:PlanMember": "PlanMember",
7130
+ "azure-native:devcenter/v20240701preview:Pool": "Pool",
7131
+ "azure-native:devcenter/v20240701preview:Project": "Project",
7132
+ "azure-native:devcenter/v20240701preview:ProjectCatalog": "ProjectCatalog",
7133
+ "azure-native:devcenter/v20240701preview:ProjectEnvironmentType": "ProjectEnvironmentType",
7134
+ "azure-native:devcenter/v20240701preview:Schedule": "Schedule"
7135
+ }
7136
+ },
7084
7137
  {
7085
7138
  "pkg": "azure-native",
7086
7139
  "mod": "devhub",
@@ -8368,6 +8421,22 @@ _utilities.register(
8368
8421
  "azure-native:extendedlocation/v20210831preview:ResourceSyncRule": "ResourceSyncRule"
8369
8422
  }
8370
8423
  },
8424
+ {
8425
+ "pkg": "azure-native",
8426
+ "mod": "fabric",
8427
+ "fqn": "pulumi_azure_native.fabric",
8428
+ "classes": {
8429
+ "azure-native:fabric:FabricCapacity": "FabricCapacity"
8430
+ }
8431
+ },
8432
+ {
8433
+ "pkg": "azure-native",
8434
+ "mod": "fabric/v20231101",
8435
+ "fqn": "pulumi_azure_native.fabric.v20231101",
8436
+ "classes": {
8437
+ "azure-native:fabric/v20231101:FabricCapacity": "FabricCapacity"
8438
+ }
8439
+ },
8371
8440
  {
8372
8441
  "pkg": "azure-native",
8373
8442
  "mod": "features",
@@ -9612,6 +9681,14 @@ _utilities.register(
9612
9681
  "azure-native:kubernetes/v20240601preview:ConnectedCluster": "ConnectedCluster"
9613
9682
  }
9614
9683
  },
9684
+ {
9685
+ "pkg": "azure-native",
9686
+ "mod": "kubernetes/v20240701preview",
9687
+ "fqn": "pulumi_azure_native.kubernetes.v20240701preview",
9688
+ "classes": {
9689
+ "azure-native:kubernetes/v20240701preview:ConnectedCluster": "ConnectedCluster"
9690
+ }
9691
+ },
9615
9692
  {
9616
9693
  "pkg": "azure-native",
9617
9694
  "mod": "kubernetesconfiguration",
@@ -9913,7 +9990,9 @@ _utilities.register(
9913
9990
  "mod": "loadtestservice",
9914
9991
  "fqn": "pulumi_azure_native.loadtestservice",
9915
9992
  "classes": {
9916
- "azure-native:loadtestservice:LoadTest": "LoadTest"
9993
+ "azure-native:loadtestservice:LoadTest": "LoadTest",
9994
+ "azure-native:loadtestservice:LoadTestMapping": "LoadTestMapping",
9995
+ "azure-native:loadtestservice:LoadTestProfileMapping": "LoadTestProfileMapping"
9917
9996
  }
9918
9997
  },
9919
9998
  {
@@ -9932,6 +10011,16 @@ _utilities.register(
9932
10011
  "azure-native:loadtestservice/v20221201:LoadTest": "LoadTest"
9933
10012
  }
9934
10013
  },
10014
+ {
10015
+ "pkg": "azure-native",
10016
+ "mod": "loadtestservice/v20231201preview",
10017
+ "fqn": "pulumi_azure_native.loadtestservice.v20231201preview",
10018
+ "classes": {
10019
+ "azure-native:loadtestservice/v20231201preview:LoadTest": "LoadTest",
10020
+ "azure-native:loadtestservice/v20231201preview:LoadTestMapping": "LoadTestMapping",
10021
+ "azure-native:loadtestservice/v20231201preview:LoadTestProfileMapping": "LoadTestProfileMapping"
10022
+ }
10023
+ },
9935
10024
  {
9936
10025
  "pkg": "azure-native",
9937
10026
  "mod": "logic",
@@ -5,13 +5,21 @@
5
5
  from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from ._enums import *
9
+ from .associated_tenant import *
10
+ from .billing_profile import *
8
11
  from .billing_role_assignment_by_billing_account import *
9
12
  from .billing_role_assignment_by_department import *
10
13
  from .billing_role_assignment_by_enrollment_account import *
14
+ from .get_associated_tenant import *
15
+ from .get_billing_profile import *
11
16
  from .get_billing_role_assignment_by_billing_account import *
12
17
  from .get_billing_role_assignment_by_department import *
13
18
  from .get_billing_role_assignment_by_enrollment_account import *
19
+ from .get_invoice_section import *
20
+ from .invoice_section import *
14
21
  from .list_billing_account_invoice_sections_by_create_subscription_permission import *
22
+ from ._inputs import *
15
23
  from . import outputs
16
24
 
17
25
  # Make subpackages available:
@@ -20,7 +28,10 @@ if typing.TYPE_CHECKING:
20
28
  v20191001preview = __v20191001preview
21
29
  import pulumi_azure_native.billing.v20200501 as __v20200501
22
30
  v20200501 = __v20200501
31
+ import pulumi_azure_native.billing.v20240401 as __v20240401
32
+ v20240401 = __v20240401
23
33
  else:
24
34
  v20191001preview = _utilities.lazy_import('pulumi_azure_native.billing.v20191001preview')
25
35
  v20200501 = _utilities.lazy_import('pulumi_azure_native.billing.v20200501')
36
+ v20240401 = _utilities.lazy_import('pulumi_azure_native.billing.v20240401')
26
37
 
@@ -0,0 +1,71 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'BillingManagementTenantState',
9
+ 'InvoiceSectionState',
10
+ 'InvoiceSectionStateReasonCode',
11
+ 'ProvisioningTenantState',
12
+ 'TargetCloud',
13
+ ]
14
+
15
+
16
+ class BillingManagementTenantState(str, Enum):
17
+ """
18
+ The state determines whether users from the associated tenant can be assigned roles for commerce activities like viewing and downloading invoices, managing payments, and making purchases.
19
+ """
20
+ OTHER = "Other"
21
+ NOT_ALLOWED = "NotAllowed"
22
+ ACTIVE = "Active"
23
+ REVOKED = "Revoked"
24
+
25
+
26
+ class InvoiceSectionState(str, Enum):
27
+ """
28
+ Identifies the status of an invoice section.
29
+ """
30
+ OTHER = "Other"
31
+ ACTIVE = "Active"
32
+ DELETED = "Deleted"
33
+ DISABLED = "Disabled"
34
+ UNDER_REVIEW = "UnderReview"
35
+ WARNED = "Warned"
36
+ RESTRICTED = "Restricted"
37
+
38
+
39
+ class InvoiceSectionStateReasonCode(str, Enum):
40
+ """
41
+ Reason for the specified invoice section status.
42
+ """
43
+ OTHER = "Other"
44
+ PAST_DUE = "PastDue"
45
+ UNUSUAL_ACTIVITY = "UnusualActivity"
46
+ SPENDING_LIMIT_REACHED = "SpendingLimitReached"
47
+ SPENDING_LIMIT_EXPIRED = "SpendingLimitExpired"
48
+
49
+
50
+ class ProvisioningTenantState(str, Enum):
51
+ """
52
+ The state determines whether subscriptions and licenses can be provisioned in the associated tenant. It can be set to 'Pending' to initiate a billing request.
53
+ """
54
+ OTHER = "Other"
55
+ NOT_REQUESTED = "NotRequested"
56
+ ACTIVE = "Active"
57
+ PENDING = "Pending"
58
+ BILLING_REQUEST_EXPIRED = "BillingRequestExpired"
59
+ BILLING_REQUEST_DECLINED = "BillingRequestDeclined"
60
+ REVOKED = "Revoked"
61
+
62
+
63
+ class TargetCloud(str, Enum):
64
+ """
65
+ Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
66
+ """
67
+ OTHER = "Other"
68
+ INTERNAL = "Internal"
69
+ US_GOV = "USGov"
70
+ US_NAT = "USNat"
71
+ US_SEC = "USSec"