pulumi-azure-native 2.47.0a1719232402__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.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/METADATA +1 -1
  293. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/RECORD +295 -180
  294. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/WHEEL +1 -1
  295. {pulumi_azure_native-2.47.0a1719232402.dist-info → pulumi_azure_native-2.48.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,157 @@
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
+ 'GetLoadTestMappingResult',
15
+ 'AwaitableGetLoadTestMappingResult',
16
+ 'get_load_test_mapping',
17
+ 'get_load_test_mapping_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetLoadTestMappingResult:
22
+ """
23
+ LoadTest mapping resource details
24
+ """
25
+ def __init__(__self__, azure_load_testing_resource_id=None, id=None, name=None, source_resource_id=None, system_data=None, test_id=None, type=None):
26
+ if azure_load_testing_resource_id and not isinstance(azure_load_testing_resource_id, str):
27
+ raise TypeError("Expected argument 'azure_load_testing_resource_id' to be a str")
28
+ pulumi.set(__self__, "azure_load_testing_resource_id", azure_load_testing_resource_id)
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 source_resource_id and not isinstance(source_resource_id, str):
36
+ raise TypeError("Expected argument 'source_resource_id' to be a str")
37
+ pulumi.set(__self__, "source_resource_id", source_resource_id)
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 test_id and not isinstance(test_id, str):
42
+ raise TypeError("Expected argument 'test_id' to be a str")
43
+ pulumi.set(__self__, "test_id", test_id)
44
+ if type and not isinstance(type, str):
45
+ raise TypeError("Expected argument 'type' to be a str")
46
+ pulumi.set(__self__, "type", type)
47
+
48
+ @property
49
+ @pulumi.getter(name="azureLoadTestingResourceId")
50
+ def azure_load_testing_resource_id(self) -> Optional[str]:
51
+ """
52
+ Mapped Azure Load Test resource Id.
53
+ """
54
+ return pulumi.get(self, "azure_load_testing_resource_id")
55
+
56
+ @property
57
+ @pulumi.getter
58
+ def id(self) -> str:
59
+ """
60
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
61
+ """
62
+ return pulumi.get(self, "id")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def name(self) -> str:
67
+ """
68
+ The name of the resource
69
+ """
70
+ return pulumi.get(self, "name")
71
+
72
+ @property
73
+ @pulumi.getter(name="sourceResourceId")
74
+ def source_resource_id(self) -> Optional[str]:
75
+ """
76
+ Mapped source resource Id.
77
+ """
78
+ return pulumi.get(self, "source_resource_id")
79
+
80
+ @property
81
+ @pulumi.getter(name="systemData")
82
+ def system_data(self) -> 'outputs.SystemDataResponse':
83
+ """
84
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
85
+ """
86
+ return pulumi.get(self, "system_data")
87
+
88
+ @property
89
+ @pulumi.getter(name="testId")
90
+ def test_id(self) -> Optional[str]:
91
+ """
92
+ Mapped Azure Load Test resource test-id.
93
+ """
94
+ return pulumi.get(self, "test_id")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def type(self) -> str:
99
+ """
100
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
101
+ """
102
+ return pulumi.get(self, "type")
103
+
104
+
105
+ class AwaitableGetLoadTestMappingResult(GetLoadTestMappingResult):
106
+ # pylint: disable=using-constant-test
107
+ def __await__(self):
108
+ if False:
109
+ yield self
110
+ return GetLoadTestMappingResult(
111
+ azure_load_testing_resource_id=self.azure_load_testing_resource_id,
112
+ id=self.id,
113
+ name=self.name,
114
+ source_resource_id=self.source_resource_id,
115
+ system_data=self.system_data,
116
+ test_id=self.test_id,
117
+ type=self.type)
118
+
119
+
120
+ def get_load_test_mapping(load_test_mapping_name: Optional[str] = None,
121
+ resource_uri: Optional[str] = None,
122
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLoadTestMappingResult:
123
+ """
124
+ Get a LoadTestMappingResource
125
+
126
+
127
+ :param str load_test_mapping_name: Load Test Mapping name
128
+ :param str resource_uri: The fully qualified Azure Resource manager identifier of the resource.
129
+ """
130
+ __args__ = dict()
131
+ __args__['loadTestMappingName'] = load_test_mapping_name
132
+ __args__['resourceUri'] = resource_uri
133
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
134
+ __ret__ = pulumi.runtime.invoke('azure-native:loadtestservice/v20231201preview:getLoadTestMapping', __args__, opts=opts, typ=GetLoadTestMappingResult).value
135
+
136
+ return AwaitableGetLoadTestMappingResult(
137
+ azure_load_testing_resource_id=pulumi.get(__ret__, 'azure_load_testing_resource_id'),
138
+ id=pulumi.get(__ret__, 'id'),
139
+ name=pulumi.get(__ret__, 'name'),
140
+ source_resource_id=pulumi.get(__ret__, 'source_resource_id'),
141
+ system_data=pulumi.get(__ret__, 'system_data'),
142
+ test_id=pulumi.get(__ret__, 'test_id'),
143
+ type=pulumi.get(__ret__, 'type'))
144
+
145
+
146
+ @_utilities.lift_output_func(get_load_test_mapping)
147
+ def get_load_test_mapping_output(load_test_mapping_name: Optional[pulumi.Input[str]] = None,
148
+ resource_uri: Optional[pulumi.Input[str]] = None,
149
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLoadTestMappingResult]:
150
+ """
151
+ Get a LoadTestMappingResource
152
+
153
+
154
+ :param str load_test_mapping_name: Load Test Mapping name
155
+ :param str resource_uri: The fully qualified Azure Resource manager identifier of the resource.
156
+ """
157
+ ...
@@ -0,0 +1,157 @@
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
+ 'GetLoadTestProfileMappingResult',
15
+ 'AwaitableGetLoadTestProfileMappingResult',
16
+ 'get_load_test_profile_mapping',
17
+ 'get_load_test_profile_mapping_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetLoadTestProfileMappingResult:
22
+ """
23
+ LoadTest profile mapping resource details
24
+ """
25
+ def __init__(__self__, azure_load_testing_resource_id=None, id=None, name=None, source_resource_id=None, system_data=None, test_profile_id=None, type=None):
26
+ if azure_load_testing_resource_id and not isinstance(azure_load_testing_resource_id, str):
27
+ raise TypeError("Expected argument 'azure_load_testing_resource_id' to be a str")
28
+ pulumi.set(__self__, "azure_load_testing_resource_id", azure_load_testing_resource_id)
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 source_resource_id and not isinstance(source_resource_id, str):
36
+ raise TypeError("Expected argument 'source_resource_id' to be a str")
37
+ pulumi.set(__self__, "source_resource_id", source_resource_id)
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 test_profile_id and not isinstance(test_profile_id, str):
42
+ raise TypeError("Expected argument 'test_profile_id' to be a str")
43
+ pulumi.set(__self__, "test_profile_id", test_profile_id)
44
+ if type and not isinstance(type, str):
45
+ raise TypeError("Expected argument 'type' to be a str")
46
+ pulumi.set(__self__, "type", type)
47
+
48
+ @property
49
+ @pulumi.getter(name="azureLoadTestingResourceId")
50
+ def azure_load_testing_resource_id(self) -> Optional[str]:
51
+ """
52
+ Mapped Azure Load Test resource Id.
53
+ """
54
+ return pulumi.get(self, "azure_load_testing_resource_id")
55
+
56
+ @property
57
+ @pulumi.getter
58
+ def id(self) -> str:
59
+ """
60
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
61
+ """
62
+ return pulumi.get(self, "id")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def name(self) -> str:
67
+ """
68
+ The name of the resource
69
+ """
70
+ return pulumi.get(self, "name")
71
+
72
+ @property
73
+ @pulumi.getter(name="sourceResourceId")
74
+ def source_resource_id(self) -> Optional[str]:
75
+ """
76
+ Mapped source resource Id.
77
+ """
78
+ return pulumi.get(self, "source_resource_id")
79
+
80
+ @property
81
+ @pulumi.getter(name="systemData")
82
+ def system_data(self) -> 'outputs.SystemDataResponse':
83
+ """
84
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
85
+ """
86
+ return pulumi.get(self, "system_data")
87
+
88
+ @property
89
+ @pulumi.getter(name="testProfileId")
90
+ def test_profile_id(self) -> Optional[str]:
91
+ """
92
+ Mapped Azure Load Test resource test-profile-id.
93
+ """
94
+ return pulumi.get(self, "test_profile_id")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def type(self) -> str:
99
+ """
100
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
101
+ """
102
+ return pulumi.get(self, "type")
103
+
104
+
105
+ class AwaitableGetLoadTestProfileMappingResult(GetLoadTestProfileMappingResult):
106
+ # pylint: disable=using-constant-test
107
+ def __await__(self):
108
+ if False:
109
+ yield self
110
+ return GetLoadTestProfileMappingResult(
111
+ azure_load_testing_resource_id=self.azure_load_testing_resource_id,
112
+ id=self.id,
113
+ name=self.name,
114
+ source_resource_id=self.source_resource_id,
115
+ system_data=self.system_data,
116
+ test_profile_id=self.test_profile_id,
117
+ type=self.type)
118
+
119
+
120
+ def get_load_test_profile_mapping(load_test_profile_mapping_name: Optional[str] = None,
121
+ resource_uri: Optional[str] = None,
122
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLoadTestProfileMappingResult:
123
+ """
124
+ Get a LoadTestProfileMappingResource
125
+
126
+
127
+ :param str load_test_profile_mapping_name: Load Test Profile Mapping name
128
+ :param str resource_uri: The fully qualified Azure Resource manager identifier of the resource.
129
+ """
130
+ __args__ = dict()
131
+ __args__['loadTestProfileMappingName'] = load_test_profile_mapping_name
132
+ __args__['resourceUri'] = resource_uri
133
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
134
+ __ret__ = pulumi.runtime.invoke('azure-native:loadtestservice/v20231201preview:getLoadTestProfileMapping', __args__, opts=opts, typ=GetLoadTestProfileMappingResult).value
135
+
136
+ return AwaitableGetLoadTestProfileMappingResult(
137
+ azure_load_testing_resource_id=pulumi.get(__ret__, 'azure_load_testing_resource_id'),
138
+ id=pulumi.get(__ret__, 'id'),
139
+ name=pulumi.get(__ret__, 'name'),
140
+ source_resource_id=pulumi.get(__ret__, 'source_resource_id'),
141
+ system_data=pulumi.get(__ret__, 'system_data'),
142
+ test_profile_id=pulumi.get(__ret__, 'test_profile_id'),
143
+ type=pulumi.get(__ret__, 'type'))
144
+
145
+
146
+ @_utilities.lift_output_func(get_load_test_profile_mapping)
147
+ def get_load_test_profile_mapping_output(load_test_profile_mapping_name: Optional[pulumi.Input[str]] = None,
148
+ resource_uri: Optional[pulumi.Input[str]] = None,
149
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLoadTestProfileMappingResult]:
150
+ """
151
+ Get a LoadTestProfileMappingResource
152
+
153
+
154
+ :param str load_test_profile_mapping_name: Load Test Profile Mapping name
155
+ :param str resource_uri: The fully qualified Azure Resource manager identifier of the resource.
156
+ """
157
+ ...
@@ -0,0 +1,331 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+ from ._inputs import *
14
+
15
+ __all__ = ['LoadTestArgs', 'LoadTest']
16
+
17
+ @pulumi.input_type
18
+ class LoadTestArgs:
19
+ def __init__(__self__, *,
20
+ resource_group_name: pulumi.Input[str],
21
+ description: Optional[pulumi.Input[str]] = None,
22
+ encryption: Optional[pulumi.Input['EncryptionPropertiesArgs']] = None,
23
+ identity: Optional[pulumi.Input['ManagedServiceIdentityArgs']] = None,
24
+ load_test_name: Optional[pulumi.Input[str]] = None,
25
+ location: Optional[pulumi.Input[str]] = None,
26
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
27
+ """
28
+ The set of arguments for constructing a LoadTest resource.
29
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
30
+ :param pulumi.Input[str] description: Description of the resource.
31
+ :param pulumi.Input['EncryptionPropertiesArgs'] encryption: CMK Encryption property.
32
+ :param pulumi.Input['ManagedServiceIdentityArgs'] identity: The managed service identities assigned to this resource.
33
+ :param pulumi.Input[str] load_test_name: Load Test name
34
+ :param pulumi.Input[str] location: The geo-location where the resource lives
35
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
36
+ """
37
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
38
+ if description is not None:
39
+ pulumi.set(__self__, "description", description)
40
+ if encryption is not None:
41
+ pulumi.set(__self__, "encryption", encryption)
42
+ if identity is not None:
43
+ pulumi.set(__self__, "identity", identity)
44
+ if load_test_name is not None:
45
+ pulumi.set(__self__, "load_test_name", load_test_name)
46
+ if location is not None:
47
+ pulumi.set(__self__, "location", location)
48
+ if tags is not None:
49
+ pulumi.set(__self__, "tags", tags)
50
+
51
+ @property
52
+ @pulumi.getter(name="resourceGroupName")
53
+ def resource_group_name(self) -> pulumi.Input[str]:
54
+ """
55
+ The name of the resource group. The name is case insensitive.
56
+ """
57
+ return pulumi.get(self, "resource_group_name")
58
+
59
+ @resource_group_name.setter
60
+ def resource_group_name(self, value: pulumi.Input[str]):
61
+ pulumi.set(self, "resource_group_name", value)
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def description(self) -> Optional[pulumi.Input[str]]:
66
+ """
67
+ Description of the resource.
68
+ """
69
+ return pulumi.get(self, "description")
70
+
71
+ @description.setter
72
+ def description(self, value: Optional[pulumi.Input[str]]):
73
+ pulumi.set(self, "description", value)
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def encryption(self) -> Optional[pulumi.Input['EncryptionPropertiesArgs']]:
78
+ """
79
+ CMK Encryption property.
80
+ """
81
+ return pulumi.get(self, "encryption")
82
+
83
+ @encryption.setter
84
+ def encryption(self, value: Optional[pulumi.Input['EncryptionPropertiesArgs']]):
85
+ pulumi.set(self, "encryption", value)
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def identity(self) -> Optional[pulumi.Input['ManagedServiceIdentityArgs']]:
90
+ """
91
+ The managed service identities assigned to this resource.
92
+ """
93
+ return pulumi.get(self, "identity")
94
+
95
+ @identity.setter
96
+ def identity(self, value: Optional[pulumi.Input['ManagedServiceIdentityArgs']]):
97
+ pulumi.set(self, "identity", value)
98
+
99
+ @property
100
+ @pulumi.getter(name="loadTestName")
101
+ def load_test_name(self) -> Optional[pulumi.Input[str]]:
102
+ """
103
+ Load Test name
104
+ """
105
+ return pulumi.get(self, "load_test_name")
106
+
107
+ @load_test_name.setter
108
+ def load_test_name(self, value: Optional[pulumi.Input[str]]):
109
+ pulumi.set(self, "load_test_name", value)
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def location(self) -> Optional[pulumi.Input[str]]:
114
+ """
115
+ The geo-location where the resource lives
116
+ """
117
+ return pulumi.get(self, "location")
118
+
119
+ @location.setter
120
+ def location(self, value: Optional[pulumi.Input[str]]):
121
+ pulumi.set(self, "location", value)
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
126
+ """
127
+ Resource tags.
128
+ """
129
+ return pulumi.get(self, "tags")
130
+
131
+ @tags.setter
132
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
133
+ pulumi.set(self, "tags", value)
134
+
135
+
136
+ class LoadTest(pulumi.CustomResource):
137
+ @overload
138
+ def __init__(__self__,
139
+ resource_name: str,
140
+ opts: Optional[pulumi.ResourceOptions] = None,
141
+ description: Optional[pulumi.Input[str]] = None,
142
+ encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionPropertiesArgs']]] = None,
143
+ identity: Optional[pulumi.Input[pulumi.InputType['ManagedServiceIdentityArgs']]] = None,
144
+ load_test_name: Optional[pulumi.Input[str]] = None,
145
+ location: Optional[pulumi.Input[str]] = None,
146
+ resource_group_name: Optional[pulumi.Input[str]] = None,
147
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
148
+ __props__=None):
149
+ """
150
+ LoadTest details.
151
+
152
+ :param str resource_name: The name of the resource.
153
+ :param pulumi.ResourceOptions opts: Options for the resource.
154
+ :param pulumi.Input[str] description: Description of the resource.
155
+ :param pulumi.Input[pulumi.InputType['EncryptionPropertiesArgs']] encryption: CMK Encryption property.
156
+ :param pulumi.Input[pulumi.InputType['ManagedServiceIdentityArgs']] identity: The managed service identities assigned to this resource.
157
+ :param pulumi.Input[str] load_test_name: Load Test name
158
+ :param pulumi.Input[str] location: The geo-location where the resource lives
159
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
160
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
161
+ """
162
+ ...
163
+ @overload
164
+ def __init__(__self__,
165
+ resource_name: str,
166
+ args: LoadTestArgs,
167
+ opts: Optional[pulumi.ResourceOptions] = None):
168
+ """
169
+ LoadTest details.
170
+
171
+ :param str resource_name: The name of the resource.
172
+ :param LoadTestArgs args: The arguments to use to populate this resource's properties.
173
+ :param pulumi.ResourceOptions opts: Options for the resource.
174
+ """
175
+ ...
176
+ def __init__(__self__, resource_name: str, *args, **kwargs):
177
+ resource_args, opts = _utilities.get_resource_args_opts(LoadTestArgs, pulumi.ResourceOptions, *args, **kwargs)
178
+ if resource_args is not None:
179
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
180
+ else:
181
+ __self__._internal_init(resource_name, *args, **kwargs)
182
+
183
+ def _internal_init(__self__,
184
+ resource_name: str,
185
+ opts: Optional[pulumi.ResourceOptions] = None,
186
+ description: Optional[pulumi.Input[str]] = None,
187
+ encryption: Optional[pulumi.Input[pulumi.InputType['EncryptionPropertiesArgs']]] = None,
188
+ identity: Optional[pulumi.Input[pulumi.InputType['ManagedServiceIdentityArgs']]] = None,
189
+ load_test_name: Optional[pulumi.Input[str]] = None,
190
+ location: Optional[pulumi.Input[str]] = None,
191
+ resource_group_name: Optional[pulumi.Input[str]] = None,
192
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
193
+ __props__=None):
194
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
195
+ if not isinstance(opts, pulumi.ResourceOptions):
196
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
197
+ if opts.id is None:
198
+ if __props__ is not None:
199
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
200
+ __props__ = LoadTestArgs.__new__(LoadTestArgs)
201
+
202
+ __props__.__dict__["description"] = description
203
+ __props__.__dict__["encryption"] = encryption
204
+ __props__.__dict__["identity"] = identity
205
+ __props__.__dict__["load_test_name"] = load_test_name
206
+ __props__.__dict__["location"] = location
207
+ if resource_group_name is None and not opts.urn:
208
+ raise TypeError("Missing required property 'resource_group_name'")
209
+ __props__.__dict__["resource_group_name"] = resource_group_name
210
+ __props__.__dict__["tags"] = tags
211
+ __props__.__dict__["data_plane_uri"] = None
212
+ __props__.__dict__["name"] = None
213
+ __props__.__dict__["provisioning_state"] = None
214
+ __props__.__dict__["system_data"] = None
215
+ __props__.__dict__["type"] = None
216
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:loadtestservice:LoadTest"), pulumi.Alias(type_="azure-native:loadtestservice/v20211201preview:LoadTest"), pulumi.Alias(type_="azure-native:loadtestservice/v20220415preview:LoadTest"), pulumi.Alias(type_="azure-native:loadtestservice/v20221201:LoadTest")])
217
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
218
+ super(LoadTest, __self__).__init__(
219
+ 'azure-native:loadtestservice/v20231201preview:LoadTest',
220
+ resource_name,
221
+ __props__,
222
+ opts)
223
+
224
+ @staticmethod
225
+ def get(resource_name: str,
226
+ id: pulumi.Input[str],
227
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'LoadTest':
228
+ """
229
+ Get an existing LoadTest resource's state with the given name, id, and optional extra
230
+ properties used to qualify the lookup.
231
+
232
+ :param str resource_name: The unique name of the resulting resource.
233
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
234
+ :param pulumi.ResourceOptions opts: Options for the resource.
235
+ """
236
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
237
+
238
+ __props__ = LoadTestArgs.__new__(LoadTestArgs)
239
+
240
+ __props__.__dict__["data_plane_uri"] = None
241
+ __props__.__dict__["description"] = None
242
+ __props__.__dict__["encryption"] = None
243
+ __props__.__dict__["identity"] = None
244
+ __props__.__dict__["location"] = None
245
+ __props__.__dict__["name"] = None
246
+ __props__.__dict__["provisioning_state"] = None
247
+ __props__.__dict__["system_data"] = None
248
+ __props__.__dict__["tags"] = None
249
+ __props__.__dict__["type"] = None
250
+ return LoadTest(resource_name, opts=opts, __props__=__props__)
251
+
252
+ @property
253
+ @pulumi.getter(name="dataPlaneURI")
254
+ def data_plane_uri(self) -> pulumi.Output[str]:
255
+ """
256
+ Resource data plane URI.
257
+ """
258
+ return pulumi.get(self, "data_plane_uri")
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def description(self) -> pulumi.Output[Optional[str]]:
263
+ """
264
+ Description of the resource.
265
+ """
266
+ return pulumi.get(self, "description")
267
+
268
+ @property
269
+ @pulumi.getter
270
+ def encryption(self) -> pulumi.Output[Optional['outputs.EncryptionPropertiesResponse']]:
271
+ """
272
+ CMK Encryption property.
273
+ """
274
+ return pulumi.get(self, "encryption")
275
+
276
+ @property
277
+ @pulumi.getter
278
+ def identity(self) -> pulumi.Output[Optional['outputs.ManagedServiceIdentityResponse']]:
279
+ """
280
+ The managed service identities assigned to this resource.
281
+ """
282
+ return pulumi.get(self, "identity")
283
+
284
+ @property
285
+ @pulumi.getter
286
+ def location(self) -> pulumi.Output[str]:
287
+ """
288
+ The geo-location where the resource lives
289
+ """
290
+ return pulumi.get(self, "location")
291
+
292
+ @property
293
+ @pulumi.getter
294
+ def name(self) -> pulumi.Output[str]:
295
+ """
296
+ The name of the resource
297
+ """
298
+ return pulumi.get(self, "name")
299
+
300
+ @property
301
+ @pulumi.getter(name="provisioningState")
302
+ def provisioning_state(self) -> pulumi.Output[str]:
303
+ """
304
+ Resource provisioning state.
305
+ """
306
+ return pulumi.get(self, "provisioning_state")
307
+
308
+ @property
309
+ @pulumi.getter(name="systemData")
310
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
311
+ """
312
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
313
+ """
314
+ return pulumi.get(self, "system_data")
315
+
316
+ @property
317
+ @pulumi.getter
318
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
319
+ """
320
+ Resource tags.
321
+ """
322
+ return pulumi.get(self, "tags")
323
+
324
+ @property
325
+ @pulumi.getter
326
+ def type(self) -> pulumi.Output[str]:
327
+ """
328
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
329
+ """
330
+ return pulumi.get(self, "type")
331
+