pulumi-azure-native 2.32.1a1710515727__py3-none-any.whl → 2.32.1a1711107957__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 (1248) hide show
  1. pulumi_azure_native/__init__.py +216 -0
  2. pulumi_azure_native/appconfiguration/__init__.py +3 -0
  3. pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
  4. pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
  5. pulumi_azure_native/appconfiguration/get_key_value.py +2 -2
  6. pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +2 -2
  7. pulumi_azure_native/appconfiguration/get_replica.py +2 -2
  8. pulumi_azure_native/appconfiguration/key_value.py +3 -3
  9. pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
  10. pulumi_azure_native/appconfiguration/private_endpoint_connection.py +3 -3
  11. pulumi_azure_native/appconfiguration/replica.py +3 -3
  12. pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
  13. pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
  14. pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
  15. pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
  16. pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +1 -1
  17. pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +1 -1
  18. pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/appconfiguration/v20230801preview/replica.py +1 -1
  20. pulumi_azure_native/appconfiguration/v20230901preview/__init__.py +19 -0
  21. pulumi_azure_native/appconfiguration/v20230901preview/_enums.py +78 -0
  22. pulumi_azure_native/appconfiguration/v20230901preview/_inputs.py +319 -0
  23. pulumi_azure_native/appconfiguration/v20230901preview/configuration_store.py +587 -0
  24. pulumi_azure_native/appconfiguration/v20230901preview/get_configuration_store.py +326 -0
  25. pulumi_azure_native/appconfiguration/v20230901preview/get_key_value.py +217 -0
  26. pulumi_azure_native/appconfiguration/v20230901preview/get_private_endpoint_connection.py +149 -0
  27. pulumi_azure_native/appconfiguration/v20230901preview/get_replica.py +162 -0
  28. pulumi_azure_native/appconfiguration/v20230901preview/key_value.py +318 -0
  29. pulumi_azure_native/appconfiguration/v20230901preview/list_configuration_store_keys.py +97 -0
  30. pulumi_azure_native/appconfiguration/v20230901preview/outputs.py +795 -0
  31. pulumi_azure_native/appconfiguration/v20230901preview/private_endpoint_connection.py +246 -0
  32. pulumi_azure_native/appconfiguration/v20230901preview/replica.py +234 -0
  33. pulumi_azure_native/avs/__init__.py +5 -0
  34. pulumi_azure_native/avs/addon.py +3 -3
  35. pulumi_azure_native/avs/authorization.py +3 -3
  36. pulumi_azure_native/avs/cloud_link.py +3 -3
  37. pulumi_azure_native/avs/cluster.py +3 -3
  38. pulumi_azure_native/avs/datastore.py +3 -3
  39. pulumi_azure_native/avs/get_addon.py +2 -2
  40. pulumi_azure_native/avs/get_authorization.py +2 -2
  41. pulumi_azure_native/avs/get_cloud_link.py +2 -2
  42. pulumi_azure_native/avs/get_cluster.py +2 -2
  43. pulumi_azure_native/avs/get_datastore.py +2 -2
  44. pulumi_azure_native/avs/get_global_reach_connection.py +2 -2
  45. pulumi_azure_native/avs/get_hcx_enterprise_site.py +2 -2
  46. pulumi_azure_native/avs/get_iscsi_path.py +146 -0
  47. pulumi_azure_native/avs/get_placement_policy.py +2 -2
  48. pulumi_azure_native/avs/get_private_cloud.py +2 -2
  49. pulumi_azure_native/avs/get_script_execution.py +2 -2
  50. pulumi_azure_native/avs/get_script_execution_logs.py +2 -2
  51. pulumi_azure_native/avs/get_workload_network_dhcp.py +2 -2
  52. pulumi_azure_native/avs/get_workload_network_dns_service.py +2 -2
  53. pulumi_azure_native/avs/get_workload_network_dns_zone.py +2 -2
  54. pulumi_azure_native/avs/get_workload_network_port_mirroring.py +2 -2
  55. pulumi_azure_native/avs/get_workload_network_public_ip.py +2 -2
  56. pulumi_azure_native/avs/get_workload_network_segment.py +2 -2
  57. pulumi_azure_native/avs/get_workload_network_vm_group.py +2 -2
  58. pulumi_azure_native/avs/global_reach_connection.py +3 -3
  59. pulumi_azure_native/avs/hcx_enterprise_site.py +3 -3
  60. pulumi_azure_native/avs/iscsi_path.py +207 -0
  61. pulumi_azure_native/avs/list_cluster_zones.py +2 -2
  62. pulumi_azure_native/avs/list_private_cloud_admin_credentials.py +2 -2
  63. pulumi_azure_native/avs/outputs.py +111 -0
  64. pulumi_azure_native/avs/placement_policy.py +3 -3
  65. pulumi_azure_native/avs/private_cloud.py +3 -3
  66. pulumi_azure_native/avs/script_execution.py +3 -3
  67. pulumi_azure_native/avs/v20200320/cluster.py +1 -1
  68. pulumi_azure_native/avs/v20210101preview/addon.py +1 -1
  69. pulumi_azure_native/avs/v20210101preview/workload_network_dhcp.py +1 -1
  70. pulumi_azure_native/avs/v20210601/cluster.py +1 -1
  71. pulumi_azure_native/avs/v20220501/addon.py +1 -1
  72. pulumi_azure_native/avs/v20220501/authorization.py +1 -1
  73. pulumi_azure_native/avs/v20220501/cloud_link.py +1 -1
  74. pulumi_azure_native/avs/v20220501/cluster.py +1 -1
  75. pulumi_azure_native/avs/v20220501/datastore.py +1 -1
  76. pulumi_azure_native/avs/v20220501/global_reach_connection.py +1 -1
  77. pulumi_azure_native/avs/v20220501/hcx_enterprise_site.py +1 -1
  78. pulumi_azure_native/avs/v20220501/placement_policy.py +1 -1
  79. pulumi_azure_native/avs/v20220501/private_cloud.py +1 -1
  80. pulumi_azure_native/avs/v20220501/script_execution.py +1 -1
  81. pulumi_azure_native/avs/v20220501/workload_network_dhcp.py +1 -1
  82. pulumi_azure_native/avs/v20220501/workload_network_dns_service.py +1 -1
  83. pulumi_azure_native/avs/v20220501/workload_network_dns_zone.py +1 -1
  84. pulumi_azure_native/avs/v20220501/workload_network_port_mirroring.py +1 -1
  85. pulumi_azure_native/avs/v20220501/workload_network_public_ip.py +1 -1
  86. pulumi_azure_native/avs/v20220501/workload_network_segment.py +1 -1
  87. pulumi_azure_native/avs/v20220501/workload_network_vm_group.py +1 -1
  88. pulumi_azure_native/avs/v20230301/addon.py +1 -1
  89. pulumi_azure_native/avs/v20230301/authorization.py +1 -1
  90. pulumi_azure_native/avs/v20230301/cloud_link.py +1 -1
  91. pulumi_azure_native/avs/v20230301/cluster.py +1 -1
  92. pulumi_azure_native/avs/v20230301/datastore.py +1 -1
  93. pulumi_azure_native/avs/v20230301/global_reach_connection.py +1 -1
  94. pulumi_azure_native/avs/v20230301/hcx_enterprise_site.py +1 -1
  95. pulumi_azure_native/avs/v20230301/placement_policy.py +1 -1
  96. pulumi_azure_native/avs/v20230301/private_cloud.py +1 -1
  97. pulumi_azure_native/avs/v20230301/script_execution.py +1 -1
  98. pulumi_azure_native/avs/v20230301/workload_network_dhcp.py +1 -1
  99. pulumi_azure_native/avs/v20230301/workload_network_dns_service.py +1 -1
  100. pulumi_azure_native/avs/v20230301/workload_network_dns_zone.py +1 -1
  101. pulumi_azure_native/avs/v20230301/workload_network_port_mirroring.py +1 -1
  102. pulumi_azure_native/avs/v20230301/workload_network_public_ip.py +1 -1
  103. pulumi_azure_native/avs/v20230301/workload_network_segment.py +1 -1
  104. pulumi_azure_native/avs/v20230301/workload_network_vm_group.py +1 -1
  105. pulumi_azure_native/avs/v20230901/__init__.py +49 -0
  106. pulumi_azure_native/avs/v20230901/_enums.py +219 -0
  107. pulumi_azure_native/avs/v20230901/_inputs.py +847 -0
  108. pulumi_azure_native/avs/v20230901/addon.py +226 -0
  109. pulumi_azure_native/avs/v20230901/authorization.py +244 -0
  110. pulumi_azure_native/avs/v20230901/cloud_link.py +234 -0
  111. pulumi_azure_native/avs/v20230901/cluster.py +324 -0
  112. pulumi_azure_native/avs/v20230901/datastore.py +315 -0
  113. pulumi_azure_native/avs/v20230901/get_addon.py +149 -0
  114. pulumi_azure_native/avs/v20230901/get_authorization.py +175 -0
  115. pulumi_azure_native/avs/v20230901/get_cloud_link.py +162 -0
  116. pulumi_azure_native/avs/v20230901/get_cluster.py +201 -0
  117. pulumi_azure_native/avs/v20230901/get_datastore.py +193 -0
  118. pulumi_azure_native/avs/v20230901/get_global_reach_connection.py +205 -0
  119. pulumi_azure_native/avs/v20230901/get_hcx_enterprise_site.py +162 -0
  120. pulumi_azure_native/avs/v20230901/get_iscsi_path.py +144 -0
  121. pulumi_azure_native/avs/v20230901/get_placement_policy.py +167 -0
  122. pulumi_azure_native/avs/v20230901/get_private_cloud.py +463 -0
  123. pulumi_azure_native/avs/v20230901/get_script_execution.py +320 -0
  124. pulumi_azure_native/avs/v20230901/get_script_execution_logs.py +320 -0
  125. pulumi_azure_native/avs/v20230901/get_workload_network_dhcp.py +188 -0
  126. pulumi_azure_native/avs/v20230901/get_workload_network_dns_service.py +227 -0
  127. pulumi_azure_native/avs/v20230901/get_workload_network_dns_zone.py +214 -0
  128. pulumi_azure_native/avs/v20230901/get_workload_network_port_mirroring.py +214 -0
  129. pulumi_azure_native/avs/v20230901/get_workload_network_public_ip.py +175 -0
  130. pulumi_azure_native/avs/v20230901/get_workload_network_segment.py +214 -0
  131. pulumi_azure_native/avs/v20230901/get_workload_network_vm_group.py +188 -0
  132. pulumi_azure_native/avs/v20230901/global_reach_connection.py +315 -0
  133. pulumi_azure_native/avs/v20230901/hcx_enterprise_site.py +215 -0
  134. pulumi_azure_native/avs/v20230901/iscsi_path.py +205 -0
  135. pulumi_azure_native/avs/v20230901/list_cluster_zones.py +84 -0
  136. pulumi_azure_native/avs/v20230901/list_private_cloud_admin_credentials.py +117 -0
  137. pulumi_azure_native/avs/v20230901/outputs.py +1370 -0
  138. pulumi_azure_native/avs/v20230901/placement_policy.py +295 -0
  139. pulumi_azure_native/avs/v20230901/private_cloud.py +740 -0
  140. pulumi_azure_native/avs/v20230901/script_execution.py +497 -0
  141. pulumi_azure_native/avs/v20230901/workload_network_dhcp.py +294 -0
  142. pulumi_azure_native/avs/v20230901/workload_network_dns_service.py +380 -0
  143. pulumi_azure_native/avs/v20230901/workload_network_dns_zone.py +369 -0
  144. pulumi_azure_native/avs/v20230901/workload_network_port_mirroring.py +351 -0
  145. pulumi_azure_native/avs/v20230901/workload_network_public_ip.py +263 -0
  146. pulumi_azure_native/avs/v20230901/workload_network_segment.py +332 -0
  147. pulumi_azure_native/avs/v20230901/workload_network_vm_group.py +292 -0
  148. pulumi_azure_native/avs/workload_network_dhcp.py +3 -3
  149. pulumi_azure_native/avs/workload_network_dns_service.py +3 -3
  150. pulumi_azure_native/avs/workload_network_dns_zone.py +3 -3
  151. pulumi_azure_native/avs/workload_network_port_mirroring.py +3 -3
  152. pulumi_azure_native/avs/workload_network_public_ip.py +3 -3
  153. pulumi_azure_native/avs/workload_network_segment.py +3 -3
  154. pulumi_azure_native/avs/workload_network_vm_group.py +3 -3
  155. pulumi_azure_native/cdn/__init__.py +3 -0
  156. pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
  157. pulumi_azure_native/cdn/afd_endpoint.py +3 -3
  158. pulumi_azure_native/cdn/afd_origin.py +3 -3
  159. pulumi_azure_native/cdn/afd_origin_group.py +3 -3
  160. pulumi_azure_native/cdn/custom_domain.py +3 -3
  161. pulumi_azure_native/cdn/endpoint.py +3 -3
  162. pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
  163. pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
  164. pulumi_azure_native/cdn/get_afd_origin.py +2 -2
  165. pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
  166. pulumi_azure_native/cdn/get_custom_domain.py +2 -2
  167. pulumi_azure_native/cdn/get_endpoint.py +2 -2
  168. pulumi_azure_native/cdn/get_origin.py +2 -2
  169. pulumi_azure_native/cdn/get_origin_group.py +2 -2
  170. pulumi_azure_native/cdn/get_policy.py +2 -2
  171. pulumi_azure_native/cdn/get_profile.py +2 -2
  172. pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
  173. pulumi_azure_native/cdn/get_route.py +2 -2
  174. pulumi_azure_native/cdn/get_rule.py +2 -2
  175. pulumi_azure_native/cdn/get_rule_set.py +2 -2
  176. pulumi_azure_native/cdn/get_secret.py +2 -2
  177. pulumi_azure_native/cdn/get_security_policy.py +2 -2
  178. pulumi_azure_native/cdn/origin.py +3 -3
  179. pulumi_azure_native/cdn/origin_group.py +3 -3
  180. pulumi_azure_native/cdn/policy.py +3 -3
  181. pulumi_azure_native/cdn/profile.py +3 -3
  182. pulumi_azure_native/cdn/route.py +3 -3
  183. pulumi_azure_native/cdn/rule.py +3 -3
  184. pulumi_azure_native/cdn/rule_set.py +3 -3
  185. pulumi_azure_native/cdn/secret.py +3 -3
  186. pulumi_azure_native/cdn/security_policy.py +3 -3
  187. pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
  188. pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
  189. pulumi_azure_native/cdn/v20200901/profile.py +1 -1
  190. pulumi_azure_native/cdn/v20200901/route.py +1 -1
  191. pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
  192. pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
  193. pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
  194. pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
  195. pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
  196. pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
  197. pulumi_azure_native/cdn/v20230501/origin.py +1 -1
  198. pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
  199. pulumi_azure_native/cdn/v20230501/policy.py +1 -1
  200. pulumi_azure_native/cdn/v20230501/profile.py +1 -1
  201. pulumi_azure_native/cdn/v20230501/route.py +1 -1
  202. pulumi_azure_native/cdn/v20230501/rule.py +1 -1
  203. pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
  204. pulumi_azure_native/cdn/v20230501/secret.py +1 -1
  205. pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
  206. pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
  207. pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
  208. pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
  209. pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
  210. pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
  211. pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
  212. pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
  213. pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
  214. pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
  215. pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
  216. pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
  217. pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
  218. pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
  219. pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
  220. pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
  221. pulumi_azure_native/cdn/v20240201/__init__.py +41 -0
  222. pulumi_azure_native/cdn/v20240201/_enums.py +788 -0
  223. pulumi_azure_native/cdn/v20240201/_inputs.py +5780 -0
  224. pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +379 -0
  225. pulumi_azure_native/cdn/v20240201/afd_endpoint.py +338 -0
  226. pulumi_azure_native/cdn/v20240201/afd_origin.py +537 -0
  227. pulumi_azure_native/cdn/v20240201/afd_origin_group.py +329 -0
  228. pulumi_azure_native/cdn/v20240201/custom_domain.py +296 -0
  229. pulumi_azure_native/cdn/v20240201/endpoint.py +762 -0
  230. pulumi_azure_native/cdn/v20240201/get_afd_custom_domain.py +250 -0
  231. pulumi_azure_native/cdn/v20240201/get_afd_endpoint.py +224 -0
  232. pulumi_azure_native/cdn/v20240201/get_afd_origin.py +294 -0
  233. pulumi_azure_native/cdn/v20240201/get_afd_origin_group.py +211 -0
  234. pulumi_azure_native/cdn/v20240201/get_custom_domain.py +219 -0
  235. pulumi_azure_native/cdn/v20240201/get_endpoint.py +409 -0
  236. pulumi_azure_native/cdn/v20240201/get_origin.py +310 -0
  237. pulumi_azure_native/cdn/v20240201/get_origin_group.py +206 -0
  238. pulumi_azure_native/cdn/v20240201/get_policy.py +271 -0
  239. pulumi_azure_native/cdn/v20240201/get_profile.py +261 -0
  240. pulumi_azure_native/cdn/v20240201/get_profile_supported_optimization_types.py +78 -0
  241. pulumi_azure_native/cdn/v20240201/get_route.py +307 -0
  242. pulumi_azure_native/cdn/v20240201/get_rule.py +216 -0
  243. pulumi_azure_native/cdn/v20240201/get_rule_set.py +159 -0
  244. pulumi_azure_native/cdn/v20240201/get_secret.py +172 -0
  245. pulumi_azure_native/cdn/v20240201/get_security_policy.py +172 -0
  246. pulumi_azure_native/cdn/v20240201/origin.py +556 -0
  247. pulumi_azure_native/cdn/v20240201/origin_group.py +345 -0
  248. pulumi_azure_native/cdn/v20240201/outputs.py +6889 -0
  249. pulumi_azure_native/cdn/v20240201/policy.py +436 -0
  250. pulumi_azure_native/cdn/v20240201/profile.py +391 -0
  251. pulumi_azure_native/cdn/v20240201/route.py +566 -0
  252. pulumi_azure_native/cdn/v20240201/rule.py +356 -0
  253. pulumi_azure_native/cdn/v20240201/rule_set.py +211 -0
  254. pulumi_azure_native/cdn/v20240201/secret.py +241 -0
  255. pulumi_azure_native/cdn/v20240201/security_policy.py +241 -0
  256. pulumi_azure_native/codesigning/__init__.py +22 -0
  257. pulumi_azure_native/codesigning/_enums.py +50 -0
  258. pulumi_azure_native/codesigning/_inputs.py +39 -0
  259. pulumi_azure_native/codesigning/certificate_profile.py +522 -0
  260. pulumi_azure_native/codesigning/code_signing_account.py +275 -0
  261. pulumi_azure_native/codesigning/get_certificate_profile.py +359 -0
  262. pulumi_azure_native/codesigning/get_code_signing_account.py +185 -0
  263. pulumi_azure_native/codesigning/outputs.py +149 -0
  264. pulumi_azure_native/codesigning/v20240205preview/__init__.py +14 -0
  265. pulumi_azure_native/codesigning/v20240205preview/_enums.py +50 -0
  266. pulumi_azure_native/codesigning/v20240205preview/_inputs.py +39 -0
  267. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +520 -0
  268. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +273 -0
  269. pulumi_azure_native/codesigning/v20240205preview/get_certificate_profile.py +357 -0
  270. pulumi_azure_native/codesigning/v20240205preview/get_code_signing_account.py +183 -0
  271. pulumi_azure_native/codesigning/v20240205preview/outputs.py +149 -0
  272. pulumi_azure_native/containerservice/__init__.py +3 -0
  273. pulumi_azure_native/containerservice/_enums.py +3 -5
  274. pulumi_azure_native/containerservice/_inputs.py +2 -6
  275. pulumi_azure_native/containerservice/fleet.py +3 -3
  276. pulumi_azure_native/containerservice/fleet_member.py +3 -3
  277. pulumi_azure_native/containerservice/fleet_update_strategy.py +3 -3
  278. pulumi_azure_native/containerservice/get_fleet.py +2 -2
  279. pulumi_azure_native/containerservice/get_fleet_member.py +2 -2
  280. pulumi_azure_native/containerservice/get_fleet_update_strategy.py +2 -2
  281. pulumi_azure_native/containerservice/get_update_run.py +2 -2
  282. pulumi_azure_native/containerservice/list_fleet_credentials.py +2 -2
  283. pulumi_azure_native/containerservice/outputs.py +2 -6
  284. pulumi_azure_native/containerservice/update_run.py +3 -3
  285. pulumi_azure_native/containerservice/v20220702preview/fleet.py +1 -1
  286. pulumi_azure_native/containerservice/v20220702preview/fleet_member.py +1 -1
  287. pulumi_azure_native/containerservice/v20230315preview/_enums.py +3 -5
  288. pulumi_azure_native/containerservice/v20230315preview/_inputs.py +2 -6
  289. pulumi_azure_native/containerservice/v20230315preview/fleet.py +1 -1
  290. pulumi_azure_native/containerservice/v20230315preview/fleet_member.py +1 -1
  291. pulumi_azure_native/containerservice/v20230315preview/outputs.py +2 -6
  292. pulumi_azure_native/containerservice/v20230315preview/update_run.py +1 -1
  293. pulumi_azure_native/containerservice/v20230615preview/_enums.py +3 -5
  294. pulumi_azure_native/containerservice/v20230615preview/_inputs.py +2 -6
  295. pulumi_azure_native/containerservice/v20230615preview/fleet.py +1 -1
  296. pulumi_azure_native/containerservice/v20230615preview/fleet_member.py +1 -1
  297. pulumi_azure_native/containerservice/v20230615preview/outputs.py +2 -6
  298. pulumi_azure_native/containerservice/v20230615preview/update_run.py +1 -1
  299. pulumi_azure_native/containerservice/v20230815preview/_enums.py +3 -5
  300. pulumi_azure_native/containerservice/v20230815preview/_inputs.py +2 -6
  301. pulumi_azure_native/containerservice/v20230815preview/fleet.py +1 -1
  302. pulumi_azure_native/containerservice/v20230815preview/fleet_member.py +1 -1
  303. pulumi_azure_native/containerservice/v20230815preview/fleet_update_strategy.py +1 -1
  304. pulumi_azure_native/containerservice/v20230815preview/get_update_run.py +1 -1
  305. pulumi_azure_native/containerservice/v20230815preview/outputs.py +2 -6
  306. pulumi_azure_native/containerservice/v20230815preview/update_run.py +5 -5
  307. pulumi_azure_native/containerservice/v20231015/_enums.py +3 -5
  308. pulumi_azure_native/containerservice/v20231015/_inputs.py +2 -6
  309. pulumi_azure_native/containerservice/v20231015/fleet.py +1 -1
  310. pulumi_azure_native/containerservice/v20231015/fleet_member.py +1 -1
  311. pulumi_azure_native/containerservice/v20231015/fleet_update_strategy.py +1 -1
  312. pulumi_azure_native/containerservice/v20231015/get_update_run.py +1 -1
  313. pulumi_azure_native/containerservice/v20231015/outputs.py +2 -6
  314. pulumi_azure_native/containerservice/v20231015/update_run.py +5 -5
  315. pulumi_azure_native/containerservice/v20240202preview/__init__.py +19 -0
  316. pulumi_azure_native/containerservice/v20240202preview/_enums.py +53 -0
  317. pulumi_azure_native/containerservice/v20240202preview/_inputs.py +426 -0
  318. pulumi_azure_native/containerservice/v20240202preview/fleet.py +302 -0
  319. pulumi_azure_native/containerservice/v20240202preview/fleet_member.py +264 -0
  320. pulumi_azure_native/containerservice/v20240202preview/fleet_update_strategy.py +236 -0
  321. pulumi_azure_native/containerservice/v20240202preview/get_fleet.py +196 -0
  322. pulumi_azure_native/containerservice/v20240202preview/get_fleet_member.py +175 -0
  323. pulumi_azure_native/containerservice/v20240202preview/get_fleet_update_strategy.py +162 -0
  324. pulumi_azure_native/containerservice/v20240202preview/get_update_run.py +214 -0
  325. pulumi_azure_native/containerservice/v20240202preview/list_fleet_credentials.py +79 -0
  326. pulumi_azure_native/containerservice/v20240202preview/outputs.py +1346 -0
  327. pulumi_azure_native/containerservice/v20240202preview/update_run.py +357 -0
  328. pulumi_azure_native/databasewatcher/_enums.py +0 -15
  329. pulumi_azure_native/databasewatcher/get_target.py +1 -14
  330. pulumi_azure_native/databasewatcher/target.py +0 -29
  331. pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +0 -15
  332. pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +1 -14
  333. pulumi_azure_native/databasewatcher/v20230901preview/target.py +0 -29
  334. pulumi_azure_native/datafactory/_inputs.py +235 -29
  335. pulumi_azure_native/datafactory/credential_operation.py +11 -10
  336. pulumi_azure_native/datafactory/get_credential_operation.py +2 -2
  337. pulumi_azure_native/datafactory/outputs.py +212 -39
  338. pulumi_azure_native/datafactory/v20180601/_inputs.py +235 -29
  339. pulumi_azure_native/datafactory/v20180601/credential_operation.py +11 -10
  340. pulumi_azure_native/datafactory/v20180601/get_credential_operation.py +2 -2
  341. pulumi_azure_native/datafactory/v20180601/outputs.py +212 -39
  342. pulumi_azure_native/dbformysql/__init__.py +3 -0
  343. pulumi_azure_native/dbformysql/get_get_private_dns_zone_suffix_execute.py +2 -2
  344. pulumi_azure_native/dbformysql/get_server.py +2 -2
  345. pulumi_azure_native/dbformysql/server.py +3 -3
  346. pulumi_azure_native/dbformysql/v20200701preview/server.py +1 -1
  347. pulumi_azure_native/dbformysql/v20200701privatepreview/server.py +1 -1
  348. pulumi_azure_native/dbformysql/v20220101/server.py +1 -1
  349. pulumi_azure_native/dbformysql/v20220930preview/server.py +1 -1
  350. pulumi_azure_native/dbformysql/v20230601preview/server.py +1 -1
  351. pulumi_azure_native/dbformysql/v20230630/server.py +1 -1
  352. pulumi_azure_native/dbformysql/v20231001preview/server.py +1 -1
  353. pulumi_azure_native/dbformysql/v20231201preview/server.py +1 -1
  354. pulumi_azure_native/dbformysql/v20231230/__init__.py +13 -0
  355. pulumi_azure_native/dbformysql/v20231230/_enums.py +92 -0
  356. pulumi_azure_native/dbformysql/v20231230/_inputs.py +582 -0
  357. pulumi_azure_native/dbformysql/v20231230/get_get_private_dns_zone_suffix_execute.py +64 -0
  358. pulumi_azure_native/dbformysql/v20231230/get_server.py +378 -0
  359. pulumi_azure_native/dbformysql/v20231230/outputs.py +1085 -0
  360. pulumi_azure_native/dbformysql/v20231230/server.py +730 -0
  361. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  362. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  363. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  364. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  365. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  366. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  367. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  368. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  369. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  370. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  371. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  372. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  373. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +4 -0
  374. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  375. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  376. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  377. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  378. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  379. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  380. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  381. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  382. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  383. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  384. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  385. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  386. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  387. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  388. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  389. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  390. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  391. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  392. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  393. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  394. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  395. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  396. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  397. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  398. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  399. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +2 -0
  400. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  401. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  402. pulumi_azure_native/dbforpostgresql/v20231201preview/__init__.py +26 -0
  403. pulumi_azure_native/dbforpostgresql/v20231201preview/_enums.py +318 -0
  404. pulumi_azure_native/dbforpostgresql/v20231201preview/_inputs.py +859 -0
  405. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +282 -0
  406. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +333 -0
  407. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +243 -0
  408. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +245 -0
  409. pulumi_azure_native/dbforpostgresql/v20231201preview/get_administrator.py +175 -0
  410. pulumi_azure_native/dbforpostgresql/v20231201preview/get_configuration.py +266 -0
  411. pulumi_azure_native/dbforpostgresql/v20231201preview/get_database.py +149 -0
  412. pulumi_azure_native/dbforpostgresql/v20231201preview/get_firewall_rule.py +149 -0
  413. pulumi_azure_native/dbforpostgresql/v20231201preview/get_migration.py +466 -0
  414. pulumi_azure_native/dbforpostgresql/v20231201preview/get_private_endpoint_connection.py +175 -0
  415. pulumi_azure_native/dbforpostgresql/v20231201preview/get_server.py +404 -0
  416. pulumi_azure_native/dbforpostgresql/v20231201preview/get_virtual_endpoint.py +162 -0
  417. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +886 -0
  418. pulumi_azure_native/dbforpostgresql/v20231201preview/outputs.py +1902 -0
  419. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +247 -0
  420. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +773 -0
  421. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +254 -0
  422. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +5 -1
  423. pulumi_azure_native/desktopvirtualization/__init__.py +3 -0
  424. pulumi_azure_native/desktopvirtualization/app_attach_package.py +3 -3
  425. pulumi_azure_native/desktopvirtualization/application.py +3 -3
  426. pulumi_azure_native/desktopvirtualization/application_group.py +3 -3
  427. pulumi_azure_native/desktopvirtualization/get_app_attach_package.py +2 -2
  428. pulumi_azure_native/desktopvirtualization/get_application.py +2 -2
  429. pulumi_azure_native/desktopvirtualization/get_application_group.py +2 -2
  430. pulumi_azure_native/desktopvirtualization/get_host_pool.py +2 -2
  431. pulumi_azure_native/desktopvirtualization/get_msix_package.py +2 -2
  432. pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_host_pool.py +2 -2
  433. pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_workspace.py +2 -2
  434. pulumi_azure_native/desktopvirtualization/get_scaling_plan.py +2 -2
  435. pulumi_azure_native/desktopvirtualization/get_scaling_plan_personal_schedule.py +2 -2
  436. pulumi_azure_native/desktopvirtualization/get_scaling_plan_pooled_schedule.py +2 -2
  437. pulumi_azure_native/desktopvirtualization/get_workspace.py +2 -2
  438. pulumi_azure_native/desktopvirtualization/host_pool.py +3 -3
  439. pulumi_azure_native/desktopvirtualization/msix_package.py +3 -3
  440. pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_host_pool.py +3 -3
  441. pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_workspace.py +3 -3
  442. pulumi_azure_native/desktopvirtualization/scaling_plan.py +3 -3
  443. pulumi_azure_native/desktopvirtualization/scaling_plan_personal_schedule.py +3 -3
  444. pulumi_azure_native/desktopvirtualization/scaling_plan_pooled_schedule.py +3 -3
  445. pulumi_azure_native/desktopvirtualization/v20210201preview/scaling_plan.py +1 -1
  446. pulumi_azure_native/desktopvirtualization/v20220210preview/scaling_plan.py +1 -1
  447. pulumi_azure_native/desktopvirtualization/v20220401preview/application_group.py +1 -1
  448. pulumi_azure_native/desktopvirtualization/v20220401preview/host_pool.py +1 -1
  449. pulumi_azure_native/desktopvirtualization/v20220909/application.py +1 -1
  450. pulumi_azure_native/desktopvirtualization/v20220909/application_group.py +1 -1
  451. pulumi_azure_native/desktopvirtualization/v20220909/host_pool.py +1 -1
  452. pulumi_azure_native/desktopvirtualization/v20220909/msix_package.py +1 -1
  453. pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan.py +1 -1
  454. pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan_pooled_schedule.py +1 -1
  455. pulumi_azure_native/desktopvirtualization/v20220909/workspace.py +1 -1
  456. pulumi_azure_native/desktopvirtualization/v20221014preview/application.py +1 -1
  457. pulumi_azure_native/desktopvirtualization/v20221014preview/application_group.py +1 -1
  458. pulumi_azure_native/desktopvirtualization/v20221014preview/host_pool.py +1 -1
  459. pulumi_azure_native/desktopvirtualization/v20221014preview/msix_package.py +1 -1
  460. pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_host_pool.py +1 -1
  461. pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_workspace.py +1 -1
  462. pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan.py +1 -1
  463. pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan_pooled_schedule.py +1 -1
  464. pulumi_azure_native/desktopvirtualization/v20221014preview/workspace.py +1 -1
  465. pulumi_azure_native/desktopvirtualization/v20230707preview/application.py +1 -1
  466. pulumi_azure_native/desktopvirtualization/v20230707preview/application_group.py +1 -1
  467. pulumi_azure_native/desktopvirtualization/v20230707preview/host_pool.py +1 -1
  468. pulumi_azure_native/desktopvirtualization/v20230707preview/msix_package.py +1 -1
  469. pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_host_pool.py +1 -1
  470. pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_workspace.py +1 -1
  471. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan.py +1 -1
  472. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_personal_schedule.py +1 -1
  473. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_pooled_schedule.py +1 -1
  474. pulumi_azure_native/desktopvirtualization/v20230707preview/workspace.py +1 -1
  475. pulumi_azure_native/desktopvirtualization/v20230905/application.py +1 -1
  476. pulumi_azure_native/desktopvirtualization/v20230905/application_group.py +1 -1
  477. pulumi_azure_native/desktopvirtualization/v20230905/host_pool.py +1 -1
  478. pulumi_azure_native/desktopvirtualization/v20230905/msix_package.py +1 -1
  479. pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_host_pool.py +1 -1
  480. pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_workspace.py +1 -1
  481. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan.py +1 -1
  482. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_personal_schedule.py +1 -1
  483. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_pooled_schedule.py +1 -1
  484. pulumi_azure_native/desktopvirtualization/v20230905/workspace.py +1 -1
  485. pulumi_azure_native/desktopvirtualization/v20231004preview/app_attach_package.py +1 -1
  486. pulumi_azure_native/desktopvirtualization/v20231004preview/application.py +1 -1
  487. pulumi_azure_native/desktopvirtualization/v20231004preview/application_group.py +1 -1
  488. pulumi_azure_native/desktopvirtualization/v20231004preview/host_pool.py +1 -1
  489. pulumi_azure_native/desktopvirtualization/v20231004preview/msix_package.py +1 -1
  490. pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_host_pool.py +1 -1
  491. pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_workspace.py +1 -1
  492. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan.py +1 -1
  493. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_personal_schedule.py +1 -1
  494. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_pooled_schedule.py +1 -1
  495. pulumi_azure_native/desktopvirtualization/v20231004preview/workspace.py +1 -1
  496. pulumi_azure_native/desktopvirtualization/v20231101preview/app_attach_package.py +1 -1
  497. pulumi_azure_native/desktopvirtualization/v20231101preview/application.py +1 -1
  498. pulumi_azure_native/desktopvirtualization/v20231101preview/application_group.py +1 -1
  499. pulumi_azure_native/desktopvirtualization/v20231101preview/host_pool.py +1 -1
  500. pulumi_azure_native/desktopvirtualization/v20231101preview/msix_package.py +1 -1
  501. pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_host_pool.py +1 -1
  502. pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_workspace.py +1 -1
  503. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan.py +1 -1
  504. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_personal_schedule.py +1 -1
  505. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_pooled_schedule.py +1 -1
  506. pulumi_azure_native/desktopvirtualization/v20231101preview/workspace.py +1 -1
  507. pulumi_azure_native/desktopvirtualization/v20240116preview/app_attach_package.py +1 -1
  508. pulumi_azure_native/desktopvirtualization/v20240116preview/application.py +1 -1
  509. pulumi_azure_native/desktopvirtualization/v20240116preview/application_group.py +1 -1
  510. pulumi_azure_native/desktopvirtualization/v20240116preview/host_pool.py +1 -1
  511. pulumi_azure_native/desktopvirtualization/v20240116preview/msix_package.py +1 -1
  512. pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_host_pool.py +1 -1
  513. pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_workspace.py +1 -1
  514. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan.py +1 -1
  515. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_personal_schedule.py +1 -1
  516. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_pooled_schedule.py +1 -1
  517. pulumi_azure_native/desktopvirtualization/v20240116preview/workspace.py +1 -1
  518. pulumi_azure_native/desktopvirtualization/v20240306preview/__init__.py +32 -0
  519. pulumi_azure_native/desktopvirtualization/v20240306preview/_enums.py +315 -0
  520. pulumi_azure_native/desktopvirtualization/v20240306preview/_inputs.py +1380 -0
  521. pulumi_azure_native/desktopvirtualization/v20240306preview/app_attach_package.py +254 -0
  522. pulumi_azure_native/desktopvirtualization/v20240306preview/application.py +536 -0
  523. pulumi_azure_native/desktopvirtualization/v20240306preview/application_group.py +532 -0
  524. pulumi_azure_native/desktopvirtualization/v20240306preview/get_app_attach_package.py +157 -0
  525. pulumi_azure_native/desktopvirtualization/v20240306preview/get_application.py +305 -0
  526. pulumi_azure_native/desktopvirtualization/v20240306preview/get_application_group.py +317 -0
  527. pulumi_azure_native/desktopvirtualization/v20240306preview/get_host_pool.py +590 -0
  528. pulumi_azure_native/desktopvirtualization/v20240306preview/get_msix_package.py +266 -0
  529. pulumi_azure_native/desktopvirtualization/v20240306preview/get_private_endpoint_connection_by_host_pool.py +162 -0
  530. pulumi_azure_native/desktopvirtualization/v20240306preview/get_private_endpoint_connection_by_workspace.py +162 -0
  531. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan.py +317 -0
  532. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan_personal_schedule.py +461 -0
  533. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan_pooled_schedule.py +344 -0
  534. pulumi_azure_native/desktopvirtualization/v20240306preview/get_workspace.py +304 -0
  535. pulumi_azure_native/desktopvirtualization/v20240306preview/host_pool.py +1104 -0
  536. pulumi_azure_native/desktopvirtualization/v20240306preview/msix_package.py +505 -0
  537. pulumi_azure_native/desktopvirtualization/v20240306preview/outputs.py +1667 -0
  538. pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_host_pool.py +237 -0
  539. pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_workspace.py +237 -0
  540. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan.py +573 -0
  541. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_personal_schedule.py +957 -0
  542. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_pooled_schedule.py +680 -0
  543. pulumi_azure_native/desktopvirtualization/v20240306preview/workspace.py +501 -0
  544. pulumi_azure_native/desktopvirtualization/workspace.py +3 -3
  545. pulumi_azure_native/hdinsight/__init__.py +3 -0
  546. pulumi_azure_native/hdinsight/cluster.py +2 -2
  547. pulumi_azure_native/hdinsight/cluster_pool.py +3 -3
  548. pulumi_azure_native/hdinsight/get_cluster.py +2 -2
  549. pulumi_azure_native/hdinsight/get_cluster_pool.py +2 -2
  550. pulumi_azure_native/hdinsight/v20230601preview/cluster.py +1 -1
  551. pulumi_azure_native/hdinsight/v20230601preview/cluster_pool.py +1 -1
  552. pulumi_azure_native/hdinsight/v20231101preview/cluster.py +1 -1
  553. pulumi_azure_native/hdinsight/v20231101preview/cluster_pool.py +1 -1
  554. pulumi_azure_native/hdinsight/v20240501/__init__.py +14 -0
  555. pulumi_azure_native/hdinsight/v20240501/_enums.py +163 -0
  556. pulumi_azure_native/hdinsight/v20240501/_inputs.py +3380 -0
  557. pulumi_azure_native/hdinsight/v20240501/cluster.py +365 -0
  558. pulumi_azure_native/hdinsight/v20240501/cluster_pool.py +420 -0
  559. pulumi_azure_native/hdinsight/v20240501/get_cluster.py +227 -0
  560. pulumi_azure_native/hdinsight/v20240501/get_cluster_pool.py +274 -0
  561. pulumi_azure_native/hdinsight/v20240501/outputs.py +4190 -0
  562. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  563. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  564. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  565. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  566. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  567. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  568. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  569. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  570. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  571. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  572. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  573. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  574. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  575. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  576. pulumi_azure_native/healthcareapis/service.py +3 -3
  577. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  578. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  579. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  580. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  581. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  582. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  583. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  584. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  585. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  586. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  587. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  588. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  589. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  590. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  591. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  592. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  593. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
  594. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
  595. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
  596. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
  597. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
  598. pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
  599. pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
  600. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
  601. pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
  602. pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
  603. pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
  604. pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
  605. pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
  606. pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
  607. pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
  608. pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
  609. pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +1 -1
  610. pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +1 -1
  611. pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +1 -1
  612. pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +1 -1
  613. pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +1 -1
  614. pulumi_azure_native/healthcareapis/v20240301/service.py +1 -1
  615. pulumi_azure_native/healthcareapis/v20240301/workspace.py +1 -1
  616. pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +1 -1
  617. pulumi_azure_native/healthcareapis/v20240331/__init__.py +26 -0
  618. pulumi_azure_native/healthcareapis/v20240331/_enums.py +93 -0
  619. pulumi_azure_native/healthcareapis/v20240331/_inputs.py +1432 -0
  620. pulumi_azure_native/healthcareapis/v20240331/dicom_service.py +460 -0
  621. pulumi_azure_native/healthcareapis/v20240331/fhir_service.py +585 -0
  622. pulumi_azure_native/healthcareapis/v20240331/get_dicom_service.py +305 -0
  623. pulumi_azure_native/healthcareapis/v20240331/get_fhir_service.py +344 -0
  624. pulumi_azure_native/healthcareapis/v20240331/get_iot_connector.py +214 -0
  625. pulumi_azure_native/healthcareapis/v20240331/get_iot_connector_fhir_destination.py +193 -0
  626. pulumi_azure_native/healthcareapis/v20240331/get_private_endpoint_connection.py +162 -0
  627. pulumi_azure_native/healthcareapis/v20240331/get_service.py +196 -0
  628. pulumi_azure_native/healthcareapis/v20240331/get_workspace.py +170 -0
  629. pulumi_azure_native/healthcareapis/v20240331/get_workspace_private_endpoint_connection.py +162 -0
  630. pulumi_azure_native/healthcareapis/v20240331/iot_connector.py +352 -0
  631. pulumi_azure_native/healthcareapis/v20240331/iot_connector_fhir_destination.py +337 -0
  632. pulumi_azure_native/healthcareapis/v20240331/outputs.py +2123 -0
  633. pulumi_azure_native/healthcareapis/v20240331/private_endpoint_connection.py +237 -0
  634. pulumi_azure_native/healthcareapis/v20240331/service.py +322 -0
  635. pulumi_azure_native/healthcareapis/v20240331/workspace.py +242 -0
  636. pulumi_azure_native/healthcareapis/v20240331/workspace_private_endpoint_connection.py +237 -0
  637. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  638. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  639. pulumi_azure_native/network/__init__.py +3 -0
  640. pulumi_azure_native/network/get_policy.py +2 -2
  641. pulumi_azure_native/network/policy.py +3 -3
  642. pulumi_azure_native/network/v20210601/policy.py +1 -1
  643. pulumi_azure_native/network/v20220501/policy.py +1 -1
  644. pulumi_azure_native/network/v20240201/__init__.py +12 -0
  645. pulumi_azure_native/network/v20240201/_enums.py +218 -0
  646. pulumi_azure_native/network/v20240201/_inputs.py +860 -0
  647. pulumi_azure_native/network/v20240201/get_policy.py +258 -0
  648. pulumi_azure_native/network/v20240201/outputs.py +989 -0
  649. pulumi_azure_native/network/v20240201/policy.py +387 -0
  650. pulumi_azure_native/notificationhubs/v20231001preview/_inputs.py +10 -640
  651. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace.py +247 -11
  652. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace_authorization_rule.py +115 -9
  653. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace_pns_credentials.py +119 -15
  654. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub.py +152 -12
  655. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub_authorization_rule.py +115 -9
  656. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub_pns_credentials.py +119 -15
  657. pulumi_azure_native/notificationhubs/v20231001preview/namespace.py +372 -19
  658. pulumi_azure_native/notificationhubs/v20231001preview/namespace_authorization_rule.py +146 -20
  659. pulumi_azure_native/notificationhubs/v20231001preview/notification_hub.py +319 -22
  660. pulumi_azure_native/notificationhubs/v20231001preview/notification_hub_authorization_rule.py +146 -20
  661. pulumi_azure_native/notificationhubs/v20231001preview/outputs.py +38 -739
  662. pulumi_azure_native/recoveryservices/get_replication_fabric.py +2 -2
  663. pulumi_azure_native/recoveryservices/get_replication_migration_item.py +2 -2
  664. pulumi_azure_native/recoveryservices/get_replication_network_mapping.py +2 -2
  665. pulumi_azure_native/recoveryservices/get_replication_policy.py +2 -2
  666. pulumi_azure_native/recoveryservices/get_replication_protected_item.py +2 -2
  667. pulumi_azure_native/recoveryservices/get_replication_protection_container_mapping.py +2 -2
  668. pulumi_azure_native/recoveryservices/get_replication_recovery_plan.py +2 -2
  669. pulumi_azure_native/recoveryservices/get_replication_recovery_services_provider.py +2 -2
  670. pulumi_azure_native/recoveryservices/get_replication_storage_classification_mapping.py +2 -2
  671. pulumi_azure_native/recoveryservices/get_replicationv_center.py +2 -2
  672. pulumi_azure_native/recoveryservices/replication_fabric.py +3 -3
  673. pulumi_azure_native/recoveryservices/replication_migration_item.py +3 -3
  674. pulumi_azure_native/recoveryservices/replication_network_mapping.py +3 -3
  675. pulumi_azure_native/recoveryservices/replication_policy.py +3 -3
  676. pulumi_azure_native/recoveryservices/replication_protected_item.py +3 -3
  677. pulumi_azure_native/recoveryservices/replication_protection_container_mapping.py +3 -3
  678. pulumi_azure_native/recoveryservices/replication_recovery_plan.py +3 -3
  679. pulumi_azure_native/recoveryservices/replication_recovery_services_provider.py +3 -3
  680. pulumi_azure_native/recoveryservices/replication_storage_classification_mapping.py +3 -3
  681. pulumi_azure_native/recoveryservices/replicationv_center.py +3 -3
  682. pulumi_azure_native/recoveryservices/v20210301/replication_network_mapping.py +1 -1
  683. pulumi_azure_native/recoveryservices/v20210301/replicationv_center.py +1 -1
  684. pulumi_azure_native/recoveryservices/v20230401/replication_fabric.py +1 -1
  685. pulumi_azure_native/recoveryservices/v20230401/replication_migration_item.py +1 -1
  686. pulumi_azure_native/recoveryservices/v20230401/replication_network_mapping.py +1 -1
  687. pulumi_azure_native/recoveryservices/v20230401/replication_policy.py +1 -1
  688. pulumi_azure_native/recoveryservices/v20230401/replication_protected_item.py +1 -1
  689. pulumi_azure_native/recoveryservices/v20230401/replication_protection_container_mapping.py +1 -1
  690. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_plan.py +1 -1
  691. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_services_provider.py +1 -1
  692. pulumi_azure_native/recoveryservices/v20230401/replication_storage_classification_mapping.py +1 -1
  693. pulumi_azure_native/recoveryservices/v20230401/replicationv_center.py +1 -1
  694. pulumi_azure_native/recoveryservices/v20230601/replication_fabric.py +1 -1
  695. pulumi_azure_native/recoveryservices/v20230601/replication_migration_item.py +1 -1
  696. pulumi_azure_native/recoveryservices/v20230601/replication_network_mapping.py +1 -1
  697. pulumi_azure_native/recoveryservices/v20230601/replication_policy.py +1 -1
  698. pulumi_azure_native/recoveryservices/v20230601/replication_protected_item.py +1 -1
  699. pulumi_azure_native/recoveryservices/v20230601/replication_protection_container_mapping.py +1 -1
  700. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_plan.py +1 -1
  701. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_services_provider.py +1 -1
  702. pulumi_azure_native/recoveryservices/v20230601/replication_storage_classification_mapping.py +1 -1
  703. pulumi_azure_native/recoveryservices/v20230601/replicationv_center.py +1 -1
  704. pulumi_azure_native/recoveryservices/v20230801/replication_fabric.py +1 -1
  705. pulumi_azure_native/recoveryservices/v20230801/replication_migration_item.py +1 -1
  706. pulumi_azure_native/recoveryservices/v20230801/replication_network_mapping.py +1 -1
  707. pulumi_azure_native/recoveryservices/v20230801/replication_policy.py +1 -1
  708. pulumi_azure_native/recoveryservices/v20230801/replication_protected_item.py +1 -1
  709. pulumi_azure_native/recoveryservices/v20230801/replication_protection_container_mapping.py +1 -1
  710. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_plan.py +1 -1
  711. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_services_provider.py +1 -1
  712. pulumi_azure_native/recoveryservices/v20230801/replication_storage_classification_mapping.py +1 -1
  713. pulumi_azure_native/recoveryservices/v20230801/replicationv_center.py +1 -1
  714. pulumi_azure_native/recoveryservices/v20240101/__init__.py +20 -0
  715. pulumi_azure_native/recoveryservices/v20240101/_enums.py +161 -0
  716. pulumi_azure_native/recoveryservices/v20240101/_inputs.py +12735 -6644
  717. pulumi_azure_native/recoveryservices/v20240101/get_replication_fabric.py +141 -0
  718. pulumi_azure_native/recoveryservices/v20240101/get_replication_migration_item.py +146 -0
  719. pulumi_azure_native/recoveryservices/v20240101/get_replication_network_mapping.py +146 -0
  720. pulumi_azure_native/recoveryservices/v20240101/get_replication_policy.py +136 -0
  721. pulumi_azure_native/recoveryservices/v20240101/get_replication_protected_item.py +146 -0
  722. pulumi_azure_native/recoveryservices/v20240101/get_replication_protection_container_mapping.py +146 -0
  723. pulumi_azure_native/recoveryservices/v20240101/get_replication_recovery_plan.py +136 -0
  724. pulumi_azure_native/recoveryservices/v20240101/get_replication_recovery_services_provider.py +141 -0
  725. pulumi_azure_native/recoveryservices/v20240101/get_replication_storage_classification_mapping.py +146 -0
  726. pulumi_azure_native/recoveryservices/v20240101/get_replicationv_center.py +141 -0
  727. pulumi_azure_native/recoveryservices/v20240101/outputs.py +29051 -8081
  728. pulumi_azure_native/recoveryservices/v20240101/replication_fabric.py +215 -0
  729. pulumi_azure_native/recoveryservices/v20240101/replication_migration_item.py +259 -0
  730. pulumi_azure_native/recoveryservices/v20240101/replication_network_mapping.py +258 -0
  731. pulumi_azure_native/recoveryservices/v20240101/replication_policy.py +216 -0
  732. pulumi_azure_native/recoveryservices/v20240101/replication_protected_item.py +258 -0
  733. pulumi_azure_native/recoveryservices/v20240101/replication_protection_container_mapping.py +258 -0
  734. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_plan.py +217 -0
  735. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_services_provider.py +237 -0
  736. pulumi_azure_native/recoveryservices/v20240101/replication_storage_classification_mapping.py +257 -0
  737. pulumi_azure_native/recoveryservices/v20240101/replicationv_center.py +236 -0
  738. pulumi_azure_native/resourcehealth/__init__.py +3 -0
  739. pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +2 -2
  740. pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +2 -2
  741. pulumi_azure_native/resourcehealth/v20240201/__init__.py +10 -0
  742. pulumi_azure_native/resourcehealth/v20240201/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +92 -0
  743. pulumi_azure_native/resourcehealth/v20240201/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +92 -0
  744. pulumi_azure_native/resourcehealth/v20240201/outputs.py +234 -0
  745. pulumi_azure_native/security/__init__.py +3 -0
  746. pulumi_azure_native/security/automation.py +5 -1
  747. pulumi_azure_native/security/get_automation.py +4 -0
  748. pulumi_azure_native/security/get_security_contact.py +2 -2
  749. pulumi_azure_native/security/security_contact.py +3 -3
  750. pulumi_azure_native/security/v20170801preview/security_contact.py +1 -1
  751. pulumi_azure_native/security/v20190101preview/automation.py +1 -1
  752. pulumi_azure_native/security/v20200101preview/security_contact.py +1 -1
  753. pulumi_azure_native/security/v20231201preview/__init__.py +14 -0
  754. pulumi_azure_native/security/v20231201preview/_enums.py +181 -0
  755. pulumi_azure_native/security/v20231201preview/_inputs.py +490 -0
  756. pulumi_azure_native/security/v20231201preview/automation.py +398 -0
  757. pulumi_azure_native/security/v20231201preview/get_automation.py +222 -0
  758. pulumi_azure_native/security/v20231201preview/get_security_contact.py +165 -0
  759. pulumi_azure_native/security/v20231201preview/outputs.py +594 -0
  760. pulumi_azure_native/security/v20231201preview/security_contact.py +280 -0
  761. pulumi_azure_native/securityinsights/__init__.py +3 -0
  762. pulumi_azure_native/securityinsights/aad_data_connector.py +1 -1
  763. pulumi_azure_native/securityinsights/aatp_data_connector.py +1 -1
  764. pulumi_azure_native/securityinsights/action.py +3 -3
  765. pulumi_azure_native/securityinsights/anomaly_security_ml_analytics_settings.py +1 -1
  766. pulumi_azure_native/securityinsights/asc_data_connector.py +1 -1
  767. pulumi_azure_native/securityinsights/automation_rule.py +3 -3
  768. pulumi_azure_native/securityinsights/aws_cloud_trail_data_connector.py +1 -1
  769. pulumi_azure_native/securityinsights/bookmark.py +3 -3
  770. pulumi_azure_native/securityinsights/content_package.py +3 -3
  771. pulumi_azure_native/securityinsights/content_template.py +3 -3
  772. pulumi_azure_native/securityinsights/fusion_alert_rule.py +1 -1
  773. pulumi_azure_native/securityinsights/get_action.py +2 -2
  774. pulumi_azure_native/securityinsights/get_automation_rule.py +2 -2
  775. pulumi_azure_native/securityinsights/get_bookmark.py +2 -2
  776. pulumi_azure_native/securityinsights/get_content_package.py +2 -2
  777. pulumi_azure_native/securityinsights/get_content_template.py +2 -2
  778. pulumi_azure_native/securityinsights/get_incident.py +2 -2
  779. pulumi_azure_native/securityinsights/get_incident_comment.py +2 -2
  780. pulumi_azure_native/securityinsights/get_incident_relation.py +2 -2
  781. pulumi_azure_native/securityinsights/get_incident_task.py +2 -2
  782. pulumi_azure_native/securityinsights/get_metadata.py +2 -2
  783. pulumi_azure_native/securityinsights/get_sentinel_onboarding_state.py +2 -2
  784. pulumi_azure_native/securityinsights/get_threat_intelligence_indicator.py +2 -2
  785. pulumi_azure_native/securityinsights/get_watchlist.py +2 -2
  786. pulumi_azure_native/securityinsights/get_watchlist_item.py +2 -2
  787. pulumi_azure_native/securityinsights/incident.py +3 -3
  788. pulumi_azure_native/securityinsights/incident_comment.py +3 -3
  789. pulumi_azure_native/securityinsights/incident_relation.py +3 -3
  790. pulumi_azure_native/securityinsights/incident_task.py +3 -3
  791. pulumi_azure_native/securityinsights/list_source_control_repositories.py +2 -2
  792. pulumi_azure_native/securityinsights/mcas_data_connector.py +1 -1
  793. pulumi_azure_native/securityinsights/mdatp_data_connector.py +1 -1
  794. pulumi_azure_native/securityinsights/metadata.py +3 -3
  795. pulumi_azure_native/securityinsights/microsoft_security_incident_creation_alert_rule.py +1 -1
  796. pulumi_azure_native/securityinsights/office_data_connector.py +1 -1
  797. pulumi_azure_native/securityinsights/scheduled_alert_rule.py +1 -1
  798. pulumi_azure_native/securityinsights/sentinel_onboarding_state.py +3 -3
  799. pulumi_azure_native/securityinsights/threat_intelligence_indicator.py +3 -3
  800. pulumi_azure_native/securityinsights/ti_data_connector.py +1 -1
  801. pulumi_azure_native/securityinsights/v20190101preview/automation_rule.py +1 -1
  802. pulumi_azure_native/securityinsights/v20190101preview/bookmark.py +1 -1
  803. pulumi_azure_native/securityinsights/v20190101preview/watchlist.py +1 -1
  804. pulumi_azure_native/securityinsights/v20210301preview/aad_data_connector.py +1 -1
  805. pulumi_azure_native/securityinsights/v20210301preview/aatp_data_connector.py +1 -1
  806. pulumi_azure_native/securityinsights/v20210301preview/action.py +1 -1
  807. pulumi_azure_native/securityinsights/v20210301preview/asc_data_connector.py +1 -1
  808. pulumi_azure_native/securityinsights/v20210301preview/aws_cloud_trail_data_connector.py +1 -1
  809. pulumi_azure_native/securityinsights/v20210301preview/codeless_ui_data_connector.py +1 -1
  810. pulumi_azure_native/securityinsights/v20210301preview/dynamics365_data_connector.py +1 -1
  811. pulumi_azure_native/securityinsights/v20210301preview/fusion_alert_rule.py +1 -1
  812. pulumi_azure_native/securityinsights/v20210301preview/incident.py +1 -1
  813. pulumi_azure_native/securityinsights/v20210301preview/incident_comment.py +1 -1
  814. pulumi_azure_native/securityinsights/v20210301preview/incident_relation.py +1 -1
  815. pulumi_azure_native/securityinsights/v20210301preview/mcas_data_connector.py +1 -1
  816. pulumi_azure_native/securityinsights/v20210301preview/mdatp_data_connector.py +1 -1
  817. pulumi_azure_native/securityinsights/v20210301preview/metadata.py +1 -1
  818. pulumi_azure_native/securityinsights/v20210301preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  819. pulumi_azure_native/securityinsights/v20210301preview/ml_behavior_analytics_alert_rule.py +1 -1
  820. pulumi_azure_native/securityinsights/v20210301preview/msti_data_connector.py +1 -1
  821. pulumi_azure_native/securityinsights/v20210301preview/mtp_data_connector.py +1 -1
  822. pulumi_azure_native/securityinsights/v20210301preview/office_atp_data_connector.py +1 -1
  823. pulumi_azure_native/securityinsights/v20210301preview/office_data_connector.py +1 -1
  824. pulumi_azure_native/securityinsights/v20210301preview/scheduled_alert_rule.py +1 -1
  825. pulumi_azure_native/securityinsights/v20210301preview/sentinel_onboarding_state.py +1 -1
  826. pulumi_azure_native/securityinsights/v20210301preview/threat_intelligence_alert_rule.py +1 -1
  827. pulumi_azure_native/securityinsights/v20210301preview/ti_data_connector.py +1 -1
  828. pulumi_azure_native/securityinsights/v20210301preview/ti_taxii_data_connector.py +1 -1
  829. pulumi_azure_native/securityinsights/v20210301preview/watchlist.py +1 -1
  830. pulumi_azure_native/securityinsights/v20210401/threat_intelligence_indicator.py +1 -1
  831. pulumi_azure_native/securityinsights/v20210401/watchlist.py +1 -1
  832. pulumi_azure_native/securityinsights/v20210401/watchlist_item.py +1 -1
  833. pulumi_azure_native/securityinsights/v20210901preview/threat_intelligence_indicator.py +1 -1
  834. pulumi_azure_native/securityinsights/v20211001preview/fusion_alert_rule.py +1 -1
  835. pulumi_azure_native/securityinsights/v20211001preview/nrt_alert_rule.py +1 -1
  836. pulumi_azure_native/securityinsights/v20211001preview/watchlist.py +1 -1
  837. pulumi_azure_native/securityinsights/v20220101preview/watchlist.py +1 -1
  838. pulumi_azure_native/securityinsights/v20230201/aad_data_connector.py +1 -1
  839. pulumi_azure_native/securityinsights/v20230201/aatp_data_connector.py +1 -1
  840. pulumi_azure_native/securityinsights/v20230201/action.py +1 -1
  841. pulumi_azure_native/securityinsights/v20230201/automation_rule.py +1 -1
  842. pulumi_azure_native/securityinsights/v20230201/aws_cloud_trail_data_connector.py +1 -1
  843. pulumi_azure_native/securityinsights/v20230201/bookmark.py +1 -1
  844. pulumi_azure_native/securityinsights/v20230201/incident.py +1 -1
  845. pulumi_azure_native/securityinsights/v20230201/incident_comment.py +1 -1
  846. pulumi_azure_native/securityinsights/v20230201/incident_relation.py +1 -1
  847. pulumi_azure_native/securityinsights/v20230201/mcas_data_connector.py +1 -1
  848. pulumi_azure_native/securityinsights/v20230201/mdatp_data_connector.py +1 -1
  849. pulumi_azure_native/securityinsights/v20230201/metadata.py +1 -1
  850. pulumi_azure_native/securityinsights/v20230201/office_data_connector.py +1 -1
  851. pulumi_azure_native/securityinsights/v20230201/sentinel_onboarding_state.py +1 -1
  852. pulumi_azure_native/securityinsights/v20230201/threat_intelligence_indicator.py +1 -1
  853. pulumi_azure_native/securityinsights/v20230201/ti_data_connector.py +1 -1
  854. pulumi_azure_native/securityinsights/v20230201/watchlist.py +1 -1
  855. pulumi_azure_native/securityinsights/v20230201/watchlist_item.py +1 -1
  856. pulumi_azure_native/securityinsights/v20230201preview/incident.py +1 -1
  857. pulumi_azure_native/securityinsights/v20230201preview/metadata.py +1 -1
  858. pulumi_azure_native/securityinsights/v20230301preview/incident.py +1 -1
  859. pulumi_azure_native/securityinsights/v20230601preview/aad_data_connector.py +1 -1
  860. pulumi_azure_native/securityinsights/v20230601preview/aatp_data_connector.py +1 -1
  861. pulumi_azure_native/securityinsights/v20230601preview/action.py +1 -1
  862. pulumi_azure_native/securityinsights/v20230601preview/anomaly_security_ml_analytics_settings.py +1 -1
  863. pulumi_azure_native/securityinsights/v20230601preview/asc_data_connector.py +1 -1
  864. pulumi_azure_native/securityinsights/v20230601preview/automation_rule.py +1 -1
  865. pulumi_azure_native/securityinsights/v20230601preview/aws_cloud_trail_data_connector.py +1 -1
  866. pulumi_azure_native/securityinsights/v20230601preview/aws_s3_data_connector.py +1 -1
  867. pulumi_azure_native/securityinsights/v20230601preview/bookmark.py +1 -1
  868. pulumi_azure_native/securityinsights/v20230601preview/codeless_api_polling_data_connector.py +1 -1
  869. pulumi_azure_native/securityinsights/v20230601preview/codeless_ui_data_connector.py +1 -1
  870. pulumi_azure_native/securityinsights/v20230601preview/content_package.py +1 -1
  871. pulumi_azure_native/securityinsights/v20230601preview/content_template.py +1 -1
  872. pulumi_azure_native/securityinsights/v20230601preview/dynamics365_data_connector.py +1 -1
  873. pulumi_azure_native/securityinsights/v20230601preview/fusion_alert_rule.py +1 -1
  874. pulumi_azure_native/securityinsights/v20230601preview/gcp_data_connector.py +1 -1
  875. pulumi_azure_native/securityinsights/v20230601preview/incident.py +1 -1
  876. pulumi_azure_native/securityinsights/v20230601preview/incident_comment.py +1 -1
  877. pulumi_azure_native/securityinsights/v20230601preview/incident_relation.py +1 -1
  878. pulumi_azure_native/securityinsights/v20230601preview/incident_task.py +1 -1
  879. pulumi_azure_native/securityinsights/v20230601preview/io_t_data_connector.py +1 -1
  880. pulumi_azure_native/securityinsights/v20230601preview/mcas_data_connector.py +1 -1
  881. pulumi_azure_native/securityinsights/v20230601preview/mdatp_data_connector.py +1 -1
  882. pulumi_azure_native/securityinsights/v20230601preview/metadata.py +1 -1
  883. pulumi_azure_native/securityinsights/v20230601preview/microsoft_purview_information_protection_data_connector.py +1 -1
  884. pulumi_azure_native/securityinsights/v20230601preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  885. pulumi_azure_native/securityinsights/v20230601preview/ml_behavior_analytics_alert_rule.py +1 -1
  886. pulumi_azure_native/securityinsights/v20230601preview/msti_data_connector.py +1 -1
  887. pulumi_azure_native/securityinsights/v20230601preview/mtp_data_connector.py +1 -1
  888. pulumi_azure_native/securityinsights/v20230601preview/nrt_alert_rule.py +1 -1
  889. pulumi_azure_native/securityinsights/v20230601preview/office365_project_data_connector.py +1 -1
  890. pulumi_azure_native/securityinsights/v20230601preview/office_atp_data_connector.py +1 -1
  891. pulumi_azure_native/securityinsights/v20230601preview/office_data_connector.py +1 -1
  892. pulumi_azure_native/securityinsights/v20230601preview/office_irm_data_connector.py +1 -1
  893. pulumi_azure_native/securityinsights/v20230601preview/office_power_bi_data_connector.py +1 -1
  894. pulumi_azure_native/securityinsights/v20230601preview/scheduled_alert_rule.py +1 -1
  895. pulumi_azure_native/securityinsights/v20230601preview/sentinel_onboarding_state.py +1 -1
  896. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_alert_rule.py +1 -1
  897. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_indicator.py +1 -1
  898. pulumi_azure_native/securityinsights/v20230601preview/ti_data_connector.py +1 -1
  899. pulumi_azure_native/securityinsights/v20230601preview/ti_taxii_data_connector.py +1 -1
  900. pulumi_azure_native/securityinsights/v20230601preview/watchlist.py +1 -1
  901. pulumi_azure_native/securityinsights/v20230601preview/watchlist_item.py +1 -1
  902. pulumi_azure_native/securityinsights/v20230701preview/aad_data_connector.py +1 -1
  903. pulumi_azure_native/securityinsights/v20230701preview/aatp_data_connector.py +1 -1
  904. pulumi_azure_native/securityinsights/v20230701preview/action.py +1 -1
  905. pulumi_azure_native/securityinsights/v20230701preview/anomaly_security_ml_analytics_settings.py +1 -1
  906. pulumi_azure_native/securityinsights/v20230701preview/asc_data_connector.py +1 -1
  907. pulumi_azure_native/securityinsights/v20230701preview/automation_rule.py +1 -1
  908. pulumi_azure_native/securityinsights/v20230701preview/aws_cloud_trail_data_connector.py +1 -1
  909. pulumi_azure_native/securityinsights/v20230701preview/aws_s3_data_connector.py +1 -1
  910. pulumi_azure_native/securityinsights/v20230701preview/bookmark.py +1 -1
  911. pulumi_azure_native/securityinsights/v20230701preview/codeless_api_polling_data_connector.py +1 -1
  912. pulumi_azure_native/securityinsights/v20230701preview/codeless_ui_data_connector.py +1 -1
  913. pulumi_azure_native/securityinsights/v20230701preview/content_package.py +1 -1
  914. pulumi_azure_native/securityinsights/v20230701preview/content_template.py +1 -1
  915. pulumi_azure_native/securityinsights/v20230701preview/dynamics365_data_connector.py +1 -1
  916. pulumi_azure_native/securityinsights/v20230701preview/fusion_alert_rule.py +1 -1
  917. pulumi_azure_native/securityinsights/v20230701preview/gcp_data_connector.py +1 -1
  918. pulumi_azure_native/securityinsights/v20230701preview/incident.py +1 -1
  919. pulumi_azure_native/securityinsights/v20230701preview/incident_comment.py +1 -1
  920. pulumi_azure_native/securityinsights/v20230701preview/incident_relation.py +1 -1
  921. pulumi_azure_native/securityinsights/v20230701preview/incident_task.py +1 -1
  922. pulumi_azure_native/securityinsights/v20230701preview/io_t_data_connector.py +1 -1
  923. pulumi_azure_native/securityinsights/v20230701preview/mcas_data_connector.py +1 -1
  924. pulumi_azure_native/securityinsights/v20230701preview/mdatp_data_connector.py +1 -1
  925. pulumi_azure_native/securityinsights/v20230701preview/metadata.py +1 -1
  926. pulumi_azure_native/securityinsights/v20230701preview/microsoft_purview_information_protection_data_connector.py +1 -1
  927. pulumi_azure_native/securityinsights/v20230701preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  928. pulumi_azure_native/securityinsights/v20230701preview/ml_behavior_analytics_alert_rule.py +1 -1
  929. pulumi_azure_native/securityinsights/v20230701preview/msti_data_connector.py +1 -1
  930. pulumi_azure_native/securityinsights/v20230701preview/mtp_data_connector.py +1 -1
  931. pulumi_azure_native/securityinsights/v20230701preview/nrt_alert_rule.py +1 -1
  932. pulumi_azure_native/securityinsights/v20230701preview/office365_project_data_connector.py +1 -1
  933. pulumi_azure_native/securityinsights/v20230701preview/office_atp_data_connector.py +1 -1
  934. pulumi_azure_native/securityinsights/v20230701preview/office_data_connector.py +1 -1
  935. pulumi_azure_native/securityinsights/v20230701preview/office_irm_data_connector.py +1 -1
  936. pulumi_azure_native/securityinsights/v20230701preview/office_power_bi_data_connector.py +1 -1
  937. pulumi_azure_native/securityinsights/v20230701preview/scheduled_alert_rule.py +1 -1
  938. pulumi_azure_native/securityinsights/v20230701preview/sentinel_onboarding_state.py +1 -1
  939. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_alert_rule.py +1 -1
  940. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_indicator.py +1 -1
  941. pulumi_azure_native/securityinsights/v20230701preview/ti_data_connector.py +1 -1
  942. pulumi_azure_native/securityinsights/v20230701preview/ti_taxii_data_connector.py +1 -1
  943. pulumi_azure_native/securityinsights/v20230701preview/watchlist.py +1 -1
  944. pulumi_azure_native/securityinsights/v20230701preview/watchlist_item.py +1 -1
  945. pulumi_azure_native/securityinsights/v20230801preview/aad_data_connector.py +1 -1
  946. pulumi_azure_native/securityinsights/v20230801preview/aatp_data_connector.py +1 -1
  947. pulumi_azure_native/securityinsights/v20230801preview/action.py +1 -1
  948. pulumi_azure_native/securityinsights/v20230801preview/anomaly_security_ml_analytics_settings.py +1 -1
  949. pulumi_azure_native/securityinsights/v20230801preview/asc_data_connector.py +1 -1
  950. pulumi_azure_native/securityinsights/v20230801preview/automation_rule.py +1 -1
  951. pulumi_azure_native/securityinsights/v20230801preview/aws_cloud_trail_data_connector.py +1 -1
  952. pulumi_azure_native/securityinsights/v20230801preview/aws_s3_data_connector.py +1 -1
  953. pulumi_azure_native/securityinsights/v20230801preview/bookmark.py +1 -1
  954. pulumi_azure_native/securityinsights/v20230801preview/codeless_api_polling_data_connector.py +1 -1
  955. pulumi_azure_native/securityinsights/v20230801preview/codeless_ui_data_connector.py +1 -1
  956. pulumi_azure_native/securityinsights/v20230801preview/content_package.py +1 -1
  957. pulumi_azure_native/securityinsights/v20230801preview/content_template.py +1 -1
  958. pulumi_azure_native/securityinsights/v20230801preview/dynamics365_data_connector.py +1 -1
  959. pulumi_azure_native/securityinsights/v20230801preview/fusion_alert_rule.py +1 -1
  960. pulumi_azure_native/securityinsights/v20230801preview/gcp_data_connector.py +1 -1
  961. pulumi_azure_native/securityinsights/v20230801preview/incident.py +1 -1
  962. pulumi_azure_native/securityinsights/v20230801preview/incident_comment.py +1 -1
  963. pulumi_azure_native/securityinsights/v20230801preview/incident_relation.py +1 -1
  964. pulumi_azure_native/securityinsights/v20230801preview/incident_task.py +1 -1
  965. pulumi_azure_native/securityinsights/v20230801preview/io_t_data_connector.py +1 -1
  966. pulumi_azure_native/securityinsights/v20230801preview/mcas_data_connector.py +1 -1
  967. pulumi_azure_native/securityinsights/v20230801preview/mdatp_data_connector.py +1 -1
  968. pulumi_azure_native/securityinsights/v20230801preview/metadata.py +1 -1
  969. pulumi_azure_native/securityinsights/v20230801preview/microsoft_purview_information_protection_data_connector.py +1 -1
  970. pulumi_azure_native/securityinsights/v20230801preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  971. pulumi_azure_native/securityinsights/v20230801preview/ml_behavior_analytics_alert_rule.py +1 -1
  972. pulumi_azure_native/securityinsights/v20230801preview/msti_data_connector.py +1 -1
  973. pulumi_azure_native/securityinsights/v20230801preview/mtp_data_connector.py +1 -1
  974. pulumi_azure_native/securityinsights/v20230801preview/nrt_alert_rule.py +1 -1
  975. pulumi_azure_native/securityinsights/v20230801preview/office365_project_data_connector.py +1 -1
  976. pulumi_azure_native/securityinsights/v20230801preview/office_atp_data_connector.py +1 -1
  977. pulumi_azure_native/securityinsights/v20230801preview/office_data_connector.py +1 -1
  978. pulumi_azure_native/securityinsights/v20230801preview/office_irm_data_connector.py +1 -1
  979. pulumi_azure_native/securityinsights/v20230801preview/office_power_bi_data_connector.py +1 -1
  980. pulumi_azure_native/securityinsights/v20230801preview/scheduled_alert_rule.py +1 -1
  981. pulumi_azure_native/securityinsights/v20230801preview/sentinel_onboarding_state.py +1 -1
  982. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_alert_rule.py +1 -1
  983. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_indicator.py +1 -1
  984. pulumi_azure_native/securityinsights/v20230801preview/ti_data_connector.py +1 -1
  985. pulumi_azure_native/securityinsights/v20230801preview/ti_taxii_data_connector.py +1 -1
  986. pulumi_azure_native/securityinsights/v20230801preview/watchlist.py +1 -1
  987. pulumi_azure_native/securityinsights/v20230801preview/watchlist_item.py +1 -1
  988. pulumi_azure_native/securityinsights/v20230901preview/aad_data_connector.py +1 -1
  989. pulumi_azure_native/securityinsights/v20230901preview/aatp_data_connector.py +1 -1
  990. pulumi_azure_native/securityinsights/v20230901preview/action.py +1 -1
  991. pulumi_azure_native/securityinsights/v20230901preview/anomaly_security_ml_analytics_settings.py +1 -1
  992. pulumi_azure_native/securityinsights/v20230901preview/asc_data_connector.py +1 -1
  993. pulumi_azure_native/securityinsights/v20230901preview/automation_rule.py +1 -1
  994. pulumi_azure_native/securityinsights/v20230901preview/aws_cloud_trail_data_connector.py +1 -1
  995. pulumi_azure_native/securityinsights/v20230901preview/aws_s3_data_connector.py +1 -1
  996. pulumi_azure_native/securityinsights/v20230901preview/bookmark.py +1 -1
  997. pulumi_azure_native/securityinsights/v20230901preview/codeless_api_polling_data_connector.py +1 -1
  998. pulumi_azure_native/securityinsights/v20230901preview/codeless_ui_data_connector.py +1 -1
  999. pulumi_azure_native/securityinsights/v20230901preview/content_package.py +1 -1
  1000. pulumi_azure_native/securityinsights/v20230901preview/content_template.py +1 -1
  1001. pulumi_azure_native/securityinsights/v20230901preview/dynamics365_data_connector.py +1 -1
  1002. pulumi_azure_native/securityinsights/v20230901preview/fusion_alert_rule.py +1 -1
  1003. pulumi_azure_native/securityinsights/v20230901preview/gcp_data_connector.py +1 -1
  1004. pulumi_azure_native/securityinsights/v20230901preview/incident.py +1 -1
  1005. pulumi_azure_native/securityinsights/v20230901preview/incident_comment.py +1 -1
  1006. pulumi_azure_native/securityinsights/v20230901preview/incident_relation.py +1 -1
  1007. pulumi_azure_native/securityinsights/v20230901preview/incident_task.py +1 -1
  1008. pulumi_azure_native/securityinsights/v20230901preview/io_t_data_connector.py +1 -1
  1009. pulumi_azure_native/securityinsights/v20230901preview/mcas_data_connector.py +1 -1
  1010. pulumi_azure_native/securityinsights/v20230901preview/mdatp_data_connector.py +1 -1
  1011. pulumi_azure_native/securityinsights/v20230901preview/metadata.py +1 -1
  1012. pulumi_azure_native/securityinsights/v20230901preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1013. pulumi_azure_native/securityinsights/v20230901preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1014. pulumi_azure_native/securityinsights/v20230901preview/ml_behavior_analytics_alert_rule.py +1 -1
  1015. pulumi_azure_native/securityinsights/v20230901preview/msti_data_connector.py +1 -1
  1016. pulumi_azure_native/securityinsights/v20230901preview/mtp_data_connector.py +1 -1
  1017. pulumi_azure_native/securityinsights/v20230901preview/nrt_alert_rule.py +1 -1
  1018. pulumi_azure_native/securityinsights/v20230901preview/office365_project_data_connector.py +1 -1
  1019. pulumi_azure_native/securityinsights/v20230901preview/office_atp_data_connector.py +1 -1
  1020. pulumi_azure_native/securityinsights/v20230901preview/office_data_connector.py +1 -1
  1021. pulumi_azure_native/securityinsights/v20230901preview/office_irm_data_connector.py +1 -1
  1022. pulumi_azure_native/securityinsights/v20230901preview/office_power_bi_data_connector.py +1 -1
  1023. pulumi_azure_native/securityinsights/v20230901preview/scheduled_alert_rule.py +1 -1
  1024. pulumi_azure_native/securityinsights/v20230901preview/sentinel_onboarding_state.py +1 -1
  1025. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_alert_rule.py +1 -1
  1026. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_indicator.py +1 -1
  1027. pulumi_azure_native/securityinsights/v20230901preview/ti_data_connector.py +1 -1
  1028. pulumi_azure_native/securityinsights/v20230901preview/ti_taxii_data_connector.py +1 -1
  1029. pulumi_azure_native/securityinsights/v20230901preview/watchlist.py +1 -1
  1030. pulumi_azure_native/securityinsights/v20230901preview/watchlist_item.py +1 -1
  1031. pulumi_azure_native/securityinsights/v20231001preview/aad_data_connector.py +1 -1
  1032. pulumi_azure_native/securityinsights/v20231001preview/aatp_data_connector.py +1 -1
  1033. pulumi_azure_native/securityinsights/v20231001preview/action.py +1 -1
  1034. pulumi_azure_native/securityinsights/v20231001preview/anomaly_security_ml_analytics_settings.py +1 -1
  1035. pulumi_azure_native/securityinsights/v20231001preview/asc_data_connector.py +1 -1
  1036. pulumi_azure_native/securityinsights/v20231001preview/automation_rule.py +1 -1
  1037. pulumi_azure_native/securityinsights/v20231001preview/aws_cloud_trail_data_connector.py +1 -1
  1038. pulumi_azure_native/securityinsights/v20231001preview/aws_s3_data_connector.py +1 -1
  1039. pulumi_azure_native/securityinsights/v20231001preview/bookmark.py +1 -1
  1040. pulumi_azure_native/securityinsights/v20231001preview/codeless_api_polling_data_connector.py +1 -1
  1041. pulumi_azure_native/securityinsights/v20231001preview/codeless_ui_data_connector.py +1 -1
  1042. pulumi_azure_native/securityinsights/v20231001preview/content_package.py +1 -1
  1043. pulumi_azure_native/securityinsights/v20231001preview/content_template.py +1 -1
  1044. pulumi_azure_native/securityinsights/v20231001preview/dynamics365_data_connector.py +1 -1
  1045. pulumi_azure_native/securityinsights/v20231001preview/fusion_alert_rule.py +1 -1
  1046. pulumi_azure_native/securityinsights/v20231001preview/gcp_data_connector.py +1 -1
  1047. pulumi_azure_native/securityinsights/v20231001preview/incident.py +1 -1
  1048. pulumi_azure_native/securityinsights/v20231001preview/incident_comment.py +1 -1
  1049. pulumi_azure_native/securityinsights/v20231001preview/incident_relation.py +1 -1
  1050. pulumi_azure_native/securityinsights/v20231001preview/incident_task.py +1 -1
  1051. pulumi_azure_native/securityinsights/v20231001preview/io_t_data_connector.py +1 -1
  1052. pulumi_azure_native/securityinsights/v20231001preview/mcas_data_connector.py +1 -1
  1053. pulumi_azure_native/securityinsights/v20231001preview/mdatp_data_connector.py +1 -1
  1054. pulumi_azure_native/securityinsights/v20231001preview/metadata.py +1 -1
  1055. pulumi_azure_native/securityinsights/v20231001preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1056. pulumi_azure_native/securityinsights/v20231001preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1057. pulumi_azure_native/securityinsights/v20231001preview/ml_behavior_analytics_alert_rule.py +1 -1
  1058. pulumi_azure_native/securityinsights/v20231001preview/msti_data_connector.py +1 -1
  1059. pulumi_azure_native/securityinsights/v20231001preview/mtp_data_connector.py +1 -1
  1060. pulumi_azure_native/securityinsights/v20231001preview/nrt_alert_rule.py +1 -1
  1061. pulumi_azure_native/securityinsights/v20231001preview/office365_project_data_connector.py +1 -1
  1062. pulumi_azure_native/securityinsights/v20231001preview/office_atp_data_connector.py +1 -1
  1063. pulumi_azure_native/securityinsights/v20231001preview/office_data_connector.py +1 -1
  1064. pulumi_azure_native/securityinsights/v20231001preview/office_irm_data_connector.py +1 -1
  1065. pulumi_azure_native/securityinsights/v20231001preview/office_power_bi_data_connector.py +1 -1
  1066. pulumi_azure_native/securityinsights/v20231001preview/scheduled_alert_rule.py +1 -1
  1067. pulumi_azure_native/securityinsights/v20231001preview/sentinel_onboarding_state.py +1 -1
  1068. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_alert_rule.py +1 -1
  1069. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_indicator.py +1 -1
  1070. pulumi_azure_native/securityinsights/v20231001preview/ti_data_connector.py +1 -1
  1071. pulumi_azure_native/securityinsights/v20231001preview/ti_taxii_data_connector.py +1 -1
  1072. pulumi_azure_native/securityinsights/v20231001preview/watchlist.py +1 -1
  1073. pulumi_azure_native/securityinsights/v20231001preview/watchlist_item.py +1 -1
  1074. pulumi_azure_native/securityinsights/v20231101/aad_data_connector.py +1 -1
  1075. pulumi_azure_native/securityinsights/v20231101/aatp_data_connector.py +1 -1
  1076. pulumi_azure_native/securityinsights/v20231101/action.py +1 -1
  1077. pulumi_azure_native/securityinsights/v20231101/anomaly_security_ml_analytics_settings.py +1 -1
  1078. pulumi_azure_native/securityinsights/v20231101/asc_data_connector.py +1 -1
  1079. pulumi_azure_native/securityinsights/v20231101/automation_rule.py +1 -1
  1080. pulumi_azure_native/securityinsights/v20231101/aws_cloud_trail_data_connector.py +1 -1
  1081. pulumi_azure_native/securityinsights/v20231101/bookmark.py +1 -1
  1082. pulumi_azure_native/securityinsights/v20231101/content_package.py +1 -1
  1083. pulumi_azure_native/securityinsights/v20231101/content_template.py +1 -1
  1084. pulumi_azure_native/securityinsights/v20231101/fusion_alert_rule.py +1 -1
  1085. pulumi_azure_native/securityinsights/v20231101/incident.py +1 -1
  1086. pulumi_azure_native/securityinsights/v20231101/incident_comment.py +1 -1
  1087. pulumi_azure_native/securityinsights/v20231101/incident_relation.py +1 -1
  1088. pulumi_azure_native/securityinsights/v20231101/mcas_data_connector.py +1 -1
  1089. pulumi_azure_native/securityinsights/v20231101/mdatp_data_connector.py +1 -1
  1090. pulumi_azure_native/securityinsights/v20231101/metadata.py +1 -1
  1091. pulumi_azure_native/securityinsights/v20231101/microsoft_security_incident_creation_alert_rule.py +1 -1
  1092. pulumi_azure_native/securityinsights/v20231101/office_data_connector.py +1 -1
  1093. pulumi_azure_native/securityinsights/v20231101/scheduled_alert_rule.py +1 -1
  1094. pulumi_azure_native/securityinsights/v20231101/sentinel_onboarding_state.py +1 -1
  1095. pulumi_azure_native/securityinsights/v20231101/threat_intelligence_indicator.py +1 -1
  1096. pulumi_azure_native/securityinsights/v20231101/ti_data_connector.py +1 -1
  1097. pulumi_azure_native/securityinsights/v20231101/watchlist.py +1 -1
  1098. pulumi_azure_native/securityinsights/v20231101/watchlist_item.py +1 -1
  1099. pulumi_azure_native/securityinsights/v20231201preview/aad_data_connector.py +1 -1
  1100. pulumi_azure_native/securityinsights/v20231201preview/aatp_data_connector.py +1 -1
  1101. pulumi_azure_native/securityinsights/v20231201preview/action.py +1 -1
  1102. pulumi_azure_native/securityinsights/v20231201preview/anomaly_security_ml_analytics_settings.py +1 -1
  1103. pulumi_azure_native/securityinsights/v20231201preview/asc_data_connector.py +1 -1
  1104. pulumi_azure_native/securityinsights/v20231201preview/automation_rule.py +1 -1
  1105. pulumi_azure_native/securityinsights/v20231201preview/aws_cloud_trail_data_connector.py +1 -1
  1106. pulumi_azure_native/securityinsights/v20231201preview/aws_s3_data_connector.py +1 -1
  1107. pulumi_azure_native/securityinsights/v20231201preview/bookmark.py +1 -1
  1108. pulumi_azure_native/securityinsights/v20231201preview/codeless_api_polling_data_connector.py +1 -1
  1109. pulumi_azure_native/securityinsights/v20231201preview/codeless_ui_data_connector.py +1 -1
  1110. pulumi_azure_native/securityinsights/v20231201preview/content_package.py +1 -1
  1111. pulumi_azure_native/securityinsights/v20231201preview/content_template.py +1 -1
  1112. pulumi_azure_native/securityinsights/v20231201preview/dynamics365_data_connector.py +1 -1
  1113. pulumi_azure_native/securityinsights/v20231201preview/fusion_alert_rule.py +1 -1
  1114. pulumi_azure_native/securityinsights/v20231201preview/gcp_data_connector.py +1 -1
  1115. pulumi_azure_native/securityinsights/v20231201preview/incident.py +1 -1
  1116. pulumi_azure_native/securityinsights/v20231201preview/incident_comment.py +1 -1
  1117. pulumi_azure_native/securityinsights/v20231201preview/incident_relation.py +1 -1
  1118. pulumi_azure_native/securityinsights/v20231201preview/incident_task.py +1 -1
  1119. pulumi_azure_native/securityinsights/v20231201preview/io_t_data_connector.py +1 -1
  1120. pulumi_azure_native/securityinsights/v20231201preview/mcas_data_connector.py +1 -1
  1121. pulumi_azure_native/securityinsights/v20231201preview/mdatp_data_connector.py +1 -1
  1122. pulumi_azure_native/securityinsights/v20231201preview/metadata.py +1 -1
  1123. pulumi_azure_native/securityinsights/v20231201preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1124. pulumi_azure_native/securityinsights/v20231201preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1125. pulumi_azure_native/securityinsights/v20231201preview/ml_behavior_analytics_alert_rule.py +1 -1
  1126. pulumi_azure_native/securityinsights/v20231201preview/msti_data_connector.py +1 -1
  1127. pulumi_azure_native/securityinsights/v20231201preview/mtp_data_connector.py +1 -1
  1128. pulumi_azure_native/securityinsights/v20231201preview/nrt_alert_rule.py +1 -1
  1129. pulumi_azure_native/securityinsights/v20231201preview/office365_project_data_connector.py +1 -1
  1130. pulumi_azure_native/securityinsights/v20231201preview/office_atp_data_connector.py +1 -1
  1131. pulumi_azure_native/securityinsights/v20231201preview/office_data_connector.py +1 -1
  1132. pulumi_azure_native/securityinsights/v20231201preview/office_irm_data_connector.py +1 -1
  1133. pulumi_azure_native/securityinsights/v20231201preview/office_power_bi_data_connector.py +1 -1
  1134. pulumi_azure_native/securityinsights/v20231201preview/scheduled_alert_rule.py +1 -1
  1135. pulumi_azure_native/securityinsights/v20231201preview/sentinel_onboarding_state.py +1 -1
  1136. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_alert_rule.py +1 -1
  1137. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_indicator.py +1 -1
  1138. pulumi_azure_native/securityinsights/v20231201preview/ti_data_connector.py +1 -1
  1139. pulumi_azure_native/securityinsights/v20231201preview/ti_taxii_data_connector.py +1 -1
  1140. pulumi_azure_native/securityinsights/v20231201preview/watchlist.py +1 -1
  1141. pulumi_azure_native/securityinsights/v20231201preview/watchlist_item.py +1 -1
  1142. pulumi_azure_native/securityinsights/v20240101preview/aad_data_connector.py +1 -1
  1143. pulumi_azure_native/securityinsights/v20240101preview/aatp_data_connector.py +1 -1
  1144. pulumi_azure_native/securityinsights/v20240101preview/action.py +1 -1
  1145. pulumi_azure_native/securityinsights/v20240101preview/anomaly_security_ml_analytics_settings.py +1 -1
  1146. pulumi_azure_native/securityinsights/v20240101preview/asc_data_connector.py +1 -1
  1147. pulumi_azure_native/securityinsights/v20240101preview/automation_rule.py +1 -1
  1148. pulumi_azure_native/securityinsights/v20240101preview/aws_cloud_trail_data_connector.py +1 -1
  1149. pulumi_azure_native/securityinsights/v20240101preview/aws_s3_data_connector.py +1 -1
  1150. pulumi_azure_native/securityinsights/v20240101preview/bookmark.py +1 -1
  1151. pulumi_azure_native/securityinsights/v20240101preview/codeless_api_polling_data_connector.py +1 -1
  1152. pulumi_azure_native/securityinsights/v20240101preview/codeless_ui_data_connector.py +1 -1
  1153. pulumi_azure_native/securityinsights/v20240101preview/content_package.py +1 -1
  1154. pulumi_azure_native/securityinsights/v20240101preview/content_template.py +1 -1
  1155. pulumi_azure_native/securityinsights/v20240101preview/dynamics365_data_connector.py +1 -1
  1156. pulumi_azure_native/securityinsights/v20240101preview/fusion_alert_rule.py +1 -1
  1157. pulumi_azure_native/securityinsights/v20240101preview/gcp_data_connector.py +1 -1
  1158. pulumi_azure_native/securityinsights/v20240101preview/incident.py +1 -1
  1159. pulumi_azure_native/securityinsights/v20240101preview/incident_comment.py +1 -1
  1160. pulumi_azure_native/securityinsights/v20240101preview/incident_relation.py +1 -1
  1161. pulumi_azure_native/securityinsights/v20240101preview/incident_task.py +1 -1
  1162. pulumi_azure_native/securityinsights/v20240101preview/io_t_data_connector.py +1 -1
  1163. pulumi_azure_native/securityinsights/v20240101preview/mcas_data_connector.py +1 -1
  1164. pulumi_azure_native/securityinsights/v20240101preview/mdatp_data_connector.py +1 -1
  1165. pulumi_azure_native/securityinsights/v20240101preview/metadata.py +1 -1
  1166. pulumi_azure_native/securityinsights/v20240101preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1167. pulumi_azure_native/securityinsights/v20240101preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1168. pulumi_azure_native/securityinsights/v20240101preview/ml_behavior_analytics_alert_rule.py +1 -1
  1169. pulumi_azure_native/securityinsights/v20240101preview/msti_data_connector.py +1 -1
  1170. pulumi_azure_native/securityinsights/v20240101preview/mtp_data_connector.py +1 -1
  1171. pulumi_azure_native/securityinsights/v20240101preview/nrt_alert_rule.py +1 -1
  1172. pulumi_azure_native/securityinsights/v20240101preview/office365_project_data_connector.py +1 -1
  1173. pulumi_azure_native/securityinsights/v20240101preview/office_atp_data_connector.py +1 -1
  1174. pulumi_azure_native/securityinsights/v20240101preview/office_data_connector.py +1 -1
  1175. pulumi_azure_native/securityinsights/v20240101preview/office_irm_data_connector.py +1 -1
  1176. pulumi_azure_native/securityinsights/v20240101preview/office_power_bi_data_connector.py +1 -1
  1177. pulumi_azure_native/securityinsights/v20240101preview/rest_api_poller_data_connector.py +1 -1
  1178. pulumi_azure_native/securityinsights/v20240101preview/scheduled_alert_rule.py +1 -1
  1179. pulumi_azure_native/securityinsights/v20240101preview/sentinel_onboarding_state.py +1 -1
  1180. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_alert_rule.py +1 -1
  1181. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_indicator.py +1 -1
  1182. pulumi_azure_native/securityinsights/v20240101preview/ti_data_connector.py +1 -1
  1183. pulumi_azure_native/securityinsights/v20240101preview/ti_taxii_data_connector.py +1 -1
  1184. pulumi_azure_native/securityinsights/v20240101preview/watchlist.py +1 -1
  1185. pulumi_azure_native/securityinsights/v20240101preview/watchlist_item.py +1 -1
  1186. pulumi_azure_native/securityinsights/v20240301/__init__.py +63 -0
  1187. pulumi_azure_native/securityinsights/v20240301/_enums.py +954 -0
  1188. pulumi_azure_native/securityinsights/v20240301/_inputs.py +2530 -0
  1189. pulumi_azure_native/securityinsights/v20240301/aad_data_connector.py +289 -0
  1190. pulumi_azure_native/securityinsights/v20240301/aatp_data_connector.py +289 -0
  1191. pulumi_azure_native/securityinsights/v20240301/action.py +277 -0
  1192. pulumi_azure_native/securityinsights/v20240301/anomaly_security_ml_analytics_settings.py +624 -0
  1193. pulumi_azure_native/securityinsights/v20240301/asc_data_connector.py +289 -0
  1194. pulumi_azure_native/securityinsights/v20240301/automation_rule.py +355 -0
  1195. pulumi_azure_native/securityinsights/v20240301/aws_cloud_trail_data_connector.py +289 -0
  1196. pulumi_azure_native/securityinsights/v20240301/bookmark.py +576 -0
  1197. pulumi_azure_native/securityinsights/v20240301/content_package.py +869 -0
  1198. pulumi_azure_native/securityinsights/v20240301/content_template.py +950 -0
  1199. pulumi_azure_native/securityinsights/v20240301/fusion_alert_rule.py +349 -0
  1200. pulumi_azure_native/securityinsights/v20240301/get_aad_data_connector.py +176 -0
  1201. pulumi_azure_native/securityinsights/v20240301/get_aatp_data_connector.py +176 -0
  1202. pulumi_azure_native/securityinsights/v20240301/get_action.py +167 -0
  1203. pulumi_azure_native/securityinsights/v20240301/get_anomaly_security_ml_analytics_settings.py +332 -0
  1204. pulumi_azure_native/securityinsights/v20240301/get_asc_data_connector.py +176 -0
  1205. pulumi_azure_native/securityinsights/v20240301/get_automation_rule.py +237 -0
  1206. pulumi_azure_native/securityinsights/v20240301/get_aws_cloud_trail_data_connector.py +176 -0
  1207. pulumi_azure_native/securityinsights/v20240301/get_bookmark.py +305 -0
  1208. pulumi_azure_native/securityinsights/v20240301/get_content_package.py +435 -0
  1209. pulumi_azure_native/securityinsights/v20240301/get_content_template.py +493 -0
  1210. pulumi_azure_native/securityinsights/v20240301/get_fusion_alert_rule.py +254 -0
  1211. pulumi_azure_native/securityinsights/v20240301/get_incident.py +383 -0
  1212. pulumi_azure_native/securityinsights/v20240301/get_incident_comment.py +193 -0
  1213. pulumi_azure_native/securityinsights/v20240301/get_incident_relation.py +193 -0
  1214. pulumi_azure_native/securityinsights/v20240301/get_incident_task.py +232 -0
  1215. pulumi_azure_native/securityinsights/v20240301/get_mcas_data_connector.py +176 -0
  1216. pulumi_azure_native/securityinsights/v20240301/get_mdatp_data_connector.py +176 -0
  1217. pulumi_azure_native/securityinsights/v20240301/get_metadata.py +383 -0
  1218. pulumi_azure_native/securityinsights/v20240301/get_microsoft_security_incident_creation_alert_rule.py +267 -0
  1219. pulumi_azure_native/securityinsights/v20240301/get_office_data_connector.py +176 -0
  1220. pulumi_azure_native/securityinsights/v20240301/get_scheduled_alert_rule.py +423 -0
  1221. pulumi_azure_native/securityinsights/v20240301/get_sentinel_onboarding_state.py +149 -0
  1222. pulumi_azure_native/securityinsights/v20240301/get_threat_intelligence_indicator.py +149 -0
  1223. pulumi_azure_native/securityinsights/v20240301/get_ti_data_connector.py +189 -0
  1224. pulumi_azure_native/securityinsights/v20240301/get_watchlist.py +398 -0
  1225. pulumi_azure_native/securityinsights/v20240301/get_watchlist_item.py +271 -0
  1226. pulumi_azure_native/securityinsights/v20240301/incident.py +599 -0
  1227. pulumi_azure_native/securityinsights/v20240301/incident_comment.py +276 -0
  1228. pulumi_azure_native/securityinsights/v20240301/incident_relation.py +276 -0
  1229. pulumi_azure_native/securityinsights/v20240301/incident_task.py +385 -0
  1230. pulumi_azure_native/securityinsights/v20240301/list_source_control_repositories.py +123 -0
  1231. pulumi_azure_native/securityinsights/v20240301/mcas_data_connector.py +289 -0
  1232. pulumi_azure_native/securityinsights/v20240301/mdatp_data_connector.py +289 -0
  1233. pulumi_azure_native/securityinsights/v20240301/metadata.py +750 -0
  1234. pulumi_azure_native/securityinsights/v20240301/microsoft_security_incident_creation_alert_rule.py +475 -0
  1235. pulumi_azure_native/securityinsights/v20240301/office_data_connector.py +289 -0
  1236. pulumi_azure_native/securityinsights/v20240301/outputs.py +3268 -0
  1237. pulumi_azure_native/securityinsights/v20240301/scheduled_alert_rule.py +831 -0
  1238. pulumi_azure_native/securityinsights/v20240301/sentinel_onboarding_state.py +224 -0
  1239. pulumi_azure_native/securityinsights/v20240301/threat_intelligence_indicator.py +788 -0
  1240. pulumi_azure_native/securityinsights/v20240301/ti_data_connector.py +318 -0
  1241. pulumi_azure_native/securityinsights/v20240301/watchlist.py +767 -0
  1242. pulumi_azure_native/securityinsights/v20240301/watchlist_item.py +488 -0
  1243. pulumi_azure_native/securityinsights/watchlist.py +3 -3
  1244. pulumi_azure_native/securityinsights/watchlist_item.py +3 -3
  1245. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/METADATA +1 -1
  1246. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/RECORD +1248 -950
  1247. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/WHEEL +0 -0
  1248. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,4190 @@
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
+ 'AksClusterProfileResponseAksClusterAgentPoolIdentityProfile',
16
+ 'AuthorizationProfileResponse',
17
+ 'AutoscaleProfileResponse',
18
+ 'CatalogOptionsResponse',
19
+ 'ClusterAccessProfileResponse',
20
+ 'ClusterConfigFileResponse',
21
+ 'ClusterLogAnalyticsApplicationLogsResponse',
22
+ 'ClusterLogAnalyticsProfileResponse',
23
+ 'ClusterPoolResourcePropertiesResponseAksClusterProfile',
24
+ 'ClusterPoolResourcePropertiesResponseClusterPoolProfile',
25
+ 'ClusterPoolResourcePropertiesResponseComputeProfile',
26
+ 'ClusterPoolResourcePropertiesResponseLogAnalyticsProfile',
27
+ 'ClusterPoolResourcePropertiesResponseNetworkProfile',
28
+ 'ClusterProfileResponse',
29
+ 'ClusterProfileResponseComponents',
30
+ 'ClusterPrometheusProfileResponse',
31
+ 'ClusterRangerPluginProfileResponse',
32
+ 'ClusterServiceConfigResponse',
33
+ 'ClusterServiceConfigsProfileResponse',
34
+ 'ComparisonRuleResponse',
35
+ 'ComputeProfileResponse',
36
+ 'ComputeResourceDefinitionResponse',
37
+ 'ConnectivityProfileResponse',
38
+ 'ConnectivityProfileResponseWeb',
39
+ 'DiskStorageProfileResponse',
40
+ 'FlinkCatalogOptionsResponse',
41
+ 'FlinkHiveCatalogOptionResponse',
42
+ 'FlinkJobProfileResponse',
43
+ 'FlinkProfileResponse',
44
+ 'FlinkStorageProfileResponse',
45
+ 'HiveCatalogOptionResponse',
46
+ 'IdentityProfileResponse',
47
+ 'KafkaConnectivityEndpointsResponse',
48
+ 'KafkaProfileResponse',
49
+ 'LoadBasedConfigResponse',
50
+ 'ManagedIdentityProfileResponse',
51
+ 'ManagedIdentitySpecResponse',
52
+ 'NodeProfileResponse',
53
+ 'RangerAdminSpecResponse',
54
+ 'RangerAdminSpecResponseDatabase',
55
+ 'RangerAuditSpecResponse',
56
+ 'RangerProfileResponse',
57
+ 'RangerUsersyncSpecResponse',
58
+ 'ScalingRuleResponse',
59
+ 'ScheduleBasedConfigResponse',
60
+ 'ScheduleResponse',
61
+ 'ScriptActionProfileResponse',
62
+ 'SecretReferenceResponse',
63
+ 'SecretsProfileResponse',
64
+ 'SparkMetastoreSpecResponse',
65
+ 'SparkProfileResponse',
66
+ 'SparkUserPluginResponse',
67
+ 'SparkUserPluginsResponse',
68
+ 'SshConnectivityEndpointResponse',
69
+ 'SshProfileResponse',
70
+ 'SystemDataResponse',
71
+ 'TrinoCoordinatorResponse',
72
+ 'TrinoProfileResponse',
73
+ 'TrinoTelemetryConfigResponse',
74
+ 'TrinoUserPluginResponse',
75
+ 'TrinoUserPluginsResponse',
76
+ 'TrinoUserTelemetryResponse',
77
+ 'TrinoWorkerResponse',
78
+ ]
79
+
80
+ @pulumi.output_type
81
+ class AksClusterProfileResponseAksClusterAgentPoolIdentityProfile(dict):
82
+ """
83
+ Identity properties of the AKS cluster agentpool MSI
84
+ """
85
+ @staticmethod
86
+ def __key_warning(key: str):
87
+ suggest = None
88
+ if key == "msiClientId":
89
+ suggest = "msi_client_id"
90
+ elif key == "msiObjectId":
91
+ suggest = "msi_object_id"
92
+ elif key == "msiResourceId":
93
+ suggest = "msi_resource_id"
94
+
95
+ if suggest:
96
+ pulumi.log.warn(f"Key '{key}' not found in AksClusterProfileResponseAksClusterAgentPoolIdentityProfile. Access the value via the '{suggest}' property getter instead.")
97
+
98
+ def __getitem__(self, key: str) -> Any:
99
+ AksClusterProfileResponseAksClusterAgentPoolIdentityProfile.__key_warning(key)
100
+ return super().__getitem__(key)
101
+
102
+ def get(self, key: str, default = None) -> Any:
103
+ AksClusterProfileResponseAksClusterAgentPoolIdentityProfile.__key_warning(key)
104
+ return super().get(key, default)
105
+
106
+ def __init__(__self__, *,
107
+ msi_client_id: str,
108
+ msi_object_id: str,
109
+ msi_resource_id: str):
110
+ """
111
+ Identity properties of the AKS cluster agentpool MSI
112
+ :param str msi_client_id: ClientId of the MSI.
113
+ :param str msi_object_id: ObjectId of the MSI.
114
+ :param str msi_resource_id: ResourceId of the MSI.
115
+ """
116
+ pulumi.set(__self__, "msi_client_id", msi_client_id)
117
+ pulumi.set(__self__, "msi_object_id", msi_object_id)
118
+ pulumi.set(__self__, "msi_resource_id", msi_resource_id)
119
+
120
+ @property
121
+ @pulumi.getter(name="msiClientId")
122
+ def msi_client_id(self) -> str:
123
+ """
124
+ ClientId of the MSI.
125
+ """
126
+ return pulumi.get(self, "msi_client_id")
127
+
128
+ @property
129
+ @pulumi.getter(name="msiObjectId")
130
+ def msi_object_id(self) -> str:
131
+ """
132
+ ObjectId of the MSI.
133
+ """
134
+ return pulumi.get(self, "msi_object_id")
135
+
136
+ @property
137
+ @pulumi.getter(name="msiResourceId")
138
+ def msi_resource_id(self) -> str:
139
+ """
140
+ ResourceId of the MSI.
141
+ """
142
+ return pulumi.get(self, "msi_resource_id")
143
+
144
+
145
+ @pulumi.output_type
146
+ class AuthorizationProfileResponse(dict):
147
+ """
148
+ Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
149
+ """
150
+ @staticmethod
151
+ def __key_warning(key: str):
152
+ suggest = None
153
+ if key == "groupIds":
154
+ suggest = "group_ids"
155
+ elif key == "userIds":
156
+ suggest = "user_ids"
157
+
158
+ if suggest:
159
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationProfileResponse. Access the value via the '{suggest}' property getter instead.")
160
+
161
+ def __getitem__(self, key: str) -> Any:
162
+ AuthorizationProfileResponse.__key_warning(key)
163
+ return super().__getitem__(key)
164
+
165
+ def get(self, key: str, default = None) -> Any:
166
+ AuthorizationProfileResponse.__key_warning(key)
167
+ return super().get(key, default)
168
+
169
+ def __init__(__self__, *,
170
+ group_ids: Optional[Sequence[str]] = None,
171
+ user_ids: Optional[Sequence[str]] = None):
172
+ """
173
+ Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
174
+ :param Sequence[str] group_ids: AAD group Ids authorized for data plane access.
175
+ :param Sequence[str] user_ids: AAD user Ids authorized for data plane access.
176
+ """
177
+ if group_ids is not None:
178
+ pulumi.set(__self__, "group_ids", group_ids)
179
+ if user_ids is not None:
180
+ pulumi.set(__self__, "user_ids", user_ids)
181
+
182
+ @property
183
+ @pulumi.getter(name="groupIds")
184
+ def group_ids(self) -> Optional[Sequence[str]]:
185
+ """
186
+ AAD group Ids authorized for data plane access.
187
+ """
188
+ return pulumi.get(self, "group_ids")
189
+
190
+ @property
191
+ @pulumi.getter(name="userIds")
192
+ def user_ids(self) -> Optional[Sequence[str]]:
193
+ """
194
+ AAD user Ids authorized for data plane access.
195
+ """
196
+ return pulumi.get(self, "user_ids")
197
+
198
+
199
+ @pulumi.output_type
200
+ class AutoscaleProfileResponse(dict):
201
+ """
202
+ This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
203
+ """
204
+ @staticmethod
205
+ def __key_warning(key: str):
206
+ suggest = None
207
+ if key == "autoscaleType":
208
+ suggest = "autoscale_type"
209
+ elif key == "gracefulDecommissionTimeout":
210
+ suggest = "graceful_decommission_timeout"
211
+ elif key == "loadBasedConfig":
212
+ suggest = "load_based_config"
213
+ elif key == "scheduleBasedConfig":
214
+ suggest = "schedule_based_config"
215
+
216
+ if suggest:
217
+ pulumi.log.warn(f"Key '{key}' not found in AutoscaleProfileResponse. Access the value via the '{suggest}' property getter instead.")
218
+
219
+ def __getitem__(self, key: str) -> Any:
220
+ AutoscaleProfileResponse.__key_warning(key)
221
+ return super().__getitem__(key)
222
+
223
+ def get(self, key: str, default = None) -> Any:
224
+ AutoscaleProfileResponse.__key_warning(key)
225
+ return super().get(key, default)
226
+
227
+ def __init__(__self__, *,
228
+ enabled: bool,
229
+ autoscale_type: Optional[str] = None,
230
+ graceful_decommission_timeout: Optional[int] = None,
231
+ load_based_config: Optional['outputs.LoadBasedConfigResponse'] = None,
232
+ schedule_based_config: Optional['outputs.ScheduleBasedConfigResponse'] = None):
233
+ """
234
+ This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
235
+ :param bool enabled: This indicates whether auto scale is enabled on HDInsight on AKS cluster.
236
+ :param str autoscale_type: User to specify which type of Autoscale to be implemented - Scheduled Based or Load Based.
237
+ :param int graceful_decommission_timeout: This property is for graceful decommission timeout; It has a default setting of 3600 seconds before forced shutdown takes place. This is the maximal time to wait for running containers and applications to complete before transition a DECOMMISSIONING node into DECOMMISSIONED. The default value is 3600 seconds. Negative value (like -1) is handled as infinite timeout.
238
+ :param 'LoadBasedConfigResponse' load_based_config: Profiles of load based Autoscale.
239
+ :param 'ScheduleBasedConfigResponse' schedule_based_config: Profiles of schedule based Autoscale.
240
+ """
241
+ pulumi.set(__self__, "enabled", enabled)
242
+ if autoscale_type is not None:
243
+ pulumi.set(__self__, "autoscale_type", autoscale_type)
244
+ if graceful_decommission_timeout is not None:
245
+ pulumi.set(__self__, "graceful_decommission_timeout", graceful_decommission_timeout)
246
+ if load_based_config is not None:
247
+ pulumi.set(__self__, "load_based_config", load_based_config)
248
+ if schedule_based_config is not None:
249
+ pulumi.set(__self__, "schedule_based_config", schedule_based_config)
250
+
251
+ @property
252
+ @pulumi.getter
253
+ def enabled(self) -> bool:
254
+ """
255
+ This indicates whether auto scale is enabled on HDInsight on AKS cluster.
256
+ """
257
+ return pulumi.get(self, "enabled")
258
+
259
+ @property
260
+ @pulumi.getter(name="autoscaleType")
261
+ def autoscale_type(self) -> Optional[str]:
262
+ """
263
+ User to specify which type of Autoscale to be implemented - Scheduled Based or Load Based.
264
+ """
265
+ return pulumi.get(self, "autoscale_type")
266
+
267
+ @property
268
+ @pulumi.getter(name="gracefulDecommissionTimeout")
269
+ def graceful_decommission_timeout(self) -> Optional[int]:
270
+ """
271
+ This property is for graceful decommission timeout; It has a default setting of 3600 seconds before forced shutdown takes place. This is the maximal time to wait for running containers and applications to complete before transition a DECOMMISSIONING node into DECOMMISSIONED. The default value is 3600 seconds. Negative value (like -1) is handled as infinite timeout.
272
+ """
273
+ return pulumi.get(self, "graceful_decommission_timeout")
274
+
275
+ @property
276
+ @pulumi.getter(name="loadBasedConfig")
277
+ def load_based_config(self) -> Optional['outputs.LoadBasedConfigResponse']:
278
+ """
279
+ Profiles of load based Autoscale.
280
+ """
281
+ return pulumi.get(self, "load_based_config")
282
+
283
+ @property
284
+ @pulumi.getter(name="scheduleBasedConfig")
285
+ def schedule_based_config(self) -> Optional['outputs.ScheduleBasedConfigResponse']:
286
+ """
287
+ Profiles of schedule based Autoscale.
288
+ """
289
+ return pulumi.get(self, "schedule_based_config")
290
+
291
+
292
+ @pulumi.output_type
293
+ class CatalogOptionsResponse(dict):
294
+ """
295
+ Trino cluster catalog options.
296
+ """
297
+ def __init__(__self__, *,
298
+ hive: Optional[Sequence['outputs.HiveCatalogOptionResponse']] = None):
299
+ """
300
+ Trino cluster catalog options.
301
+ :param Sequence['HiveCatalogOptionResponse'] hive: hive catalog options.
302
+ """
303
+ if hive is not None:
304
+ pulumi.set(__self__, "hive", hive)
305
+
306
+ @property
307
+ @pulumi.getter
308
+ def hive(self) -> Optional[Sequence['outputs.HiveCatalogOptionResponse']]:
309
+ """
310
+ hive catalog options.
311
+ """
312
+ return pulumi.get(self, "hive")
313
+
314
+
315
+ @pulumi.output_type
316
+ class ClusterAccessProfileResponse(dict):
317
+ """
318
+ Cluster access profile.
319
+ """
320
+ @staticmethod
321
+ def __key_warning(key: str):
322
+ suggest = None
323
+ if key == "enableInternalIngress":
324
+ suggest = "enable_internal_ingress"
325
+ elif key == "privateLinkServiceId":
326
+ suggest = "private_link_service_id"
327
+
328
+ if suggest:
329
+ pulumi.log.warn(f"Key '{key}' not found in ClusterAccessProfileResponse. Access the value via the '{suggest}' property getter instead.")
330
+
331
+ def __getitem__(self, key: str) -> Any:
332
+ ClusterAccessProfileResponse.__key_warning(key)
333
+ return super().__getitem__(key)
334
+
335
+ def get(self, key: str, default = None) -> Any:
336
+ ClusterAccessProfileResponse.__key_warning(key)
337
+ return super().get(key, default)
338
+
339
+ def __init__(__self__, *,
340
+ enable_internal_ingress: bool,
341
+ private_link_service_id: str):
342
+ """
343
+ Cluster access profile.
344
+ :param bool enable_internal_ingress: Whether to create cluster using private IP instead of public IP. This property must be set at create time.
345
+ :param str private_link_service_id: Private link service resource ID. Only when enableInternalIngress is true, this property will be returned.
346
+ """
347
+ pulumi.set(__self__, "enable_internal_ingress", enable_internal_ingress)
348
+ pulumi.set(__self__, "private_link_service_id", private_link_service_id)
349
+
350
+ @property
351
+ @pulumi.getter(name="enableInternalIngress")
352
+ def enable_internal_ingress(self) -> bool:
353
+ """
354
+ Whether to create cluster using private IP instead of public IP. This property must be set at create time.
355
+ """
356
+ return pulumi.get(self, "enable_internal_ingress")
357
+
358
+ @property
359
+ @pulumi.getter(name="privateLinkServiceId")
360
+ def private_link_service_id(self) -> str:
361
+ """
362
+ Private link service resource ID. Only when enableInternalIngress is true, this property will be returned.
363
+ """
364
+ return pulumi.get(self, "private_link_service_id")
365
+
366
+
367
+ @pulumi.output_type
368
+ class ClusterConfigFileResponse(dict):
369
+ """
370
+ Cluster configuration files.
371
+ """
372
+ @staticmethod
373
+ def __key_warning(key: str):
374
+ suggest = None
375
+ if key == "fileName":
376
+ suggest = "file_name"
377
+
378
+ if suggest:
379
+ pulumi.log.warn(f"Key '{key}' not found in ClusterConfigFileResponse. Access the value via the '{suggest}' property getter instead.")
380
+
381
+ def __getitem__(self, key: str) -> Any:
382
+ ClusterConfigFileResponse.__key_warning(key)
383
+ return super().__getitem__(key)
384
+
385
+ def get(self, key: str, default = None) -> Any:
386
+ ClusterConfigFileResponse.__key_warning(key)
387
+ return super().get(key, default)
388
+
389
+ def __init__(__self__, *,
390
+ file_name: str,
391
+ content: Optional[str] = None,
392
+ encoding: Optional[str] = None,
393
+ path: Optional[str] = None,
394
+ values: Optional[Mapping[str, str]] = None):
395
+ """
396
+ Cluster configuration files.
397
+ :param str file_name: Configuration file name.
398
+ :param str content: Free form content of the entire configuration file.
399
+ :param str encoding: This property indicates if the content is encoded and is case-insensitive. Please set the value to base64 if the content is base64 encoded. Set it to none or skip it if the content is plain text.
400
+ :param str path: Path of the config file if content is specified.
401
+ :param Mapping[str, str] values: List of key value pairs
402
+ where key represents a valid service configuration name and value represents the value of the config.
403
+ """
404
+ pulumi.set(__self__, "file_name", file_name)
405
+ if content is not None:
406
+ pulumi.set(__self__, "content", content)
407
+ if encoding is not None:
408
+ pulumi.set(__self__, "encoding", encoding)
409
+ if path is not None:
410
+ pulumi.set(__self__, "path", path)
411
+ if values is not None:
412
+ pulumi.set(__self__, "values", values)
413
+
414
+ @property
415
+ @pulumi.getter(name="fileName")
416
+ def file_name(self) -> str:
417
+ """
418
+ Configuration file name.
419
+ """
420
+ return pulumi.get(self, "file_name")
421
+
422
+ @property
423
+ @pulumi.getter
424
+ def content(self) -> Optional[str]:
425
+ """
426
+ Free form content of the entire configuration file.
427
+ """
428
+ return pulumi.get(self, "content")
429
+
430
+ @property
431
+ @pulumi.getter
432
+ def encoding(self) -> Optional[str]:
433
+ """
434
+ This property indicates if the content is encoded and is case-insensitive. Please set the value to base64 if the content is base64 encoded. Set it to none or skip it if the content is plain text.
435
+ """
436
+ return pulumi.get(self, "encoding")
437
+
438
+ @property
439
+ @pulumi.getter
440
+ def path(self) -> Optional[str]:
441
+ """
442
+ Path of the config file if content is specified.
443
+ """
444
+ return pulumi.get(self, "path")
445
+
446
+ @property
447
+ @pulumi.getter
448
+ def values(self) -> Optional[Mapping[str, str]]:
449
+ """
450
+ List of key value pairs
451
+ where key represents a valid service configuration name and value represents the value of the config.
452
+ """
453
+ return pulumi.get(self, "values")
454
+
455
+
456
+ @pulumi.output_type
457
+ class ClusterLogAnalyticsApplicationLogsResponse(dict):
458
+ """
459
+ Collection of logs to be enabled or disabled for log analytics.
460
+ """
461
+ @staticmethod
462
+ def __key_warning(key: str):
463
+ suggest = None
464
+ if key == "stdErrorEnabled":
465
+ suggest = "std_error_enabled"
466
+ elif key == "stdOutEnabled":
467
+ suggest = "std_out_enabled"
468
+
469
+ if suggest:
470
+ pulumi.log.warn(f"Key '{key}' not found in ClusterLogAnalyticsApplicationLogsResponse. Access the value via the '{suggest}' property getter instead.")
471
+
472
+ def __getitem__(self, key: str) -> Any:
473
+ ClusterLogAnalyticsApplicationLogsResponse.__key_warning(key)
474
+ return super().__getitem__(key)
475
+
476
+ def get(self, key: str, default = None) -> Any:
477
+ ClusterLogAnalyticsApplicationLogsResponse.__key_warning(key)
478
+ return super().get(key, default)
479
+
480
+ def __init__(__self__, *,
481
+ std_error_enabled: Optional[bool] = None,
482
+ std_out_enabled: Optional[bool] = None):
483
+ """
484
+ Collection of logs to be enabled or disabled for log analytics.
485
+ :param bool std_error_enabled: True if stderror is enabled, otherwise false.
486
+ :param bool std_out_enabled: True if stdout is enabled, otherwise false.
487
+ """
488
+ if std_error_enabled is not None:
489
+ pulumi.set(__self__, "std_error_enabled", std_error_enabled)
490
+ if std_out_enabled is not None:
491
+ pulumi.set(__self__, "std_out_enabled", std_out_enabled)
492
+
493
+ @property
494
+ @pulumi.getter(name="stdErrorEnabled")
495
+ def std_error_enabled(self) -> Optional[bool]:
496
+ """
497
+ True if stderror is enabled, otherwise false.
498
+ """
499
+ return pulumi.get(self, "std_error_enabled")
500
+
501
+ @property
502
+ @pulumi.getter(name="stdOutEnabled")
503
+ def std_out_enabled(self) -> Optional[bool]:
504
+ """
505
+ True if stdout is enabled, otherwise false.
506
+ """
507
+ return pulumi.get(self, "std_out_enabled")
508
+
509
+
510
+ @pulumi.output_type
511
+ class ClusterLogAnalyticsProfileResponse(dict):
512
+ """
513
+ Cluster log analytics profile to enable or disable OMS agent for cluster.
514
+ """
515
+ @staticmethod
516
+ def __key_warning(key: str):
517
+ suggest = None
518
+ if key == "applicationLogs":
519
+ suggest = "application_logs"
520
+ elif key == "metricsEnabled":
521
+ suggest = "metrics_enabled"
522
+
523
+ if suggest:
524
+ pulumi.log.warn(f"Key '{key}' not found in ClusterLogAnalyticsProfileResponse. Access the value via the '{suggest}' property getter instead.")
525
+
526
+ def __getitem__(self, key: str) -> Any:
527
+ ClusterLogAnalyticsProfileResponse.__key_warning(key)
528
+ return super().__getitem__(key)
529
+
530
+ def get(self, key: str, default = None) -> Any:
531
+ ClusterLogAnalyticsProfileResponse.__key_warning(key)
532
+ return super().get(key, default)
533
+
534
+ def __init__(__self__, *,
535
+ enabled: bool,
536
+ application_logs: Optional['outputs.ClusterLogAnalyticsApplicationLogsResponse'] = None,
537
+ metrics_enabled: Optional[bool] = None):
538
+ """
539
+ Cluster log analytics profile to enable or disable OMS agent for cluster.
540
+ :param bool enabled: True if log analytics is enabled for the cluster, otherwise false.
541
+ :param 'ClusterLogAnalyticsApplicationLogsResponse' application_logs: Collection of logs to be enabled or disabled for log analytics.
542
+ :param bool metrics_enabled: True if metrics are enabled, otherwise false.
543
+ """
544
+ pulumi.set(__self__, "enabled", enabled)
545
+ if application_logs is not None:
546
+ pulumi.set(__self__, "application_logs", application_logs)
547
+ if metrics_enabled is not None:
548
+ pulumi.set(__self__, "metrics_enabled", metrics_enabled)
549
+
550
+ @property
551
+ @pulumi.getter
552
+ def enabled(self) -> bool:
553
+ """
554
+ True if log analytics is enabled for the cluster, otherwise false.
555
+ """
556
+ return pulumi.get(self, "enabled")
557
+
558
+ @property
559
+ @pulumi.getter(name="applicationLogs")
560
+ def application_logs(self) -> Optional['outputs.ClusterLogAnalyticsApplicationLogsResponse']:
561
+ """
562
+ Collection of logs to be enabled or disabled for log analytics.
563
+ """
564
+ return pulumi.get(self, "application_logs")
565
+
566
+ @property
567
+ @pulumi.getter(name="metricsEnabled")
568
+ def metrics_enabled(self) -> Optional[bool]:
569
+ """
570
+ True if metrics are enabled, otherwise false.
571
+ """
572
+ return pulumi.get(self, "metrics_enabled")
573
+
574
+
575
+ @pulumi.output_type
576
+ class ClusterPoolResourcePropertiesResponseAksClusterProfile(dict):
577
+ """
578
+ Properties of underlying AKS cluster.
579
+ """
580
+ @staticmethod
581
+ def __key_warning(key: str):
582
+ suggest = None
583
+ if key == "aksVersion":
584
+ suggest = "aks_version"
585
+ elif key == "aksClusterAgentPoolIdentityProfile":
586
+ suggest = "aks_cluster_agent_pool_identity_profile"
587
+ elif key == "aksClusterResourceId":
588
+ suggest = "aks_cluster_resource_id"
589
+
590
+ if suggest:
591
+ pulumi.log.warn(f"Key '{key}' not found in ClusterPoolResourcePropertiesResponseAksClusterProfile. Access the value via the '{suggest}' property getter instead.")
592
+
593
+ def __getitem__(self, key: str) -> Any:
594
+ ClusterPoolResourcePropertiesResponseAksClusterProfile.__key_warning(key)
595
+ return super().__getitem__(key)
596
+
597
+ def get(self, key: str, default = None) -> Any:
598
+ ClusterPoolResourcePropertiesResponseAksClusterProfile.__key_warning(key)
599
+ return super().get(key, default)
600
+
601
+ def __init__(__self__, *,
602
+ aks_version: str,
603
+ aks_cluster_agent_pool_identity_profile: Optional['outputs.AksClusterProfileResponseAksClusterAgentPoolIdentityProfile'] = None,
604
+ aks_cluster_resource_id: Optional[str] = None):
605
+ """
606
+ Properties of underlying AKS cluster.
607
+ :param str aks_version: AKS control plane and default node pool version of this ClusterPool
608
+ :param 'AksClusterProfileResponseAksClusterAgentPoolIdentityProfile' aks_cluster_agent_pool_identity_profile: Identity properties of the AKS cluster agentpool MSI
609
+ :param str aks_cluster_resource_id: ARM Resource ID of the AKS cluster
610
+ """
611
+ pulumi.set(__self__, "aks_version", aks_version)
612
+ if aks_cluster_agent_pool_identity_profile is not None:
613
+ pulumi.set(__self__, "aks_cluster_agent_pool_identity_profile", aks_cluster_agent_pool_identity_profile)
614
+ if aks_cluster_resource_id is not None:
615
+ pulumi.set(__self__, "aks_cluster_resource_id", aks_cluster_resource_id)
616
+
617
+ @property
618
+ @pulumi.getter(name="aksVersion")
619
+ def aks_version(self) -> str:
620
+ """
621
+ AKS control plane and default node pool version of this ClusterPool
622
+ """
623
+ return pulumi.get(self, "aks_version")
624
+
625
+ @property
626
+ @pulumi.getter(name="aksClusterAgentPoolIdentityProfile")
627
+ def aks_cluster_agent_pool_identity_profile(self) -> Optional['outputs.AksClusterProfileResponseAksClusterAgentPoolIdentityProfile']:
628
+ """
629
+ Identity properties of the AKS cluster agentpool MSI
630
+ """
631
+ return pulumi.get(self, "aks_cluster_agent_pool_identity_profile")
632
+
633
+ @property
634
+ @pulumi.getter(name="aksClusterResourceId")
635
+ def aks_cluster_resource_id(self) -> Optional[str]:
636
+ """
637
+ ARM Resource ID of the AKS cluster
638
+ """
639
+ return pulumi.get(self, "aks_cluster_resource_id")
640
+
641
+
642
+ @pulumi.output_type
643
+ class ClusterPoolResourcePropertiesResponseClusterPoolProfile(dict):
644
+ """
645
+ CLuster pool profile.
646
+ """
647
+ @staticmethod
648
+ def __key_warning(key: str):
649
+ suggest = None
650
+ if key == "clusterPoolVersion":
651
+ suggest = "cluster_pool_version"
652
+
653
+ if suggest:
654
+ pulumi.log.warn(f"Key '{key}' not found in ClusterPoolResourcePropertiesResponseClusterPoolProfile. Access the value via the '{suggest}' property getter instead.")
655
+
656
+ def __getitem__(self, key: str) -> Any:
657
+ ClusterPoolResourcePropertiesResponseClusterPoolProfile.__key_warning(key)
658
+ return super().__getitem__(key)
659
+
660
+ def get(self, key: str, default = None) -> Any:
661
+ ClusterPoolResourcePropertiesResponseClusterPoolProfile.__key_warning(key)
662
+ return super().get(key, default)
663
+
664
+ def __init__(__self__, *,
665
+ cluster_pool_version: str):
666
+ """
667
+ CLuster pool profile.
668
+ :param str cluster_pool_version: Cluster pool version is a 2-part version.
669
+ """
670
+ pulumi.set(__self__, "cluster_pool_version", cluster_pool_version)
671
+
672
+ @property
673
+ @pulumi.getter(name="clusterPoolVersion")
674
+ def cluster_pool_version(self) -> str:
675
+ """
676
+ Cluster pool version is a 2-part version.
677
+ """
678
+ return pulumi.get(self, "cluster_pool_version")
679
+
680
+
681
+ @pulumi.output_type
682
+ class ClusterPoolResourcePropertiesResponseComputeProfile(dict):
683
+ """
684
+ CLuster pool compute profile.
685
+ """
686
+ @staticmethod
687
+ def __key_warning(key: str):
688
+ suggest = None
689
+ if key == "vmSize":
690
+ suggest = "vm_size"
691
+
692
+ if suggest:
693
+ pulumi.log.warn(f"Key '{key}' not found in ClusterPoolResourcePropertiesResponseComputeProfile. Access the value via the '{suggest}' property getter instead.")
694
+
695
+ def __getitem__(self, key: str) -> Any:
696
+ ClusterPoolResourcePropertiesResponseComputeProfile.__key_warning(key)
697
+ return super().__getitem__(key)
698
+
699
+ def get(self, key: str, default = None) -> Any:
700
+ ClusterPoolResourcePropertiesResponseComputeProfile.__key_warning(key)
701
+ return super().get(key, default)
702
+
703
+ def __init__(__self__, *,
704
+ count: int,
705
+ vm_size: str):
706
+ """
707
+ CLuster pool compute profile.
708
+ :param int count: The number of virtual machines.
709
+ :param str vm_size: The virtual machine SKU.
710
+ """
711
+ pulumi.set(__self__, "count", count)
712
+ pulumi.set(__self__, "vm_size", vm_size)
713
+
714
+ @property
715
+ @pulumi.getter
716
+ def count(self) -> int:
717
+ """
718
+ The number of virtual machines.
719
+ """
720
+ return pulumi.get(self, "count")
721
+
722
+ @property
723
+ @pulumi.getter(name="vmSize")
724
+ def vm_size(self) -> str:
725
+ """
726
+ The virtual machine SKU.
727
+ """
728
+ return pulumi.get(self, "vm_size")
729
+
730
+
731
+ @pulumi.output_type
732
+ class ClusterPoolResourcePropertiesResponseLogAnalyticsProfile(dict):
733
+ """
734
+ Cluster pool log analytics profile to enable OMS agent for AKS cluster.
735
+ """
736
+ @staticmethod
737
+ def __key_warning(key: str):
738
+ suggest = None
739
+ if key == "workspaceId":
740
+ suggest = "workspace_id"
741
+
742
+ if suggest:
743
+ pulumi.log.warn(f"Key '{key}' not found in ClusterPoolResourcePropertiesResponseLogAnalyticsProfile. Access the value via the '{suggest}' property getter instead.")
744
+
745
+ def __getitem__(self, key: str) -> Any:
746
+ ClusterPoolResourcePropertiesResponseLogAnalyticsProfile.__key_warning(key)
747
+ return super().__getitem__(key)
748
+
749
+ def get(self, key: str, default = None) -> Any:
750
+ ClusterPoolResourcePropertiesResponseLogAnalyticsProfile.__key_warning(key)
751
+ return super().get(key, default)
752
+
753
+ def __init__(__self__, *,
754
+ enabled: bool,
755
+ workspace_id: Optional[str] = None):
756
+ """
757
+ Cluster pool log analytics profile to enable OMS agent for AKS cluster.
758
+ :param bool enabled: True if log analytics is enabled for cluster pool, otherwise false.
759
+ :param str workspace_id: Log analytics workspace to associate with the OMS agent.
760
+ """
761
+ pulumi.set(__self__, "enabled", enabled)
762
+ if workspace_id is not None:
763
+ pulumi.set(__self__, "workspace_id", workspace_id)
764
+
765
+ @property
766
+ @pulumi.getter
767
+ def enabled(self) -> bool:
768
+ """
769
+ True if log analytics is enabled for cluster pool, otherwise false.
770
+ """
771
+ return pulumi.get(self, "enabled")
772
+
773
+ @property
774
+ @pulumi.getter(name="workspaceId")
775
+ def workspace_id(self) -> Optional[str]:
776
+ """
777
+ Log analytics workspace to associate with the OMS agent.
778
+ """
779
+ return pulumi.get(self, "workspace_id")
780
+
781
+
782
+ @pulumi.output_type
783
+ class ClusterPoolResourcePropertiesResponseNetworkProfile(dict):
784
+ """
785
+ Cluster pool network profile.
786
+ """
787
+ @staticmethod
788
+ def __key_warning(key: str):
789
+ suggest = None
790
+ if key == "subnetId":
791
+ suggest = "subnet_id"
792
+ elif key == "apiServerAuthorizedIpRanges":
793
+ suggest = "api_server_authorized_ip_ranges"
794
+ elif key == "enablePrivateApiServer":
795
+ suggest = "enable_private_api_server"
796
+ elif key == "outboundType":
797
+ suggest = "outbound_type"
798
+
799
+ if suggest:
800
+ pulumi.log.warn(f"Key '{key}' not found in ClusterPoolResourcePropertiesResponseNetworkProfile. Access the value via the '{suggest}' property getter instead.")
801
+
802
+ def __getitem__(self, key: str) -> Any:
803
+ ClusterPoolResourcePropertiesResponseNetworkProfile.__key_warning(key)
804
+ return super().__getitem__(key)
805
+
806
+ def get(self, key: str, default = None) -> Any:
807
+ ClusterPoolResourcePropertiesResponseNetworkProfile.__key_warning(key)
808
+ return super().get(key, default)
809
+
810
+ def __init__(__self__, *,
811
+ subnet_id: str,
812
+ api_server_authorized_ip_ranges: Optional[Sequence[str]] = None,
813
+ enable_private_api_server: Optional[bool] = None,
814
+ outbound_type: Optional[str] = None):
815
+ """
816
+ Cluster pool network profile.
817
+ :param str subnet_id: Cluster pool subnet resource id.
818
+ :param Sequence[str] api_server_authorized_ip_ranges: IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time.
819
+ :param bool enable_private_api_server: ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
820
+ :param str outbound_type: This can only be set at cluster pool creation time and cannot be changed later.
821
+ """
822
+ pulumi.set(__self__, "subnet_id", subnet_id)
823
+ if api_server_authorized_ip_ranges is not None:
824
+ pulumi.set(__self__, "api_server_authorized_ip_ranges", api_server_authorized_ip_ranges)
825
+ if enable_private_api_server is not None:
826
+ pulumi.set(__self__, "enable_private_api_server", enable_private_api_server)
827
+ if outbound_type is None:
828
+ outbound_type = 'loadBalancer'
829
+ if outbound_type is not None:
830
+ pulumi.set(__self__, "outbound_type", outbound_type)
831
+
832
+ @property
833
+ @pulumi.getter(name="subnetId")
834
+ def subnet_id(self) -> str:
835
+ """
836
+ Cluster pool subnet resource id.
837
+ """
838
+ return pulumi.get(self, "subnet_id")
839
+
840
+ @property
841
+ @pulumi.getter(name="apiServerAuthorizedIpRanges")
842
+ def api_server_authorized_ip_ranges(self) -> Optional[Sequence[str]]:
843
+ """
844
+ IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time.
845
+ """
846
+ return pulumi.get(self, "api_server_authorized_ip_ranges")
847
+
848
+ @property
849
+ @pulumi.getter(name="enablePrivateApiServer")
850
+ def enable_private_api_server(self) -> Optional[bool]:
851
+ """
852
+ ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
853
+ """
854
+ return pulumi.get(self, "enable_private_api_server")
855
+
856
+ @property
857
+ @pulumi.getter(name="outboundType")
858
+ def outbound_type(self) -> Optional[str]:
859
+ """
860
+ This can only be set at cluster pool creation time and cannot be changed later.
861
+ """
862
+ return pulumi.get(self, "outbound_type")
863
+
864
+
865
+ @pulumi.output_type
866
+ class ClusterProfileResponse(dict):
867
+ """
868
+ Cluster profile.
869
+ """
870
+ @staticmethod
871
+ def __key_warning(key: str):
872
+ suggest = None
873
+ if key == "authorizationProfile":
874
+ suggest = "authorization_profile"
875
+ elif key == "clusterVersion":
876
+ suggest = "cluster_version"
877
+ elif key == "connectivityProfile":
878
+ suggest = "connectivity_profile"
879
+ elif key == "ossVersion":
880
+ suggest = "oss_version"
881
+ elif key == "autoscaleProfile":
882
+ suggest = "autoscale_profile"
883
+ elif key == "clusterAccessProfile":
884
+ suggest = "cluster_access_profile"
885
+ elif key == "flinkProfile":
886
+ suggest = "flink_profile"
887
+ elif key == "identityProfile":
888
+ suggest = "identity_profile"
889
+ elif key == "kafkaProfile":
890
+ suggest = "kafka_profile"
891
+ elif key == "llapProfile":
892
+ suggest = "llap_profile"
893
+ elif key == "logAnalyticsProfile":
894
+ suggest = "log_analytics_profile"
895
+ elif key == "managedIdentityProfile":
896
+ suggest = "managed_identity_profile"
897
+ elif key == "prometheusProfile":
898
+ suggest = "prometheus_profile"
899
+ elif key == "rangerPluginProfile":
900
+ suggest = "ranger_plugin_profile"
901
+ elif key == "rangerProfile":
902
+ suggest = "ranger_profile"
903
+ elif key == "scriptActionProfiles":
904
+ suggest = "script_action_profiles"
905
+ elif key == "secretsProfile":
906
+ suggest = "secrets_profile"
907
+ elif key == "serviceConfigsProfiles":
908
+ suggest = "service_configs_profiles"
909
+ elif key == "sparkProfile":
910
+ suggest = "spark_profile"
911
+ elif key == "sshProfile":
912
+ suggest = "ssh_profile"
913
+ elif key == "stubProfile":
914
+ suggest = "stub_profile"
915
+ elif key == "trinoProfile":
916
+ suggest = "trino_profile"
917
+
918
+ if suggest:
919
+ pulumi.log.warn(f"Key '{key}' not found in ClusterProfileResponse. Access the value via the '{suggest}' property getter instead.")
920
+
921
+ def __getitem__(self, key: str) -> Any:
922
+ ClusterProfileResponse.__key_warning(key)
923
+ return super().__getitem__(key)
924
+
925
+ def get(self, key: str, default = None) -> Any:
926
+ ClusterProfileResponse.__key_warning(key)
927
+ return super().get(key, default)
928
+
929
+ def __init__(__self__, *,
930
+ authorization_profile: 'outputs.AuthorizationProfileResponse',
931
+ cluster_version: str,
932
+ components: Sequence['outputs.ClusterProfileResponseComponents'],
933
+ connectivity_profile: 'outputs.ConnectivityProfileResponse',
934
+ oss_version: str,
935
+ autoscale_profile: Optional['outputs.AutoscaleProfileResponse'] = None,
936
+ cluster_access_profile: Optional['outputs.ClusterAccessProfileResponse'] = None,
937
+ flink_profile: Optional['outputs.FlinkProfileResponse'] = None,
938
+ identity_profile: Optional['outputs.IdentityProfileResponse'] = None,
939
+ kafka_profile: Optional['outputs.KafkaProfileResponse'] = None,
940
+ llap_profile: Optional[Any] = None,
941
+ log_analytics_profile: Optional['outputs.ClusterLogAnalyticsProfileResponse'] = None,
942
+ managed_identity_profile: Optional['outputs.ManagedIdentityProfileResponse'] = None,
943
+ prometheus_profile: Optional['outputs.ClusterPrometheusProfileResponse'] = None,
944
+ ranger_plugin_profile: Optional['outputs.ClusterRangerPluginProfileResponse'] = None,
945
+ ranger_profile: Optional['outputs.RangerProfileResponse'] = None,
946
+ script_action_profiles: Optional[Sequence['outputs.ScriptActionProfileResponse']] = None,
947
+ secrets_profile: Optional['outputs.SecretsProfileResponse'] = None,
948
+ service_configs_profiles: Optional[Sequence['outputs.ClusterServiceConfigsProfileResponse']] = None,
949
+ spark_profile: Optional['outputs.SparkProfileResponse'] = None,
950
+ ssh_profile: Optional['outputs.SshProfileResponse'] = None,
951
+ stub_profile: Optional[Any] = None,
952
+ trino_profile: Optional['outputs.TrinoProfileResponse'] = None):
953
+ """
954
+ Cluster profile.
955
+ :param 'AuthorizationProfileResponse' authorization_profile: Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
956
+ :param str cluster_version: Version with 3/4 part.
957
+ :param Sequence['ClusterProfileResponseComponents'] components: Component list of this cluster type and version.
958
+ :param 'ConnectivityProfileResponse' connectivity_profile: Cluster connectivity profile.
959
+ :param str oss_version: Version with three part.
960
+ :param 'AutoscaleProfileResponse' autoscale_profile: This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
961
+ :param 'ClusterAccessProfileResponse' cluster_access_profile: Cluster access profile.
962
+ :param 'FlinkProfileResponse' flink_profile: The Flink cluster profile.
963
+ :param 'IdentityProfileResponse' identity_profile: This is deprecated. Please use managed identity profile instead.
964
+ :param 'KafkaProfileResponse' kafka_profile: The Kafka cluster profile.
965
+ :param Any llap_profile: LLAP cluster profile.
966
+ :param 'ClusterLogAnalyticsProfileResponse' log_analytics_profile: Cluster log analytics profile to enable or disable OMS agent for cluster.
967
+ :param 'ManagedIdentityProfileResponse' managed_identity_profile: This property is required by Trino, Spark and Flink cluster but is optional for Kafka cluster.
968
+ :param 'ClusterPrometheusProfileResponse' prometheus_profile: Cluster Prometheus profile.
969
+ :param 'ClusterRangerPluginProfileResponse' ranger_plugin_profile: Cluster Ranger plugin profile.
970
+ :param 'RangerProfileResponse' ranger_profile: The ranger cluster profile.
971
+ :param Sequence['ScriptActionProfileResponse'] script_action_profiles: The script action profile list.
972
+ :param 'SecretsProfileResponse' secrets_profile: The cluster secret profile.
973
+ :param Sequence['ClusterServiceConfigsProfileResponse'] service_configs_profiles: The service configs profiles.
974
+ :param 'SparkProfileResponse' spark_profile: The spark cluster profile.
975
+ :param 'SshProfileResponse' ssh_profile: Ssh profile for the cluster.
976
+ :param Any stub_profile: Stub cluster profile.
977
+ :param 'TrinoProfileResponse' trino_profile: Trino Cluster profile.
978
+ """
979
+ pulumi.set(__self__, "authorization_profile", authorization_profile)
980
+ pulumi.set(__self__, "cluster_version", cluster_version)
981
+ pulumi.set(__self__, "components", components)
982
+ pulumi.set(__self__, "connectivity_profile", connectivity_profile)
983
+ pulumi.set(__self__, "oss_version", oss_version)
984
+ if autoscale_profile is not None:
985
+ pulumi.set(__self__, "autoscale_profile", autoscale_profile)
986
+ if cluster_access_profile is not None:
987
+ pulumi.set(__self__, "cluster_access_profile", cluster_access_profile)
988
+ if flink_profile is not None:
989
+ pulumi.set(__self__, "flink_profile", flink_profile)
990
+ if identity_profile is not None:
991
+ pulumi.set(__self__, "identity_profile", identity_profile)
992
+ if kafka_profile is not None:
993
+ pulumi.set(__self__, "kafka_profile", kafka_profile)
994
+ if llap_profile is not None:
995
+ pulumi.set(__self__, "llap_profile", llap_profile)
996
+ if log_analytics_profile is not None:
997
+ pulumi.set(__self__, "log_analytics_profile", log_analytics_profile)
998
+ if managed_identity_profile is not None:
999
+ pulumi.set(__self__, "managed_identity_profile", managed_identity_profile)
1000
+ if prometheus_profile is not None:
1001
+ pulumi.set(__self__, "prometheus_profile", prometheus_profile)
1002
+ if ranger_plugin_profile is not None:
1003
+ pulumi.set(__self__, "ranger_plugin_profile", ranger_plugin_profile)
1004
+ if ranger_profile is not None:
1005
+ pulumi.set(__self__, "ranger_profile", ranger_profile)
1006
+ if script_action_profiles is not None:
1007
+ pulumi.set(__self__, "script_action_profiles", script_action_profiles)
1008
+ if secrets_profile is not None:
1009
+ pulumi.set(__self__, "secrets_profile", secrets_profile)
1010
+ if service_configs_profiles is not None:
1011
+ pulumi.set(__self__, "service_configs_profiles", service_configs_profiles)
1012
+ if spark_profile is not None:
1013
+ pulumi.set(__self__, "spark_profile", spark_profile)
1014
+ if ssh_profile is not None:
1015
+ pulumi.set(__self__, "ssh_profile", ssh_profile)
1016
+ if stub_profile is not None:
1017
+ pulumi.set(__self__, "stub_profile", stub_profile)
1018
+ if trino_profile is not None:
1019
+ pulumi.set(__self__, "trino_profile", trino_profile)
1020
+
1021
+ @property
1022
+ @pulumi.getter(name="authorizationProfile")
1023
+ def authorization_profile(self) -> 'outputs.AuthorizationProfileResponse':
1024
+ """
1025
+ Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
1026
+ """
1027
+ return pulumi.get(self, "authorization_profile")
1028
+
1029
+ @property
1030
+ @pulumi.getter(name="clusterVersion")
1031
+ def cluster_version(self) -> str:
1032
+ """
1033
+ Version with 3/4 part.
1034
+ """
1035
+ return pulumi.get(self, "cluster_version")
1036
+
1037
+ @property
1038
+ @pulumi.getter
1039
+ def components(self) -> Sequence['outputs.ClusterProfileResponseComponents']:
1040
+ """
1041
+ Component list of this cluster type and version.
1042
+ """
1043
+ return pulumi.get(self, "components")
1044
+
1045
+ @property
1046
+ @pulumi.getter(name="connectivityProfile")
1047
+ def connectivity_profile(self) -> 'outputs.ConnectivityProfileResponse':
1048
+ """
1049
+ Cluster connectivity profile.
1050
+ """
1051
+ return pulumi.get(self, "connectivity_profile")
1052
+
1053
+ @property
1054
+ @pulumi.getter(name="ossVersion")
1055
+ def oss_version(self) -> str:
1056
+ """
1057
+ Version with three part.
1058
+ """
1059
+ return pulumi.get(self, "oss_version")
1060
+
1061
+ @property
1062
+ @pulumi.getter(name="autoscaleProfile")
1063
+ def autoscale_profile(self) -> Optional['outputs.AutoscaleProfileResponse']:
1064
+ """
1065
+ This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
1066
+ """
1067
+ return pulumi.get(self, "autoscale_profile")
1068
+
1069
+ @property
1070
+ @pulumi.getter(name="clusterAccessProfile")
1071
+ def cluster_access_profile(self) -> Optional['outputs.ClusterAccessProfileResponse']:
1072
+ """
1073
+ Cluster access profile.
1074
+ """
1075
+ return pulumi.get(self, "cluster_access_profile")
1076
+
1077
+ @property
1078
+ @pulumi.getter(name="flinkProfile")
1079
+ def flink_profile(self) -> Optional['outputs.FlinkProfileResponse']:
1080
+ """
1081
+ The Flink cluster profile.
1082
+ """
1083
+ return pulumi.get(self, "flink_profile")
1084
+
1085
+ @property
1086
+ @pulumi.getter(name="identityProfile")
1087
+ def identity_profile(self) -> Optional['outputs.IdentityProfileResponse']:
1088
+ """
1089
+ This is deprecated. Please use managed identity profile instead.
1090
+ """
1091
+ return pulumi.get(self, "identity_profile")
1092
+
1093
+ @property
1094
+ @pulumi.getter(name="kafkaProfile")
1095
+ def kafka_profile(self) -> Optional['outputs.KafkaProfileResponse']:
1096
+ """
1097
+ The Kafka cluster profile.
1098
+ """
1099
+ return pulumi.get(self, "kafka_profile")
1100
+
1101
+ @property
1102
+ @pulumi.getter(name="llapProfile")
1103
+ def llap_profile(self) -> Optional[Any]:
1104
+ """
1105
+ LLAP cluster profile.
1106
+ """
1107
+ return pulumi.get(self, "llap_profile")
1108
+
1109
+ @property
1110
+ @pulumi.getter(name="logAnalyticsProfile")
1111
+ def log_analytics_profile(self) -> Optional['outputs.ClusterLogAnalyticsProfileResponse']:
1112
+ """
1113
+ Cluster log analytics profile to enable or disable OMS agent for cluster.
1114
+ """
1115
+ return pulumi.get(self, "log_analytics_profile")
1116
+
1117
+ @property
1118
+ @pulumi.getter(name="managedIdentityProfile")
1119
+ def managed_identity_profile(self) -> Optional['outputs.ManagedIdentityProfileResponse']:
1120
+ """
1121
+ This property is required by Trino, Spark and Flink cluster but is optional for Kafka cluster.
1122
+ """
1123
+ return pulumi.get(self, "managed_identity_profile")
1124
+
1125
+ @property
1126
+ @pulumi.getter(name="prometheusProfile")
1127
+ def prometheus_profile(self) -> Optional['outputs.ClusterPrometheusProfileResponse']:
1128
+ """
1129
+ Cluster Prometheus profile.
1130
+ """
1131
+ return pulumi.get(self, "prometheus_profile")
1132
+
1133
+ @property
1134
+ @pulumi.getter(name="rangerPluginProfile")
1135
+ def ranger_plugin_profile(self) -> Optional['outputs.ClusterRangerPluginProfileResponse']:
1136
+ """
1137
+ Cluster Ranger plugin profile.
1138
+ """
1139
+ return pulumi.get(self, "ranger_plugin_profile")
1140
+
1141
+ @property
1142
+ @pulumi.getter(name="rangerProfile")
1143
+ def ranger_profile(self) -> Optional['outputs.RangerProfileResponse']:
1144
+ """
1145
+ The ranger cluster profile.
1146
+ """
1147
+ return pulumi.get(self, "ranger_profile")
1148
+
1149
+ @property
1150
+ @pulumi.getter(name="scriptActionProfiles")
1151
+ def script_action_profiles(self) -> Optional[Sequence['outputs.ScriptActionProfileResponse']]:
1152
+ """
1153
+ The script action profile list.
1154
+ """
1155
+ return pulumi.get(self, "script_action_profiles")
1156
+
1157
+ @property
1158
+ @pulumi.getter(name="secretsProfile")
1159
+ def secrets_profile(self) -> Optional['outputs.SecretsProfileResponse']:
1160
+ """
1161
+ The cluster secret profile.
1162
+ """
1163
+ return pulumi.get(self, "secrets_profile")
1164
+
1165
+ @property
1166
+ @pulumi.getter(name="serviceConfigsProfiles")
1167
+ def service_configs_profiles(self) -> Optional[Sequence['outputs.ClusterServiceConfigsProfileResponse']]:
1168
+ """
1169
+ The service configs profiles.
1170
+ """
1171
+ return pulumi.get(self, "service_configs_profiles")
1172
+
1173
+ @property
1174
+ @pulumi.getter(name="sparkProfile")
1175
+ def spark_profile(self) -> Optional['outputs.SparkProfileResponse']:
1176
+ """
1177
+ The spark cluster profile.
1178
+ """
1179
+ return pulumi.get(self, "spark_profile")
1180
+
1181
+ @property
1182
+ @pulumi.getter(name="sshProfile")
1183
+ def ssh_profile(self) -> Optional['outputs.SshProfileResponse']:
1184
+ """
1185
+ Ssh profile for the cluster.
1186
+ """
1187
+ return pulumi.get(self, "ssh_profile")
1188
+
1189
+ @property
1190
+ @pulumi.getter(name="stubProfile")
1191
+ def stub_profile(self) -> Optional[Any]:
1192
+ """
1193
+ Stub cluster profile.
1194
+ """
1195
+ return pulumi.get(self, "stub_profile")
1196
+
1197
+ @property
1198
+ @pulumi.getter(name="trinoProfile")
1199
+ def trino_profile(self) -> Optional['outputs.TrinoProfileResponse']:
1200
+ """
1201
+ Trino Cluster profile.
1202
+ """
1203
+ return pulumi.get(self, "trino_profile")
1204
+
1205
+
1206
+ @pulumi.output_type
1207
+ class ClusterProfileResponseComponents(dict):
1208
+ def __init__(__self__, *,
1209
+ name: Optional[str] = None,
1210
+ version: Optional[str] = None):
1211
+ if name is not None:
1212
+ pulumi.set(__self__, "name", name)
1213
+ if version is not None:
1214
+ pulumi.set(__self__, "version", version)
1215
+
1216
+ @property
1217
+ @pulumi.getter
1218
+ def name(self) -> Optional[str]:
1219
+ return pulumi.get(self, "name")
1220
+
1221
+ @property
1222
+ @pulumi.getter
1223
+ def version(self) -> Optional[str]:
1224
+ return pulumi.get(self, "version")
1225
+
1226
+
1227
+ @pulumi.output_type
1228
+ class ClusterPrometheusProfileResponse(dict):
1229
+ """
1230
+ Cluster Prometheus profile.
1231
+ """
1232
+ def __init__(__self__, *,
1233
+ enabled: Optional[bool] = None):
1234
+ """
1235
+ Cluster Prometheus profile.
1236
+ :param bool enabled: Enable Prometheus for cluster or not.
1237
+ """
1238
+ if enabled is None:
1239
+ enabled = False
1240
+ pulumi.set(__self__, "enabled", enabled)
1241
+
1242
+ @property
1243
+ @pulumi.getter
1244
+ def enabled(self) -> bool:
1245
+ """
1246
+ Enable Prometheus for cluster or not.
1247
+ """
1248
+ return pulumi.get(self, "enabled")
1249
+
1250
+
1251
+ @pulumi.output_type
1252
+ class ClusterRangerPluginProfileResponse(dict):
1253
+ """
1254
+ Cluster Ranger plugin profile.
1255
+ """
1256
+ def __init__(__self__, *,
1257
+ enabled: Optional[bool] = None):
1258
+ """
1259
+ Cluster Ranger plugin profile.
1260
+ :param bool enabled: Enable Ranger for cluster or not.
1261
+ """
1262
+ if enabled is None:
1263
+ enabled = False
1264
+ pulumi.set(__self__, "enabled", enabled)
1265
+
1266
+ @property
1267
+ @pulumi.getter
1268
+ def enabled(self) -> bool:
1269
+ """
1270
+ Enable Ranger for cluster or not.
1271
+ """
1272
+ return pulumi.get(self, "enabled")
1273
+
1274
+
1275
+ @pulumi.output_type
1276
+ class ClusterServiceConfigResponse(dict):
1277
+ """
1278
+ Cluster configs per component.
1279
+ """
1280
+ def __init__(__self__, *,
1281
+ component: str,
1282
+ files: Sequence['outputs.ClusterConfigFileResponse']):
1283
+ """
1284
+ Cluster configs per component.
1285
+ :param str component: Name of the component the config files should apply to.
1286
+ :param Sequence['ClusterConfigFileResponse'] files: List of Config Files.
1287
+ """
1288
+ pulumi.set(__self__, "component", component)
1289
+ pulumi.set(__self__, "files", files)
1290
+
1291
+ @property
1292
+ @pulumi.getter
1293
+ def component(self) -> str:
1294
+ """
1295
+ Name of the component the config files should apply to.
1296
+ """
1297
+ return pulumi.get(self, "component")
1298
+
1299
+ @property
1300
+ @pulumi.getter
1301
+ def files(self) -> Sequence['outputs.ClusterConfigFileResponse']:
1302
+ """
1303
+ List of Config Files.
1304
+ """
1305
+ return pulumi.get(self, "files")
1306
+
1307
+
1308
+ @pulumi.output_type
1309
+ class ClusterServiceConfigsProfileResponse(dict):
1310
+ """
1311
+ Cluster service configs.
1312
+ """
1313
+ @staticmethod
1314
+ def __key_warning(key: str):
1315
+ suggest = None
1316
+ if key == "serviceName":
1317
+ suggest = "service_name"
1318
+
1319
+ if suggest:
1320
+ pulumi.log.warn(f"Key '{key}' not found in ClusterServiceConfigsProfileResponse. Access the value via the '{suggest}' property getter instead.")
1321
+
1322
+ def __getitem__(self, key: str) -> Any:
1323
+ ClusterServiceConfigsProfileResponse.__key_warning(key)
1324
+ return super().__getitem__(key)
1325
+
1326
+ def get(self, key: str, default = None) -> Any:
1327
+ ClusterServiceConfigsProfileResponse.__key_warning(key)
1328
+ return super().get(key, default)
1329
+
1330
+ def __init__(__self__, *,
1331
+ configs: Sequence['outputs.ClusterServiceConfigResponse'],
1332
+ service_name: str):
1333
+ """
1334
+ Cluster service configs.
1335
+ :param Sequence['ClusterServiceConfigResponse'] configs: List of service configs.
1336
+ :param str service_name: Name of the service the configurations should apply to.
1337
+ """
1338
+ pulumi.set(__self__, "configs", configs)
1339
+ pulumi.set(__self__, "service_name", service_name)
1340
+
1341
+ @property
1342
+ @pulumi.getter
1343
+ def configs(self) -> Sequence['outputs.ClusterServiceConfigResponse']:
1344
+ """
1345
+ List of service configs.
1346
+ """
1347
+ return pulumi.get(self, "configs")
1348
+
1349
+ @property
1350
+ @pulumi.getter(name="serviceName")
1351
+ def service_name(self) -> str:
1352
+ """
1353
+ Name of the service the configurations should apply to.
1354
+ """
1355
+ return pulumi.get(self, "service_name")
1356
+
1357
+
1358
+ @pulumi.output_type
1359
+ class ComparisonRuleResponse(dict):
1360
+ """
1361
+ The comparison rule.
1362
+ """
1363
+ def __init__(__self__, *,
1364
+ operator: str,
1365
+ threshold: float):
1366
+ """
1367
+ The comparison rule.
1368
+ :param str operator: The comparison operator.
1369
+ :param float threshold: Threshold setting.
1370
+ """
1371
+ pulumi.set(__self__, "operator", operator)
1372
+ pulumi.set(__self__, "threshold", threshold)
1373
+
1374
+ @property
1375
+ @pulumi.getter
1376
+ def operator(self) -> str:
1377
+ """
1378
+ The comparison operator.
1379
+ """
1380
+ return pulumi.get(self, "operator")
1381
+
1382
+ @property
1383
+ @pulumi.getter
1384
+ def threshold(self) -> float:
1385
+ """
1386
+ Threshold setting.
1387
+ """
1388
+ return pulumi.get(self, "threshold")
1389
+
1390
+
1391
+ @pulumi.output_type
1392
+ class ComputeProfileResponse(dict):
1393
+ """
1394
+ The compute profile.
1395
+ """
1396
+ def __init__(__self__, *,
1397
+ nodes: Sequence['outputs.NodeProfileResponse']):
1398
+ """
1399
+ The compute profile.
1400
+ :param Sequence['NodeProfileResponse'] nodes: The nodes definitions.
1401
+ """
1402
+ pulumi.set(__self__, "nodes", nodes)
1403
+
1404
+ @property
1405
+ @pulumi.getter
1406
+ def nodes(self) -> Sequence['outputs.NodeProfileResponse']:
1407
+ """
1408
+ The nodes definitions.
1409
+ """
1410
+ return pulumi.get(self, "nodes")
1411
+
1412
+
1413
+ @pulumi.output_type
1414
+ class ComputeResourceDefinitionResponse(dict):
1415
+ """
1416
+ The cpu and memory requirement definition.
1417
+ """
1418
+ def __init__(__self__, *,
1419
+ cpu: float,
1420
+ memory: float):
1421
+ """
1422
+ The cpu and memory requirement definition.
1423
+ :param float cpu: The required CPU.
1424
+ :param float memory: The required memory in MB, Container memory will be 110 percentile
1425
+ """
1426
+ pulumi.set(__self__, "cpu", cpu)
1427
+ pulumi.set(__self__, "memory", memory)
1428
+
1429
+ @property
1430
+ @pulumi.getter
1431
+ def cpu(self) -> float:
1432
+ """
1433
+ The required CPU.
1434
+ """
1435
+ return pulumi.get(self, "cpu")
1436
+
1437
+ @property
1438
+ @pulumi.getter
1439
+ def memory(self) -> float:
1440
+ """
1441
+ The required memory in MB, Container memory will be 110 percentile
1442
+ """
1443
+ return pulumi.get(self, "memory")
1444
+
1445
+
1446
+ @pulumi.output_type
1447
+ class ConnectivityProfileResponse(dict):
1448
+ """
1449
+ Cluster connectivity profile.
1450
+ """
1451
+ def __init__(__self__, *,
1452
+ web: 'outputs.ConnectivityProfileResponseWeb',
1453
+ ssh: Optional[Sequence['outputs.SshConnectivityEndpointResponse']] = None):
1454
+ """
1455
+ Cluster connectivity profile.
1456
+ :param 'ConnectivityProfileResponseWeb' web: Web connectivity endpoint details.
1457
+ :param Sequence['SshConnectivityEndpointResponse'] ssh: List of SSH connectivity endpoints.
1458
+ """
1459
+ pulumi.set(__self__, "web", web)
1460
+ if ssh is not None:
1461
+ pulumi.set(__self__, "ssh", ssh)
1462
+
1463
+ @property
1464
+ @pulumi.getter
1465
+ def web(self) -> 'outputs.ConnectivityProfileResponseWeb':
1466
+ """
1467
+ Web connectivity endpoint details.
1468
+ """
1469
+ return pulumi.get(self, "web")
1470
+
1471
+ @property
1472
+ @pulumi.getter
1473
+ def ssh(self) -> Optional[Sequence['outputs.SshConnectivityEndpointResponse']]:
1474
+ """
1475
+ List of SSH connectivity endpoints.
1476
+ """
1477
+ return pulumi.get(self, "ssh")
1478
+
1479
+
1480
+ @pulumi.output_type
1481
+ class ConnectivityProfileResponseWeb(dict):
1482
+ """
1483
+ Web connectivity endpoint details.
1484
+ """
1485
+ @staticmethod
1486
+ def __key_warning(key: str):
1487
+ suggest = None
1488
+ if key == "privateFqdn":
1489
+ suggest = "private_fqdn"
1490
+
1491
+ if suggest:
1492
+ pulumi.log.warn(f"Key '{key}' not found in ConnectivityProfileResponseWeb. Access the value via the '{suggest}' property getter instead.")
1493
+
1494
+ def __getitem__(self, key: str) -> Any:
1495
+ ConnectivityProfileResponseWeb.__key_warning(key)
1496
+ return super().__getitem__(key)
1497
+
1498
+ def get(self, key: str, default = None) -> Any:
1499
+ ConnectivityProfileResponseWeb.__key_warning(key)
1500
+ return super().get(key, default)
1501
+
1502
+ def __init__(__self__, *,
1503
+ fqdn: str,
1504
+ private_fqdn: Optional[str] = None):
1505
+ """
1506
+ Web connectivity endpoint details.
1507
+ :param str fqdn: Web connectivity endpoint.
1508
+ :param str private_fqdn: Private web connectivity endpoint. This property will only be returned when enableInternalIngress is true.
1509
+ """
1510
+ pulumi.set(__self__, "fqdn", fqdn)
1511
+ if private_fqdn is not None:
1512
+ pulumi.set(__self__, "private_fqdn", private_fqdn)
1513
+
1514
+ @property
1515
+ @pulumi.getter
1516
+ def fqdn(self) -> str:
1517
+ """
1518
+ Web connectivity endpoint.
1519
+ """
1520
+ return pulumi.get(self, "fqdn")
1521
+
1522
+ @property
1523
+ @pulumi.getter(name="privateFqdn")
1524
+ def private_fqdn(self) -> Optional[str]:
1525
+ """
1526
+ Private web connectivity endpoint. This property will only be returned when enableInternalIngress is true.
1527
+ """
1528
+ return pulumi.get(self, "private_fqdn")
1529
+
1530
+
1531
+ @pulumi.output_type
1532
+ class DiskStorageProfileResponse(dict):
1533
+ """
1534
+ Kafka disk storage profile.
1535
+ """
1536
+ @staticmethod
1537
+ def __key_warning(key: str):
1538
+ suggest = None
1539
+ if key == "dataDiskSize":
1540
+ suggest = "data_disk_size"
1541
+ elif key == "dataDiskType":
1542
+ suggest = "data_disk_type"
1543
+
1544
+ if suggest:
1545
+ pulumi.log.warn(f"Key '{key}' not found in DiskStorageProfileResponse. Access the value via the '{suggest}' property getter instead.")
1546
+
1547
+ def __getitem__(self, key: str) -> Any:
1548
+ DiskStorageProfileResponse.__key_warning(key)
1549
+ return super().__getitem__(key)
1550
+
1551
+ def get(self, key: str, default = None) -> Any:
1552
+ DiskStorageProfileResponse.__key_warning(key)
1553
+ return super().get(key, default)
1554
+
1555
+ def __init__(__self__, *,
1556
+ data_disk_size: int,
1557
+ data_disk_type: str):
1558
+ """
1559
+ Kafka disk storage profile.
1560
+ :param int data_disk_size: Managed Disk size in GB. The maximum supported disk size for Standard and Premium HDD/SSD is 32TB, except for Premium SSD v2, which supports up to 64TB.
1561
+ :param str data_disk_type: Managed Disk Type.
1562
+ """
1563
+ pulumi.set(__self__, "data_disk_size", data_disk_size)
1564
+ pulumi.set(__self__, "data_disk_type", data_disk_type)
1565
+
1566
+ @property
1567
+ @pulumi.getter(name="dataDiskSize")
1568
+ def data_disk_size(self) -> int:
1569
+ """
1570
+ Managed Disk size in GB. The maximum supported disk size for Standard and Premium HDD/SSD is 32TB, except for Premium SSD v2, which supports up to 64TB.
1571
+ """
1572
+ return pulumi.get(self, "data_disk_size")
1573
+
1574
+ @property
1575
+ @pulumi.getter(name="dataDiskType")
1576
+ def data_disk_type(self) -> str:
1577
+ """
1578
+ Managed Disk Type.
1579
+ """
1580
+ return pulumi.get(self, "data_disk_type")
1581
+
1582
+
1583
+ @pulumi.output_type
1584
+ class FlinkCatalogOptionsResponse(dict):
1585
+ """
1586
+ Flink cluster catalog options.
1587
+ """
1588
+ def __init__(__self__, *,
1589
+ hive: Optional['outputs.FlinkHiveCatalogOptionResponse'] = None):
1590
+ """
1591
+ Flink cluster catalog options.
1592
+ :param 'FlinkHiveCatalogOptionResponse' hive: Hive Catalog Option for Flink cluster.
1593
+ """
1594
+ if hive is not None:
1595
+ pulumi.set(__self__, "hive", hive)
1596
+
1597
+ @property
1598
+ @pulumi.getter
1599
+ def hive(self) -> Optional['outputs.FlinkHiveCatalogOptionResponse']:
1600
+ """
1601
+ Hive Catalog Option for Flink cluster.
1602
+ """
1603
+ return pulumi.get(self, "hive")
1604
+
1605
+
1606
+ @pulumi.output_type
1607
+ class FlinkHiveCatalogOptionResponse(dict):
1608
+ """
1609
+ Hive Catalog Option for Flink cluster.
1610
+ """
1611
+ @staticmethod
1612
+ def __key_warning(key: str):
1613
+ suggest = None
1614
+ if key == "metastoreDbConnectionURL":
1615
+ suggest = "metastore_db_connection_url"
1616
+ elif key == "metastoreDbConnectionAuthenticationMode":
1617
+ suggest = "metastore_db_connection_authentication_mode"
1618
+ elif key == "metastoreDbConnectionPasswordSecret":
1619
+ suggest = "metastore_db_connection_password_secret"
1620
+ elif key == "metastoreDbConnectionUserName":
1621
+ suggest = "metastore_db_connection_user_name"
1622
+
1623
+ if suggest:
1624
+ pulumi.log.warn(f"Key '{key}' not found in FlinkHiveCatalogOptionResponse. Access the value via the '{suggest}' property getter instead.")
1625
+
1626
+ def __getitem__(self, key: str) -> Any:
1627
+ FlinkHiveCatalogOptionResponse.__key_warning(key)
1628
+ return super().__getitem__(key)
1629
+
1630
+ def get(self, key: str, default = None) -> Any:
1631
+ FlinkHiveCatalogOptionResponse.__key_warning(key)
1632
+ return super().get(key, default)
1633
+
1634
+ def __init__(__self__, *,
1635
+ metastore_db_connection_url: str,
1636
+ metastore_db_connection_authentication_mode: Optional[str] = None,
1637
+ metastore_db_connection_password_secret: Optional[str] = None,
1638
+ metastore_db_connection_user_name: Optional[str] = None):
1639
+ """
1640
+ Hive Catalog Option for Flink cluster.
1641
+ :param str metastore_db_connection_url: Connection string for hive metastore database.
1642
+ :param str metastore_db_connection_authentication_mode: The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
1643
+ :param str metastore_db_connection_password_secret: Secret reference name from secretsProfile.secrets containing password for database connection.
1644
+ :param str metastore_db_connection_user_name: User name for database connection.
1645
+ """
1646
+ pulumi.set(__self__, "metastore_db_connection_url", metastore_db_connection_url)
1647
+ if metastore_db_connection_authentication_mode is None:
1648
+ metastore_db_connection_authentication_mode = 'IdentityAuth'
1649
+ if metastore_db_connection_authentication_mode is not None:
1650
+ pulumi.set(__self__, "metastore_db_connection_authentication_mode", metastore_db_connection_authentication_mode)
1651
+ if metastore_db_connection_password_secret is not None:
1652
+ pulumi.set(__self__, "metastore_db_connection_password_secret", metastore_db_connection_password_secret)
1653
+ if metastore_db_connection_user_name is not None:
1654
+ pulumi.set(__self__, "metastore_db_connection_user_name", metastore_db_connection_user_name)
1655
+
1656
+ @property
1657
+ @pulumi.getter(name="metastoreDbConnectionURL")
1658
+ def metastore_db_connection_url(self) -> str:
1659
+ """
1660
+ Connection string for hive metastore database.
1661
+ """
1662
+ return pulumi.get(self, "metastore_db_connection_url")
1663
+
1664
+ @property
1665
+ @pulumi.getter(name="metastoreDbConnectionAuthenticationMode")
1666
+ def metastore_db_connection_authentication_mode(self) -> Optional[str]:
1667
+ """
1668
+ The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
1669
+ """
1670
+ return pulumi.get(self, "metastore_db_connection_authentication_mode")
1671
+
1672
+ @property
1673
+ @pulumi.getter(name="metastoreDbConnectionPasswordSecret")
1674
+ def metastore_db_connection_password_secret(self) -> Optional[str]:
1675
+ """
1676
+ Secret reference name from secretsProfile.secrets containing password for database connection.
1677
+ """
1678
+ return pulumi.get(self, "metastore_db_connection_password_secret")
1679
+
1680
+ @property
1681
+ @pulumi.getter(name="metastoreDbConnectionUserName")
1682
+ def metastore_db_connection_user_name(self) -> Optional[str]:
1683
+ """
1684
+ User name for database connection.
1685
+ """
1686
+ return pulumi.get(self, "metastore_db_connection_user_name")
1687
+
1688
+
1689
+ @pulumi.output_type
1690
+ class FlinkJobProfileResponse(dict):
1691
+ """
1692
+ Job specifications for flink clusters in application deployment mode. The specification is immutable even if job properties are changed by calling the RunJob API, please use the ListJob API to get the latest job information.
1693
+ """
1694
+ @staticmethod
1695
+ def __key_warning(key: str):
1696
+ suggest = None
1697
+ if key == "jarName":
1698
+ suggest = "jar_name"
1699
+ elif key == "jobJarDirectory":
1700
+ suggest = "job_jar_directory"
1701
+ elif key == "upgradeMode":
1702
+ suggest = "upgrade_mode"
1703
+ elif key == "entryClass":
1704
+ suggest = "entry_class"
1705
+ elif key == "savePointName":
1706
+ suggest = "save_point_name"
1707
+
1708
+ if suggest:
1709
+ pulumi.log.warn(f"Key '{key}' not found in FlinkJobProfileResponse. Access the value via the '{suggest}' property getter instead.")
1710
+
1711
+ def __getitem__(self, key: str) -> Any:
1712
+ FlinkJobProfileResponse.__key_warning(key)
1713
+ return super().__getitem__(key)
1714
+
1715
+ def get(self, key: str, default = None) -> Any:
1716
+ FlinkJobProfileResponse.__key_warning(key)
1717
+ return super().get(key, default)
1718
+
1719
+ def __init__(__self__, *,
1720
+ jar_name: str,
1721
+ job_jar_directory: str,
1722
+ upgrade_mode: str,
1723
+ args: Optional[str] = None,
1724
+ entry_class: Optional[str] = None,
1725
+ save_point_name: Optional[str] = None):
1726
+ """
1727
+ Job specifications for flink clusters in application deployment mode. The specification is immutable even if job properties are changed by calling the RunJob API, please use the ListJob API to get the latest job information.
1728
+ :param str jar_name: A string property that represents the name of the job JAR.
1729
+ :param str job_jar_directory: A string property that specifies the directory where the job JAR is located.
1730
+ :param str upgrade_mode: A string property that indicates the upgrade mode to be performed on the Flink job. It can have one of the following enum values => STATELESS_UPDATE, UPDATE, LAST_STATE_UPDATE.
1731
+ :param str args: A string property representing additional JVM arguments for the Flink job. It should be space separated value.
1732
+ :param str entry_class: A string property that specifies the entry class for the Flink job. If not specified, the entry point is auto-detected from the flink job jar package.
1733
+ :param str save_point_name: A string property that represents the name of the savepoint for the Flink job
1734
+ """
1735
+ pulumi.set(__self__, "jar_name", jar_name)
1736
+ pulumi.set(__self__, "job_jar_directory", job_jar_directory)
1737
+ pulumi.set(__self__, "upgrade_mode", upgrade_mode)
1738
+ if args is not None:
1739
+ pulumi.set(__self__, "args", args)
1740
+ if entry_class is not None:
1741
+ pulumi.set(__self__, "entry_class", entry_class)
1742
+ if save_point_name is not None:
1743
+ pulumi.set(__self__, "save_point_name", save_point_name)
1744
+
1745
+ @property
1746
+ @pulumi.getter(name="jarName")
1747
+ def jar_name(self) -> str:
1748
+ """
1749
+ A string property that represents the name of the job JAR.
1750
+ """
1751
+ return pulumi.get(self, "jar_name")
1752
+
1753
+ @property
1754
+ @pulumi.getter(name="jobJarDirectory")
1755
+ def job_jar_directory(self) -> str:
1756
+ """
1757
+ A string property that specifies the directory where the job JAR is located.
1758
+ """
1759
+ return pulumi.get(self, "job_jar_directory")
1760
+
1761
+ @property
1762
+ @pulumi.getter(name="upgradeMode")
1763
+ def upgrade_mode(self) -> str:
1764
+ """
1765
+ A string property that indicates the upgrade mode to be performed on the Flink job. It can have one of the following enum values => STATELESS_UPDATE, UPDATE, LAST_STATE_UPDATE.
1766
+ """
1767
+ return pulumi.get(self, "upgrade_mode")
1768
+
1769
+ @property
1770
+ @pulumi.getter
1771
+ def args(self) -> Optional[str]:
1772
+ """
1773
+ A string property representing additional JVM arguments for the Flink job. It should be space separated value.
1774
+ """
1775
+ return pulumi.get(self, "args")
1776
+
1777
+ @property
1778
+ @pulumi.getter(name="entryClass")
1779
+ def entry_class(self) -> Optional[str]:
1780
+ """
1781
+ A string property that specifies the entry class for the Flink job. If not specified, the entry point is auto-detected from the flink job jar package.
1782
+ """
1783
+ return pulumi.get(self, "entry_class")
1784
+
1785
+ @property
1786
+ @pulumi.getter(name="savePointName")
1787
+ def save_point_name(self) -> Optional[str]:
1788
+ """
1789
+ A string property that represents the name of the savepoint for the Flink job
1790
+ """
1791
+ return pulumi.get(self, "save_point_name")
1792
+
1793
+
1794
+ @pulumi.output_type
1795
+ class FlinkProfileResponse(dict):
1796
+ """
1797
+ The Flink cluster profile.
1798
+ """
1799
+ @staticmethod
1800
+ def __key_warning(key: str):
1801
+ suggest = None
1802
+ if key == "jobManager":
1803
+ suggest = "job_manager"
1804
+ elif key == "taskManager":
1805
+ suggest = "task_manager"
1806
+ elif key == "catalogOptions":
1807
+ suggest = "catalog_options"
1808
+ elif key == "deploymentMode":
1809
+ suggest = "deployment_mode"
1810
+ elif key == "historyServer":
1811
+ suggest = "history_server"
1812
+ elif key == "jobSpec":
1813
+ suggest = "job_spec"
1814
+ elif key == "numReplicas":
1815
+ suggest = "num_replicas"
1816
+
1817
+ if suggest:
1818
+ pulumi.log.warn(f"Key '{key}' not found in FlinkProfileResponse. Access the value via the '{suggest}' property getter instead.")
1819
+
1820
+ def __getitem__(self, key: str) -> Any:
1821
+ FlinkProfileResponse.__key_warning(key)
1822
+ return super().__getitem__(key)
1823
+
1824
+ def get(self, key: str, default = None) -> Any:
1825
+ FlinkProfileResponse.__key_warning(key)
1826
+ return super().get(key, default)
1827
+
1828
+ def __init__(__self__, *,
1829
+ job_manager: 'outputs.ComputeResourceDefinitionResponse',
1830
+ storage: 'outputs.FlinkStorageProfileResponse',
1831
+ task_manager: 'outputs.ComputeResourceDefinitionResponse',
1832
+ catalog_options: Optional['outputs.FlinkCatalogOptionsResponse'] = None,
1833
+ deployment_mode: Optional[str] = None,
1834
+ history_server: Optional['outputs.ComputeResourceDefinitionResponse'] = None,
1835
+ job_spec: Optional['outputs.FlinkJobProfileResponse'] = None,
1836
+ num_replicas: Optional[int] = None):
1837
+ """
1838
+ The Flink cluster profile.
1839
+ :param 'ComputeResourceDefinitionResponse' job_manager: Job Manager container/ process CPU and memory requirements
1840
+ :param 'FlinkStorageProfileResponse' storage: The storage profile
1841
+ :param 'ComputeResourceDefinitionResponse' task_manager: Task Manager container/ process CPU and memory requirements
1842
+ :param 'FlinkCatalogOptionsResponse' catalog_options: Flink cluster catalog options.
1843
+ :param str deployment_mode: A string property that indicates the deployment mode of Flink cluster. It can have one of the following enum values => Application, Session. Default value is Session
1844
+ :param 'ComputeResourceDefinitionResponse' history_server: History Server container/ process CPU and memory requirements
1845
+ :param 'FlinkJobProfileResponse' job_spec: Job specifications for flink clusters in application deployment mode. The specification is immutable even if job properties are changed by calling the RunJob API, please use the ListJob API to get the latest job information.
1846
+ :param int num_replicas: The number of task managers.
1847
+ """
1848
+ pulumi.set(__self__, "job_manager", job_manager)
1849
+ pulumi.set(__self__, "storage", storage)
1850
+ pulumi.set(__self__, "task_manager", task_manager)
1851
+ if catalog_options is not None:
1852
+ pulumi.set(__self__, "catalog_options", catalog_options)
1853
+ if deployment_mode is not None:
1854
+ pulumi.set(__self__, "deployment_mode", deployment_mode)
1855
+ if history_server is not None:
1856
+ pulumi.set(__self__, "history_server", history_server)
1857
+ if job_spec is not None:
1858
+ pulumi.set(__self__, "job_spec", job_spec)
1859
+ if num_replicas is not None:
1860
+ pulumi.set(__self__, "num_replicas", num_replicas)
1861
+
1862
+ @property
1863
+ @pulumi.getter(name="jobManager")
1864
+ def job_manager(self) -> 'outputs.ComputeResourceDefinitionResponse':
1865
+ """
1866
+ Job Manager container/ process CPU and memory requirements
1867
+ """
1868
+ return pulumi.get(self, "job_manager")
1869
+
1870
+ @property
1871
+ @pulumi.getter
1872
+ def storage(self) -> 'outputs.FlinkStorageProfileResponse':
1873
+ """
1874
+ The storage profile
1875
+ """
1876
+ return pulumi.get(self, "storage")
1877
+
1878
+ @property
1879
+ @pulumi.getter(name="taskManager")
1880
+ def task_manager(self) -> 'outputs.ComputeResourceDefinitionResponse':
1881
+ """
1882
+ Task Manager container/ process CPU and memory requirements
1883
+ """
1884
+ return pulumi.get(self, "task_manager")
1885
+
1886
+ @property
1887
+ @pulumi.getter(name="catalogOptions")
1888
+ def catalog_options(self) -> Optional['outputs.FlinkCatalogOptionsResponse']:
1889
+ """
1890
+ Flink cluster catalog options.
1891
+ """
1892
+ return pulumi.get(self, "catalog_options")
1893
+
1894
+ @property
1895
+ @pulumi.getter(name="deploymentMode")
1896
+ def deployment_mode(self) -> Optional[str]:
1897
+ """
1898
+ A string property that indicates the deployment mode of Flink cluster. It can have one of the following enum values => Application, Session. Default value is Session
1899
+ """
1900
+ return pulumi.get(self, "deployment_mode")
1901
+
1902
+ @property
1903
+ @pulumi.getter(name="historyServer")
1904
+ def history_server(self) -> Optional['outputs.ComputeResourceDefinitionResponse']:
1905
+ """
1906
+ History Server container/ process CPU and memory requirements
1907
+ """
1908
+ return pulumi.get(self, "history_server")
1909
+
1910
+ @property
1911
+ @pulumi.getter(name="jobSpec")
1912
+ def job_spec(self) -> Optional['outputs.FlinkJobProfileResponse']:
1913
+ """
1914
+ Job specifications for flink clusters in application deployment mode. The specification is immutable even if job properties are changed by calling the RunJob API, please use the ListJob API to get the latest job information.
1915
+ """
1916
+ return pulumi.get(self, "job_spec")
1917
+
1918
+ @property
1919
+ @pulumi.getter(name="numReplicas")
1920
+ def num_replicas(self) -> Optional[int]:
1921
+ """
1922
+ The number of task managers.
1923
+ """
1924
+ return pulumi.get(self, "num_replicas")
1925
+
1926
+
1927
+ @pulumi.output_type
1928
+ class FlinkStorageProfileResponse(dict):
1929
+ """
1930
+ The storage profile
1931
+ """
1932
+ @staticmethod
1933
+ def __key_warning(key: str):
1934
+ suggest = None
1935
+ if key == "storageUri":
1936
+ suggest = "storage_uri"
1937
+
1938
+ if suggest:
1939
+ pulumi.log.warn(f"Key '{key}' not found in FlinkStorageProfileResponse. Access the value via the '{suggest}' property getter instead.")
1940
+
1941
+ def __getitem__(self, key: str) -> Any:
1942
+ FlinkStorageProfileResponse.__key_warning(key)
1943
+ return super().__getitem__(key)
1944
+
1945
+ def get(self, key: str, default = None) -> Any:
1946
+ FlinkStorageProfileResponse.__key_warning(key)
1947
+ return super().get(key, default)
1948
+
1949
+ def __init__(__self__, *,
1950
+ storage_uri: str,
1951
+ storagekey: Optional[str] = None):
1952
+ """
1953
+ The storage profile
1954
+ :param str storage_uri: Storage account uri which is used for savepoint and checkpoint state.
1955
+ :param str storagekey: Storage key is only required for wasb(s) storage.
1956
+ """
1957
+ pulumi.set(__self__, "storage_uri", storage_uri)
1958
+ if storagekey is not None:
1959
+ pulumi.set(__self__, "storagekey", storagekey)
1960
+
1961
+ @property
1962
+ @pulumi.getter(name="storageUri")
1963
+ def storage_uri(self) -> str:
1964
+ """
1965
+ Storage account uri which is used for savepoint and checkpoint state.
1966
+ """
1967
+ return pulumi.get(self, "storage_uri")
1968
+
1969
+ @property
1970
+ @pulumi.getter
1971
+ def storagekey(self) -> Optional[str]:
1972
+ """
1973
+ Storage key is only required for wasb(s) storage.
1974
+ """
1975
+ return pulumi.get(self, "storagekey")
1976
+
1977
+
1978
+ @pulumi.output_type
1979
+ class HiveCatalogOptionResponse(dict):
1980
+ """
1981
+ Hive Catalog Option
1982
+ """
1983
+ @staticmethod
1984
+ def __key_warning(key: str):
1985
+ suggest = None
1986
+ if key == "catalogName":
1987
+ suggest = "catalog_name"
1988
+ elif key == "metastoreDbConnectionURL":
1989
+ suggest = "metastore_db_connection_url"
1990
+ elif key == "metastoreWarehouseDir":
1991
+ suggest = "metastore_warehouse_dir"
1992
+ elif key == "metastoreDbConnectionAuthenticationMode":
1993
+ suggest = "metastore_db_connection_authentication_mode"
1994
+ elif key == "metastoreDbConnectionPasswordSecret":
1995
+ suggest = "metastore_db_connection_password_secret"
1996
+ elif key == "metastoreDbConnectionUserName":
1997
+ suggest = "metastore_db_connection_user_name"
1998
+
1999
+ if suggest:
2000
+ pulumi.log.warn(f"Key '{key}' not found in HiveCatalogOptionResponse. Access the value via the '{suggest}' property getter instead.")
2001
+
2002
+ def __getitem__(self, key: str) -> Any:
2003
+ HiveCatalogOptionResponse.__key_warning(key)
2004
+ return super().__getitem__(key)
2005
+
2006
+ def get(self, key: str, default = None) -> Any:
2007
+ HiveCatalogOptionResponse.__key_warning(key)
2008
+ return super().get(key, default)
2009
+
2010
+ def __init__(__self__, *,
2011
+ catalog_name: str,
2012
+ metastore_db_connection_url: str,
2013
+ metastore_warehouse_dir: str,
2014
+ metastore_db_connection_authentication_mode: Optional[str] = None,
2015
+ metastore_db_connection_password_secret: Optional[str] = None,
2016
+ metastore_db_connection_user_name: Optional[str] = None):
2017
+ """
2018
+ Hive Catalog Option
2019
+ :param str catalog_name: Name of trino catalog which should use specified hive metastore.
2020
+ :param str metastore_db_connection_url: Connection string for hive metastore database.
2021
+ :param str metastore_warehouse_dir: Metastore root directory URI, format: abfs[s]://<container>@<account_name>.dfs.core.windows.net/<path>. More details: https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-introduction-abfs-uri
2022
+ :param str metastore_db_connection_authentication_mode: The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
2023
+ :param str metastore_db_connection_password_secret: Secret reference name from secretsProfile.secrets containing password for database connection.
2024
+ :param str metastore_db_connection_user_name: User name for database connection.
2025
+ """
2026
+ pulumi.set(__self__, "catalog_name", catalog_name)
2027
+ pulumi.set(__self__, "metastore_db_connection_url", metastore_db_connection_url)
2028
+ pulumi.set(__self__, "metastore_warehouse_dir", metastore_warehouse_dir)
2029
+ if metastore_db_connection_authentication_mode is None:
2030
+ metastore_db_connection_authentication_mode = 'IdentityAuth'
2031
+ if metastore_db_connection_authentication_mode is not None:
2032
+ pulumi.set(__self__, "metastore_db_connection_authentication_mode", metastore_db_connection_authentication_mode)
2033
+ if metastore_db_connection_password_secret is not None:
2034
+ pulumi.set(__self__, "metastore_db_connection_password_secret", metastore_db_connection_password_secret)
2035
+ if metastore_db_connection_user_name is not None:
2036
+ pulumi.set(__self__, "metastore_db_connection_user_name", metastore_db_connection_user_name)
2037
+
2038
+ @property
2039
+ @pulumi.getter(name="catalogName")
2040
+ def catalog_name(self) -> str:
2041
+ """
2042
+ Name of trino catalog which should use specified hive metastore.
2043
+ """
2044
+ return pulumi.get(self, "catalog_name")
2045
+
2046
+ @property
2047
+ @pulumi.getter(name="metastoreDbConnectionURL")
2048
+ def metastore_db_connection_url(self) -> str:
2049
+ """
2050
+ Connection string for hive metastore database.
2051
+ """
2052
+ return pulumi.get(self, "metastore_db_connection_url")
2053
+
2054
+ @property
2055
+ @pulumi.getter(name="metastoreWarehouseDir")
2056
+ def metastore_warehouse_dir(self) -> str:
2057
+ """
2058
+ Metastore root directory URI, format: abfs[s]://<container>@<account_name>.dfs.core.windows.net/<path>. More details: https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-introduction-abfs-uri
2059
+ """
2060
+ return pulumi.get(self, "metastore_warehouse_dir")
2061
+
2062
+ @property
2063
+ @pulumi.getter(name="metastoreDbConnectionAuthenticationMode")
2064
+ def metastore_db_connection_authentication_mode(self) -> Optional[str]:
2065
+ """
2066
+ The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
2067
+ """
2068
+ return pulumi.get(self, "metastore_db_connection_authentication_mode")
2069
+
2070
+ @property
2071
+ @pulumi.getter(name="metastoreDbConnectionPasswordSecret")
2072
+ def metastore_db_connection_password_secret(self) -> Optional[str]:
2073
+ """
2074
+ Secret reference name from secretsProfile.secrets containing password for database connection.
2075
+ """
2076
+ return pulumi.get(self, "metastore_db_connection_password_secret")
2077
+
2078
+ @property
2079
+ @pulumi.getter(name="metastoreDbConnectionUserName")
2080
+ def metastore_db_connection_user_name(self) -> Optional[str]:
2081
+ """
2082
+ User name for database connection.
2083
+ """
2084
+ return pulumi.get(self, "metastore_db_connection_user_name")
2085
+
2086
+
2087
+ @pulumi.output_type
2088
+ class IdentityProfileResponse(dict):
2089
+ """
2090
+ Identity Profile with details of an MSI.
2091
+ """
2092
+ @staticmethod
2093
+ def __key_warning(key: str):
2094
+ suggest = None
2095
+ if key == "msiClientId":
2096
+ suggest = "msi_client_id"
2097
+ elif key == "msiObjectId":
2098
+ suggest = "msi_object_id"
2099
+ elif key == "msiResourceId":
2100
+ suggest = "msi_resource_id"
2101
+
2102
+ if suggest:
2103
+ pulumi.log.warn(f"Key '{key}' not found in IdentityProfileResponse. Access the value via the '{suggest}' property getter instead.")
2104
+
2105
+ def __getitem__(self, key: str) -> Any:
2106
+ IdentityProfileResponse.__key_warning(key)
2107
+ return super().__getitem__(key)
2108
+
2109
+ def get(self, key: str, default = None) -> Any:
2110
+ IdentityProfileResponse.__key_warning(key)
2111
+ return super().get(key, default)
2112
+
2113
+ def __init__(__self__, *,
2114
+ msi_client_id: str,
2115
+ msi_object_id: str,
2116
+ msi_resource_id: str):
2117
+ """
2118
+ Identity Profile with details of an MSI.
2119
+ :param str msi_client_id: ClientId of the MSI.
2120
+ :param str msi_object_id: ObjectId of the MSI.
2121
+ :param str msi_resource_id: ResourceId of the MSI.
2122
+ """
2123
+ pulumi.set(__self__, "msi_client_id", msi_client_id)
2124
+ pulumi.set(__self__, "msi_object_id", msi_object_id)
2125
+ pulumi.set(__self__, "msi_resource_id", msi_resource_id)
2126
+
2127
+ @property
2128
+ @pulumi.getter(name="msiClientId")
2129
+ def msi_client_id(self) -> str:
2130
+ """
2131
+ ClientId of the MSI.
2132
+ """
2133
+ return pulumi.get(self, "msi_client_id")
2134
+
2135
+ @property
2136
+ @pulumi.getter(name="msiObjectId")
2137
+ def msi_object_id(self) -> str:
2138
+ """
2139
+ ObjectId of the MSI.
2140
+ """
2141
+ return pulumi.get(self, "msi_object_id")
2142
+
2143
+ @property
2144
+ @pulumi.getter(name="msiResourceId")
2145
+ def msi_resource_id(self) -> str:
2146
+ """
2147
+ ResourceId of the MSI.
2148
+ """
2149
+ return pulumi.get(self, "msi_resource_id")
2150
+
2151
+
2152
+ @pulumi.output_type
2153
+ class KafkaConnectivityEndpointsResponse(dict):
2154
+ """
2155
+ Kafka bootstrap server and broker related connectivity endpoints.
2156
+ """
2157
+ @staticmethod
2158
+ def __key_warning(key: str):
2159
+ suggest = None
2160
+ if key == "bootstrapServerEndpoint":
2161
+ suggest = "bootstrap_server_endpoint"
2162
+ elif key == "brokerEndpoints":
2163
+ suggest = "broker_endpoints"
2164
+
2165
+ if suggest:
2166
+ pulumi.log.warn(f"Key '{key}' not found in KafkaConnectivityEndpointsResponse. Access the value via the '{suggest}' property getter instead.")
2167
+
2168
+ def __getitem__(self, key: str) -> Any:
2169
+ KafkaConnectivityEndpointsResponse.__key_warning(key)
2170
+ return super().__getitem__(key)
2171
+
2172
+ def get(self, key: str, default = None) -> Any:
2173
+ KafkaConnectivityEndpointsResponse.__key_warning(key)
2174
+ return super().get(key, default)
2175
+
2176
+ def __init__(__self__, *,
2177
+ bootstrap_server_endpoint: Optional[str] = None,
2178
+ broker_endpoints: Optional[Sequence[str]] = None):
2179
+ """
2180
+ Kafka bootstrap server and broker related connectivity endpoints.
2181
+ :param str bootstrap_server_endpoint: bootstrap server connectivity endpoint.
2182
+ :param Sequence[str] broker_endpoints: Kafka broker endpoint list.
2183
+ """
2184
+ if bootstrap_server_endpoint is not None:
2185
+ pulumi.set(__self__, "bootstrap_server_endpoint", bootstrap_server_endpoint)
2186
+ if broker_endpoints is not None:
2187
+ pulumi.set(__self__, "broker_endpoints", broker_endpoints)
2188
+
2189
+ @property
2190
+ @pulumi.getter(name="bootstrapServerEndpoint")
2191
+ def bootstrap_server_endpoint(self) -> Optional[str]:
2192
+ """
2193
+ bootstrap server connectivity endpoint.
2194
+ """
2195
+ return pulumi.get(self, "bootstrap_server_endpoint")
2196
+
2197
+ @property
2198
+ @pulumi.getter(name="brokerEndpoints")
2199
+ def broker_endpoints(self) -> Optional[Sequence[str]]:
2200
+ """
2201
+ Kafka broker endpoint list.
2202
+ """
2203
+ return pulumi.get(self, "broker_endpoints")
2204
+
2205
+
2206
+ @pulumi.output_type
2207
+ class KafkaProfileResponse(dict):
2208
+ """
2209
+ The Kafka cluster profile.
2210
+ """
2211
+ @staticmethod
2212
+ def __key_warning(key: str):
2213
+ suggest = None
2214
+ if key == "connectivityEndpoints":
2215
+ suggest = "connectivity_endpoints"
2216
+ elif key == "diskStorage":
2217
+ suggest = "disk_storage"
2218
+ elif key == "enableKRaft":
2219
+ suggest = "enable_k_raft"
2220
+ elif key == "enablePublicEndpoints":
2221
+ suggest = "enable_public_endpoints"
2222
+ elif key == "remoteStorageUri":
2223
+ suggest = "remote_storage_uri"
2224
+
2225
+ if suggest:
2226
+ pulumi.log.warn(f"Key '{key}' not found in KafkaProfileResponse. Access the value via the '{suggest}' property getter instead.")
2227
+
2228
+ def __getitem__(self, key: str) -> Any:
2229
+ KafkaProfileResponse.__key_warning(key)
2230
+ return super().__getitem__(key)
2231
+
2232
+ def get(self, key: str, default = None) -> Any:
2233
+ KafkaProfileResponse.__key_warning(key)
2234
+ return super().get(key, default)
2235
+
2236
+ def __init__(__self__, *,
2237
+ connectivity_endpoints: 'outputs.KafkaConnectivityEndpointsResponse',
2238
+ disk_storage: 'outputs.DiskStorageProfileResponse',
2239
+ enable_k_raft: Optional[bool] = None,
2240
+ enable_public_endpoints: Optional[bool] = None,
2241
+ remote_storage_uri: Optional[str] = None):
2242
+ """
2243
+ The Kafka cluster profile.
2244
+ :param 'KafkaConnectivityEndpointsResponse' connectivity_endpoints: Kafka bootstrap server and brokers related connectivity endpoints.
2245
+ :param 'DiskStorageProfileResponse' disk_storage: Kafka disk storage profile.
2246
+ :param bool enable_k_raft: Expose Kafka cluster in KRaft mode.
2247
+ :param bool enable_public_endpoints: Expose worker nodes as public endpoints.
2248
+ :param str remote_storage_uri: Fully qualified path of Azure Storage container used for Tiered Storage.
2249
+ """
2250
+ pulumi.set(__self__, "connectivity_endpoints", connectivity_endpoints)
2251
+ pulumi.set(__self__, "disk_storage", disk_storage)
2252
+ if enable_k_raft is None:
2253
+ enable_k_raft = True
2254
+ if enable_k_raft is not None:
2255
+ pulumi.set(__self__, "enable_k_raft", enable_k_raft)
2256
+ if enable_public_endpoints is None:
2257
+ enable_public_endpoints = False
2258
+ if enable_public_endpoints is not None:
2259
+ pulumi.set(__self__, "enable_public_endpoints", enable_public_endpoints)
2260
+ if remote_storage_uri is not None:
2261
+ pulumi.set(__self__, "remote_storage_uri", remote_storage_uri)
2262
+
2263
+ @property
2264
+ @pulumi.getter(name="connectivityEndpoints")
2265
+ def connectivity_endpoints(self) -> 'outputs.KafkaConnectivityEndpointsResponse':
2266
+ """
2267
+ Kafka bootstrap server and brokers related connectivity endpoints.
2268
+ """
2269
+ return pulumi.get(self, "connectivity_endpoints")
2270
+
2271
+ @property
2272
+ @pulumi.getter(name="diskStorage")
2273
+ def disk_storage(self) -> 'outputs.DiskStorageProfileResponse':
2274
+ """
2275
+ Kafka disk storage profile.
2276
+ """
2277
+ return pulumi.get(self, "disk_storage")
2278
+
2279
+ @property
2280
+ @pulumi.getter(name="enableKRaft")
2281
+ def enable_k_raft(self) -> Optional[bool]:
2282
+ """
2283
+ Expose Kafka cluster in KRaft mode.
2284
+ """
2285
+ return pulumi.get(self, "enable_k_raft")
2286
+
2287
+ @property
2288
+ @pulumi.getter(name="enablePublicEndpoints")
2289
+ def enable_public_endpoints(self) -> Optional[bool]:
2290
+ """
2291
+ Expose worker nodes as public endpoints.
2292
+ """
2293
+ return pulumi.get(self, "enable_public_endpoints")
2294
+
2295
+ @property
2296
+ @pulumi.getter(name="remoteStorageUri")
2297
+ def remote_storage_uri(self) -> Optional[str]:
2298
+ """
2299
+ Fully qualified path of Azure Storage container used for Tiered Storage.
2300
+ """
2301
+ return pulumi.get(self, "remote_storage_uri")
2302
+
2303
+
2304
+ @pulumi.output_type
2305
+ class LoadBasedConfigResponse(dict):
2306
+ """
2307
+ Profile of load based Autoscale.
2308
+ """
2309
+ @staticmethod
2310
+ def __key_warning(key: str):
2311
+ suggest = None
2312
+ if key == "maxNodes":
2313
+ suggest = "max_nodes"
2314
+ elif key == "minNodes":
2315
+ suggest = "min_nodes"
2316
+ elif key == "scalingRules":
2317
+ suggest = "scaling_rules"
2318
+ elif key == "cooldownPeriod":
2319
+ suggest = "cooldown_period"
2320
+ elif key == "pollInterval":
2321
+ suggest = "poll_interval"
2322
+
2323
+ if suggest:
2324
+ pulumi.log.warn(f"Key '{key}' not found in LoadBasedConfigResponse. Access the value via the '{suggest}' property getter instead.")
2325
+
2326
+ def __getitem__(self, key: str) -> Any:
2327
+ LoadBasedConfigResponse.__key_warning(key)
2328
+ return super().__getitem__(key)
2329
+
2330
+ def get(self, key: str, default = None) -> Any:
2331
+ LoadBasedConfigResponse.__key_warning(key)
2332
+ return super().get(key, default)
2333
+
2334
+ def __init__(__self__, *,
2335
+ max_nodes: int,
2336
+ min_nodes: int,
2337
+ scaling_rules: Sequence['outputs.ScalingRuleResponse'],
2338
+ cooldown_period: Optional[int] = None,
2339
+ poll_interval: Optional[int] = None):
2340
+ """
2341
+ Profile of load based Autoscale.
2342
+ :param int max_nodes: User needs to set the maximum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.
2343
+ :param int min_nodes: User needs to set the minimum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.
2344
+ :param Sequence['ScalingRuleResponse'] scaling_rules: The scaling rules.
2345
+ :param int cooldown_period: This is a cool down period, this is a time period in seconds, which determines the amount of time that must elapse between a scaling activity started by a rule and the start of the next scaling activity, regardless of the rule that triggers it. The default value is 300 seconds.
2346
+ :param int poll_interval: User can specify the poll interval, this is the time period (in seconds) after which scaling metrics are polled for triggering a scaling operation.
2347
+ """
2348
+ pulumi.set(__self__, "max_nodes", max_nodes)
2349
+ pulumi.set(__self__, "min_nodes", min_nodes)
2350
+ pulumi.set(__self__, "scaling_rules", scaling_rules)
2351
+ if cooldown_period is not None:
2352
+ pulumi.set(__self__, "cooldown_period", cooldown_period)
2353
+ if poll_interval is not None:
2354
+ pulumi.set(__self__, "poll_interval", poll_interval)
2355
+
2356
+ @property
2357
+ @pulumi.getter(name="maxNodes")
2358
+ def max_nodes(self) -> int:
2359
+ """
2360
+ User needs to set the maximum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.
2361
+ """
2362
+ return pulumi.get(self, "max_nodes")
2363
+
2364
+ @property
2365
+ @pulumi.getter(name="minNodes")
2366
+ def min_nodes(self) -> int:
2367
+ """
2368
+ User needs to set the minimum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.
2369
+ """
2370
+ return pulumi.get(self, "min_nodes")
2371
+
2372
+ @property
2373
+ @pulumi.getter(name="scalingRules")
2374
+ def scaling_rules(self) -> Sequence['outputs.ScalingRuleResponse']:
2375
+ """
2376
+ The scaling rules.
2377
+ """
2378
+ return pulumi.get(self, "scaling_rules")
2379
+
2380
+ @property
2381
+ @pulumi.getter(name="cooldownPeriod")
2382
+ def cooldown_period(self) -> Optional[int]:
2383
+ """
2384
+ This is a cool down period, this is a time period in seconds, which determines the amount of time that must elapse between a scaling activity started by a rule and the start of the next scaling activity, regardless of the rule that triggers it. The default value is 300 seconds.
2385
+ """
2386
+ return pulumi.get(self, "cooldown_period")
2387
+
2388
+ @property
2389
+ @pulumi.getter(name="pollInterval")
2390
+ def poll_interval(self) -> Optional[int]:
2391
+ """
2392
+ User can specify the poll interval, this is the time period (in seconds) after which scaling metrics are polled for triggering a scaling operation.
2393
+ """
2394
+ return pulumi.get(self, "poll_interval")
2395
+
2396
+
2397
+ @pulumi.output_type
2398
+ class ManagedIdentityProfileResponse(dict):
2399
+ """
2400
+ The details of managed identity.
2401
+ """
2402
+ @staticmethod
2403
+ def __key_warning(key: str):
2404
+ suggest = None
2405
+ if key == "identityList":
2406
+ suggest = "identity_list"
2407
+
2408
+ if suggest:
2409
+ pulumi.log.warn(f"Key '{key}' not found in ManagedIdentityProfileResponse. Access the value via the '{suggest}' property getter instead.")
2410
+
2411
+ def __getitem__(self, key: str) -> Any:
2412
+ ManagedIdentityProfileResponse.__key_warning(key)
2413
+ return super().__getitem__(key)
2414
+
2415
+ def get(self, key: str, default = None) -> Any:
2416
+ ManagedIdentityProfileResponse.__key_warning(key)
2417
+ return super().get(key, default)
2418
+
2419
+ def __init__(__self__, *,
2420
+ identity_list: Sequence['outputs.ManagedIdentitySpecResponse']):
2421
+ """
2422
+ The details of managed identity.
2423
+ :param Sequence['ManagedIdentitySpecResponse'] identity_list: The list of managed identity.
2424
+ """
2425
+ pulumi.set(__self__, "identity_list", identity_list)
2426
+
2427
+ @property
2428
+ @pulumi.getter(name="identityList")
2429
+ def identity_list(self) -> Sequence['outputs.ManagedIdentitySpecResponse']:
2430
+ """
2431
+ The list of managed identity.
2432
+ """
2433
+ return pulumi.get(self, "identity_list")
2434
+
2435
+
2436
+ @pulumi.output_type
2437
+ class ManagedIdentitySpecResponse(dict):
2438
+ """
2439
+ The details of a managed identity.
2440
+ """
2441
+ @staticmethod
2442
+ def __key_warning(key: str):
2443
+ suggest = None
2444
+ if key == "clientId":
2445
+ suggest = "client_id"
2446
+ elif key == "objectId":
2447
+ suggest = "object_id"
2448
+ elif key == "resourceId":
2449
+ suggest = "resource_id"
2450
+
2451
+ if suggest:
2452
+ pulumi.log.warn(f"Key '{key}' not found in ManagedIdentitySpecResponse. Access the value via the '{suggest}' property getter instead.")
2453
+
2454
+ def __getitem__(self, key: str) -> Any:
2455
+ ManagedIdentitySpecResponse.__key_warning(key)
2456
+ return super().__getitem__(key)
2457
+
2458
+ def get(self, key: str, default = None) -> Any:
2459
+ ManagedIdentitySpecResponse.__key_warning(key)
2460
+ return super().get(key, default)
2461
+
2462
+ def __init__(__self__, *,
2463
+ client_id: str,
2464
+ object_id: str,
2465
+ resource_id: str,
2466
+ type: str):
2467
+ """
2468
+ The details of a managed identity.
2469
+ :param str client_id: ClientId of the managed identity.
2470
+ :param str object_id: ObjectId of the managed identity.
2471
+ :param str resource_id: ResourceId of the managed identity.
2472
+ :param str type: The type of managed identity.
2473
+ """
2474
+ pulumi.set(__self__, "client_id", client_id)
2475
+ pulumi.set(__self__, "object_id", object_id)
2476
+ pulumi.set(__self__, "resource_id", resource_id)
2477
+ pulumi.set(__self__, "type", type)
2478
+
2479
+ @property
2480
+ @pulumi.getter(name="clientId")
2481
+ def client_id(self) -> str:
2482
+ """
2483
+ ClientId of the managed identity.
2484
+ """
2485
+ return pulumi.get(self, "client_id")
2486
+
2487
+ @property
2488
+ @pulumi.getter(name="objectId")
2489
+ def object_id(self) -> str:
2490
+ """
2491
+ ObjectId of the managed identity.
2492
+ """
2493
+ return pulumi.get(self, "object_id")
2494
+
2495
+ @property
2496
+ @pulumi.getter(name="resourceId")
2497
+ def resource_id(self) -> str:
2498
+ """
2499
+ ResourceId of the managed identity.
2500
+ """
2501
+ return pulumi.get(self, "resource_id")
2502
+
2503
+ @property
2504
+ @pulumi.getter
2505
+ def type(self) -> str:
2506
+ """
2507
+ The type of managed identity.
2508
+ """
2509
+ return pulumi.get(self, "type")
2510
+
2511
+
2512
+ @pulumi.output_type
2513
+ class NodeProfileResponse(dict):
2514
+ """
2515
+ The node profile.
2516
+ """
2517
+ @staticmethod
2518
+ def __key_warning(key: str):
2519
+ suggest = None
2520
+ if key == "vmSize":
2521
+ suggest = "vm_size"
2522
+
2523
+ if suggest:
2524
+ pulumi.log.warn(f"Key '{key}' not found in NodeProfileResponse. Access the value via the '{suggest}' property getter instead.")
2525
+
2526
+ def __getitem__(self, key: str) -> Any:
2527
+ NodeProfileResponse.__key_warning(key)
2528
+ return super().__getitem__(key)
2529
+
2530
+ def get(self, key: str, default = None) -> Any:
2531
+ NodeProfileResponse.__key_warning(key)
2532
+ return super().get(key, default)
2533
+
2534
+ def __init__(__self__, *,
2535
+ count: int,
2536
+ type: str,
2537
+ vm_size: str):
2538
+ """
2539
+ The node profile.
2540
+ :param int count: The number of virtual machines.
2541
+ :param str type: The node type.
2542
+ :param str vm_size: The virtual machine SKU.
2543
+ """
2544
+ pulumi.set(__self__, "count", count)
2545
+ pulumi.set(__self__, "type", type)
2546
+ pulumi.set(__self__, "vm_size", vm_size)
2547
+
2548
+ @property
2549
+ @pulumi.getter
2550
+ def count(self) -> int:
2551
+ """
2552
+ The number of virtual machines.
2553
+ """
2554
+ return pulumi.get(self, "count")
2555
+
2556
+ @property
2557
+ @pulumi.getter
2558
+ def type(self) -> str:
2559
+ """
2560
+ The node type.
2561
+ """
2562
+ return pulumi.get(self, "type")
2563
+
2564
+ @property
2565
+ @pulumi.getter(name="vmSize")
2566
+ def vm_size(self) -> str:
2567
+ """
2568
+ The virtual machine SKU.
2569
+ """
2570
+ return pulumi.get(self, "vm_size")
2571
+
2572
+
2573
+ @pulumi.output_type
2574
+ class RangerAdminSpecResponse(dict):
2575
+ """
2576
+ Specification for the Ranger Admin service.
2577
+ """
2578
+ def __init__(__self__, *,
2579
+ admins: Sequence[str],
2580
+ database: 'outputs.RangerAdminSpecResponseDatabase'):
2581
+ """
2582
+ Specification for the Ranger Admin service.
2583
+ :param Sequence[str] admins: List of usernames that should be marked as ranger admins. These usernames should match the user principal name (UPN) of the respective AAD users.
2584
+ """
2585
+ pulumi.set(__self__, "admins", admins)
2586
+ pulumi.set(__self__, "database", database)
2587
+
2588
+ @property
2589
+ @pulumi.getter
2590
+ def admins(self) -> Sequence[str]:
2591
+ """
2592
+ List of usernames that should be marked as ranger admins. These usernames should match the user principal name (UPN) of the respective AAD users.
2593
+ """
2594
+ return pulumi.get(self, "admins")
2595
+
2596
+ @property
2597
+ @pulumi.getter
2598
+ def database(self) -> 'outputs.RangerAdminSpecResponseDatabase':
2599
+ return pulumi.get(self, "database")
2600
+
2601
+
2602
+ @pulumi.output_type
2603
+ class RangerAdminSpecResponseDatabase(dict):
2604
+ @staticmethod
2605
+ def __key_warning(key: str):
2606
+ suggest = None
2607
+ if key == "passwordSecretRef":
2608
+ suggest = "password_secret_ref"
2609
+
2610
+ if suggest:
2611
+ pulumi.log.warn(f"Key '{key}' not found in RangerAdminSpecResponseDatabase. Access the value via the '{suggest}' property getter instead.")
2612
+
2613
+ def __getitem__(self, key: str) -> Any:
2614
+ RangerAdminSpecResponseDatabase.__key_warning(key)
2615
+ return super().__getitem__(key)
2616
+
2617
+ def get(self, key: str, default = None) -> Any:
2618
+ RangerAdminSpecResponseDatabase.__key_warning(key)
2619
+ return super().get(key, default)
2620
+
2621
+ def __init__(__self__, *,
2622
+ host: str,
2623
+ name: str,
2624
+ password_secret_ref: Optional[str] = None,
2625
+ username: Optional[str] = None):
2626
+ """
2627
+ :param str host: The database URL
2628
+ :param str name: The database name
2629
+ :param str password_secret_ref: Reference for the database password
2630
+ :param str username: The name of the database user
2631
+ """
2632
+ pulumi.set(__self__, "host", host)
2633
+ pulumi.set(__self__, "name", name)
2634
+ if password_secret_ref is not None:
2635
+ pulumi.set(__self__, "password_secret_ref", password_secret_ref)
2636
+ if username is not None:
2637
+ pulumi.set(__self__, "username", username)
2638
+
2639
+ @property
2640
+ @pulumi.getter
2641
+ def host(self) -> str:
2642
+ """
2643
+ The database URL
2644
+ """
2645
+ return pulumi.get(self, "host")
2646
+
2647
+ @property
2648
+ @pulumi.getter
2649
+ def name(self) -> str:
2650
+ """
2651
+ The database name
2652
+ """
2653
+ return pulumi.get(self, "name")
2654
+
2655
+ @property
2656
+ @pulumi.getter(name="passwordSecretRef")
2657
+ def password_secret_ref(self) -> Optional[str]:
2658
+ """
2659
+ Reference for the database password
2660
+ """
2661
+ return pulumi.get(self, "password_secret_ref")
2662
+
2663
+ @property
2664
+ @pulumi.getter
2665
+ def username(self) -> Optional[str]:
2666
+ """
2667
+ The name of the database user
2668
+ """
2669
+ return pulumi.get(self, "username")
2670
+
2671
+
2672
+ @pulumi.output_type
2673
+ class RangerAuditSpecResponse(dict):
2674
+ """
2675
+ Properties required to describe audit log storage.
2676
+ """
2677
+ @staticmethod
2678
+ def __key_warning(key: str):
2679
+ suggest = None
2680
+ if key == "storageAccount":
2681
+ suggest = "storage_account"
2682
+
2683
+ if suggest:
2684
+ pulumi.log.warn(f"Key '{key}' not found in RangerAuditSpecResponse. Access the value via the '{suggest}' property getter instead.")
2685
+
2686
+ def __getitem__(self, key: str) -> Any:
2687
+ RangerAuditSpecResponse.__key_warning(key)
2688
+ return super().__getitem__(key)
2689
+
2690
+ def get(self, key: str, default = None) -> Any:
2691
+ RangerAuditSpecResponse.__key_warning(key)
2692
+ return super().get(key, default)
2693
+
2694
+ def __init__(__self__, *,
2695
+ storage_account: Optional[str] = None):
2696
+ """
2697
+ Properties required to describe audit log storage.
2698
+ :param str storage_account: Azure storage location of the blobs. MSI should have read/write access to this Storage account.
2699
+ """
2700
+ if storage_account is not None:
2701
+ pulumi.set(__self__, "storage_account", storage_account)
2702
+
2703
+ @property
2704
+ @pulumi.getter(name="storageAccount")
2705
+ def storage_account(self) -> Optional[str]:
2706
+ """
2707
+ Azure storage location of the blobs. MSI should have read/write access to this Storage account.
2708
+ """
2709
+ return pulumi.get(self, "storage_account")
2710
+
2711
+
2712
+ @pulumi.output_type
2713
+ class RangerProfileResponse(dict):
2714
+ """
2715
+ The ranger cluster profile.
2716
+ """
2717
+ @staticmethod
2718
+ def __key_warning(key: str):
2719
+ suggest = None
2720
+ if key == "rangerAdmin":
2721
+ suggest = "ranger_admin"
2722
+ elif key == "rangerUsersync":
2723
+ suggest = "ranger_usersync"
2724
+ elif key == "rangerAudit":
2725
+ suggest = "ranger_audit"
2726
+
2727
+ if suggest:
2728
+ pulumi.log.warn(f"Key '{key}' not found in RangerProfileResponse. Access the value via the '{suggest}' property getter instead.")
2729
+
2730
+ def __getitem__(self, key: str) -> Any:
2731
+ RangerProfileResponse.__key_warning(key)
2732
+ return super().__getitem__(key)
2733
+
2734
+ def get(self, key: str, default = None) -> Any:
2735
+ RangerProfileResponse.__key_warning(key)
2736
+ return super().get(key, default)
2737
+
2738
+ def __init__(__self__, *,
2739
+ ranger_admin: 'outputs.RangerAdminSpecResponse',
2740
+ ranger_usersync: 'outputs.RangerUsersyncSpecResponse',
2741
+ ranger_audit: Optional['outputs.RangerAuditSpecResponse'] = None):
2742
+ """
2743
+ The ranger cluster profile.
2744
+ :param 'RangerAdminSpecResponse' ranger_admin: Specification for the Ranger Admin service.
2745
+ :param 'RangerUsersyncSpecResponse' ranger_usersync: Specification for the Ranger Usersync service
2746
+ :param 'RangerAuditSpecResponse' ranger_audit: Properties required to describe audit log storage.
2747
+ """
2748
+ pulumi.set(__self__, "ranger_admin", ranger_admin)
2749
+ pulumi.set(__self__, "ranger_usersync", ranger_usersync)
2750
+ if ranger_audit is not None:
2751
+ pulumi.set(__self__, "ranger_audit", ranger_audit)
2752
+
2753
+ @property
2754
+ @pulumi.getter(name="rangerAdmin")
2755
+ def ranger_admin(self) -> 'outputs.RangerAdminSpecResponse':
2756
+ """
2757
+ Specification for the Ranger Admin service.
2758
+ """
2759
+ return pulumi.get(self, "ranger_admin")
2760
+
2761
+ @property
2762
+ @pulumi.getter(name="rangerUsersync")
2763
+ def ranger_usersync(self) -> 'outputs.RangerUsersyncSpecResponse':
2764
+ """
2765
+ Specification for the Ranger Usersync service
2766
+ """
2767
+ return pulumi.get(self, "ranger_usersync")
2768
+
2769
+ @property
2770
+ @pulumi.getter(name="rangerAudit")
2771
+ def ranger_audit(self) -> Optional['outputs.RangerAuditSpecResponse']:
2772
+ """
2773
+ Properties required to describe audit log storage.
2774
+ """
2775
+ return pulumi.get(self, "ranger_audit")
2776
+
2777
+
2778
+ @pulumi.output_type
2779
+ class RangerUsersyncSpecResponse(dict):
2780
+ """
2781
+ Specification for the Ranger Usersync service
2782
+ """
2783
+ @staticmethod
2784
+ def __key_warning(key: str):
2785
+ suggest = None
2786
+ if key == "userMappingLocation":
2787
+ suggest = "user_mapping_location"
2788
+
2789
+ if suggest:
2790
+ pulumi.log.warn(f"Key '{key}' not found in RangerUsersyncSpecResponse. Access the value via the '{suggest}' property getter instead.")
2791
+
2792
+ def __getitem__(self, key: str) -> Any:
2793
+ RangerUsersyncSpecResponse.__key_warning(key)
2794
+ return super().__getitem__(key)
2795
+
2796
+ def get(self, key: str, default = None) -> Any:
2797
+ RangerUsersyncSpecResponse.__key_warning(key)
2798
+ return super().get(key, default)
2799
+
2800
+ def __init__(__self__, *,
2801
+ enabled: Optional[bool] = None,
2802
+ groups: Optional[Sequence[str]] = None,
2803
+ mode: Optional[str] = None,
2804
+ user_mapping_location: Optional[str] = None,
2805
+ users: Optional[Sequence[str]] = None):
2806
+ """
2807
+ Specification for the Ranger Usersync service
2808
+ :param bool enabled: Denotes whether usersync service should be enabled
2809
+ :param Sequence[str] groups: List of groups that should be synced. These group names should match the object id of the respective AAD groups.
2810
+ :param str mode: User & groups can be synced automatically or via a static list that's refreshed.
2811
+ :param str user_mapping_location: Azure storage location of a mapping file that lists user & group associations.
2812
+ :param Sequence[str] users: List of user names that should be synced. These usernames should match the User principal name of the respective AAD users.
2813
+ """
2814
+ if enabled is None:
2815
+ enabled = True
2816
+ if enabled is not None:
2817
+ pulumi.set(__self__, "enabled", enabled)
2818
+ if groups is not None:
2819
+ pulumi.set(__self__, "groups", groups)
2820
+ if mode is None:
2821
+ mode = 'automatic'
2822
+ if mode is not None:
2823
+ pulumi.set(__self__, "mode", mode)
2824
+ if user_mapping_location is not None:
2825
+ pulumi.set(__self__, "user_mapping_location", user_mapping_location)
2826
+ if users is not None:
2827
+ pulumi.set(__self__, "users", users)
2828
+
2829
+ @property
2830
+ @pulumi.getter
2831
+ def enabled(self) -> Optional[bool]:
2832
+ """
2833
+ Denotes whether usersync service should be enabled
2834
+ """
2835
+ return pulumi.get(self, "enabled")
2836
+
2837
+ @property
2838
+ @pulumi.getter
2839
+ def groups(self) -> Optional[Sequence[str]]:
2840
+ """
2841
+ List of groups that should be synced. These group names should match the object id of the respective AAD groups.
2842
+ """
2843
+ return pulumi.get(self, "groups")
2844
+
2845
+ @property
2846
+ @pulumi.getter
2847
+ def mode(self) -> Optional[str]:
2848
+ """
2849
+ User & groups can be synced automatically or via a static list that's refreshed.
2850
+ """
2851
+ return pulumi.get(self, "mode")
2852
+
2853
+ @property
2854
+ @pulumi.getter(name="userMappingLocation")
2855
+ def user_mapping_location(self) -> Optional[str]:
2856
+ """
2857
+ Azure storage location of a mapping file that lists user & group associations.
2858
+ """
2859
+ return pulumi.get(self, "user_mapping_location")
2860
+
2861
+ @property
2862
+ @pulumi.getter
2863
+ def users(self) -> Optional[Sequence[str]]:
2864
+ """
2865
+ List of user names that should be synced. These usernames should match the User principal name of the respective AAD users.
2866
+ """
2867
+ return pulumi.get(self, "users")
2868
+
2869
+
2870
+ @pulumi.output_type
2871
+ class ScalingRuleResponse(dict):
2872
+ """
2873
+ The scaling rule.
2874
+ """
2875
+ @staticmethod
2876
+ def __key_warning(key: str):
2877
+ suggest = None
2878
+ if key == "actionType":
2879
+ suggest = "action_type"
2880
+ elif key == "comparisonRule":
2881
+ suggest = "comparison_rule"
2882
+ elif key == "evaluationCount":
2883
+ suggest = "evaluation_count"
2884
+ elif key == "scalingMetric":
2885
+ suggest = "scaling_metric"
2886
+
2887
+ if suggest:
2888
+ pulumi.log.warn(f"Key '{key}' not found in ScalingRuleResponse. Access the value via the '{suggest}' property getter instead.")
2889
+
2890
+ def __getitem__(self, key: str) -> Any:
2891
+ ScalingRuleResponse.__key_warning(key)
2892
+ return super().__getitem__(key)
2893
+
2894
+ def get(self, key: str, default = None) -> Any:
2895
+ ScalingRuleResponse.__key_warning(key)
2896
+ return super().get(key, default)
2897
+
2898
+ def __init__(__self__, *,
2899
+ action_type: str,
2900
+ comparison_rule: 'outputs.ComparisonRuleResponse',
2901
+ evaluation_count: int,
2902
+ scaling_metric: str):
2903
+ """
2904
+ The scaling rule.
2905
+ :param str action_type: The action type.
2906
+ :param 'ComparisonRuleResponse' comparison_rule: The comparison rule.
2907
+ :param int evaluation_count: This is an evaluation count for a scaling condition, the number of times a trigger condition should be successful, before scaling activity is triggered.
2908
+ :param str scaling_metric: Metrics name for individual workloads. For example: cpu
2909
+ """
2910
+ pulumi.set(__self__, "action_type", action_type)
2911
+ pulumi.set(__self__, "comparison_rule", comparison_rule)
2912
+ pulumi.set(__self__, "evaluation_count", evaluation_count)
2913
+ pulumi.set(__self__, "scaling_metric", scaling_metric)
2914
+
2915
+ @property
2916
+ @pulumi.getter(name="actionType")
2917
+ def action_type(self) -> str:
2918
+ """
2919
+ The action type.
2920
+ """
2921
+ return pulumi.get(self, "action_type")
2922
+
2923
+ @property
2924
+ @pulumi.getter(name="comparisonRule")
2925
+ def comparison_rule(self) -> 'outputs.ComparisonRuleResponse':
2926
+ """
2927
+ The comparison rule.
2928
+ """
2929
+ return pulumi.get(self, "comparison_rule")
2930
+
2931
+ @property
2932
+ @pulumi.getter(name="evaluationCount")
2933
+ def evaluation_count(self) -> int:
2934
+ """
2935
+ This is an evaluation count for a scaling condition, the number of times a trigger condition should be successful, before scaling activity is triggered.
2936
+ """
2937
+ return pulumi.get(self, "evaluation_count")
2938
+
2939
+ @property
2940
+ @pulumi.getter(name="scalingMetric")
2941
+ def scaling_metric(self) -> str:
2942
+ """
2943
+ Metrics name for individual workloads. For example: cpu
2944
+ """
2945
+ return pulumi.get(self, "scaling_metric")
2946
+
2947
+
2948
+ @pulumi.output_type
2949
+ class ScheduleBasedConfigResponse(dict):
2950
+ """
2951
+ Profile of schedule based Autoscale.
2952
+ """
2953
+ @staticmethod
2954
+ def __key_warning(key: str):
2955
+ suggest = None
2956
+ if key == "defaultCount":
2957
+ suggest = "default_count"
2958
+ elif key == "timeZone":
2959
+ suggest = "time_zone"
2960
+
2961
+ if suggest:
2962
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleBasedConfigResponse. Access the value via the '{suggest}' property getter instead.")
2963
+
2964
+ def __getitem__(self, key: str) -> Any:
2965
+ ScheduleBasedConfigResponse.__key_warning(key)
2966
+ return super().__getitem__(key)
2967
+
2968
+ def get(self, key: str, default = None) -> Any:
2969
+ ScheduleBasedConfigResponse.__key_warning(key)
2970
+ return super().get(key, default)
2971
+
2972
+ def __init__(__self__, *,
2973
+ default_count: int,
2974
+ schedules: Sequence['outputs.ScheduleResponse'],
2975
+ time_zone: str):
2976
+ """
2977
+ Profile of schedule based Autoscale.
2978
+ :param int default_count: Setting default node count of current schedule configuration. Default node count specifies the number of nodes which are default when an specified scaling operation is executed (scale up/scale down)
2979
+ :param Sequence['ScheduleResponse'] schedules: This specifies the schedules where scheduled based Autoscale to be enabled, the user has a choice to set multiple rules within the schedule across days and times (start/end).
2980
+ :param str time_zone: User has to specify the timezone on which the schedule has to be set for schedule based autoscale configuration.
2981
+ """
2982
+ pulumi.set(__self__, "default_count", default_count)
2983
+ pulumi.set(__self__, "schedules", schedules)
2984
+ pulumi.set(__self__, "time_zone", time_zone)
2985
+
2986
+ @property
2987
+ @pulumi.getter(name="defaultCount")
2988
+ def default_count(self) -> int:
2989
+ """
2990
+ Setting default node count of current schedule configuration. Default node count specifies the number of nodes which are default when an specified scaling operation is executed (scale up/scale down)
2991
+ """
2992
+ return pulumi.get(self, "default_count")
2993
+
2994
+ @property
2995
+ @pulumi.getter
2996
+ def schedules(self) -> Sequence['outputs.ScheduleResponse']:
2997
+ """
2998
+ This specifies the schedules where scheduled based Autoscale to be enabled, the user has a choice to set multiple rules within the schedule across days and times (start/end).
2999
+ """
3000
+ return pulumi.get(self, "schedules")
3001
+
3002
+ @property
3003
+ @pulumi.getter(name="timeZone")
3004
+ def time_zone(self) -> str:
3005
+ """
3006
+ User has to specify the timezone on which the schedule has to be set for schedule based autoscale configuration.
3007
+ """
3008
+ return pulumi.get(self, "time_zone")
3009
+
3010
+
3011
+ @pulumi.output_type
3012
+ class ScheduleResponse(dict):
3013
+ """
3014
+ Schedule definition.
3015
+ """
3016
+ @staticmethod
3017
+ def __key_warning(key: str):
3018
+ suggest = None
3019
+ if key == "endTime":
3020
+ suggest = "end_time"
3021
+ elif key == "startTime":
3022
+ suggest = "start_time"
3023
+
3024
+ if suggest:
3025
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleResponse. Access the value via the '{suggest}' property getter instead.")
3026
+
3027
+ def __getitem__(self, key: str) -> Any:
3028
+ ScheduleResponse.__key_warning(key)
3029
+ return super().__getitem__(key)
3030
+
3031
+ def get(self, key: str, default = None) -> Any:
3032
+ ScheduleResponse.__key_warning(key)
3033
+ return super().get(key, default)
3034
+
3035
+ def __init__(__self__, *,
3036
+ count: int,
3037
+ days: Sequence[str],
3038
+ end_time: str,
3039
+ start_time: str):
3040
+ """
3041
+ Schedule definition.
3042
+ :param int count: User has to set the node count anticipated at end of the scaling operation of the set current schedule configuration, format is integer.
3043
+ :param Sequence[str] days: User has to set the days where schedule has to be set for autoscale operation.
3044
+ :param str end_time: User has to set the end time of current schedule configuration, format like 10:30 (HH:MM).
3045
+ :param str start_time: User has to set the start time of current schedule configuration, format like 10:30 (HH:MM).
3046
+ """
3047
+ pulumi.set(__self__, "count", count)
3048
+ pulumi.set(__self__, "days", days)
3049
+ pulumi.set(__self__, "end_time", end_time)
3050
+ pulumi.set(__self__, "start_time", start_time)
3051
+
3052
+ @property
3053
+ @pulumi.getter
3054
+ def count(self) -> int:
3055
+ """
3056
+ User has to set the node count anticipated at end of the scaling operation of the set current schedule configuration, format is integer.
3057
+ """
3058
+ return pulumi.get(self, "count")
3059
+
3060
+ @property
3061
+ @pulumi.getter
3062
+ def days(self) -> Sequence[str]:
3063
+ """
3064
+ User has to set the days where schedule has to be set for autoscale operation.
3065
+ """
3066
+ return pulumi.get(self, "days")
3067
+
3068
+ @property
3069
+ @pulumi.getter(name="endTime")
3070
+ def end_time(self) -> str:
3071
+ """
3072
+ User has to set the end time of current schedule configuration, format like 10:30 (HH:MM).
3073
+ """
3074
+ return pulumi.get(self, "end_time")
3075
+
3076
+ @property
3077
+ @pulumi.getter(name="startTime")
3078
+ def start_time(self) -> str:
3079
+ """
3080
+ User has to set the start time of current schedule configuration, format like 10:30 (HH:MM).
3081
+ """
3082
+ return pulumi.get(self, "start_time")
3083
+
3084
+
3085
+ @pulumi.output_type
3086
+ class ScriptActionProfileResponse(dict):
3087
+ """
3088
+ The script action profile.
3089
+ """
3090
+ @staticmethod
3091
+ def __key_warning(key: str):
3092
+ suggest = None
3093
+ if key == "shouldPersist":
3094
+ suggest = "should_persist"
3095
+ elif key == "timeoutInMinutes":
3096
+ suggest = "timeout_in_minutes"
3097
+
3098
+ if suggest:
3099
+ pulumi.log.warn(f"Key '{key}' not found in ScriptActionProfileResponse. Access the value via the '{suggest}' property getter instead.")
3100
+
3101
+ def __getitem__(self, key: str) -> Any:
3102
+ ScriptActionProfileResponse.__key_warning(key)
3103
+ return super().__getitem__(key)
3104
+
3105
+ def get(self, key: str, default = None) -> Any:
3106
+ ScriptActionProfileResponse.__key_warning(key)
3107
+ return super().get(key, default)
3108
+
3109
+ def __init__(__self__, *,
3110
+ name: str,
3111
+ services: Sequence[str],
3112
+ type: str,
3113
+ url: str,
3114
+ parameters: Optional[str] = None,
3115
+ should_persist: Optional[bool] = None,
3116
+ timeout_in_minutes: Optional[int] = None):
3117
+ """
3118
+ The script action profile.
3119
+ :param str name: Script name.
3120
+ :param Sequence[str] services: List of services to apply the script action.
3121
+ :param str type: Type of the script action. Supported type is bash scripts.
3122
+ :param str url: Url of the script file.
3123
+ :param str parameters: Additional parameters for the script action. It should be space-separated list of arguments required for script execution.
3124
+ :param bool should_persist: Specify if the script should persist on the cluster.
3125
+ :param int timeout_in_minutes: Timeout duration for the script action in minutes.
3126
+ """
3127
+ pulumi.set(__self__, "name", name)
3128
+ pulumi.set(__self__, "services", services)
3129
+ pulumi.set(__self__, "type", type)
3130
+ pulumi.set(__self__, "url", url)
3131
+ if parameters is not None:
3132
+ pulumi.set(__self__, "parameters", parameters)
3133
+ if should_persist is None:
3134
+ should_persist = True
3135
+ if should_persist is not None:
3136
+ pulumi.set(__self__, "should_persist", should_persist)
3137
+ if timeout_in_minutes is not None:
3138
+ pulumi.set(__self__, "timeout_in_minutes", timeout_in_minutes)
3139
+
3140
+ @property
3141
+ @pulumi.getter
3142
+ def name(self) -> str:
3143
+ """
3144
+ Script name.
3145
+ """
3146
+ return pulumi.get(self, "name")
3147
+
3148
+ @property
3149
+ @pulumi.getter
3150
+ def services(self) -> Sequence[str]:
3151
+ """
3152
+ List of services to apply the script action.
3153
+ """
3154
+ return pulumi.get(self, "services")
3155
+
3156
+ @property
3157
+ @pulumi.getter
3158
+ def type(self) -> str:
3159
+ """
3160
+ Type of the script action. Supported type is bash scripts.
3161
+ """
3162
+ return pulumi.get(self, "type")
3163
+
3164
+ @property
3165
+ @pulumi.getter
3166
+ def url(self) -> str:
3167
+ """
3168
+ Url of the script file.
3169
+ """
3170
+ return pulumi.get(self, "url")
3171
+
3172
+ @property
3173
+ @pulumi.getter
3174
+ def parameters(self) -> Optional[str]:
3175
+ """
3176
+ Additional parameters for the script action. It should be space-separated list of arguments required for script execution.
3177
+ """
3178
+ return pulumi.get(self, "parameters")
3179
+
3180
+ @property
3181
+ @pulumi.getter(name="shouldPersist")
3182
+ def should_persist(self) -> Optional[bool]:
3183
+ """
3184
+ Specify if the script should persist on the cluster.
3185
+ """
3186
+ return pulumi.get(self, "should_persist")
3187
+
3188
+ @property
3189
+ @pulumi.getter(name="timeoutInMinutes")
3190
+ def timeout_in_minutes(self) -> Optional[int]:
3191
+ """
3192
+ Timeout duration for the script action in minutes.
3193
+ """
3194
+ return pulumi.get(self, "timeout_in_minutes")
3195
+
3196
+
3197
+ @pulumi.output_type
3198
+ class SecretReferenceResponse(dict):
3199
+ """
3200
+ Secret reference and corresponding properties of a key vault secret.
3201
+ """
3202
+ @staticmethod
3203
+ def __key_warning(key: str):
3204
+ suggest = None
3205
+ if key == "keyVaultObjectName":
3206
+ suggest = "key_vault_object_name"
3207
+ elif key == "referenceName":
3208
+ suggest = "reference_name"
3209
+
3210
+ if suggest:
3211
+ pulumi.log.warn(f"Key '{key}' not found in SecretReferenceResponse. Access the value via the '{suggest}' property getter instead.")
3212
+
3213
+ def __getitem__(self, key: str) -> Any:
3214
+ SecretReferenceResponse.__key_warning(key)
3215
+ return super().__getitem__(key)
3216
+
3217
+ def get(self, key: str, default = None) -> Any:
3218
+ SecretReferenceResponse.__key_warning(key)
3219
+ return super().get(key, default)
3220
+
3221
+ def __init__(__self__, *,
3222
+ key_vault_object_name: str,
3223
+ reference_name: str,
3224
+ type: str,
3225
+ version: Optional[str] = None):
3226
+ """
3227
+ Secret reference and corresponding properties of a key vault secret.
3228
+ :param str key_vault_object_name: Object identifier name of the secret in key vault.
3229
+ :param str reference_name: Reference name of the secret to be used in service configs.
3230
+ :param str type: Type of key vault object: secret, key or certificate.
3231
+ :param str version: Version of the secret in key vault.
3232
+ """
3233
+ pulumi.set(__self__, "key_vault_object_name", key_vault_object_name)
3234
+ pulumi.set(__self__, "reference_name", reference_name)
3235
+ pulumi.set(__self__, "type", type)
3236
+ if version is not None:
3237
+ pulumi.set(__self__, "version", version)
3238
+
3239
+ @property
3240
+ @pulumi.getter(name="keyVaultObjectName")
3241
+ def key_vault_object_name(self) -> str:
3242
+ """
3243
+ Object identifier name of the secret in key vault.
3244
+ """
3245
+ return pulumi.get(self, "key_vault_object_name")
3246
+
3247
+ @property
3248
+ @pulumi.getter(name="referenceName")
3249
+ def reference_name(self) -> str:
3250
+ """
3251
+ Reference name of the secret to be used in service configs.
3252
+ """
3253
+ return pulumi.get(self, "reference_name")
3254
+
3255
+ @property
3256
+ @pulumi.getter
3257
+ def type(self) -> str:
3258
+ """
3259
+ Type of key vault object: secret, key or certificate.
3260
+ """
3261
+ return pulumi.get(self, "type")
3262
+
3263
+ @property
3264
+ @pulumi.getter
3265
+ def version(self) -> Optional[str]:
3266
+ """
3267
+ Version of the secret in key vault.
3268
+ """
3269
+ return pulumi.get(self, "version")
3270
+
3271
+
3272
+ @pulumi.output_type
3273
+ class SecretsProfileResponse(dict):
3274
+ """
3275
+ The cluster secret profile.
3276
+ """
3277
+ @staticmethod
3278
+ def __key_warning(key: str):
3279
+ suggest = None
3280
+ if key == "keyVaultResourceId":
3281
+ suggest = "key_vault_resource_id"
3282
+
3283
+ if suggest:
3284
+ pulumi.log.warn(f"Key '{key}' not found in SecretsProfileResponse. Access the value via the '{suggest}' property getter instead.")
3285
+
3286
+ def __getitem__(self, key: str) -> Any:
3287
+ SecretsProfileResponse.__key_warning(key)
3288
+ return super().__getitem__(key)
3289
+
3290
+ def get(self, key: str, default = None) -> Any:
3291
+ SecretsProfileResponse.__key_warning(key)
3292
+ return super().get(key, default)
3293
+
3294
+ def __init__(__self__, *,
3295
+ key_vault_resource_id: str,
3296
+ secrets: Optional[Sequence['outputs.SecretReferenceResponse']] = None):
3297
+ """
3298
+ The cluster secret profile.
3299
+ :param str key_vault_resource_id: Name of the user Key Vault where all the cluster specific user secrets are stored.
3300
+ :param Sequence['SecretReferenceResponse'] secrets: Properties of Key Vault secret.
3301
+ """
3302
+ pulumi.set(__self__, "key_vault_resource_id", key_vault_resource_id)
3303
+ if secrets is not None:
3304
+ pulumi.set(__self__, "secrets", secrets)
3305
+
3306
+ @property
3307
+ @pulumi.getter(name="keyVaultResourceId")
3308
+ def key_vault_resource_id(self) -> str:
3309
+ """
3310
+ Name of the user Key Vault where all the cluster specific user secrets are stored.
3311
+ """
3312
+ return pulumi.get(self, "key_vault_resource_id")
3313
+
3314
+ @property
3315
+ @pulumi.getter
3316
+ def secrets(self) -> Optional[Sequence['outputs.SecretReferenceResponse']]:
3317
+ """
3318
+ Properties of Key Vault secret.
3319
+ """
3320
+ return pulumi.get(self, "secrets")
3321
+
3322
+
3323
+ @pulumi.output_type
3324
+ class SparkMetastoreSpecResponse(dict):
3325
+ """
3326
+ The metastore specification for Spark cluster.
3327
+ """
3328
+ @staticmethod
3329
+ def __key_warning(key: str):
3330
+ suggest = None
3331
+ if key == "dbName":
3332
+ suggest = "db_name"
3333
+ elif key == "dbServerHost":
3334
+ suggest = "db_server_host"
3335
+ elif key == "dbConnectionAuthenticationMode":
3336
+ suggest = "db_connection_authentication_mode"
3337
+ elif key == "dbPasswordSecretName":
3338
+ suggest = "db_password_secret_name"
3339
+ elif key == "dbUserName":
3340
+ suggest = "db_user_name"
3341
+ elif key == "keyVaultId":
3342
+ suggest = "key_vault_id"
3343
+ elif key == "thriftUrl":
3344
+ suggest = "thrift_url"
3345
+
3346
+ if suggest:
3347
+ pulumi.log.warn(f"Key '{key}' not found in SparkMetastoreSpecResponse. Access the value via the '{suggest}' property getter instead.")
3348
+
3349
+ def __getitem__(self, key: str) -> Any:
3350
+ SparkMetastoreSpecResponse.__key_warning(key)
3351
+ return super().__getitem__(key)
3352
+
3353
+ def get(self, key: str, default = None) -> Any:
3354
+ SparkMetastoreSpecResponse.__key_warning(key)
3355
+ return super().get(key, default)
3356
+
3357
+ def __init__(__self__, *,
3358
+ db_name: str,
3359
+ db_server_host: str,
3360
+ db_connection_authentication_mode: Optional[str] = None,
3361
+ db_password_secret_name: Optional[str] = None,
3362
+ db_user_name: Optional[str] = None,
3363
+ key_vault_id: Optional[str] = None,
3364
+ thrift_url: Optional[str] = None):
3365
+ """
3366
+ The metastore specification for Spark cluster.
3367
+ :param str db_name: The database name.
3368
+ :param str db_server_host: The database server host.
3369
+ :param str db_connection_authentication_mode: The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
3370
+ :param str db_password_secret_name: The secret name which contains the database user password.
3371
+ :param str db_user_name: The database user name.
3372
+ :param str key_vault_id: The key vault resource id.
3373
+ :param str thrift_url: The thrift url.
3374
+ """
3375
+ pulumi.set(__self__, "db_name", db_name)
3376
+ pulumi.set(__self__, "db_server_host", db_server_host)
3377
+ if db_connection_authentication_mode is None:
3378
+ db_connection_authentication_mode = 'IdentityAuth'
3379
+ if db_connection_authentication_mode is not None:
3380
+ pulumi.set(__self__, "db_connection_authentication_mode", db_connection_authentication_mode)
3381
+ if db_password_secret_name is not None:
3382
+ pulumi.set(__self__, "db_password_secret_name", db_password_secret_name)
3383
+ if db_user_name is not None:
3384
+ pulumi.set(__self__, "db_user_name", db_user_name)
3385
+ if key_vault_id is not None:
3386
+ pulumi.set(__self__, "key_vault_id", key_vault_id)
3387
+ if thrift_url is not None:
3388
+ pulumi.set(__self__, "thrift_url", thrift_url)
3389
+
3390
+ @property
3391
+ @pulumi.getter(name="dbName")
3392
+ def db_name(self) -> str:
3393
+ """
3394
+ The database name.
3395
+ """
3396
+ return pulumi.get(self, "db_name")
3397
+
3398
+ @property
3399
+ @pulumi.getter(name="dbServerHost")
3400
+ def db_server_host(self) -> str:
3401
+ """
3402
+ The database server host.
3403
+ """
3404
+ return pulumi.get(self, "db_server_host")
3405
+
3406
+ @property
3407
+ @pulumi.getter(name="dbConnectionAuthenticationMode")
3408
+ def db_connection_authentication_mode(self) -> Optional[str]:
3409
+ """
3410
+ The authentication mode to connect to your Hive metastore database. More details: https://learn.microsoft.com/en-us/azure/azure-sql/database/logins-create-manage?view=azuresql#authentication-and-authorization
3411
+ """
3412
+ return pulumi.get(self, "db_connection_authentication_mode")
3413
+
3414
+ @property
3415
+ @pulumi.getter(name="dbPasswordSecretName")
3416
+ def db_password_secret_name(self) -> Optional[str]:
3417
+ """
3418
+ The secret name which contains the database user password.
3419
+ """
3420
+ return pulumi.get(self, "db_password_secret_name")
3421
+
3422
+ @property
3423
+ @pulumi.getter(name="dbUserName")
3424
+ def db_user_name(self) -> Optional[str]:
3425
+ """
3426
+ The database user name.
3427
+ """
3428
+ return pulumi.get(self, "db_user_name")
3429
+
3430
+ @property
3431
+ @pulumi.getter(name="keyVaultId")
3432
+ def key_vault_id(self) -> Optional[str]:
3433
+ """
3434
+ The key vault resource id.
3435
+ """
3436
+ return pulumi.get(self, "key_vault_id")
3437
+
3438
+ @property
3439
+ @pulumi.getter(name="thriftUrl")
3440
+ def thrift_url(self) -> Optional[str]:
3441
+ """
3442
+ The thrift url.
3443
+ """
3444
+ return pulumi.get(self, "thrift_url")
3445
+
3446
+
3447
+ @pulumi.output_type
3448
+ class SparkProfileResponse(dict):
3449
+ """
3450
+ The spark cluster profile.
3451
+ """
3452
+ @staticmethod
3453
+ def __key_warning(key: str):
3454
+ suggest = None
3455
+ if key == "defaultStorageUrl":
3456
+ suggest = "default_storage_url"
3457
+ elif key == "metastoreSpec":
3458
+ suggest = "metastore_spec"
3459
+ elif key == "userPluginsSpec":
3460
+ suggest = "user_plugins_spec"
3461
+
3462
+ if suggest:
3463
+ pulumi.log.warn(f"Key '{key}' not found in SparkProfileResponse. Access the value via the '{suggest}' property getter instead.")
3464
+
3465
+ def __getitem__(self, key: str) -> Any:
3466
+ SparkProfileResponse.__key_warning(key)
3467
+ return super().__getitem__(key)
3468
+
3469
+ def get(self, key: str, default = None) -> Any:
3470
+ SparkProfileResponse.__key_warning(key)
3471
+ return super().get(key, default)
3472
+
3473
+ def __init__(__self__, *,
3474
+ default_storage_url: Optional[str] = None,
3475
+ metastore_spec: Optional['outputs.SparkMetastoreSpecResponse'] = None,
3476
+ user_plugins_spec: Optional['outputs.SparkUserPluginsResponse'] = None):
3477
+ """
3478
+ The spark cluster profile.
3479
+ :param str default_storage_url: The default storage URL.
3480
+ :param 'SparkMetastoreSpecResponse' metastore_spec: The metastore specification for Spark cluster.
3481
+ :param 'SparkUserPluginsResponse' user_plugins_spec: Spark user plugins spec
3482
+ """
3483
+ if default_storage_url is not None:
3484
+ pulumi.set(__self__, "default_storage_url", default_storage_url)
3485
+ if metastore_spec is not None:
3486
+ pulumi.set(__self__, "metastore_spec", metastore_spec)
3487
+ if user_plugins_spec is not None:
3488
+ pulumi.set(__self__, "user_plugins_spec", user_plugins_spec)
3489
+
3490
+ @property
3491
+ @pulumi.getter(name="defaultStorageUrl")
3492
+ def default_storage_url(self) -> Optional[str]:
3493
+ """
3494
+ The default storage URL.
3495
+ """
3496
+ return pulumi.get(self, "default_storage_url")
3497
+
3498
+ @property
3499
+ @pulumi.getter(name="metastoreSpec")
3500
+ def metastore_spec(self) -> Optional['outputs.SparkMetastoreSpecResponse']:
3501
+ """
3502
+ The metastore specification for Spark cluster.
3503
+ """
3504
+ return pulumi.get(self, "metastore_spec")
3505
+
3506
+ @property
3507
+ @pulumi.getter(name="userPluginsSpec")
3508
+ def user_plugins_spec(self) -> Optional['outputs.SparkUserPluginsResponse']:
3509
+ """
3510
+ Spark user plugins spec
3511
+ """
3512
+ return pulumi.get(self, "user_plugins_spec")
3513
+
3514
+
3515
+ @pulumi.output_type
3516
+ class SparkUserPluginResponse(dict):
3517
+ """
3518
+ Spark user plugin.
3519
+ """
3520
+ def __init__(__self__, *,
3521
+ path: str):
3522
+ """
3523
+ Spark user plugin.
3524
+ :param str path: Fully qualified path to the folder containing the plugins.
3525
+ """
3526
+ pulumi.set(__self__, "path", path)
3527
+
3528
+ @property
3529
+ @pulumi.getter
3530
+ def path(self) -> str:
3531
+ """
3532
+ Fully qualified path to the folder containing the plugins.
3533
+ """
3534
+ return pulumi.get(self, "path")
3535
+
3536
+
3537
+ @pulumi.output_type
3538
+ class SparkUserPluginsResponse(dict):
3539
+ """
3540
+ Spark user plugins spec
3541
+ """
3542
+ def __init__(__self__, *,
3543
+ plugins: Optional[Sequence['outputs.SparkUserPluginResponse']] = None):
3544
+ """
3545
+ Spark user plugins spec
3546
+ :param Sequence['SparkUserPluginResponse'] plugins: Spark user plugins.
3547
+ """
3548
+ if plugins is not None:
3549
+ pulumi.set(__self__, "plugins", plugins)
3550
+
3551
+ @property
3552
+ @pulumi.getter
3553
+ def plugins(self) -> Optional[Sequence['outputs.SparkUserPluginResponse']]:
3554
+ """
3555
+ Spark user plugins.
3556
+ """
3557
+ return pulumi.get(self, "plugins")
3558
+
3559
+
3560
+ @pulumi.output_type
3561
+ class SshConnectivityEndpointResponse(dict):
3562
+ """
3563
+ SSH connectivity endpoint details.
3564
+ """
3565
+ @staticmethod
3566
+ def __key_warning(key: str):
3567
+ suggest = None
3568
+ if key == "privateSshEndpoint":
3569
+ suggest = "private_ssh_endpoint"
3570
+
3571
+ if suggest:
3572
+ pulumi.log.warn(f"Key '{key}' not found in SshConnectivityEndpointResponse. Access the value via the '{suggest}' property getter instead.")
3573
+
3574
+ def __getitem__(self, key: str) -> Any:
3575
+ SshConnectivityEndpointResponse.__key_warning(key)
3576
+ return super().__getitem__(key)
3577
+
3578
+ def get(self, key: str, default = None) -> Any:
3579
+ SshConnectivityEndpointResponse.__key_warning(key)
3580
+ return super().get(key, default)
3581
+
3582
+ def __init__(__self__, *,
3583
+ endpoint: str,
3584
+ private_ssh_endpoint: Optional[str] = None):
3585
+ """
3586
+ SSH connectivity endpoint details.
3587
+ :param str endpoint: SSH connectivity endpoint.
3588
+ :param str private_ssh_endpoint: Private SSH connectivity endpoint. This property will only be returned when enableInternalIngress is true.
3589
+ """
3590
+ pulumi.set(__self__, "endpoint", endpoint)
3591
+ if private_ssh_endpoint is not None:
3592
+ pulumi.set(__self__, "private_ssh_endpoint", private_ssh_endpoint)
3593
+
3594
+ @property
3595
+ @pulumi.getter
3596
+ def endpoint(self) -> str:
3597
+ """
3598
+ SSH connectivity endpoint.
3599
+ """
3600
+ return pulumi.get(self, "endpoint")
3601
+
3602
+ @property
3603
+ @pulumi.getter(name="privateSshEndpoint")
3604
+ def private_ssh_endpoint(self) -> Optional[str]:
3605
+ """
3606
+ Private SSH connectivity endpoint. This property will only be returned when enableInternalIngress is true.
3607
+ """
3608
+ return pulumi.get(self, "private_ssh_endpoint")
3609
+
3610
+
3611
+ @pulumi.output_type
3612
+ class SshProfileResponse(dict):
3613
+ """
3614
+ Ssh profile for the cluster.
3615
+ """
3616
+ @staticmethod
3617
+ def __key_warning(key: str):
3618
+ suggest = None
3619
+ if key == "podPrefix":
3620
+ suggest = "pod_prefix"
3621
+ elif key == "vmSize":
3622
+ suggest = "vm_size"
3623
+
3624
+ if suggest:
3625
+ pulumi.log.warn(f"Key '{key}' not found in SshProfileResponse. Access the value via the '{suggest}' property getter instead.")
3626
+
3627
+ def __getitem__(self, key: str) -> Any:
3628
+ SshProfileResponse.__key_warning(key)
3629
+ return super().__getitem__(key)
3630
+
3631
+ def get(self, key: str, default = None) -> Any:
3632
+ SshProfileResponse.__key_warning(key)
3633
+ return super().get(key, default)
3634
+
3635
+ def __init__(__self__, *,
3636
+ count: int,
3637
+ pod_prefix: str,
3638
+ vm_size: Optional[str] = None):
3639
+ """
3640
+ Ssh profile for the cluster.
3641
+ :param int count: Number of ssh pods per cluster.
3642
+ :param str pod_prefix: Prefix of the pod names. Pod number will be appended to the prefix. The ingress URLs for the pods will be available at <clusterFqdn>/<sshBasePath>/<prefix>-<number>
3643
+ :param str vm_size: The virtual machine SKU.
3644
+ """
3645
+ pulumi.set(__self__, "count", count)
3646
+ pulumi.set(__self__, "pod_prefix", pod_prefix)
3647
+ if vm_size is not None:
3648
+ pulumi.set(__self__, "vm_size", vm_size)
3649
+
3650
+ @property
3651
+ @pulumi.getter
3652
+ def count(self) -> int:
3653
+ """
3654
+ Number of ssh pods per cluster.
3655
+ """
3656
+ return pulumi.get(self, "count")
3657
+
3658
+ @property
3659
+ @pulumi.getter(name="podPrefix")
3660
+ def pod_prefix(self) -> str:
3661
+ """
3662
+ Prefix of the pod names. Pod number will be appended to the prefix. The ingress URLs for the pods will be available at <clusterFqdn>/<sshBasePath>/<prefix>-<number>
3663
+ """
3664
+ return pulumi.get(self, "pod_prefix")
3665
+
3666
+ @property
3667
+ @pulumi.getter(name="vmSize")
3668
+ def vm_size(self) -> Optional[str]:
3669
+ """
3670
+ The virtual machine SKU.
3671
+ """
3672
+ return pulumi.get(self, "vm_size")
3673
+
3674
+
3675
+ @pulumi.output_type
3676
+ class SystemDataResponse(dict):
3677
+ """
3678
+ Metadata pertaining to creation and last modification of the resource.
3679
+ """
3680
+ @staticmethod
3681
+ def __key_warning(key: str):
3682
+ suggest = None
3683
+ if key == "createdAt":
3684
+ suggest = "created_at"
3685
+ elif key == "createdBy":
3686
+ suggest = "created_by"
3687
+ elif key == "createdByType":
3688
+ suggest = "created_by_type"
3689
+ elif key == "lastModifiedAt":
3690
+ suggest = "last_modified_at"
3691
+ elif key == "lastModifiedBy":
3692
+ suggest = "last_modified_by"
3693
+ elif key == "lastModifiedByType":
3694
+ suggest = "last_modified_by_type"
3695
+
3696
+ if suggest:
3697
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
3698
+
3699
+ def __getitem__(self, key: str) -> Any:
3700
+ SystemDataResponse.__key_warning(key)
3701
+ return super().__getitem__(key)
3702
+
3703
+ def get(self, key: str, default = None) -> Any:
3704
+ SystemDataResponse.__key_warning(key)
3705
+ return super().get(key, default)
3706
+
3707
+ def __init__(__self__, *,
3708
+ created_at: Optional[str] = None,
3709
+ created_by: Optional[str] = None,
3710
+ created_by_type: Optional[str] = None,
3711
+ last_modified_at: Optional[str] = None,
3712
+ last_modified_by: Optional[str] = None,
3713
+ last_modified_by_type: Optional[str] = None):
3714
+ """
3715
+ Metadata pertaining to creation and last modification of the resource.
3716
+ :param str created_at: The timestamp of resource creation (UTC).
3717
+ :param str created_by: The identity that created the resource.
3718
+ :param str created_by_type: The type of identity that created the resource.
3719
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
3720
+ :param str last_modified_by: The identity that last modified the resource.
3721
+ :param str last_modified_by_type: The type of identity that last modified the resource.
3722
+ """
3723
+ if created_at is not None:
3724
+ pulumi.set(__self__, "created_at", created_at)
3725
+ if created_by is not None:
3726
+ pulumi.set(__self__, "created_by", created_by)
3727
+ if created_by_type is not None:
3728
+ pulumi.set(__self__, "created_by_type", created_by_type)
3729
+ if last_modified_at is not None:
3730
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
3731
+ if last_modified_by is not None:
3732
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
3733
+ if last_modified_by_type is not None:
3734
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
3735
+
3736
+ @property
3737
+ @pulumi.getter(name="createdAt")
3738
+ def created_at(self) -> Optional[str]:
3739
+ """
3740
+ The timestamp of resource creation (UTC).
3741
+ """
3742
+ return pulumi.get(self, "created_at")
3743
+
3744
+ @property
3745
+ @pulumi.getter(name="createdBy")
3746
+ def created_by(self) -> Optional[str]:
3747
+ """
3748
+ The identity that created the resource.
3749
+ """
3750
+ return pulumi.get(self, "created_by")
3751
+
3752
+ @property
3753
+ @pulumi.getter(name="createdByType")
3754
+ def created_by_type(self) -> Optional[str]:
3755
+ """
3756
+ The type of identity that created the resource.
3757
+ """
3758
+ return pulumi.get(self, "created_by_type")
3759
+
3760
+ @property
3761
+ @pulumi.getter(name="lastModifiedAt")
3762
+ def last_modified_at(self) -> Optional[str]:
3763
+ """
3764
+ The timestamp of resource last modification (UTC)
3765
+ """
3766
+ return pulumi.get(self, "last_modified_at")
3767
+
3768
+ @property
3769
+ @pulumi.getter(name="lastModifiedBy")
3770
+ def last_modified_by(self) -> Optional[str]:
3771
+ """
3772
+ The identity that last modified the resource.
3773
+ """
3774
+ return pulumi.get(self, "last_modified_by")
3775
+
3776
+ @property
3777
+ @pulumi.getter(name="lastModifiedByType")
3778
+ def last_modified_by_type(self) -> Optional[str]:
3779
+ """
3780
+ The type of identity that last modified the resource.
3781
+ """
3782
+ return pulumi.get(self, "last_modified_by_type")
3783
+
3784
+
3785
+ @pulumi.output_type
3786
+ class TrinoCoordinatorResponse(dict):
3787
+ """
3788
+ Trino Coordinator.
3789
+ """
3790
+ @staticmethod
3791
+ def __key_warning(key: str):
3792
+ suggest = None
3793
+ if key == "highAvailabilityEnabled":
3794
+ suggest = "high_availability_enabled"
3795
+
3796
+ if suggest:
3797
+ pulumi.log.warn(f"Key '{key}' not found in TrinoCoordinatorResponse. Access the value via the '{suggest}' property getter instead.")
3798
+
3799
+ def __getitem__(self, key: str) -> Any:
3800
+ TrinoCoordinatorResponse.__key_warning(key)
3801
+ return super().__getitem__(key)
3802
+
3803
+ def get(self, key: str, default = None) -> Any:
3804
+ TrinoCoordinatorResponse.__key_warning(key)
3805
+ return super().get(key, default)
3806
+
3807
+ def __init__(__self__, *,
3808
+ enable: Optional[bool] = None,
3809
+ high_availability_enabled: Optional[bool] = None,
3810
+ port: Optional[int] = None,
3811
+ suspend: Optional[bool] = None):
3812
+ """
3813
+ Trino Coordinator.
3814
+ :param bool enable: The flag that if enable debug or not.
3815
+ :param bool high_availability_enabled: The flag that if enable coordinator HA, uses multiple coordinator replicas with auto failover, one per each head node. Default: true.
3816
+ :param int port: The debug port.
3817
+ :param bool suspend: The flag that if suspend debug or not.
3818
+ """
3819
+ if enable is None:
3820
+ enable = False
3821
+ if enable is not None:
3822
+ pulumi.set(__self__, "enable", enable)
3823
+ if high_availability_enabled is None:
3824
+ high_availability_enabled = True
3825
+ if high_availability_enabled is not None:
3826
+ pulumi.set(__self__, "high_availability_enabled", high_availability_enabled)
3827
+ if port is None:
3828
+ port = 8008
3829
+ if port is not None:
3830
+ pulumi.set(__self__, "port", port)
3831
+ if suspend is None:
3832
+ suspend = False
3833
+ if suspend is not None:
3834
+ pulumi.set(__self__, "suspend", suspend)
3835
+
3836
+ @property
3837
+ @pulumi.getter
3838
+ def enable(self) -> Optional[bool]:
3839
+ """
3840
+ The flag that if enable debug or not.
3841
+ """
3842
+ return pulumi.get(self, "enable")
3843
+
3844
+ @property
3845
+ @pulumi.getter(name="highAvailabilityEnabled")
3846
+ def high_availability_enabled(self) -> Optional[bool]:
3847
+ """
3848
+ The flag that if enable coordinator HA, uses multiple coordinator replicas with auto failover, one per each head node. Default: true.
3849
+ """
3850
+ return pulumi.get(self, "high_availability_enabled")
3851
+
3852
+ @property
3853
+ @pulumi.getter
3854
+ def port(self) -> Optional[int]:
3855
+ """
3856
+ The debug port.
3857
+ """
3858
+ return pulumi.get(self, "port")
3859
+
3860
+ @property
3861
+ @pulumi.getter
3862
+ def suspend(self) -> Optional[bool]:
3863
+ """
3864
+ The flag that if suspend debug or not.
3865
+ """
3866
+ return pulumi.get(self, "suspend")
3867
+
3868
+
3869
+ @pulumi.output_type
3870
+ class TrinoProfileResponse(dict):
3871
+ """
3872
+ Trino Cluster profile.
3873
+ """
3874
+ @staticmethod
3875
+ def __key_warning(key: str):
3876
+ suggest = None
3877
+ if key == "catalogOptions":
3878
+ suggest = "catalog_options"
3879
+ elif key == "userPluginsSpec":
3880
+ suggest = "user_plugins_spec"
3881
+ elif key == "userTelemetrySpec":
3882
+ suggest = "user_telemetry_spec"
3883
+
3884
+ if suggest:
3885
+ pulumi.log.warn(f"Key '{key}' not found in TrinoProfileResponse. Access the value via the '{suggest}' property getter instead.")
3886
+
3887
+ def __getitem__(self, key: str) -> Any:
3888
+ TrinoProfileResponse.__key_warning(key)
3889
+ return super().__getitem__(key)
3890
+
3891
+ def get(self, key: str, default = None) -> Any:
3892
+ TrinoProfileResponse.__key_warning(key)
3893
+ return super().get(key, default)
3894
+
3895
+ def __init__(__self__, *,
3896
+ catalog_options: Optional['outputs.CatalogOptionsResponse'] = None,
3897
+ coordinator: Optional['outputs.TrinoCoordinatorResponse'] = None,
3898
+ user_plugins_spec: Optional['outputs.TrinoUserPluginsResponse'] = None,
3899
+ user_telemetry_spec: Optional['outputs.TrinoUserTelemetryResponse'] = None,
3900
+ worker: Optional['outputs.TrinoWorkerResponse'] = None):
3901
+ """
3902
+ Trino Cluster profile.
3903
+ :param 'CatalogOptionsResponse' catalog_options: Trino cluster catalog options.
3904
+ :param 'TrinoCoordinatorResponse' coordinator: Trino Coordinator.
3905
+ :param 'TrinoUserPluginsResponse' user_plugins_spec: Trino user plugins spec
3906
+ :param 'TrinoUserTelemetryResponse' user_telemetry_spec: User telemetry
3907
+ :param 'TrinoWorkerResponse' worker: Trino worker.
3908
+ """
3909
+ if catalog_options is not None:
3910
+ pulumi.set(__self__, "catalog_options", catalog_options)
3911
+ if coordinator is not None:
3912
+ pulumi.set(__self__, "coordinator", coordinator)
3913
+ if user_plugins_spec is not None:
3914
+ pulumi.set(__self__, "user_plugins_spec", user_plugins_spec)
3915
+ if user_telemetry_spec is not None:
3916
+ pulumi.set(__self__, "user_telemetry_spec", user_telemetry_spec)
3917
+ if worker is not None:
3918
+ pulumi.set(__self__, "worker", worker)
3919
+
3920
+ @property
3921
+ @pulumi.getter(name="catalogOptions")
3922
+ def catalog_options(self) -> Optional['outputs.CatalogOptionsResponse']:
3923
+ """
3924
+ Trino cluster catalog options.
3925
+ """
3926
+ return pulumi.get(self, "catalog_options")
3927
+
3928
+ @property
3929
+ @pulumi.getter
3930
+ def coordinator(self) -> Optional['outputs.TrinoCoordinatorResponse']:
3931
+ """
3932
+ Trino Coordinator.
3933
+ """
3934
+ return pulumi.get(self, "coordinator")
3935
+
3936
+ @property
3937
+ @pulumi.getter(name="userPluginsSpec")
3938
+ def user_plugins_spec(self) -> Optional['outputs.TrinoUserPluginsResponse']:
3939
+ """
3940
+ Trino user plugins spec
3941
+ """
3942
+ return pulumi.get(self, "user_plugins_spec")
3943
+
3944
+ @property
3945
+ @pulumi.getter(name="userTelemetrySpec")
3946
+ def user_telemetry_spec(self) -> Optional['outputs.TrinoUserTelemetryResponse']:
3947
+ """
3948
+ User telemetry
3949
+ """
3950
+ return pulumi.get(self, "user_telemetry_spec")
3951
+
3952
+ @property
3953
+ @pulumi.getter
3954
+ def worker(self) -> Optional['outputs.TrinoWorkerResponse']:
3955
+ """
3956
+ Trino worker.
3957
+ """
3958
+ return pulumi.get(self, "worker")
3959
+
3960
+
3961
+ @pulumi.output_type
3962
+ class TrinoTelemetryConfigResponse(dict):
3963
+ """
3964
+ Trino user telemetry definition.
3965
+ """
3966
+ @staticmethod
3967
+ def __key_warning(key: str):
3968
+ suggest = None
3969
+ if key == "hivecatalogName":
3970
+ suggest = "hivecatalog_name"
3971
+ elif key == "hivecatalogSchema":
3972
+ suggest = "hivecatalog_schema"
3973
+ elif key == "partitionRetentionInDays":
3974
+ suggest = "partition_retention_in_days"
3975
+
3976
+ if suggest:
3977
+ pulumi.log.warn(f"Key '{key}' not found in TrinoTelemetryConfigResponse. Access the value via the '{suggest}' property getter instead.")
3978
+
3979
+ def __getitem__(self, key: str) -> Any:
3980
+ TrinoTelemetryConfigResponse.__key_warning(key)
3981
+ return super().__getitem__(key)
3982
+
3983
+ def get(self, key: str, default = None) -> Any:
3984
+ TrinoTelemetryConfigResponse.__key_warning(key)
3985
+ return super().get(key, default)
3986
+
3987
+ def __init__(__self__, *,
3988
+ hivecatalog_name: Optional[str] = None,
3989
+ hivecatalog_schema: Optional[str] = None,
3990
+ partition_retention_in_days: Optional[int] = None,
3991
+ path: Optional[str] = None):
3992
+ """
3993
+ Trino user telemetry definition.
3994
+ :param str hivecatalog_name: Hive Catalog name used to mount external tables on the logs written by trino, if not specified there tables are not created.
3995
+ :param str hivecatalog_schema: Schema of the above catalog to use, to mount query logs as external tables, if not specified tables will be mounted under schema trinologs.
3996
+ :param int partition_retention_in_days: Retention period for query log table partitions, this doesn't have any affect on actual data.
3997
+ :param str path: Azure storage location of the blobs.
3998
+ """
3999
+ if hivecatalog_name is not None:
4000
+ pulumi.set(__self__, "hivecatalog_name", hivecatalog_name)
4001
+ if hivecatalog_schema is None:
4002
+ hivecatalog_schema = 'trinologs'
4003
+ if hivecatalog_schema is not None:
4004
+ pulumi.set(__self__, "hivecatalog_schema", hivecatalog_schema)
4005
+ if partition_retention_in_days is None:
4006
+ partition_retention_in_days = 365
4007
+ if partition_retention_in_days is not None:
4008
+ pulumi.set(__self__, "partition_retention_in_days", partition_retention_in_days)
4009
+ if path is not None:
4010
+ pulumi.set(__self__, "path", path)
4011
+
4012
+ @property
4013
+ @pulumi.getter(name="hivecatalogName")
4014
+ def hivecatalog_name(self) -> Optional[str]:
4015
+ """
4016
+ Hive Catalog name used to mount external tables on the logs written by trino, if not specified there tables are not created.
4017
+ """
4018
+ return pulumi.get(self, "hivecatalog_name")
4019
+
4020
+ @property
4021
+ @pulumi.getter(name="hivecatalogSchema")
4022
+ def hivecatalog_schema(self) -> Optional[str]:
4023
+ """
4024
+ Schema of the above catalog to use, to mount query logs as external tables, if not specified tables will be mounted under schema trinologs.
4025
+ """
4026
+ return pulumi.get(self, "hivecatalog_schema")
4027
+
4028
+ @property
4029
+ @pulumi.getter(name="partitionRetentionInDays")
4030
+ def partition_retention_in_days(self) -> Optional[int]:
4031
+ """
4032
+ Retention period for query log table partitions, this doesn't have any affect on actual data.
4033
+ """
4034
+ return pulumi.get(self, "partition_retention_in_days")
4035
+
4036
+ @property
4037
+ @pulumi.getter
4038
+ def path(self) -> Optional[str]:
4039
+ """
4040
+ Azure storage location of the blobs.
4041
+ """
4042
+ return pulumi.get(self, "path")
4043
+
4044
+
4045
+ @pulumi.output_type
4046
+ class TrinoUserPluginResponse(dict):
4047
+ """
4048
+ Trino user plugin.
4049
+ """
4050
+ def __init__(__self__, *,
4051
+ enabled: Optional[bool] = None,
4052
+ name: Optional[str] = None,
4053
+ path: Optional[str] = None):
4054
+ """
4055
+ Trino user plugin.
4056
+ :param bool enabled: Denotes whether the plugin is active or not.
4057
+ :param str name: This field maps to the sub-directory in trino plugins location, that will contain all the plugins under path.
4058
+ :param str path: Fully qualified path to the folder containing the plugins.
4059
+ """
4060
+ if enabled is not None:
4061
+ pulumi.set(__self__, "enabled", enabled)
4062
+ if name is not None:
4063
+ pulumi.set(__self__, "name", name)
4064
+ if path is not None:
4065
+ pulumi.set(__self__, "path", path)
4066
+
4067
+ @property
4068
+ @pulumi.getter
4069
+ def enabled(self) -> Optional[bool]:
4070
+ """
4071
+ Denotes whether the plugin is active or not.
4072
+ """
4073
+ return pulumi.get(self, "enabled")
4074
+
4075
+ @property
4076
+ @pulumi.getter
4077
+ def name(self) -> Optional[str]:
4078
+ """
4079
+ This field maps to the sub-directory in trino plugins location, that will contain all the plugins under path.
4080
+ """
4081
+ return pulumi.get(self, "name")
4082
+
4083
+ @property
4084
+ @pulumi.getter
4085
+ def path(self) -> Optional[str]:
4086
+ """
4087
+ Fully qualified path to the folder containing the plugins.
4088
+ """
4089
+ return pulumi.get(self, "path")
4090
+
4091
+
4092
+ @pulumi.output_type
4093
+ class TrinoUserPluginsResponse(dict):
4094
+ """
4095
+ Trino user plugins spec
4096
+ """
4097
+ def __init__(__self__, *,
4098
+ plugins: Optional[Sequence['outputs.TrinoUserPluginResponse']] = None):
4099
+ """
4100
+ Trino user plugins spec
4101
+ :param Sequence['TrinoUserPluginResponse'] plugins: Trino user plugins.
4102
+ """
4103
+ if plugins is not None:
4104
+ pulumi.set(__self__, "plugins", plugins)
4105
+
4106
+ @property
4107
+ @pulumi.getter
4108
+ def plugins(self) -> Optional[Sequence['outputs.TrinoUserPluginResponse']]:
4109
+ """
4110
+ Trino user plugins.
4111
+ """
4112
+ return pulumi.get(self, "plugins")
4113
+
4114
+
4115
+ @pulumi.output_type
4116
+ class TrinoUserTelemetryResponse(dict):
4117
+ """
4118
+ User telemetry
4119
+ """
4120
+ def __init__(__self__, *,
4121
+ storage: Optional['outputs.TrinoTelemetryConfigResponse'] = None):
4122
+ """
4123
+ User telemetry
4124
+ :param 'TrinoTelemetryConfigResponse' storage: Trino user telemetry definition.
4125
+ """
4126
+ if storage is not None:
4127
+ pulumi.set(__self__, "storage", storage)
4128
+
4129
+ @property
4130
+ @pulumi.getter
4131
+ def storage(self) -> Optional['outputs.TrinoTelemetryConfigResponse']:
4132
+ """
4133
+ Trino user telemetry definition.
4134
+ """
4135
+ return pulumi.get(self, "storage")
4136
+
4137
+
4138
+ @pulumi.output_type
4139
+ class TrinoWorkerResponse(dict):
4140
+ """
4141
+ Trino worker.
4142
+ """
4143
+ def __init__(__self__, *,
4144
+ enable: Optional[bool] = None,
4145
+ port: Optional[int] = None,
4146
+ suspend: Optional[bool] = None):
4147
+ """
4148
+ Trino worker.
4149
+ :param bool enable: The flag that if enable debug or not.
4150
+ :param int port: The debug port.
4151
+ :param bool suspend: The flag that if suspend debug or not.
4152
+ """
4153
+ if enable is None:
4154
+ enable = False
4155
+ if enable is not None:
4156
+ pulumi.set(__self__, "enable", enable)
4157
+ if port is None:
4158
+ port = 8008
4159
+ if port is not None:
4160
+ pulumi.set(__self__, "port", port)
4161
+ if suspend is None:
4162
+ suspend = False
4163
+ if suspend is not None:
4164
+ pulumi.set(__self__, "suspend", suspend)
4165
+
4166
+ @property
4167
+ @pulumi.getter
4168
+ def enable(self) -> Optional[bool]:
4169
+ """
4170
+ The flag that if enable debug or not.
4171
+ """
4172
+ return pulumi.get(self, "enable")
4173
+
4174
+ @property
4175
+ @pulumi.getter
4176
+ def port(self) -> Optional[int]:
4177
+ """
4178
+ The debug port.
4179
+ """
4180
+ return pulumi.get(self, "port")
4181
+
4182
+ @property
4183
+ @pulumi.getter
4184
+ def suspend(self) -> Optional[bool]:
4185
+ """
4186
+ The flag that if suspend debug or not.
4187
+ """
4188
+ return pulumi.get(self, "suspend")
4189
+
4190
+