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,788 @@
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__ = ['ConnectedClusterArgs', 'ConnectedCluster']
16
+
17
+ @pulumi.input_type
18
+ class ConnectedClusterArgs:
19
+ def __init__(__self__, *,
20
+ agent_public_key_certificate: pulumi.Input[str],
21
+ identity: pulumi.Input['ConnectedClusterIdentityArgs'],
22
+ resource_group_name: pulumi.Input[str],
23
+ aad_profile: Optional[pulumi.Input['AadProfileArgs']] = None,
24
+ arc_agent_profile: Optional[pulumi.Input['ArcAgentProfileArgs']] = None,
25
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]] = None,
26
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
27
+ cluster_name: Optional[pulumi.Input[str]] = None,
28
+ distribution: Optional[pulumi.Input[str]] = None,
29
+ distribution_version: Optional[pulumi.Input[str]] = None,
30
+ gateway: Optional[pulumi.Input['GatewayArgs']] = None,
31
+ infrastructure: Optional[pulumi.Input[str]] = None,
32
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
33
+ location: Optional[pulumi.Input[str]] = None,
34
+ oidc_issuer_profile: Optional[pulumi.Input['OidcIssuerProfileArgs']] = None,
35
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
36
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
37
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
38
+ security_profile: Optional[pulumi.Input['SecurityProfileArgs']] = None,
39
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
40
+ """
41
+ The set of arguments for constructing a ConnectedCluster resource.
42
+ :param pulumi.Input[str] agent_public_key_certificate: Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
43
+ :param pulumi.Input['ConnectedClusterIdentityArgs'] identity: The identity of the connected cluster.
44
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
45
+ :param pulumi.Input['AadProfileArgs'] aad_profile: AAD profile for the connected cluster.
46
+ :param pulumi.Input['ArcAgentProfileArgs'] arc_agent_profile: Arc agentry configuration for the provisioned cluster.
47
+ :param pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]] arc_agentry_configurations: Configuration settings for customizing the behavior of the connected cluster.
48
+ :param pulumi.Input[Union[str, 'AzureHybridBenefit']] azure_hybrid_benefit: Indicates whether Azure Hybrid Benefit is opted in
49
+ :param pulumi.Input[str] cluster_name: The name of the Kubernetes cluster on which get is called.
50
+ :param pulumi.Input[str] distribution: The Kubernetes distribution running on this connected cluster.
51
+ :param pulumi.Input[str] distribution_version: The Kubernetes distribution version on this connected cluster.
52
+ :param pulumi.Input['GatewayArgs'] gateway: Details of the gateway used by the Arc router for connectivity.
53
+ :param pulumi.Input[str] infrastructure: The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
54
+ :param pulumi.Input[Union[str, 'ConnectedClusterKind']] kind: The kind of connected cluster.
55
+ :param pulumi.Input[str] location: The geo-location where the resource lives
56
+ :param pulumi.Input['OidcIssuerProfileArgs'] oidc_issuer_profile: Open ID Connect (OIDC) Issuer Profile for the connected cluster.
57
+ :param pulumi.Input[str] private_link_scope_resource_id: This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
58
+ :param pulumi.Input[Union[str, 'PrivateLinkState']] private_link_state: Property which describes the state of private link on a connected cluster resource.
59
+ :param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: Provisioning state of the connected cluster resource.
60
+ :param pulumi.Input['SecurityProfileArgs'] security_profile: Security profile for the connected cluster.
61
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
62
+ """
63
+ pulumi.set(__self__, "agent_public_key_certificate", agent_public_key_certificate)
64
+ pulumi.set(__self__, "identity", identity)
65
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
66
+ if aad_profile is not None:
67
+ pulumi.set(__self__, "aad_profile", aad_profile)
68
+ if arc_agent_profile is not None:
69
+ pulumi.set(__self__, "arc_agent_profile", arc_agent_profile)
70
+ if arc_agentry_configurations is not None:
71
+ pulumi.set(__self__, "arc_agentry_configurations", arc_agentry_configurations)
72
+ if azure_hybrid_benefit is None:
73
+ azure_hybrid_benefit = 'NotApplicable'
74
+ if azure_hybrid_benefit is not None:
75
+ pulumi.set(__self__, "azure_hybrid_benefit", azure_hybrid_benefit)
76
+ if cluster_name is not None:
77
+ pulumi.set(__self__, "cluster_name", cluster_name)
78
+ if distribution is not None:
79
+ pulumi.set(__self__, "distribution", distribution)
80
+ if distribution_version is not None:
81
+ pulumi.set(__self__, "distribution_version", distribution_version)
82
+ if gateway is not None:
83
+ pulumi.set(__self__, "gateway", gateway)
84
+ if infrastructure is not None:
85
+ pulumi.set(__self__, "infrastructure", infrastructure)
86
+ if kind is not None:
87
+ pulumi.set(__self__, "kind", kind)
88
+ if location is not None:
89
+ pulumi.set(__self__, "location", location)
90
+ if oidc_issuer_profile is not None:
91
+ pulumi.set(__self__, "oidc_issuer_profile", oidc_issuer_profile)
92
+ if private_link_scope_resource_id is not None:
93
+ pulumi.set(__self__, "private_link_scope_resource_id", private_link_scope_resource_id)
94
+ if private_link_state is None:
95
+ private_link_state = 'Disabled'
96
+ if private_link_state is not None:
97
+ pulumi.set(__self__, "private_link_state", private_link_state)
98
+ if provisioning_state is not None:
99
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
100
+ if security_profile is not None:
101
+ pulumi.set(__self__, "security_profile", security_profile)
102
+ if tags is not None:
103
+ pulumi.set(__self__, "tags", tags)
104
+
105
+ @property
106
+ @pulumi.getter(name="agentPublicKeyCertificate")
107
+ def agent_public_key_certificate(self) -> pulumi.Input[str]:
108
+ """
109
+ Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
110
+ """
111
+ return pulumi.get(self, "agent_public_key_certificate")
112
+
113
+ @agent_public_key_certificate.setter
114
+ def agent_public_key_certificate(self, value: pulumi.Input[str]):
115
+ pulumi.set(self, "agent_public_key_certificate", value)
116
+
117
+ @property
118
+ @pulumi.getter
119
+ def identity(self) -> pulumi.Input['ConnectedClusterIdentityArgs']:
120
+ """
121
+ The identity of the connected cluster.
122
+ """
123
+ return pulumi.get(self, "identity")
124
+
125
+ @identity.setter
126
+ def identity(self, value: pulumi.Input['ConnectedClusterIdentityArgs']):
127
+ pulumi.set(self, "identity", value)
128
+
129
+ @property
130
+ @pulumi.getter(name="resourceGroupName")
131
+ def resource_group_name(self) -> pulumi.Input[str]:
132
+ """
133
+ The name of the resource group. The name is case insensitive.
134
+ """
135
+ return pulumi.get(self, "resource_group_name")
136
+
137
+ @resource_group_name.setter
138
+ def resource_group_name(self, value: pulumi.Input[str]):
139
+ pulumi.set(self, "resource_group_name", value)
140
+
141
+ @property
142
+ @pulumi.getter(name="aadProfile")
143
+ def aad_profile(self) -> Optional[pulumi.Input['AadProfileArgs']]:
144
+ """
145
+ AAD profile for the connected cluster.
146
+ """
147
+ return pulumi.get(self, "aad_profile")
148
+
149
+ @aad_profile.setter
150
+ def aad_profile(self, value: Optional[pulumi.Input['AadProfileArgs']]):
151
+ pulumi.set(self, "aad_profile", value)
152
+
153
+ @property
154
+ @pulumi.getter(name="arcAgentProfile")
155
+ def arc_agent_profile(self) -> Optional[pulumi.Input['ArcAgentProfileArgs']]:
156
+ """
157
+ Arc agentry configuration for the provisioned cluster.
158
+ """
159
+ return pulumi.get(self, "arc_agent_profile")
160
+
161
+ @arc_agent_profile.setter
162
+ def arc_agent_profile(self, value: Optional[pulumi.Input['ArcAgentProfileArgs']]):
163
+ pulumi.set(self, "arc_agent_profile", value)
164
+
165
+ @property
166
+ @pulumi.getter(name="arcAgentryConfigurations")
167
+ def arc_agentry_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]]:
168
+ """
169
+ Configuration settings for customizing the behavior of the connected cluster.
170
+ """
171
+ return pulumi.get(self, "arc_agentry_configurations")
172
+
173
+ @arc_agentry_configurations.setter
174
+ def arc_agentry_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]]):
175
+ pulumi.set(self, "arc_agentry_configurations", value)
176
+
177
+ @property
178
+ @pulumi.getter(name="azureHybridBenefit")
179
+ def azure_hybrid_benefit(self) -> Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]]:
180
+ """
181
+ Indicates whether Azure Hybrid Benefit is opted in
182
+ """
183
+ return pulumi.get(self, "azure_hybrid_benefit")
184
+
185
+ @azure_hybrid_benefit.setter
186
+ def azure_hybrid_benefit(self, value: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]]):
187
+ pulumi.set(self, "azure_hybrid_benefit", value)
188
+
189
+ @property
190
+ @pulumi.getter(name="clusterName")
191
+ def cluster_name(self) -> Optional[pulumi.Input[str]]:
192
+ """
193
+ The name of the Kubernetes cluster on which get is called.
194
+ """
195
+ return pulumi.get(self, "cluster_name")
196
+
197
+ @cluster_name.setter
198
+ def cluster_name(self, value: Optional[pulumi.Input[str]]):
199
+ pulumi.set(self, "cluster_name", value)
200
+
201
+ @property
202
+ @pulumi.getter
203
+ def distribution(self) -> Optional[pulumi.Input[str]]:
204
+ """
205
+ The Kubernetes distribution running on this connected cluster.
206
+ """
207
+ return pulumi.get(self, "distribution")
208
+
209
+ @distribution.setter
210
+ def distribution(self, value: Optional[pulumi.Input[str]]):
211
+ pulumi.set(self, "distribution", value)
212
+
213
+ @property
214
+ @pulumi.getter(name="distributionVersion")
215
+ def distribution_version(self) -> Optional[pulumi.Input[str]]:
216
+ """
217
+ The Kubernetes distribution version on this connected cluster.
218
+ """
219
+ return pulumi.get(self, "distribution_version")
220
+
221
+ @distribution_version.setter
222
+ def distribution_version(self, value: Optional[pulumi.Input[str]]):
223
+ pulumi.set(self, "distribution_version", value)
224
+
225
+ @property
226
+ @pulumi.getter
227
+ def gateway(self) -> Optional[pulumi.Input['GatewayArgs']]:
228
+ """
229
+ Details of the gateway used by the Arc router for connectivity.
230
+ """
231
+ return pulumi.get(self, "gateway")
232
+
233
+ @gateway.setter
234
+ def gateway(self, value: Optional[pulumi.Input['GatewayArgs']]):
235
+ pulumi.set(self, "gateway", value)
236
+
237
+ @property
238
+ @pulumi.getter
239
+ def infrastructure(self) -> Optional[pulumi.Input[str]]:
240
+ """
241
+ The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
242
+ """
243
+ return pulumi.get(self, "infrastructure")
244
+
245
+ @infrastructure.setter
246
+ def infrastructure(self, value: Optional[pulumi.Input[str]]):
247
+ pulumi.set(self, "infrastructure", value)
248
+
249
+ @property
250
+ @pulumi.getter
251
+ def kind(self) -> Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]]:
252
+ """
253
+ The kind of connected cluster.
254
+ """
255
+ return pulumi.get(self, "kind")
256
+
257
+ @kind.setter
258
+ def kind(self, value: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]]):
259
+ pulumi.set(self, "kind", value)
260
+
261
+ @property
262
+ @pulumi.getter
263
+ def location(self) -> Optional[pulumi.Input[str]]:
264
+ """
265
+ The geo-location where the resource lives
266
+ """
267
+ return pulumi.get(self, "location")
268
+
269
+ @location.setter
270
+ def location(self, value: Optional[pulumi.Input[str]]):
271
+ pulumi.set(self, "location", value)
272
+
273
+ @property
274
+ @pulumi.getter(name="oidcIssuerProfile")
275
+ def oidc_issuer_profile(self) -> Optional[pulumi.Input['OidcIssuerProfileArgs']]:
276
+ """
277
+ Open ID Connect (OIDC) Issuer Profile for the connected cluster.
278
+ """
279
+ return pulumi.get(self, "oidc_issuer_profile")
280
+
281
+ @oidc_issuer_profile.setter
282
+ def oidc_issuer_profile(self, value: Optional[pulumi.Input['OidcIssuerProfileArgs']]):
283
+ pulumi.set(self, "oidc_issuer_profile", value)
284
+
285
+ @property
286
+ @pulumi.getter(name="privateLinkScopeResourceId")
287
+ def private_link_scope_resource_id(self) -> Optional[pulumi.Input[str]]:
288
+ """
289
+ This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
290
+ """
291
+ return pulumi.get(self, "private_link_scope_resource_id")
292
+
293
+ @private_link_scope_resource_id.setter
294
+ def private_link_scope_resource_id(self, value: Optional[pulumi.Input[str]]):
295
+ pulumi.set(self, "private_link_scope_resource_id", value)
296
+
297
+ @property
298
+ @pulumi.getter(name="privateLinkState")
299
+ def private_link_state(self) -> Optional[pulumi.Input[Union[str, 'PrivateLinkState']]]:
300
+ """
301
+ Property which describes the state of private link on a connected cluster resource.
302
+ """
303
+ return pulumi.get(self, "private_link_state")
304
+
305
+ @private_link_state.setter
306
+ def private_link_state(self, value: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]]):
307
+ pulumi.set(self, "private_link_state", value)
308
+
309
+ @property
310
+ @pulumi.getter(name="provisioningState")
311
+ def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'ProvisioningState']]]:
312
+ """
313
+ Provisioning state of the connected cluster resource.
314
+ """
315
+ return pulumi.get(self, "provisioning_state")
316
+
317
+ @provisioning_state.setter
318
+ def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'ProvisioningState']]]):
319
+ pulumi.set(self, "provisioning_state", value)
320
+
321
+ @property
322
+ @pulumi.getter(name="securityProfile")
323
+ def security_profile(self) -> Optional[pulumi.Input['SecurityProfileArgs']]:
324
+ """
325
+ Security profile for the connected cluster.
326
+ """
327
+ return pulumi.get(self, "security_profile")
328
+
329
+ @security_profile.setter
330
+ def security_profile(self, value: Optional[pulumi.Input['SecurityProfileArgs']]):
331
+ pulumi.set(self, "security_profile", value)
332
+
333
+ @property
334
+ @pulumi.getter
335
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
336
+ """
337
+ Resource tags.
338
+ """
339
+ return pulumi.get(self, "tags")
340
+
341
+ @tags.setter
342
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
343
+ pulumi.set(self, "tags", value)
344
+
345
+
346
+ class ConnectedCluster(pulumi.CustomResource):
347
+ @overload
348
+ def __init__(__self__,
349
+ resource_name: str,
350
+ opts: Optional[pulumi.ResourceOptions] = None,
351
+ aad_profile: Optional[pulumi.Input[pulumi.InputType['AadProfileArgs']]] = None,
352
+ agent_public_key_certificate: Optional[pulumi.Input[str]] = None,
353
+ arc_agent_profile: Optional[pulumi.Input[pulumi.InputType['ArcAgentProfileArgs']]] = None,
354
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ArcAgentryConfigurationsArgs']]]]] = None,
355
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
356
+ cluster_name: Optional[pulumi.Input[str]] = None,
357
+ distribution: Optional[pulumi.Input[str]] = None,
358
+ distribution_version: Optional[pulumi.Input[str]] = None,
359
+ gateway: Optional[pulumi.Input[pulumi.InputType['GatewayArgs']]] = None,
360
+ identity: Optional[pulumi.Input[pulumi.InputType['ConnectedClusterIdentityArgs']]] = None,
361
+ infrastructure: Optional[pulumi.Input[str]] = None,
362
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
363
+ location: Optional[pulumi.Input[str]] = None,
364
+ oidc_issuer_profile: Optional[pulumi.Input[pulumi.InputType['OidcIssuerProfileArgs']]] = None,
365
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
366
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
367
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
368
+ resource_group_name: Optional[pulumi.Input[str]] = None,
369
+ security_profile: Optional[pulumi.Input[pulumi.InputType['SecurityProfileArgs']]] = None,
370
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
371
+ __props__=None):
372
+ """
373
+ Represents a connected cluster.
374
+
375
+ :param str resource_name: The name of the resource.
376
+ :param pulumi.ResourceOptions opts: Options for the resource.
377
+ :param pulumi.Input[pulumi.InputType['AadProfileArgs']] aad_profile: AAD profile for the connected cluster.
378
+ :param pulumi.Input[str] agent_public_key_certificate: Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
379
+ :param pulumi.Input[pulumi.InputType['ArcAgentProfileArgs']] arc_agent_profile: Arc agentry configuration for the provisioned cluster.
380
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ArcAgentryConfigurationsArgs']]]] arc_agentry_configurations: Configuration settings for customizing the behavior of the connected cluster.
381
+ :param pulumi.Input[Union[str, 'AzureHybridBenefit']] azure_hybrid_benefit: Indicates whether Azure Hybrid Benefit is opted in
382
+ :param pulumi.Input[str] cluster_name: The name of the Kubernetes cluster on which get is called.
383
+ :param pulumi.Input[str] distribution: The Kubernetes distribution running on this connected cluster.
384
+ :param pulumi.Input[str] distribution_version: The Kubernetes distribution version on this connected cluster.
385
+ :param pulumi.Input[pulumi.InputType['GatewayArgs']] gateway: Details of the gateway used by the Arc router for connectivity.
386
+ :param pulumi.Input[pulumi.InputType['ConnectedClusterIdentityArgs']] identity: The identity of the connected cluster.
387
+ :param pulumi.Input[str] infrastructure: The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
388
+ :param pulumi.Input[Union[str, 'ConnectedClusterKind']] kind: The kind of connected cluster.
389
+ :param pulumi.Input[str] location: The geo-location where the resource lives
390
+ :param pulumi.Input[pulumi.InputType['OidcIssuerProfileArgs']] oidc_issuer_profile: Open ID Connect (OIDC) Issuer Profile for the connected cluster.
391
+ :param pulumi.Input[str] private_link_scope_resource_id: This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
392
+ :param pulumi.Input[Union[str, 'PrivateLinkState']] private_link_state: Property which describes the state of private link on a connected cluster resource.
393
+ :param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: Provisioning state of the connected cluster resource.
394
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
395
+ :param pulumi.Input[pulumi.InputType['SecurityProfileArgs']] security_profile: Security profile for the connected cluster.
396
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
397
+ """
398
+ ...
399
+ @overload
400
+ def __init__(__self__,
401
+ resource_name: str,
402
+ args: ConnectedClusterArgs,
403
+ opts: Optional[pulumi.ResourceOptions] = None):
404
+ """
405
+ Represents a connected cluster.
406
+
407
+ :param str resource_name: The name of the resource.
408
+ :param ConnectedClusterArgs args: The arguments to use to populate this resource's properties.
409
+ :param pulumi.ResourceOptions opts: Options for the resource.
410
+ """
411
+ ...
412
+ def __init__(__self__, resource_name: str, *args, **kwargs):
413
+ resource_args, opts = _utilities.get_resource_args_opts(ConnectedClusterArgs, pulumi.ResourceOptions, *args, **kwargs)
414
+ if resource_args is not None:
415
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
416
+ else:
417
+ __self__._internal_init(resource_name, *args, **kwargs)
418
+
419
+ def _internal_init(__self__,
420
+ resource_name: str,
421
+ opts: Optional[pulumi.ResourceOptions] = None,
422
+ aad_profile: Optional[pulumi.Input[pulumi.InputType['AadProfileArgs']]] = None,
423
+ agent_public_key_certificate: Optional[pulumi.Input[str]] = None,
424
+ arc_agent_profile: Optional[pulumi.Input[pulumi.InputType['ArcAgentProfileArgs']]] = None,
425
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ArcAgentryConfigurationsArgs']]]]] = None,
426
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
427
+ cluster_name: Optional[pulumi.Input[str]] = None,
428
+ distribution: Optional[pulumi.Input[str]] = None,
429
+ distribution_version: Optional[pulumi.Input[str]] = None,
430
+ gateway: Optional[pulumi.Input[pulumi.InputType['GatewayArgs']]] = None,
431
+ identity: Optional[pulumi.Input[pulumi.InputType['ConnectedClusterIdentityArgs']]] = None,
432
+ infrastructure: Optional[pulumi.Input[str]] = None,
433
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
434
+ location: Optional[pulumi.Input[str]] = None,
435
+ oidc_issuer_profile: Optional[pulumi.Input[pulumi.InputType['OidcIssuerProfileArgs']]] = None,
436
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
437
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
438
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
439
+ resource_group_name: Optional[pulumi.Input[str]] = None,
440
+ security_profile: Optional[pulumi.Input[pulumi.InputType['SecurityProfileArgs']]] = None,
441
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
442
+ __props__=None):
443
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
444
+ if not isinstance(opts, pulumi.ResourceOptions):
445
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
446
+ if opts.id is None:
447
+ if __props__ is not None:
448
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
449
+ __props__ = ConnectedClusterArgs.__new__(ConnectedClusterArgs)
450
+
451
+ __props__.__dict__["aad_profile"] = aad_profile
452
+ if agent_public_key_certificate is None and not opts.urn:
453
+ raise TypeError("Missing required property 'agent_public_key_certificate'")
454
+ __props__.__dict__["agent_public_key_certificate"] = agent_public_key_certificate
455
+ __props__.__dict__["arc_agent_profile"] = arc_agent_profile
456
+ __props__.__dict__["arc_agentry_configurations"] = arc_agentry_configurations
457
+ if azure_hybrid_benefit is None:
458
+ azure_hybrid_benefit = 'NotApplicable'
459
+ __props__.__dict__["azure_hybrid_benefit"] = azure_hybrid_benefit
460
+ __props__.__dict__["cluster_name"] = cluster_name
461
+ __props__.__dict__["distribution"] = distribution
462
+ __props__.__dict__["distribution_version"] = distribution_version
463
+ __props__.__dict__["gateway"] = gateway
464
+ if identity is None and not opts.urn:
465
+ raise TypeError("Missing required property 'identity'")
466
+ __props__.__dict__["identity"] = identity
467
+ __props__.__dict__["infrastructure"] = infrastructure
468
+ __props__.__dict__["kind"] = kind
469
+ __props__.__dict__["location"] = location
470
+ __props__.__dict__["oidc_issuer_profile"] = oidc_issuer_profile
471
+ __props__.__dict__["private_link_scope_resource_id"] = private_link_scope_resource_id
472
+ if private_link_state is None:
473
+ private_link_state = 'Disabled'
474
+ __props__.__dict__["private_link_state"] = private_link_state
475
+ __props__.__dict__["provisioning_state"] = provisioning_state
476
+ if resource_group_name is None and not opts.urn:
477
+ raise TypeError("Missing required property 'resource_group_name'")
478
+ __props__.__dict__["resource_group_name"] = resource_group_name
479
+ __props__.__dict__["security_profile"] = security_profile
480
+ __props__.__dict__["tags"] = tags
481
+ __props__.__dict__["agent_version"] = None
482
+ __props__.__dict__["connectivity_status"] = None
483
+ __props__.__dict__["kubernetes_version"] = None
484
+ __props__.__dict__["last_connectivity_time"] = None
485
+ __props__.__dict__["managed_identity_certificate_expiration_time"] = None
486
+ __props__.__dict__["miscellaneous_properties"] = None
487
+ __props__.__dict__["name"] = None
488
+ __props__.__dict__["offering"] = None
489
+ __props__.__dict__["system_data"] = None
490
+ __props__.__dict__["total_core_count"] = None
491
+ __props__.__dict__["total_node_count"] = None
492
+ __props__.__dict__["type"] = None
493
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:kubernetes:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20200101preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20210301:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20210401preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20211001:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20220501preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20221001preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20231101preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240101:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240201preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240601preview:ConnectedCluster")])
494
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
495
+ super(ConnectedCluster, __self__).__init__(
496
+ 'azure-native:kubernetes/v20240701preview:ConnectedCluster',
497
+ resource_name,
498
+ __props__,
499
+ opts)
500
+
501
+ @staticmethod
502
+ def get(resource_name: str,
503
+ id: pulumi.Input[str],
504
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'ConnectedCluster':
505
+ """
506
+ Get an existing ConnectedCluster resource's state with the given name, id, and optional extra
507
+ properties used to qualify the lookup.
508
+
509
+ :param str resource_name: The unique name of the resulting resource.
510
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
511
+ :param pulumi.ResourceOptions opts: Options for the resource.
512
+ """
513
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
514
+
515
+ __props__ = ConnectedClusterArgs.__new__(ConnectedClusterArgs)
516
+
517
+ __props__.__dict__["aad_profile"] = None
518
+ __props__.__dict__["agent_public_key_certificate"] = None
519
+ __props__.__dict__["agent_version"] = None
520
+ __props__.__dict__["arc_agent_profile"] = None
521
+ __props__.__dict__["arc_agentry_configurations"] = None
522
+ __props__.__dict__["azure_hybrid_benefit"] = None
523
+ __props__.__dict__["connectivity_status"] = None
524
+ __props__.__dict__["distribution"] = None
525
+ __props__.__dict__["distribution_version"] = None
526
+ __props__.__dict__["gateway"] = None
527
+ __props__.__dict__["identity"] = None
528
+ __props__.__dict__["infrastructure"] = None
529
+ __props__.__dict__["kind"] = None
530
+ __props__.__dict__["kubernetes_version"] = None
531
+ __props__.__dict__["last_connectivity_time"] = None
532
+ __props__.__dict__["location"] = None
533
+ __props__.__dict__["managed_identity_certificate_expiration_time"] = None
534
+ __props__.__dict__["miscellaneous_properties"] = None
535
+ __props__.__dict__["name"] = None
536
+ __props__.__dict__["offering"] = None
537
+ __props__.__dict__["oidc_issuer_profile"] = None
538
+ __props__.__dict__["private_link_scope_resource_id"] = None
539
+ __props__.__dict__["private_link_state"] = None
540
+ __props__.__dict__["provisioning_state"] = None
541
+ __props__.__dict__["security_profile"] = None
542
+ __props__.__dict__["system_data"] = None
543
+ __props__.__dict__["tags"] = None
544
+ __props__.__dict__["total_core_count"] = None
545
+ __props__.__dict__["total_node_count"] = None
546
+ __props__.__dict__["type"] = None
547
+ return ConnectedCluster(resource_name, opts=opts, __props__=__props__)
548
+
549
+ @property
550
+ @pulumi.getter(name="aadProfile")
551
+ def aad_profile(self) -> pulumi.Output[Optional['outputs.AadProfileResponse']]:
552
+ """
553
+ AAD profile for the connected cluster.
554
+ """
555
+ return pulumi.get(self, "aad_profile")
556
+
557
+ @property
558
+ @pulumi.getter(name="agentPublicKeyCertificate")
559
+ def agent_public_key_certificate(self) -> pulumi.Output[str]:
560
+ """
561
+ Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
562
+ """
563
+ return pulumi.get(self, "agent_public_key_certificate")
564
+
565
+ @property
566
+ @pulumi.getter(name="agentVersion")
567
+ def agent_version(self) -> pulumi.Output[str]:
568
+ """
569
+ Version of the agent running on the connected cluster resource
570
+ """
571
+ return pulumi.get(self, "agent_version")
572
+
573
+ @property
574
+ @pulumi.getter(name="arcAgentProfile")
575
+ def arc_agent_profile(self) -> pulumi.Output[Optional['outputs.ArcAgentProfileResponse']]:
576
+ """
577
+ Arc agentry configuration for the provisioned cluster.
578
+ """
579
+ return pulumi.get(self, "arc_agent_profile")
580
+
581
+ @property
582
+ @pulumi.getter(name="arcAgentryConfigurations")
583
+ def arc_agentry_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.ArcAgentryConfigurationsResponse']]]:
584
+ """
585
+ Configuration settings for customizing the behavior of the connected cluster.
586
+ """
587
+ return pulumi.get(self, "arc_agentry_configurations")
588
+
589
+ @property
590
+ @pulumi.getter(name="azureHybridBenefit")
591
+ def azure_hybrid_benefit(self) -> pulumi.Output[Optional[str]]:
592
+ """
593
+ Indicates whether Azure Hybrid Benefit is opted in
594
+ """
595
+ return pulumi.get(self, "azure_hybrid_benefit")
596
+
597
+ @property
598
+ @pulumi.getter(name="connectivityStatus")
599
+ def connectivity_status(self) -> pulumi.Output[str]:
600
+ """
601
+ Represents the connectivity status of the connected cluster.
602
+ """
603
+ return pulumi.get(self, "connectivity_status")
604
+
605
+ @property
606
+ @pulumi.getter
607
+ def distribution(self) -> pulumi.Output[Optional[str]]:
608
+ """
609
+ The Kubernetes distribution running on this connected cluster.
610
+ """
611
+ return pulumi.get(self, "distribution")
612
+
613
+ @property
614
+ @pulumi.getter(name="distributionVersion")
615
+ def distribution_version(self) -> pulumi.Output[Optional[str]]:
616
+ """
617
+ The Kubernetes distribution version on this connected cluster.
618
+ """
619
+ return pulumi.get(self, "distribution_version")
620
+
621
+ @property
622
+ @pulumi.getter
623
+ def gateway(self) -> pulumi.Output[Optional['outputs.GatewayResponse']]:
624
+ """
625
+ Details of the gateway used by the Arc router for connectivity.
626
+ """
627
+ return pulumi.get(self, "gateway")
628
+
629
+ @property
630
+ @pulumi.getter
631
+ def identity(self) -> pulumi.Output['outputs.ConnectedClusterIdentityResponse']:
632
+ """
633
+ The identity of the connected cluster.
634
+ """
635
+ return pulumi.get(self, "identity")
636
+
637
+ @property
638
+ @pulumi.getter
639
+ def infrastructure(self) -> pulumi.Output[Optional[str]]:
640
+ """
641
+ The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
642
+ """
643
+ return pulumi.get(self, "infrastructure")
644
+
645
+ @property
646
+ @pulumi.getter
647
+ def kind(self) -> pulumi.Output[Optional[str]]:
648
+ """
649
+ The kind of connected cluster.
650
+ """
651
+ return pulumi.get(self, "kind")
652
+
653
+ @property
654
+ @pulumi.getter(name="kubernetesVersion")
655
+ def kubernetes_version(self) -> pulumi.Output[str]:
656
+ """
657
+ The Kubernetes version of the connected cluster resource
658
+ """
659
+ return pulumi.get(self, "kubernetes_version")
660
+
661
+ @property
662
+ @pulumi.getter(name="lastConnectivityTime")
663
+ def last_connectivity_time(self) -> pulumi.Output[str]:
664
+ """
665
+ Time representing the last instance when heart beat was received from the cluster
666
+ """
667
+ return pulumi.get(self, "last_connectivity_time")
668
+
669
+ @property
670
+ @pulumi.getter
671
+ def location(self) -> pulumi.Output[str]:
672
+ """
673
+ The geo-location where the resource lives
674
+ """
675
+ return pulumi.get(self, "location")
676
+
677
+ @property
678
+ @pulumi.getter(name="managedIdentityCertificateExpirationTime")
679
+ def managed_identity_certificate_expiration_time(self) -> pulumi.Output[str]:
680
+ """
681
+ Expiration time of the managed identity certificate
682
+ """
683
+ return pulumi.get(self, "managed_identity_certificate_expiration_time")
684
+
685
+ @property
686
+ @pulumi.getter(name="miscellaneousProperties")
687
+ def miscellaneous_properties(self) -> pulumi.Output[Mapping[str, str]]:
688
+ """
689
+ More properties related to the Connected Cluster
690
+ """
691
+ return pulumi.get(self, "miscellaneous_properties")
692
+
693
+ @property
694
+ @pulumi.getter
695
+ def name(self) -> pulumi.Output[str]:
696
+ """
697
+ The name of the resource
698
+ """
699
+ return pulumi.get(self, "name")
700
+
701
+ @property
702
+ @pulumi.getter
703
+ def offering(self) -> pulumi.Output[str]:
704
+ """
705
+ Connected cluster offering
706
+ """
707
+ return pulumi.get(self, "offering")
708
+
709
+ @property
710
+ @pulumi.getter(name="oidcIssuerProfile")
711
+ def oidc_issuer_profile(self) -> pulumi.Output[Optional['outputs.OidcIssuerProfileResponse']]:
712
+ """
713
+ Open ID Connect (OIDC) Issuer Profile for the connected cluster.
714
+ """
715
+ return pulumi.get(self, "oidc_issuer_profile")
716
+
717
+ @property
718
+ @pulumi.getter(name="privateLinkScopeResourceId")
719
+ def private_link_scope_resource_id(self) -> pulumi.Output[Optional[str]]:
720
+ """
721
+ This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
722
+ """
723
+ return pulumi.get(self, "private_link_scope_resource_id")
724
+
725
+ @property
726
+ @pulumi.getter(name="privateLinkState")
727
+ def private_link_state(self) -> pulumi.Output[Optional[str]]:
728
+ """
729
+ Property which describes the state of private link on a connected cluster resource.
730
+ """
731
+ return pulumi.get(self, "private_link_state")
732
+
733
+ @property
734
+ @pulumi.getter(name="provisioningState")
735
+ def provisioning_state(self) -> pulumi.Output[Optional[str]]:
736
+ """
737
+ Provisioning state of the connected cluster resource.
738
+ """
739
+ return pulumi.get(self, "provisioning_state")
740
+
741
+ @property
742
+ @pulumi.getter(name="securityProfile")
743
+ def security_profile(self) -> pulumi.Output[Optional['outputs.SecurityProfileResponse']]:
744
+ """
745
+ Security profile for the connected cluster.
746
+ """
747
+ return pulumi.get(self, "security_profile")
748
+
749
+ @property
750
+ @pulumi.getter(name="systemData")
751
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
752
+ """
753
+ Metadata pertaining to creation and last modification of the resource
754
+ """
755
+ return pulumi.get(self, "system_data")
756
+
757
+ @property
758
+ @pulumi.getter
759
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
760
+ """
761
+ Resource tags.
762
+ """
763
+ return pulumi.get(self, "tags")
764
+
765
+ @property
766
+ @pulumi.getter(name="totalCoreCount")
767
+ def total_core_count(self) -> pulumi.Output[int]:
768
+ """
769
+ Number of CPU cores present in the connected cluster resource
770
+ """
771
+ return pulumi.get(self, "total_core_count")
772
+
773
+ @property
774
+ @pulumi.getter(name="totalNodeCount")
775
+ def total_node_count(self) -> pulumi.Output[int]:
776
+ """
777
+ Number of nodes present in the connected cluster resource
778
+ """
779
+ return pulumi.get(self, "total_node_count")
780
+
781
+ @property
782
+ @pulumi.getter
783
+ def type(self) -> pulumi.Output[str]:
784
+ """
785
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
786
+ """
787
+ return pulumi.get(self, "type")
788
+