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
@@ -0,0 +1,266 @@
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
+
13
+ __all__ = [
14
+ 'GetConfigurationResult',
15
+ 'AwaitableGetConfigurationResult',
16
+ 'get_configuration',
17
+ 'get_configuration_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetConfigurationResult:
22
+ """
23
+ Represents a Configuration.
24
+ """
25
+ def __init__(__self__, allowed_values=None, current_value=None, data_type=None, default_value=None, description=None, documentation_link=None, id=None, is_config_pending_restart=None, is_dynamic_config=None, is_read_only=None, name=None, source=None, system_data=None, type=None, value=None):
26
+ if allowed_values and not isinstance(allowed_values, str):
27
+ raise TypeError("Expected argument 'allowed_values' to be a str")
28
+ pulumi.set(__self__, "allowed_values", allowed_values)
29
+ if current_value and not isinstance(current_value, str):
30
+ raise TypeError("Expected argument 'current_value' to be a str")
31
+ pulumi.set(__self__, "current_value", current_value)
32
+ if data_type and not isinstance(data_type, str):
33
+ raise TypeError("Expected argument 'data_type' to be a str")
34
+ pulumi.set(__self__, "data_type", data_type)
35
+ if default_value and not isinstance(default_value, str):
36
+ raise TypeError("Expected argument 'default_value' to be a str")
37
+ pulumi.set(__self__, "default_value", default_value)
38
+ if description and not isinstance(description, str):
39
+ raise TypeError("Expected argument 'description' to be a str")
40
+ pulumi.set(__self__, "description", description)
41
+ if documentation_link and not isinstance(documentation_link, str):
42
+ raise TypeError("Expected argument 'documentation_link' to be a str")
43
+ pulumi.set(__self__, "documentation_link", documentation_link)
44
+ if id and not isinstance(id, str):
45
+ raise TypeError("Expected argument 'id' to be a str")
46
+ pulumi.set(__self__, "id", id)
47
+ if is_config_pending_restart and not isinstance(is_config_pending_restart, str):
48
+ raise TypeError("Expected argument 'is_config_pending_restart' to be a str")
49
+ pulumi.set(__self__, "is_config_pending_restart", is_config_pending_restart)
50
+ if is_dynamic_config and not isinstance(is_dynamic_config, str):
51
+ raise TypeError("Expected argument 'is_dynamic_config' to be a str")
52
+ pulumi.set(__self__, "is_dynamic_config", is_dynamic_config)
53
+ if is_read_only and not isinstance(is_read_only, str):
54
+ raise TypeError("Expected argument 'is_read_only' to be a str")
55
+ pulumi.set(__self__, "is_read_only", is_read_only)
56
+ if name and not isinstance(name, str):
57
+ raise TypeError("Expected argument 'name' to be a str")
58
+ pulumi.set(__self__, "name", name)
59
+ if source and not isinstance(source, str):
60
+ raise TypeError("Expected argument 'source' to be a str")
61
+ pulumi.set(__self__, "source", source)
62
+ if system_data and not isinstance(system_data, dict):
63
+ raise TypeError("Expected argument 'system_data' to be a dict")
64
+ pulumi.set(__self__, "system_data", system_data)
65
+ if type and not isinstance(type, str):
66
+ raise TypeError("Expected argument 'type' to be a str")
67
+ pulumi.set(__self__, "type", type)
68
+ if value and not isinstance(value, str):
69
+ raise TypeError("Expected argument 'value' to be a str")
70
+ pulumi.set(__self__, "value", value)
71
+
72
+ @property
73
+ @pulumi.getter(name="allowedValues")
74
+ def allowed_values(self) -> str:
75
+ """
76
+ Allowed values of the configuration.
77
+ """
78
+ return pulumi.get(self, "allowed_values")
79
+
80
+ @property
81
+ @pulumi.getter(name="currentValue")
82
+ def current_value(self) -> Optional[str]:
83
+ """
84
+ Current value of the configuration.
85
+ """
86
+ return pulumi.get(self, "current_value")
87
+
88
+ @property
89
+ @pulumi.getter(name="dataType")
90
+ def data_type(self) -> str:
91
+ """
92
+ Data type of the configuration.
93
+ """
94
+ return pulumi.get(self, "data_type")
95
+
96
+ @property
97
+ @pulumi.getter(name="defaultValue")
98
+ def default_value(self) -> str:
99
+ """
100
+ Default value of the configuration.
101
+ """
102
+ return pulumi.get(self, "default_value")
103
+
104
+ @property
105
+ @pulumi.getter
106
+ def description(self) -> str:
107
+ """
108
+ Description of the configuration.
109
+ """
110
+ return pulumi.get(self, "description")
111
+
112
+ @property
113
+ @pulumi.getter(name="documentationLink")
114
+ def documentation_link(self) -> str:
115
+ """
116
+ The link used to get the document from community or Azure site.
117
+ """
118
+ return pulumi.get(self, "documentation_link")
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def id(self) -> str:
123
+ """
124
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
125
+ """
126
+ return pulumi.get(self, "id")
127
+
128
+ @property
129
+ @pulumi.getter(name="isConfigPendingRestart")
130
+ def is_config_pending_restart(self) -> str:
131
+ """
132
+ If is the configuration pending restart or not.
133
+ """
134
+ return pulumi.get(self, "is_config_pending_restart")
135
+
136
+ @property
137
+ @pulumi.getter(name="isDynamicConfig")
138
+ def is_dynamic_config(self) -> str:
139
+ """
140
+ If is the configuration dynamic.
141
+ """
142
+ return pulumi.get(self, "is_dynamic_config")
143
+
144
+ @property
145
+ @pulumi.getter(name="isReadOnly")
146
+ def is_read_only(self) -> str:
147
+ """
148
+ If is the configuration read only.
149
+ """
150
+ return pulumi.get(self, "is_read_only")
151
+
152
+ @property
153
+ @pulumi.getter
154
+ def name(self) -> str:
155
+ """
156
+ The name of the resource
157
+ """
158
+ return pulumi.get(self, "name")
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def source(self) -> Optional[str]:
163
+ """
164
+ Source of the configuration.
165
+ """
166
+ return pulumi.get(self, "source")
167
+
168
+ @property
169
+ @pulumi.getter(name="systemData")
170
+ def system_data(self) -> 'outputs.SystemDataResponse':
171
+ """
172
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
173
+ """
174
+ return pulumi.get(self, "system_data")
175
+
176
+ @property
177
+ @pulumi.getter
178
+ def type(self) -> str:
179
+ """
180
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
181
+ """
182
+ return pulumi.get(self, "type")
183
+
184
+ @property
185
+ @pulumi.getter
186
+ def value(self) -> Optional[str]:
187
+ """
188
+ Value of the configuration.
189
+ """
190
+ return pulumi.get(self, "value")
191
+
192
+
193
+ class AwaitableGetConfigurationResult(GetConfigurationResult):
194
+ # pylint: disable=using-constant-test
195
+ def __await__(self):
196
+ if False:
197
+ yield self
198
+ return GetConfigurationResult(
199
+ allowed_values=self.allowed_values,
200
+ current_value=self.current_value,
201
+ data_type=self.data_type,
202
+ default_value=self.default_value,
203
+ description=self.description,
204
+ documentation_link=self.documentation_link,
205
+ id=self.id,
206
+ is_config_pending_restart=self.is_config_pending_restart,
207
+ is_dynamic_config=self.is_dynamic_config,
208
+ is_read_only=self.is_read_only,
209
+ name=self.name,
210
+ source=self.source,
211
+ system_data=self.system_data,
212
+ type=self.type,
213
+ value=self.value)
214
+
215
+
216
+ def get_configuration(configuration_name: Optional[str] = None,
217
+ resource_group_name: Optional[str] = None,
218
+ server_name: Optional[str] = None,
219
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationResult:
220
+ """
221
+ Gets information about a configuration of server.
222
+
223
+
224
+ :param str configuration_name: The name of the server configuration.
225
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
226
+ :param str server_name: The name of the server.
227
+ """
228
+ __args__ = dict()
229
+ __args__['configurationName'] = configuration_name
230
+ __args__['resourceGroupName'] = resource_group_name
231
+ __args__['serverName'] = server_name
232
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
233
+ __ret__ = pulumi.runtime.invoke('azure-native:dbformysql/v20231230:getConfiguration', __args__, opts=opts, typ=GetConfigurationResult).value
234
+
235
+ return AwaitableGetConfigurationResult(
236
+ allowed_values=pulumi.get(__ret__, 'allowed_values'),
237
+ current_value=pulumi.get(__ret__, 'current_value'),
238
+ data_type=pulumi.get(__ret__, 'data_type'),
239
+ default_value=pulumi.get(__ret__, 'default_value'),
240
+ description=pulumi.get(__ret__, 'description'),
241
+ documentation_link=pulumi.get(__ret__, 'documentation_link'),
242
+ id=pulumi.get(__ret__, 'id'),
243
+ is_config_pending_restart=pulumi.get(__ret__, 'is_config_pending_restart'),
244
+ is_dynamic_config=pulumi.get(__ret__, 'is_dynamic_config'),
245
+ is_read_only=pulumi.get(__ret__, 'is_read_only'),
246
+ name=pulumi.get(__ret__, 'name'),
247
+ source=pulumi.get(__ret__, 'source'),
248
+ system_data=pulumi.get(__ret__, 'system_data'),
249
+ type=pulumi.get(__ret__, 'type'),
250
+ value=pulumi.get(__ret__, 'value'))
251
+
252
+
253
+ @_utilities.lift_output_func(get_configuration)
254
+ def get_configuration_output(configuration_name: Optional[pulumi.Input[str]] = None,
255
+ resource_group_name: Optional[pulumi.Input[str]] = None,
256
+ server_name: Optional[pulumi.Input[str]] = None,
257
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConfigurationResult]:
258
+ """
259
+ Gets information about a configuration of server.
260
+
261
+
262
+ :param str configuration_name: The name of the server configuration.
263
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
264
+ :param str server_name: The name of the server.
265
+ """
266
+ ...
@@ -0,0 +1,149 @@
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
+
13
+ __all__ = [
14
+ 'GetDatabaseResult',
15
+ 'AwaitableGetDatabaseResult',
16
+ 'get_database',
17
+ 'get_database_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDatabaseResult:
22
+ """
23
+ Represents a Database.
24
+ """
25
+ def __init__(__self__, charset=None, collation=None, id=None, name=None, system_data=None, type=None):
26
+ if charset and not isinstance(charset, str):
27
+ raise TypeError("Expected argument 'charset' to be a str")
28
+ pulumi.set(__self__, "charset", charset)
29
+ if collation and not isinstance(collation, str):
30
+ raise TypeError("Expected argument 'collation' to be a str")
31
+ pulumi.set(__self__, "collation", collation)
32
+ if id and not isinstance(id, str):
33
+ raise TypeError("Expected argument 'id' to be a str")
34
+ pulumi.set(__self__, "id", id)
35
+ if name and not isinstance(name, str):
36
+ raise TypeError("Expected argument 'name' to be a str")
37
+ pulumi.set(__self__, "name", name)
38
+ if system_data and not isinstance(system_data, dict):
39
+ raise TypeError("Expected argument 'system_data' to be a dict")
40
+ pulumi.set(__self__, "system_data", system_data)
41
+ if type and not isinstance(type, str):
42
+ raise TypeError("Expected argument 'type' to be a str")
43
+ pulumi.set(__self__, "type", type)
44
+
45
+ @property
46
+ @pulumi.getter
47
+ def charset(self) -> Optional[str]:
48
+ """
49
+ The charset of the database.
50
+ """
51
+ return pulumi.get(self, "charset")
52
+
53
+ @property
54
+ @pulumi.getter
55
+ def collation(self) -> Optional[str]:
56
+ """
57
+ The collation of the database.
58
+ """
59
+ return pulumi.get(self, "collation")
60
+
61
+ @property
62
+ @pulumi.getter
63
+ def id(self) -> str:
64
+ """
65
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
66
+ """
67
+ return pulumi.get(self, "id")
68
+
69
+ @property
70
+ @pulumi.getter
71
+ def name(self) -> str:
72
+ """
73
+ The name of the resource
74
+ """
75
+ return pulumi.get(self, "name")
76
+
77
+ @property
78
+ @pulumi.getter(name="systemData")
79
+ def system_data(self) -> 'outputs.SystemDataResponse':
80
+ """
81
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
82
+ """
83
+ return pulumi.get(self, "system_data")
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def type(self) -> str:
88
+ """
89
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
90
+ """
91
+ return pulumi.get(self, "type")
92
+
93
+
94
+ class AwaitableGetDatabaseResult(GetDatabaseResult):
95
+ # pylint: disable=using-constant-test
96
+ def __await__(self):
97
+ if False:
98
+ yield self
99
+ return GetDatabaseResult(
100
+ charset=self.charset,
101
+ collation=self.collation,
102
+ id=self.id,
103
+ name=self.name,
104
+ system_data=self.system_data,
105
+ type=self.type)
106
+
107
+
108
+ def get_database(database_name: Optional[str] = None,
109
+ resource_group_name: Optional[str] = None,
110
+ server_name: Optional[str] = None,
111
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseResult:
112
+ """
113
+ Gets information about a database.
114
+
115
+
116
+ :param str database_name: The name of the database.
117
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
118
+ :param str server_name: The name of the server.
119
+ """
120
+ __args__ = dict()
121
+ __args__['databaseName'] = database_name
122
+ __args__['resourceGroupName'] = resource_group_name
123
+ __args__['serverName'] = server_name
124
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
125
+ __ret__ = pulumi.runtime.invoke('azure-native:dbformysql/v20231230:getDatabase', __args__, opts=opts, typ=GetDatabaseResult).value
126
+
127
+ return AwaitableGetDatabaseResult(
128
+ charset=pulumi.get(__ret__, 'charset'),
129
+ collation=pulumi.get(__ret__, 'collation'),
130
+ id=pulumi.get(__ret__, 'id'),
131
+ name=pulumi.get(__ret__, 'name'),
132
+ system_data=pulumi.get(__ret__, 'system_data'),
133
+ type=pulumi.get(__ret__, 'type'))
134
+
135
+
136
+ @_utilities.lift_output_func(get_database)
137
+ def get_database_output(database_name: Optional[pulumi.Input[str]] = None,
138
+ resource_group_name: Optional[pulumi.Input[str]] = None,
139
+ server_name: Optional[pulumi.Input[str]] = None,
140
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDatabaseResult]:
141
+ """
142
+ Gets information about a database.
143
+
144
+
145
+ :param str database_name: The name of the database.
146
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
147
+ :param str server_name: The name of the server.
148
+ """
149
+ ...
@@ -0,0 +1,149 @@
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
+
13
+ __all__ = [
14
+ 'GetFirewallRuleResult',
15
+ 'AwaitableGetFirewallRuleResult',
16
+ 'get_firewall_rule',
17
+ 'get_firewall_rule_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetFirewallRuleResult:
22
+ """
23
+ Represents a server firewall rule.
24
+ """
25
+ def __init__(__self__, end_ip_address=None, id=None, name=None, start_ip_address=None, system_data=None, type=None):
26
+ if end_ip_address and not isinstance(end_ip_address, str):
27
+ raise TypeError("Expected argument 'end_ip_address' to be a str")
28
+ pulumi.set(__self__, "end_ip_address", end_ip_address)
29
+ if id and not isinstance(id, str):
30
+ raise TypeError("Expected argument 'id' to be a str")
31
+ pulumi.set(__self__, "id", id)
32
+ if name and not isinstance(name, str):
33
+ raise TypeError("Expected argument 'name' to be a str")
34
+ pulumi.set(__self__, "name", name)
35
+ if start_ip_address and not isinstance(start_ip_address, str):
36
+ raise TypeError("Expected argument 'start_ip_address' to be a str")
37
+ pulumi.set(__self__, "start_ip_address", start_ip_address)
38
+ if system_data and not isinstance(system_data, dict):
39
+ raise TypeError("Expected argument 'system_data' to be a dict")
40
+ pulumi.set(__self__, "system_data", system_data)
41
+ if type and not isinstance(type, str):
42
+ raise TypeError("Expected argument 'type' to be a str")
43
+ pulumi.set(__self__, "type", type)
44
+
45
+ @property
46
+ @pulumi.getter(name="endIpAddress")
47
+ def end_ip_address(self) -> str:
48
+ """
49
+ The end IP address of the server firewall rule. Must be IPv4 format.
50
+ """
51
+ return pulumi.get(self, "end_ip_address")
52
+
53
+ @property
54
+ @pulumi.getter
55
+ def id(self) -> str:
56
+ """
57
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
58
+ """
59
+ return pulumi.get(self, "id")
60
+
61
+ @property
62
+ @pulumi.getter
63
+ def name(self) -> str:
64
+ """
65
+ The name of the resource
66
+ """
67
+ return pulumi.get(self, "name")
68
+
69
+ @property
70
+ @pulumi.getter(name="startIpAddress")
71
+ def start_ip_address(self) -> str:
72
+ """
73
+ The start IP address of the server firewall rule. Must be IPv4 format.
74
+ """
75
+ return pulumi.get(self, "start_ip_address")
76
+
77
+ @property
78
+ @pulumi.getter(name="systemData")
79
+ def system_data(self) -> 'outputs.SystemDataResponse':
80
+ """
81
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
82
+ """
83
+ return pulumi.get(self, "system_data")
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def type(self) -> str:
88
+ """
89
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
90
+ """
91
+ return pulumi.get(self, "type")
92
+
93
+
94
+ class AwaitableGetFirewallRuleResult(GetFirewallRuleResult):
95
+ # pylint: disable=using-constant-test
96
+ def __await__(self):
97
+ if False:
98
+ yield self
99
+ return GetFirewallRuleResult(
100
+ end_ip_address=self.end_ip_address,
101
+ id=self.id,
102
+ name=self.name,
103
+ start_ip_address=self.start_ip_address,
104
+ system_data=self.system_data,
105
+ type=self.type)
106
+
107
+
108
+ def get_firewall_rule(firewall_rule_name: Optional[str] = None,
109
+ resource_group_name: Optional[str] = None,
110
+ server_name: Optional[str] = None,
111
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFirewallRuleResult:
112
+ """
113
+ Gets information about a server firewall rule.
114
+
115
+
116
+ :param str firewall_rule_name: The name of the server firewall rule.
117
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
118
+ :param str server_name: The name of the server.
119
+ """
120
+ __args__ = dict()
121
+ __args__['firewallRuleName'] = firewall_rule_name
122
+ __args__['resourceGroupName'] = resource_group_name
123
+ __args__['serverName'] = server_name
124
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
125
+ __ret__ = pulumi.runtime.invoke('azure-native:dbformysql/v20231230:getFirewallRule', __args__, opts=opts, typ=GetFirewallRuleResult).value
126
+
127
+ return AwaitableGetFirewallRuleResult(
128
+ end_ip_address=pulumi.get(__ret__, 'end_ip_address'),
129
+ id=pulumi.get(__ret__, 'id'),
130
+ name=pulumi.get(__ret__, 'name'),
131
+ start_ip_address=pulumi.get(__ret__, 'start_ip_address'),
132
+ system_data=pulumi.get(__ret__, 'system_data'),
133
+ type=pulumi.get(__ret__, 'type'))
134
+
135
+
136
+ @_utilities.lift_output_func(get_firewall_rule)
137
+ def get_firewall_rule_output(firewall_rule_name: Optional[pulumi.Input[str]] = None,
138
+ resource_group_name: Optional[pulumi.Input[str]] = None,
139
+ server_name: Optional[pulumi.Input[str]] = None,
140
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFirewallRuleResult]:
141
+ """
142
+ Gets information about a server firewall rule.
143
+
144
+
145
+ :param str firewall_rule_name: The name of the server firewall rule.
146
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
147
+ :param str server_name: The name of the server.
148
+ """
149
+ ...
@@ -31,6 +31,7 @@ from .get_pool import *
31
31
  from .get_project import *
32
32
  from .get_project_catalog import *
33
33
  from .get_project_catalog_environment_definition_error_details import *
34
+ from .get_project_catalog_image_definition_build_details import *
34
35
  from .get_project_catalog_sync_error_details import *
35
36
  from .get_project_environment_type import *
36
37
  from .get_project_inherited_settings import *
@@ -63,6 +64,8 @@ if typing.TYPE_CHECKING:
63
64
  v20240501preview = __v20240501preview
64
65
  import pulumi_azure_native.devcenter.v20240601preview as __v20240601preview
65
66
  v20240601preview = __v20240601preview
67
+ import pulumi_azure_native.devcenter.v20240701preview as __v20240701preview
68
+ v20240701preview = __v20240701preview
66
69
  else:
67
70
  v20221111preview = _utilities.lazy_import('pulumi_azure_native.devcenter.v20221111preview')
68
71
  v20230401 = _utilities.lazy_import('pulumi_azure_native.devcenter.v20230401')
@@ -71,4 +74,5 @@ else:
71
74
  v20240201 = _utilities.lazy_import('pulumi_azure_native.devcenter.v20240201')
72
75
  v20240501preview = _utilities.lazy_import('pulumi_azure_native.devcenter.v20240501preview')
73
76
  v20240601preview = _utilities.lazy_import('pulumi_azure_native.devcenter.v20240601preview')
77
+ v20240701preview = _utilities.lazy_import('pulumi_azure_native.devcenter.v20240701preview')
74
78
 
@@ -95,7 +95,7 @@ class AttachedNetworkByDevCenter(pulumi.CustomResource):
95
95
  Represents an attached NetworkConnection.
96
96
  Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.
97
97
 
98
- Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
98
+ Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview.
99
99
 
100
100
  :param str resource_name: The name of the resource.
101
101
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -114,7 +114,7 @@ class AttachedNetworkByDevCenter(pulumi.CustomResource):
114
114
  Represents an attached NetworkConnection.
115
115
  Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.
116
116
 
117
- Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
117
+ Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview.
118
118
 
119
119
  :param str resource_name: The name of the resource.
120
120
  :param AttachedNetworkByDevCenterArgs args: The arguments to use to populate this resource's properties.
@@ -161,7 +161,7 @@ class AttachedNetworkByDevCenter(pulumi.CustomResource):
161
161
  __props__.__dict__["provisioning_state"] = None
162
162
  __props__.__dict__["system_data"] = None
163
163
  __props__.__dict__["type"] = None
164
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230401:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240201:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:AttachedNetworkByDevCenter")])
164
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230401:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240201:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:AttachedNetworkByDevCenter"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:AttachedNetworkByDevCenter")])
165
165
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
166
166
  super(AttachedNetworkByDevCenter, __self__).__init__(
167
167
  'azure-native:devcenter:AttachedNetworkByDevCenter',
@@ -114,7 +114,7 @@ class Catalog(pulumi.CustomResource):
114
114
  Represents a catalog.
115
115
  Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.
116
116
 
117
- Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
117
+ Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview.
118
118
 
119
119
  :param str resource_name: The name of the resource.
120
120
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -134,7 +134,7 @@ class Catalog(pulumi.CustomResource):
134
134
  Represents a catalog.
135
135
  Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2022-09-01-preview.
136
136
 
137
- Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
137
+ Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview.
138
138
 
139
139
  :param str resource_name: The name of the resource.
140
140
  :param CatalogArgs args: The arguments to use to populate this resource's properties.
@@ -180,7 +180,7 @@ class Catalog(pulumi.CustomResource):
180
180
  __props__.__dict__["sync_state"] = None
181
181
  __props__.__dict__["system_data"] = None
182
182
  __props__.__dict__["type"] = None
183
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Catalog")])
183
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Catalog"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Catalog")])
184
184
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
185
185
  super(Catalog, __self__).__init__(
186
186
  'azure-native:devcenter:Catalog',