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,827 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+
14
+ __all__ = [
15
+ 'AadProfileResponse',
16
+ 'AgentErrorResponse',
17
+ 'ArcAgentProfileResponse',
18
+ 'ArcAgentryConfigurationsResponse',
19
+ 'ConnectedClusterIdentityResponse',
20
+ 'CredentialResultResponse',
21
+ 'GatewayResponse',
22
+ 'HybridConnectionConfigResponse',
23
+ 'OidcIssuerProfileResponse',
24
+ 'SecurityProfileResponse',
25
+ 'SecurityProfileResponseWorkloadIdentity',
26
+ 'SystemComponentResponse',
27
+ 'SystemDataResponse',
28
+ ]
29
+
30
+ @pulumi.output_type
31
+ class AadProfileResponse(dict):
32
+ """
33
+ AAD Profile specifies attributes for Azure Active Directory integration.
34
+ """
35
+ @staticmethod
36
+ def __key_warning(key: str):
37
+ suggest = None
38
+ if key == "adminGroupObjectIDs":
39
+ suggest = "admin_group_object_ids"
40
+ elif key == "enableAzureRBAC":
41
+ suggest = "enable_azure_rbac"
42
+ elif key == "tenantID":
43
+ suggest = "tenant_id"
44
+
45
+ if suggest:
46
+ pulumi.log.warn(f"Key '{key}' not found in AadProfileResponse. Access the value via the '{suggest}' property getter instead.")
47
+
48
+ def __getitem__(self, key: str) -> Any:
49
+ AadProfileResponse.__key_warning(key)
50
+ return super().__getitem__(key)
51
+
52
+ def get(self, key: str, default = None) -> Any:
53
+ AadProfileResponse.__key_warning(key)
54
+ return super().get(key, default)
55
+
56
+ def __init__(__self__, *,
57
+ admin_group_object_ids: Optional[Sequence[str]] = None,
58
+ enable_azure_rbac: Optional[bool] = None,
59
+ tenant_id: Optional[str] = None):
60
+ """
61
+ AAD Profile specifies attributes for Azure Active Directory integration.
62
+ :param Sequence[str] admin_group_object_ids: The list of AAD group object IDs that will have admin role of the cluster.
63
+ :param bool enable_azure_rbac: Whether to enable Azure RBAC for Kubernetes authorization.
64
+ :param str tenant_id: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
65
+ """
66
+ if admin_group_object_ids is not None:
67
+ pulumi.set(__self__, "admin_group_object_ids", admin_group_object_ids)
68
+ if enable_azure_rbac is not None:
69
+ pulumi.set(__self__, "enable_azure_rbac", enable_azure_rbac)
70
+ if tenant_id is not None:
71
+ pulumi.set(__self__, "tenant_id", tenant_id)
72
+
73
+ @property
74
+ @pulumi.getter(name="adminGroupObjectIDs")
75
+ def admin_group_object_ids(self) -> Optional[Sequence[str]]:
76
+ """
77
+ The list of AAD group object IDs that will have admin role of the cluster.
78
+ """
79
+ return pulumi.get(self, "admin_group_object_ids")
80
+
81
+ @property
82
+ @pulumi.getter(name="enableAzureRBAC")
83
+ def enable_azure_rbac(self) -> Optional[bool]:
84
+ """
85
+ Whether to enable Azure RBAC for Kubernetes authorization.
86
+ """
87
+ return pulumi.get(self, "enable_azure_rbac")
88
+
89
+ @property
90
+ @pulumi.getter(name="tenantID")
91
+ def tenant_id(self) -> Optional[str]:
92
+ """
93
+ The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
94
+ """
95
+ return pulumi.get(self, "tenant_id")
96
+
97
+
98
+ @pulumi.output_type
99
+ class AgentErrorResponse(dict):
100
+ """
101
+ Agent Errors if any during agent or system component upgrade.
102
+ """
103
+ def __init__(__self__, *,
104
+ component: str,
105
+ message: str,
106
+ severity: str,
107
+ time: str):
108
+ """
109
+ Agent Errors if any during agent or system component upgrade.
110
+ :param str component: Agent component where error message occured.
111
+ :param str message: Agent error message.
112
+ :param str severity: Severity of the error message.
113
+ :param str time: The timestamp of error occured (UTC).
114
+ """
115
+ pulumi.set(__self__, "component", component)
116
+ pulumi.set(__self__, "message", message)
117
+ pulumi.set(__self__, "severity", severity)
118
+ pulumi.set(__self__, "time", time)
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def component(self) -> str:
123
+ """
124
+ Agent component where error message occured.
125
+ """
126
+ return pulumi.get(self, "component")
127
+
128
+ @property
129
+ @pulumi.getter
130
+ def message(self) -> str:
131
+ """
132
+ Agent error message.
133
+ """
134
+ return pulumi.get(self, "message")
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def severity(self) -> str:
139
+ """
140
+ Severity of the error message.
141
+ """
142
+ return pulumi.get(self, "severity")
143
+
144
+ @property
145
+ @pulumi.getter
146
+ def time(self) -> str:
147
+ """
148
+ The timestamp of error occured (UTC).
149
+ """
150
+ return pulumi.get(self, "time")
151
+
152
+
153
+ @pulumi.output_type
154
+ class ArcAgentProfileResponse(dict):
155
+ """
156
+ Defines the Arc Agent properties for the clusters.
157
+ """
158
+ @staticmethod
159
+ def __key_warning(key: str):
160
+ suggest = None
161
+ if key == "agentState":
162
+ suggest = "agent_state"
163
+ elif key == "agentAutoUpgrade":
164
+ suggest = "agent_auto_upgrade"
165
+ elif key == "agentErrors":
166
+ suggest = "agent_errors"
167
+ elif key == "desiredAgentVersion":
168
+ suggest = "desired_agent_version"
169
+ elif key == "systemComponents":
170
+ suggest = "system_components"
171
+
172
+ if suggest:
173
+ pulumi.log.warn(f"Key '{key}' not found in ArcAgentProfileResponse. Access the value via the '{suggest}' property getter instead.")
174
+
175
+ def __getitem__(self, key: str) -> Any:
176
+ ArcAgentProfileResponse.__key_warning(key)
177
+ return super().__getitem__(key)
178
+
179
+ def get(self, key: str, default = None) -> Any:
180
+ ArcAgentProfileResponse.__key_warning(key)
181
+ return super().get(key, default)
182
+
183
+ def __init__(__self__, *,
184
+ agent_state: str,
185
+ agent_auto_upgrade: Optional[str] = None,
186
+ agent_errors: Optional[Sequence['outputs.AgentErrorResponse']] = None,
187
+ desired_agent_version: Optional[str] = None,
188
+ system_components: Optional[Sequence['outputs.SystemComponentResponse']] = None):
189
+ """
190
+ Defines the Arc Agent properties for the clusters.
191
+ :param str agent_state: Represents the current state of the Arc agentry and its dependent components.
192
+ :param str agent_auto_upgrade: Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
193
+ :param Sequence['AgentErrorResponse'] agent_errors: List of arc agentry and system components errors on the cluster resource.
194
+ :param str desired_agent_version: Version of the Arc agents to be installed on the cluster resource
195
+ :param Sequence['SystemComponentResponse'] system_components: List of system extensions that are installed on the cluster resource.
196
+ """
197
+ pulumi.set(__self__, "agent_state", agent_state)
198
+ if agent_auto_upgrade is None:
199
+ agent_auto_upgrade = 'Enabled'
200
+ if agent_auto_upgrade is not None:
201
+ pulumi.set(__self__, "agent_auto_upgrade", agent_auto_upgrade)
202
+ if agent_errors is not None:
203
+ pulumi.set(__self__, "agent_errors", agent_errors)
204
+ if desired_agent_version is not None:
205
+ pulumi.set(__self__, "desired_agent_version", desired_agent_version)
206
+ if system_components is not None:
207
+ pulumi.set(__self__, "system_components", system_components)
208
+
209
+ @property
210
+ @pulumi.getter(name="agentState")
211
+ def agent_state(self) -> str:
212
+ """
213
+ Represents the current state of the Arc agentry and its dependent components.
214
+ """
215
+ return pulumi.get(self, "agent_state")
216
+
217
+ @property
218
+ @pulumi.getter(name="agentAutoUpgrade")
219
+ def agent_auto_upgrade(self) -> Optional[str]:
220
+ """
221
+ Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
222
+ """
223
+ return pulumi.get(self, "agent_auto_upgrade")
224
+
225
+ @property
226
+ @pulumi.getter(name="agentErrors")
227
+ def agent_errors(self) -> Optional[Sequence['outputs.AgentErrorResponse']]:
228
+ """
229
+ List of arc agentry and system components errors on the cluster resource.
230
+ """
231
+ return pulumi.get(self, "agent_errors")
232
+
233
+ @property
234
+ @pulumi.getter(name="desiredAgentVersion")
235
+ def desired_agent_version(self) -> Optional[str]:
236
+ """
237
+ Version of the Arc agents to be installed on the cluster resource
238
+ """
239
+ return pulumi.get(self, "desired_agent_version")
240
+
241
+ @property
242
+ @pulumi.getter(name="systemComponents")
243
+ def system_components(self) -> Optional[Sequence['outputs.SystemComponentResponse']]:
244
+ """
245
+ List of system extensions that are installed on the cluster resource.
246
+ """
247
+ return pulumi.get(self, "system_components")
248
+
249
+
250
+ @pulumi.output_type
251
+ class ArcAgentryConfigurationsResponse(dict):
252
+ @staticmethod
253
+ def __key_warning(key: str):
254
+ suggest = None
255
+ if key == "protectedSettings":
256
+ suggest = "protected_settings"
257
+
258
+ if suggest:
259
+ pulumi.log.warn(f"Key '{key}' not found in ArcAgentryConfigurationsResponse. Access the value via the '{suggest}' property getter instead.")
260
+
261
+ def __getitem__(self, key: str) -> Any:
262
+ ArcAgentryConfigurationsResponse.__key_warning(key)
263
+ return super().__getitem__(key)
264
+
265
+ def get(self, key: str, default = None) -> Any:
266
+ ArcAgentryConfigurationsResponse.__key_warning(key)
267
+ return super().get(key, default)
268
+
269
+ def __init__(__self__, *,
270
+ feature: Optional[str] = None,
271
+ protected_settings: Optional[Mapping[str, str]] = None,
272
+ settings: Optional[Mapping[str, str]] = None):
273
+ """
274
+ :param str feature: Specifies the name of the feature for the configuration setting.
275
+ :param Mapping[str, str] protected_settings: The configuration settings for the feature that contain any sensitive or secret information.
276
+ :param Mapping[str, str] settings: The configuration settings for the feature that do not contain any sensitive or secret information.
277
+ """
278
+ if feature is not None:
279
+ pulumi.set(__self__, "feature", feature)
280
+ if protected_settings is not None:
281
+ pulumi.set(__self__, "protected_settings", protected_settings)
282
+ if settings is not None:
283
+ pulumi.set(__self__, "settings", settings)
284
+
285
+ @property
286
+ @pulumi.getter
287
+ def feature(self) -> Optional[str]:
288
+ """
289
+ Specifies the name of the feature for the configuration setting.
290
+ """
291
+ return pulumi.get(self, "feature")
292
+
293
+ @property
294
+ @pulumi.getter(name="protectedSettings")
295
+ def protected_settings(self) -> Optional[Mapping[str, str]]:
296
+ """
297
+ The configuration settings for the feature that contain any sensitive or secret information.
298
+ """
299
+ return pulumi.get(self, "protected_settings")
300
+
301
+ @property
302
+ @pulumi.getter
303
+ def settings(self) -> Optional[Mapping[str, str]]:
304
+ """
305
+ The configuration settings for the feature that do not contain any sensitive or secret information.
306
+ """
307
+ return pulumi.get(self, "settings")
308
+
309
+
310
+ @pulumi.output_type
311
+ class ConnectedClusterIdentityResponse(dict):
312
+ """
313
+ Identity for the connected cluster.
314
+ """
315
+ @staticmethod
316
+ def __key_warning(key: str):
317
+ suggest = None
318
+ if key == "principalId":
319
+ suggest = "principal_id"
320
+ elif key == "tenantId":
321
+ suggest = "tenant_id"
322
+
323
+ if suggest:
324
+ pulumi.log.warn(f"Key '{key}' not found in ConnectedClusterIdentityResponse. Access the value via the '{suggest}' property getter instead.")
325
+
326
+ def __getitem__(self, key: str) -> Any:
327
+ ConnectedClusterIdentityResponse.__key_warning(key)
328
+ return super().__getitem__(key)
329
+
330
+ def get(self, key: str, default = None) -> Any:
331
+ ConnectedClusterIdentityResponse.__key_warning(key)
332
+ return super().get(key, default)
333
+
334
+ def __init__(__self__, *,
335
+ principal_id: str,
336
+ tenant_id: str,
337
+ type: Optional[str] = None):
338
+ """
339
+ Identity for the connected cluster.
340
+ :param str principal_id: The principal id of connected cluster identity. This property will only be provided for a system assigned identity.
341
+ :param str tenant_id: The tenant id associated with the connected cluster. This property will only be provided for a system assigned identity.
342
+ :param str type: The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
343
+ """
344
+ pulumi.set(__self__, "principal_id", principal_id)
345
+ pulumi.set(__self__, "tenant_id", tenant_id)
346
+ if type is None:
347
+ type = 'SystemAssigned'
348
+ pulumi.set(__self__, "type", type)
349
+
350
+ @property
351
+ @pulumi.getter(name="principalId")
352
+ def principal_id(self) -> str:
353
+ """
354
+ The principal id of connected cluster identity. This property will only be provided for a system assigned identity.
355
+ """
356
+ return pulumi.get(self, "principal_id")
357
+
358
+ @property
359
+ @pulumi.getter(name="tenantId")
360
+ def tenant_id(self) -> str:
361
+ """
362
+ The tenant id associated with the connected cluster. This property will only be provided for a system assigned identity.
363
+ """
364
+ return pulumi.get(self, "tenant_id")
365
+
366
+ @property
367
+ @pulumi.getter
368
+ def type(self) -> str:
369
+ """
370
+ The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
371
+ """
372
+ return pulumi.get(self, "type")
373
+
374
+
375
+ @pulumi.output_type
376
+ class CredentialResultResponse(dict):
377
+ """
378
+ The credential result response.
379
+ """
380
+ def __init__(__self__, *,
381
+ name: str,
382
+ value: str):
383
+ """
384
+ The credential result response.
385
+ :param str name: The name of the credential.
386
+ :param str value: Base64-encoded Kubernetes configuration file.
387
+ """
388
+ pulumi.set(__self__, "name", name)
389
+ pulumi.set(__self__, "value", value)
390
+
391
+ @property
392
+ @pulumi.getter
393
+ def name(self) -> str:
394
+ """
395
+ The name of the credential.
396
+ """
397
+ return pulumi.get(self, "name")
398
+
399
+ @property
400
+ @pulumi.getter
401
+ def value(self) -> str:
402
+ """
403
+ Base64-encoded Kubernetes configuration file.
404
+ """
405
+ return pulumi.get(self, "value")
406
+
407
+
408
+ @pulumi.output_type
409
+ class GatewayResponse(dict):
410
+ @staticmethod
411
+ def __key_warning(key: str):
412
+ suggest = None
413
+ if key == "resourceId":
414
+ suggest = "resource_id"
415
+
416
+ if suggest:
417
+ pulumi.log.warn(f"Key '{key}' not found in GatewayResponse. Access the value via the '{suggest}' property getter instead.")
418
+
419
+ def __getitem__(self, key: str) -> Any:
420
+ GatewayResponse.__key_warning(key)
421
+ return super().__getitem__(key)
422
+
423
+ def get(self, key: str, default = None) -> Any:
424
+ GatewayResponse.__key_warning(key)
425
+ return super().get(key, default)
426
+
427
+ def __init__(__self__, *,
428
+ enabled: Optional[bool] = None,
429
+ resource_id: Optional[str] = None):
430
+ """
431
+ :param bool enabled: Indicates whether the gateway for arc router connectivity is enabled.
432
+ :param str resource_id: The resource ID of the gateway used for the Arc router feature.
433
+ """
434
+ if enabled is not None:
435
+ pulumi.set(__self__, "enabled", enabled)
436
+ if resource_id is not None:
437
+ pulumi.set(__self__, "resource_id", resource_id)
438
+
439
+ @property
440
+ @pulumi.getter
441
+ def enabled(self) -> Optional[bool]:
442
+ """
443
+ Indicates whether the gateway for arc router connectivity is enabled.
444
+ """
445
+ return pulumi.get(self, "enabled")
446
+
447
+ @property
448
+ @pulumi.getter(name="resourceId")
449
+ def resource_id(self) -> Optional[str]:
450
+ """
451
+ The resource ID of the gateway used for the Arc router feature.
452
+ """
453
+ return pulumi.get(self, "resource_id")
454
+
455
+
456
+ @pulumi.output_type
457
+ class HybridConnectionConfigResponse(dict):
458
+ """
459
+ Contains the REP (rendezvous endpoint) and “Sender” access token.
460
+ """
461
+ def __init__(__self__, *,
462
+ expiration_time: float,
463
+ hybrid_connection_name: str,
464
+ relay: str,
465
+ token: str):
466
+ """
467
+ Contains the REP (rendezvous endpoint) and “Sender” access token.
468
+ :param float expiration_time: Timestamp when this token will be expired.
469
+ :param str hybrid_connection_name: Name of the connection
470
+ :param str relay: Name of the relay.
471
+ :param str token: Sender access token
472
+ """
473
+ pulumi.set(__self__, "expiration_time", expiration_time)
474
+ pulumi.set(__self__, "hybrid_connection_name", hybrid_connection_name)
475
+ pulumi.set(__self__, "relay", relay)
476
+ pulumi.set(__self__, "token", token)
477
+
478
+ @property
479
+ @pulumi.getter(name="expirationTime")
480
+ def expiration_time(self) -> float:
481
+ """
482
+ Timestamp when this token will be expired.
483
+ """
484
+ return pulumi.get(self, "expiration_time")
485
+
486
+ @property
487
+ @pulumi.getter(name="hybridConnectionName")
488
+ def hybrid_connection_name(self) -> str:
489
+ """
490
+ Name of the connection
491
+ """
492
+ return pulumi.get(self, "hybrid_connection_name")
493
+
494
+ @property
495
+ @pulumi.getter
496
+ def relay(self) -> str:
497
+ """
498
+ Name of the relay.
499
+ """
500
+ return pulumi.get(self, "relay")
501
+
502
+ @property
503
+ @pulumi.getter
504
+ def token(self) -> str:
505
+ """
506
+ Sender access token
507
+ """
508
+ return pulumi.get(self, "token")
509
+
510
+
511
+ @pulumi.output_type
512
+ class OidcIssuerProfileResponse(dict):
513
+ """
514
+ OIDC Issuer Profile specifies attributes for workload identity integration.
515
+ """
516
+ @staticmethod
517
+ def __key_warning(key: str):
518
+ suggest = None
519
+ if key == "issuerUrl":
520
+ suggest = "issuer_url"
521
+ elif key == "selfHostedIssuerUrl":
522
+ suggest = "self_hosted_issuer_url"
523
+
524
+ if suggest:
525
+ pulumi.log.warn(f"Key '{key}' not found in OidcIssuerProfileResponse. Access the value via the '{suggest}' property getter instead.")
526
+
527
+ def __getitem__(self, key: str) -> Any:
528
+ OidcIssuerProfileResponse.__key_warning(key)
529
+ return super().__getitem__(key)
530
+
531
+ def get(self, key: str, default = None) -> Any:
532
+ OidcIssuerProfileResponse.__key_warning(key)
533
+ return super().get(key, default)
534
+
535
+ def __init__(__self__, *,
536
+ issuer_url: str,
537
+ enabled: Optional[bool] = None,
538
+ self_hosted_issuer_url: Optional[str] = None):
539
+ """
540
+ OIDC Issuer Profile specifies attributes for workload identity integration.
541
+ :param str issuer_url: The issuer url for hybrid clusters connected to Arc used for the workload identity feature.
542
+ :param bool enabled: Whether to enable oidc issuer for workload identity integration.
543
+ :param str self_hosted_issuer_url: The issuer url for public cloud clusters - AKS, EKS, GKE - used for the workload identity feature.
544
+ """
545
+ pulumi.set(__self__, "issuer_url", issuer_url)
546
+ if enabled is not None:
547
+ pulumi.set(__self__, "enabled", enabled)
548
+ if self_hosted_issuer_url is not None:
549
+ pulumi.set(__self__, "self_hosted_issuer_url", self_hosted_issuer_url)
550
+
551
+ @property
552
+ @pulumi.getter(name="issuerUrl")
553
+ def issuer_url(self) -> str:
554
+ """
555
+ The issuer url for hybrid clusters connected to Arc used for the workload identity feature.
556
+ """
557
+ return pulumi.get(self, "issuer_url")
558
+
559
+ @property
560
+ @pulumi.getter
561
+ def enabled(self) -> Optional[bool]:
562
+ """
563
+ Whether to enable oidc issuer for workload identity integration.
564
+ """
565
+ return pulumi.get(self, "enabled")
566
+
567
+ @property
568
+ @pulumi.getter(name="selfHostedIssuerUrl")
569
+ def self_hosted_issuer_url(self) -> Optional[str]:
570
+ """
571
+ The issuer url for public cloud clusters - AKS, EKS, GKE - used for the workload identity feature.
572
+ """
573
+ return pulumi.get(self, "self_hosted_issuer_url")
574
+
575
+
576
+ @pulumi.output_type
577
+ class SecurityProfileResponse(dict):
578
+ """
579
+ Security Profile specifies attributes for cluster security features.
580
+ """
581
+ @staticmethod
582
+ def __key_warning(key: str):
583
+ suggest = None
584
+ if key == "workloadIdentity":
585
+ suggest = "workload_identity"
586
+
587
+ if suggest:
588
+ pulumi.log.warn(f"Key '{key}' not found in SecurityProfileResponse. Access the value via the '{suggest}' property getter instead.")
589
+
590
+ def __getitem__(self, key: str) -> Any:
591
+ SecurityProfileResponse.__key_warning(key)
592
+ return super().__getitem__(key)
593
+
594
+ def get(self, key: str, default = None) -> Any:
595
+ SecurityProfileResponse.__key_warning(key)
596
+ return super().get(key, default)
597
+
598
+ def __init__(__self__, *,
599
+ workload_identity: Optional['outputs.SecurityProfileResponseWorkloadIdentity'] = None):
600
+ """
601
+ Security Profile specifies attributes for cluster security features.
602
+ :param 'SecurityProfileResponseWorkloadIdentity' workload_identity: The workload identity feature webhook.
603
+ """
604
+ if workload_identity is not None:
605
+ pulumi.set(__self__, "workload_identity", workload_identity)
606
+
607
+ @property
608
+ @pulumi.getter(name="workloadIdentity")
609
+ def workload_identity(self) -> Optional['outputs.SecurityProfileResponseWorkloadIdentity']:
610
+ """
611
+ The workload identity feature webhook.
612
+ """
613
+ return pulumi.get(self, "workload_identity")
614
+
615
+
616
+ @pulumi.output_type
617
+ class SecurityProfileResponseWorkloadIdentity(dict):
618
+ """
619
+ The workload identity feature webhook.
620
+ """
621
+ def __init__(__self__, *,
622
+ enabled: Optional[bool] = None):
623
+ """
624
+ The workload identity feature webhook.
625
+ :param bool enabled: Whether to enable or disable the workload identity Webhook
626
+ """
627
+ if enabled is not None:
628
+ pulumi.set(__self__, "enabled", enabled)
629
+
630
+ @property
631
+ @pulumi.getter
632
+ def enabled(self) -> Optional[bool]:
633
+ """
634
+ Whether to enable or disable the workload identity Webhook
635
+ """
636
+ return pulumi.get(self, "enabled")
637
+
638
+
639
+ @pulumi.output_type
640
+ class SystemComponentResponse(dict):
641
+ """
642
+ System extensions and its current versions installed on the cluster resource.
643
+ """
644
+ @staticmethod
645
+ def __key_warning(key: str):
646
+ suggest = None
647
+ if key == "currentVersion":
648
+ suggest = "current_version"
649
+ elif key == "majorVersion":
650
+ suggest = "major_version"
651
+ elif key == "userSpecifiedVersion":
652
+ suggest = "user_specified_version"
653
+
654
+ if suggest:
655
+ pulumi.log.warn(f"Key '{key}' not found in SystemComponentResponse. Access the value via the '{suggest}' property getter instead.")
656
+
657
+ def __getitem__(self, key: str) -> Any:
658
+ SystemComponentResponse.__key_warning(key)
659
+ return super().__getitem__(key)
660
+
661
+ def get(self, key: str, default = None) -> Any:
662
+ SystemComponentResponse.__key_warning(key)
663
+ return super().get(key, default)
664
+
665
+ def __init__(__self__, *,
666
+ current_version: str,
667
+ major_version: Optional[int] = None,
668
+ type: Optional[str] = None,
669
+ user_specified_version: Optional[str] = None):
670
+ """
671
+ System extensions and its current versions installed on the cluster resource.
672
+ :param str current_version: Version of the system extension that is currently installed on the cluster resource.
673
+ :param int major_version: Major Version of the system extension that is currently installed on the cluster resource.
674
+ :param str type: Type of the system extension
675
+ :param str user_specified_version: Version of the system extension to be installed on the cluster resource.
676
+ """
677
+ pulumi.set(__self__, "current_version", current_version)
678
+ if major_version is not None:
679
+ pulumi.set(__self__, "major_version", major_version)
680
+ if type is not None:
681
+ pulumi.set(__self__, "type", type)
682
+ if user_specified_version is not None:
683
+ pulumi.set(__self__, "user_specified_version", user_specified_version)
684
+
685
+ @property
686
+ @pulumi.getter(name="currentVersion")
687
+ def current_version(self) -> str:
688
+ """
689
+ Version of the system extension that is currently installed on the cluster resource.
690
+ """
691
+ return pulumi.get(self, "current_version")
692
+
693
+ @property
694
+ @pulumi.getter(name="majorVersion")
695
+ def major_version(self) -> Optional[int]:
696
+ """
697
+ Major Version of the system extension that is currently installed on the cluster resource.
698
+ """
699
+ return pulumi.get(self, "major_version")
700
+
701
+ @property
702
+ @pulumi.getter
703
+ def type(self) -> Optional[str]:
704
+ """
705
+ Type of the system extension
706
+ """
707
+ return pulumi.get(self, "type")
708
+
709
+ @property
710
+ @pulumi.getter(name="userSpecifiedVersion")
711
+ def user_specified_version(self) -> Optional[str]:
712
+ """
713
+ Version of the system extension to be installed on the cluster resource.
714
+ """
715
+ return pulumi.get(self, "user_specified_version")
716
+
717
+
718
+ @pulumi.output_type
719
+ class SystemDataResponse(dict):
720
+ """
721
+ Metadata pertaining to creation and last modification of the resource.
722
+ """
723
+ @staticmethod
724
+ def __key_warning(key: str):
725
+ suggest = None
726
+ if key == "createdAt":
727
+ suggest = "created_at"
728
+ elif key == "createdBy":
729
+ suggest = "created_by"
730
+ elif key == "createdByType":
731
+ suggest = "created_by_type"
732
+ elif key == "lastModifiedAt":
733
+ suggest = "last_modified_at"
734
+ elif key == "lastModifiedBy":
735
+ suggest = "last_modified_by"
736
+ elif key == "lastModifiedByType":
737
+ suggest = "last_modified_by_type"
738
+
739
+ if suggest:
740
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
741
+
742
+ def __getitem__(self, key: str) -> Any:
743
+ SystemDataResponse.__key_warning(key)
744
+ return super().__getitem__(key)
745
+
746
+ def get(self, key: str, default = None) -> Any:
747
+ SystemDataResponse.__key_warning(key)
748
+ return super().get(key, default)
749
+
750
+ def __init__(__self__, *,
751
+ created_at: Optional[str] = None,
752
+ created_by: Optional[str] = None,
753
+ created_by_type: Optional[str] = None,
754
+ last_modified_at: Optional[str] = None,
755
+ last_modified_by: Optional[str] = None,
756
+ last_modified_by_type: Optional[str] = None):
757
+ """
758
+ Metadata pertaining to creation and last modification of the resource.
759
+ :param str created_at: The timestamp of resource creation (UTC).
760
+ :param str created_by: The identity that created the resource.
761
+ :param str created_by_type: The type of identity that created the resource.
762
+ :param str last_modified_at: The timestamp of resource modification (UTC).
763
+ :param str last_modified_by: The identity that last modified the resource.
764
+ :param str last_modified_by_type: The type of identity that last modified the resource.
765
+ """
766
+ if created_at is not None:
767
+ pulumi.set(__self__, "created_at", created_at)
768
+ if created_by is not None:
769
+ pulumi.set(__self__, "created_by", created_by)
770
+ if created_by_type is not None:
771
+ pulumi.set(__self__, "created_by_type", created_by_type)
772
+ if last_modified_at is not None:
773
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
774
+ if last_modified_by is not None:
775
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
776
+ if last_modified_by_type is not None:
777
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
778
+
779
+ @property
780
+ @pulumi.getter(name="createdAt")
781
+ def created_at(self) -> Optional[str]:
782
+ """
783
+ The timestamp of resource creation (UTC).
784
+ """
785
+ return pulumi.get(self, "created_at")
786
+
787
+ @property
788
+ @pulumi.getter(name="createdBy")
789
+ def created_by(self) -> Optional[str]:
790
+ """
791
+ The identity that created the resource.
792
+ """
793
+ return pulumi.get(self, "created_by")
794
+
795
+ @property
796
+ @pulumi.getter(name="createdByType")
797
+ def created_by_type(self) -> Optional[str]:
798
+ """
799
+ The type of identity that created the resource.
800
+ """
801
+ return pulumi.get(self, "created_by_type")
802
+
803
+ @property
804
+ @pulumi.getter(name="lastModifiedAt")
805
+ def last_modified_at(self) -> Optional[str]:
806
+ """
807
+ The timestamp of resource modification (UTC).
808
+ """
809
+ return pulumi.get(self, "last_modified_at")
810
+
811
+ @property
812
+ @pulumi.getter(name="lastModifiedBy")
813
+ def last_modified_by(self) -> Optional[str]:
814
+ """
815
+ The identity that last modified the resource.
816
+ """
817
+ return pulumi.get(self, "last_modified_by")
818
+
819
+ @property
820
+ @pulumi.getter(name="lastModifiedByType")
821
+ def last_modified_by_type(self) -> Optional[str]:
822
+ """
823
+ The type of identity that last modified the resource.
824
+ """
825
+ return pulumi.get(self, "last_modified_by_type")
826
+
827
+