pulumi-azure-native 2.32.1a1710772071__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.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/METADATA +1 -1
  1246. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/RECORD +1248 -950
  1247. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/WHEEL +0 -0
  1248. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3380 @@
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 ._enums import *
12
+
13
+ __all__ = [
14
+ 'AuthorizationProfileArgs',
15
+ 'AutoscaleProfileArgs',
16
+ 'CatalogOptionsArgs',
17
+ 'ClusterAccessProfileArgs',
18
+ 'ClusterConfigFileArgs',
19
+ 'ClusterLogAnalyticsApplicationLogsArgs',
20
+ 'ClusterLogAnalyticsProfileArgs',
21
+ 'ClusterPoolResourcePropertiesClusterPoolProfileArgs',
22
+ 'ClusterPoolResourcePropertiesComputeProfileArgs',
23
+ 'ClusterPoolResourcePropertiesLogAnalyticsProfileArgs',
24
+ 'ClusterPoolResourcePropertiesNetworkProfileArgs',
25
+ 'ClusterProfileArgs',
26
+ 'ClusterPrometheusProfileArgs',
27
+ 'ClusterRangerPluginProfileArgs',
28
+ 'ClusterServiceConfigsProfileArgs',
29
+ 'ClusterServiceConfigArgs',
30
+ 'ComparisonRuleArgs',
31
+ 'ComputeProfileArgs',
32
+ 'ComputeResourceDefinitionArgs',
33
+ 'DiskStorageProfileArgs',
34
+ 'FlinkCatalogOptionsArgs',
35
+ 'FlinkHiveCatalogOptionArgs',
36
+ 'FlinkJobProfileArgs',
37
+ 'FlinkProfileArgs',
38
+ 'FlinkStorageProfileArgs',
39
+ 'HiveCatalogOptionArgs',
40
+ 'IdentityProfileArgs',
41
+ 'KafkaProfileArgs',
42
+ 'LoadBasedConfigArgs',
43
+ 'ManagedIdentityProfileArgs',
44
+ 'ManagedIdentitySpecArgs',
45
+ 'NodeProfileArgs',
46
+ 'RangerAdminSpecDatabaseArgs',
47
+ 'RangerAdminSpecArgs',
48
+ 'RangerAuditSpecArgs',
49
+ 'RangerProfileArgs',
50
+ 'RangerUsersyncSpecArgs',
51
+ 'ScalingRuleArgs',
52
+ 'ScheduleBasedConfigArgs',
53
+ 'ScheduleArgs',
54
+ 'ScriptActionProfileArgs',
55
+ 'SecretReferenceArgs',
56
+ 'SecretsProfileArgs',
57
+ 'SparkMetastoreSpecArgs',
58
+ 'SparkProfileArgs',
59
+ 'SparkUserPluginsArgs',
60
+ 'SparkUserPluginArgs',
61
+ 'SshProfileArgs',
62
+ 'TrinoCoordinatorArgs',
63
+ 'TrinoProfileArgs',
64
+ 'TrinoTelemetryConfigArgs',
65
+ 'TrinoUserPluginsArgs',
66
+ 'TrinoUserPluginArgs',
67
+ 'TrinoUserTelemetryArgs',
68
+ 'TrinoWorkerArgs',
69
+ ]
70
+
71
+ @pulumi.input_type
72
+ class AuthorizationProfileArgs:
73
+ def __init__(__self__, *,
74
+ group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
75
+ user_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
76
+ """
77
+ Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
78
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] group_ids: AAD group Ids authorized for data plane access.
79
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] user_ids: AAD user Ids authorized for data plane access.
80
+ """
81
+ if group_ids is not None:
82
+ pulumi.set(__self__, "group_ids", group_ids)
83
+ if user_ids is not None:
84
+ pulumi.set(__self__, "user_ids", user_ids)
85
+
86
+ @property
87
+ @pulumi.getter(name="groupIds")
88
+ def group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
89
+ """
90
+ AAD group Ids authorized for data plane access.
91
+ """
92
+ return pulumi.get(self, "group_ids")
93
+
94
+ @group_ids.setter
95
+ def group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
96
+ pulumi.set(self, "group_ids", value)
97
+
98
+ @property
99
+ @pulumi.getter(name="userIds")
100
+ def user_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
101
+ """
102
+ AAD user Ids authorized for data plane access.
103
+ """
104
+ return pulumi.get(self, "user_ids")
105
+
106
+ @user_ids.setter
107
+ def user_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
108
+ pulumi.set(self, "user_ids", value)
109
+
110
+
111
+ @pulumi.input_type
112
+ class AutoscaleProfileArgs:
113
+ def __init__(__self__, *,
114
+ enabled: pulumi.Input[bool],
115
+ autoscale_type: Optional[pulumi.Input[Union[str, 'AutoscaleType']]] = None,
116
+ graceful_decommission_timeout: Optional[pulumi.Input[int]] = None,
117
+ load_based_config: Optional[pulumi.Input['LoadBasedConfigArgs']] = None,
118
+ schedule_based_config: Optional[pulumi.Input['ScheduleBasedConfigArgs']] = None):
119
+ """
120
+ This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
121
+ :param pulumi.Input[bool] enabled: This indicates whether auto scale is enabled on HDInsight on AKS cluster.
122
+ :param pulumi.Input[Union[str, 'AutoscaleType']] autoscale_type: User to specify which type of Autoscale to be implemented - Scheduled Based or Load Based.
123
+ :param pulumi.Input[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.
124
+ :param pulumi.Input['LoadBasedConfigArgs'] load_based_config: Profiles of load based Autoscale.
125
+ :param pulumi.Input['ScheduleBasedConfigArgs'] schedule_based_config: Profiles of schedule based Autoscale.
126
+ """
127
+ pulumi.set(__self__, "enabled", enabled)
128
+ if autoscale_type is not None:
129
+ pulumi.set(__self__, "autoscale_type", autoscale_type)
130
+ if graceful_decommission_timeout is not None:
131
+ pulumi.set(__self__, "graceful_decommission_timeout", graceful_decommission_timeout)
132
+ if load_based_config is not None:
133
+ pulumi.set(__self__, "load_based_config", load_based_config)
134
+ if schedule_based_config is not None:
135
+ pulumi.set(__self__, "schedule_based_config", schedule_based_config)
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def enabled(self) -> pulumi.Input[bool]:
140
+ """
141
+ This indicates whether auto scale is enabled on HDInsight on AKS cluster.
142
+ """
143
+ return pulumi.get(self, "enabled")
144
+
145
+ @enabled.setter
146
+ def enabled(self, value: pulumi.Input[bool]):
147
+ pulumi.set(self, "enabled", value)
148
+
149
+ @property
150
+ @pulumi.getter(name="autoscaleType")
151
+ def autoscale_type(self) -> Optional[pulumi.Input[Union[str, 'AutoscaleType']]]:
152
+ """
153
+ User to specify which type of Autoscale to be implemented - Scheduled Based or Load Based.
154
+ """
155
+ return pulumi.get(self, "autoscale_type")
156
+
157
+ @autoscale_type.setter
158
+ def autoscale_type(self, value: Optional[pulumi.Input[Union[str, 'AutoscaleType']]]):
159
+ pulumi.set(self, "autoscale_type", value)
160
+
161
+ @property
162
+ @pulumi.getter(name="gracefulDecommissionTimeout")
163
+ def graceful_decommission_timeout(self) -> Optional[pulumi.Input[int]]:
164
+ """
165
+ 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.
166
+ """
167
+ return pulumi.get(self, "graceful_decommission_timeout")
168
+
169
+ @graceful_decommission_timeout.setter
170
+ def graceful_decommission_timeout(self, value: Optional[pulumi.Input[int]]):
171
+ pulumi.set(self, "graceful_decommission_timeout", value)
172
+
173
+ @property
174
+ @pulumi.getter(name="loadBasedConfig")
175
+ def load_based_config(self) -> Optional[pulumi.Input['LoadBasedConfigArgs']]:
176
+ """
177
+ Profiles of load based Autoscale.
178
+ """
179
+ return pulumi.get(self, "load_based_config")
180
+
181
+ @load_based_config.setter
182
+ def load_based_config(self, value: Optional[pulumi.Input['LoadBasedConfigArgs']]):
183
+ pulumi.set(self, "load_based_config", value)
184
+
185
+ @property
186
+ @pulumi.getter(name="scheduleBasedConfig")
187
+ def schedule_based_config(self) -> Optional[pulumi.Input['ScheduleBasedConfigArgs']]:
188
+ """
189
+ Profiles of schedule based Autoscale.
190
+ """
191
+ return pulumi.get(self, "schedule_based_config")
192
+
193
+ @schedule_based_config.setter
194
+ def schedule_based_config(self, value: Optional[pulumi.Input['ScheduleBasedConfigArgs']]):
195
+ pulumi.set(self, "schedule_based_config", value)
196
+
197
+
198
+ @pulumi.input_type
199
+ class CatalogOptionsArgs:
200
+ def __init__(__self__, *,
201
+ hive: Optional[pulumi.Input[Sequence[pulumi.Input['HiveCatalogOptionArgs']]]] = None):
202
+ """
203
+ Trino cluster catalog options.
204
+ :param pulumi.Input[Sequence[pulumi.Input['HiveCatalogOptionArgs']]] hive: hive catalog options.
205
+ """
206
+ if hive is not None:
207
+ pulumi.set(__self__, "hive", hive)
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def hive(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['HiveCatalogOptionArgs']]]]:
212
+ """
213
+ hive catalog options.
214
+ """
215
+ return pulumi.get(self, "hive")
216
+
217
+ @hive.setter
218
+ def hive(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['HiveCatalogOptionArgs']]]]):
219
+ pulumi.set(self, "hive", value)
220
+
221
+
222
+ @pulumi.input_type
223
+ class ClusterAccessProfileArgs:
224
+ def __init__(__self__, *,
225
+ enable_internal_ingress: pulumi.Input[bool]):
226
+ """
227
+ Cluster access profile.
228
+ :param pulumi.Input[bool] enable_internal_ingress: Whether to create cluster using private IP instead of public IP. This property must be set at create time.
229
+ """
230
+ pulumi.set(__self__, "enable_internal_ingress", enable_internal_ingress)
231
+
232
+ @property
233
+ @pulumi.getter(name="enableInternalIngress")
234
+ def enable_internal_ingress(self) -> pulumi.Input[bool]:
235
+ """
236
+ Whether to create cluster using private IP instead of public IP. This property must be set at create time.
237
+ """
238
+ return pulumi.get(self, "enable_internal_ingress")
239
+
240
+ @enable_internal_ingress.setter
241
+ def enable_internal_ingress(self, value: pulumi.Input[bool]):
242
+ pulumi.set(self, "enable_internal_ingress", value)
243
+
244
+
245
+ @pulumi.input_type
246
+ class ClusterConfigFileArgs:
247
+ def __init__(__self__, *,
248
+ file_name: pulumi.Input[str],
249
+ content: Optional[pulumi.Input[str]] = None,
250
+ encoding: Optional[pulumi.Input[Union[str, 'ContentEncoding']]] = None,
251
+ path: Optional[pulumi.Input[str]] = None,
252
+ values: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
253
+ """
254
+ Cluster configuration files.
255
+ :param pulumi.Input[str] file_name: Configuration file name.
256
+ :param pulumi.Input[str] content: Free form content of the entire configuration file.
257
+ :param pulumi.Input[Union[str, 'ContentEncoding']] 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.
258
+ :param pulumi.Input[str] path: Path of the config file if content is specified.
259
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] values: List of key value pairs
260
+ where key represents a valid service configuration name and value represents the value of the config.
261
+ """
262
+ pulumi.set(__self__, "file_name", file_name)
263
+ if content is not None:
264
+ pulumi.set(__self__, "content", content)
265
+ if encoding is not None:
266
+ pulumi.set(__self__, "encoding", encoding)
267
+ if path is not None:
268
+ pulumi.set(__self__, "path", path)
269
+ if values is not None:
270
+ pulumi.set(__self__, "values", values)
271
+
272
+ @property
273
+ @pulumi.getter(name="fileName")
274
+ def file_name(self) -> pulumi.Input[str]:
275
+ """
276
+ Configuration file name.
277
+ """
278
+ return pulumi.get(self, "file_name")
279
+
280
+ @file_name.setter
281
+ def file_name(self, value: pulumi.Input[str]):
282
+ pulumi.set(self, "file_name", value)
283
+
284
+ @property
285
+ @pulumi.getter
286
+ def content(self) -> Optional[pulumi.Input[str]]:
287
+ """
288
+ Free form content of the entire configuration file.
289
+ """
290
+ return pulumi.get(self, "content")
291
+
292
+ @content.setter
293
+ def content(self, value: Optional[pulumi.Input[str]]):
294
+ pulumi.set(self, "content", value)
295
+
296
+ @property
297
+ @pulumi.getter
298
+ def encoding(self) -> Optional[pulumi.Input[Union[str, 'ContentEncoding']]]:
299
+ """
300
+ 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.
301
+ """
302
+ return pulumi.get(self, "encoding")
303
+
304
+ @encoding.setter
305
+ def encoding(self, value: Optional[pulumi.Input[Union[str, 'ContentEncoding']]]):
306
+ pulumi.set(self, "encoding", value)
307
+
308
+ @property
309
+ @pulumi.getter
310
+ def path(self) -> Optional[pulumi.Input[str]]:
311
+ """
312
+ Path of the config file if content is specified.
313
+ """
314
+ return pulumi.get(self, "path")
315
+
316
+ @path.setter
317
+ def path(self, value: Optional[pulumi.Input[str]]):
318
+ pulumi.set(self, "path", value)
319
+
320
+ @property
321
+ @pulumi.getter
322
+ def values(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
323
+ """
324
+ List of key value pairs
325
+ where key represents a valid service configuration name and value represents the value of the config.
326
+ """
327
+ return pulumi.get(self, "values")
328
+
329
+ @values.setter
330
+ def values(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
331
+ pulumi.set(self, "values", value)
332
+
333
+
334
+ @pulumi.input_type
335
+ class ClusterLogAnalyticsApplicationLogsArgs:
336
+ def __init__(__self__, *,
337
+ std_error_enabled: Optional[pulumi.Input[bool]] = None,
338
+ std_out_enabled: Optional[pulumi.Input[bool]] = None):
339
+ """
340
+ Collection of logs to be enabled or disabled for log analytics.
341
+ :param pulumi.Input[bool] std_error_enabled: True if stderror is enabled, otherwise false.
342
+ :param pulumi.Input[bool] std_out_enabled: True if stdout is enabled, otherwise false.
343
+ """
344
+ if std_error_enabled is not None:
345
+ pulumi.set(__self__, "std_error_enabled", std_error_enabled)
346
+ if std_out_enabled is not None:
347
+ pulumi.set(__self__, "std_out_enabled", std_out_enabled)
348
+
349
+ @property
350
+ @pulumi.getter(name="stdErrorEnabled")
351
+ def std_error_enabled(self) -> Optional[pulumi.Input[bool]]:
352
+ """
353
+ True if stderror is enabled, otherwise false.
354
+ """
355
+ return pulumi.get(self, "std_error_enabled")
356
+
357
+ @std_error_enabled.setter
358
+ def std_error_enabled(self, value: Optional[pulumi.Input[bool]]):
359
+ pulumi.set(self, "std_error_enabled", value)
360
+
361
+ @property
362
+ @pulumi.getter(name="stdOutEnabled")
363
+ def std_out_enabled(self) -> Optional[pulumi.Input[bool]]:
364
+ """
365
+ True if stdout is enabled, otherwise false.
366
+ """
367
+ return pulumi.get(self, "std_out_enabled")
368
+
369
+ @std_out_enabled.setter
370
+ def std_out_enabled(self, value: Optional[pulumi.Input[bool]]):
371
+ pulumi.set(self, "std_out_enabled", value)
372
+
373
+
374
+ @pulumi.input_type
375
+ class ClusterLogAnalyticsProfileArgs:
376
+ def __init__(__self__, *,
377
+ enabled: pulumi.Input[bool],
378
+ application_logs: Optional[pulumi.Input['ClusterLogAnalyticsApplicationLogsArgs']] = None,
379
+ metrics_enabled: Optional[pulumi.Input[bool]] = None):
380
+ """
381
+ Cluster log analytics profile to enable or disable OMS agent for cluster.
382
+ :param pulumi.Input[bool] enabled: True if log analytics is enabled for the cluster, otherwise false.
383
+ :param pulumi.Input['ClusterLogAnalyticsApplicationLogsArgs'] application_logs: Collection of logs to be enabled or disabled for log analytics.
384
+ :param pulumi.Input[bool] metrics_enabled: True if metrics are enabled, otherwise false.
385
+ """
386
+ pulumi.set(__self__, "enabled", enabled)
387
+ if application_logs is not None:
388
+ pulumi.set(__self__, "application_logs", application_logs)
389
+ if metrics_enabled is not None:
390
+ pulumi.set(__self__, "metrics_enabled", metrics_enabled)
391
+
392
+ @property
393
+ @pulumi.getter
394
+ def enabled(self) -> pulumi.Input[bool]:
395
+ """
396
+ True if log analytics is enabled for the cluster, otherwise false.
397
+ """
398
+ return pulumi.get(self, "enabled")
399
+
400
+ @enabled.setter
401
+ def enabled(self, value: pulumi.Input[bool]):
402
+ pulumi.set(self, "enabled", value)
403
+
404
+ @property
405
+ @pulumi.getter(name="applicationLogs")
406
+ def application_logs(self) -> Optional[pulumi.Input['ClusterLogAnalyticsApplicationLogsArgs']]:
407
+ """
408
+ Collection of logs to be enabled or disabled for log analytics.
409
+ """
410
+ return pulumi.get(self, "application_logs")
411
+
412
+ @application_logs.setter
413
+ def application_logs(self, value: Optional[pulumi.Input['ClusterLogAnalyticsApplicationLogsArgs']]):
414
+ pulumi.set(self, "application_logs", value)
415
+
416
+ @property
417
+ @pulumi.getter(name="metricsEnabled")
418
+ def metrics_enabled(self) -> Optional[pulumi.Input[bool]]:
419
+ """
420
+ True if metrics are enabled, otherwise false.
421
+ """
422
+ return pulumi.get(self, "metrics_enabled")
423
+
424
+ @metrics_enabled.setter
425
+ def metrics_enabled(self, value: Optional[pulumi.Input[bool]]):
426
+ pulumi.set(self, "metrics_enabled", value)
427
+
428
+
429
+ @pulumi.input_type
430
+ class ClusterPoolResourcePropertiesClusterPoolProfileArgs:
431
+ def __init__(__self__, *,
432
+ cluster_pool_version: pulumi.Input[str]):
433
+ """
434
+ CLuster pool profile.
435
+ :param pulumi.Input[str] cluster_pool_version: Cluster pool version is a 2-part version.
436
+ """
437
+ pulumi.set(__self__, "cluster_pool_version", cluster_pool_version)
438
+
439
+ @property
440
+ @pulumi.getter(name="clusterPoolVersion")
441
+ def cluster_pool_version(self) -> pulumi.Input[str]:
442
+ """
443
+ Cluster pool version is a 2-part version.
444
+ """
445
+ return pulumi.get(self, "cluster_pool_version")
446
+
447
+ @cluster_pool_version.setter
448
+ def cluster_pool_version(self, value: pulumi.Input[str]):
449
+ pulumi.set(self, "cluster_pool_version", value)
450
+
451
+
452
+ @pulumi.input_type
453
+ class ClusterPoolResourcePropertiesComputeProfileArgs:
454
+ def __init__(__self__, *,
455
+ vm_size: pulumi.Input[str]):
456
+ """
457
+ CLuster pool compute profile.
458
+ :param pulumi.Input[str] vm_size: The virtual machine SKU.
459
+ """
460
+ pulumi.set(__self__, "vm_size", vm_size)
461
+
462
+ @property
463
+ @pulumi.getter(name="vmSize")
464
+ def vm_size(self) -> pulumi.Input[str]:
465
+ """
466
+ The virtual machine SKU.
467
+ """
468
+ return pulumi.get(self, "vm_size")
469
+
470
+ @vm_size.setter
471
+ def vm_size(self, value: pulumi.Input[str]):
472
+ pulumi.set(self, "vm_size", value)
473
+
474
+
475
+ @pulumi.input_type
476
+ class ClusterPoolResourcePropertiesLogAnalyticsProfileArgs:
477
+ def __init__(__self__, *,
478
+ enabled: pulumi.Input[bool],
479
+ workspace_id: Optional[pulumi.Input[str]] = None):
480
+ """
481
+ Cluster pool log analytics profile to enable OMS agent for AKS cluster.
482
+ :param pulumi.Input[bool] enabled: True if log analytics is enabled for cluster pool, otherwise false.
483
+ :param pulumi.Input[str] workspace_id: Log analytics workspace to associate with the OMS agent.
484
+ """
485
+ pulumi.set(__self__, "enabled", enabled)
486
+ if workspace_id is not None:
487
+ pulumi.set(__self__, "workspace_id", workspace_id)
488
+
489
+ @property
490
+ @pulumi.getter
491
+ def enabled(self) -> pulumi.Input[bool]:
492
+ """
493
+ True if log analytics is enabled for cluster pool, otherwise false.
494
+ """
495
+ return pulumi.get(self, "enabled")
496
+
497
+ @enabled.setter
498
+ def enabled(self, value: pulumi.Input[bool]):
499
+ pulumi.set(self, "enabled", value)
500
+
501
+ @property
502
+ @pulumi.getter(name="workspaceId")
503
+ def workspace_id(self) -> Optional[pulumi.Input[str]]:
504
+ """
505
+ Log analytics workspace to associate with the OMS agent.
506
+ """
507
+ return pulumi.get(self, "workspace_id")
508
+
509
+ @workspace_id.setter
510
+ def workspace_id(self, value: Optional[pulumi.Input[str]]):
511
+ pulumi.set(self, "workspace_id", value)
512
+
513
+
514
+ @pulumi.input_type
515
+ class ClusterPoolResourcePropertiesNetworkProfileArgs:
516
+ def __init__(__self__, *,
517
+ subnet_id: pulumi.Input[str],
518
+ api_server_authorized_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
519
+ enable_private_api_server: Optional[pulumi.Input[bool]] = None,
520
+ outbound_type: Optional[pulumi.Input[Union[str, 'OutboundType']]] = None):
521
+ """
522
+ Cluster pool network profile.
523
+ :param pulumi.Input[str] subnet_id: Cluster pool subnet resource id.
524
+ :param pulumi.Input[Sequence[pulumi.Input[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.
525
+ :param pulumi.Input[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.
526
+ :param pulumi.Input[Union[str, 'OutboundType']] outbound_type: This can only be set at cluster pool creation time and cannot be changed later.
527
+ """
528
+ pulumi.set(__self__, "subnet_id", subnet_id)
529
+ if api_server_authorized_ip_ranges is not None:
530
+ pulumi.set(__self__, "api_server_authorized_ip_ranges", api_server_authorized_ip_ranges)
531
+ if enable_private_api_server is not None:
532
+ pulumi.set(__self__, "enable_private_api_server", enable_private_api_server)
533
+ if outbound_type is None:
534
+ outbound_type = 'loadBalancer'
535
+ if outbound_type is not None:
536
+ pulumi.set(__self__, "outbound_type", outbound_type)
537
+
538
+ @property
539
+ @pulumi.getter(name="subnetId")
540
+ def subnet_id(self) -> pulumi.Input[str]:
541
+ """
542
+ Cluster pool subnet resource id.
543
+ """
544
+ return pulumi.get(self, "subnet_id")
545
+
546
+ @subnet_id.setter
547
+ def subnet_id(self, value: pulumi.Input[str]):
548
+ pulumi.set(self, "subnet_id", value)
549
+
550
+ @property
551
+ @pulumi.getter(name="apiServerAuthorizedIpRanges")
552
+ def api_server_authorized_ip_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
553
+ """
554
+ 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.
555
+ """
556
+ return pulumi.get(self, "api_server_authorized_ip_ranges")
557
+
558
+ @api_server_authorized_ip_ranges.setter
559
+ def api_server_authorized_ip_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
560
+ pulumi.set(self, "api_server_authorized_ip_ranges", value)
561
+
562
+ @property
563
+ @pulumi.getter(name="enablePrivateApiServer")
564
+ def enable_private_api_server(self) -> Optional[pulumi.Input[bool]]:
565
+ """
566
+ 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.
567
+ """
568
+ return pulumi.get(self, "enable_private_api_server")
569
+
570
+ @enable_private_api_server.setter
571
+ def enable_private_api_server(self, value: Optional[pulumi.Input[bool]]):
572
+ pulumi.set(self, "enable_private_api_server", value)
573
+
574
+ @property
575
+ @pulumi.getter(name="outboundType")
576
+ def outbound_type(self) -> Optional[pulumi.Input[Union[str, 'OutboundType']]]:
577
+ """
578
+ This can only be set at cluster pool creation time and cannot be changed later.
579
+ """
580
+ return pulumi.get(self, "outbound_type")
581
+
582
+ @outbound_type.setter
583
+ def outbound_type(self, value: Optional[pulumi.Input[Union[str, 'OutboundType']]]):
584
+ pulumi.set(self, "outbound_type", value)
585
+
586
+
587
+ @pulumi.input_type
588
+ class ClusterProfileArgs:
589
+ def __init__(__self__, *,
590
+ authorization_profile: pulumi.Input['AuthorizationProfileArgs'],
591
+ cluster_version: pulumi.Input[str],
592
+ oss_version: pulumi.Input[str],
593
+ autoscale_profile: Optional[pulumi.Input['AutoscaleProfileArgs']] = None,
594
+ cluster_access_profile: Optional[pulumi.Input['ClusterAccessProfileArgs']] = None,
595
+ flink_profile: Optional[pulumi.Input['FlinkProfileArgs']] = None,
596
+ identity_profile: Optional[pulumi.Input['IdentityProfileArgs']] = None,
597
+ kafka_profile: Optional[pulumi.Input['KafkaProfileArgs']] = None,
598
+ llap_profile: Optional[Any] = None,
599
+ log_analytics_profile: Optional[pulumi.Input['ClusterLogAnalyticsProfileArgs']] = None,
600
+ managed_identity_profile: Optional[pulumi.Input['ManagedIdentityProfileArgs']] = None,
601
+ prometheus_profile: Optional[pulumi.Input['ClusterPrometheusProfileArgs']] = None,
602
+ ranger_plugin_profile: Optional[pulumi.Input['ClusterRangerPluginProfileArgs']] = None,
603
+ ranger_profile: Optional[pulumi.Input['RangerProfileArgs']] = None,
604
+ script_action_profiles: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptActionProfileArgs']]]] = None,
605
+ secrets_profile: Optional[pulumi.Input['SecretsProfileArgs']] = None,
606
+ service_configs_profiles: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigsProfileArgs']]]] = None,
607
+ spark_profile: Optional[pulumi.Input['SparkProfileArgs']] = None,
608
+ ssh_profile: Optional[pulumi.Input['SshProfileArgs']] = None,
609
+ stub_profile: Optional[Any] = None,
610
+ trino_profile: Optional[pulumi.Input['TrinoProfileArgs']] = None):
611
+ """
612
+ Cluster profile.
613
+ :param pulumi.Input['AuthorizationProfileArgs'] authorization_profile: Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
614
+ :param pulumi.Input[str] cluster_version: Version with 3/4 part.
615
+ :param pulumi.Input[str] oss_version: Version with three part.
616
+ :param pulumi.Input['AutoscaleProfileArgs'] autoscale_profile: This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
617
+ :param pulumi.Input['ClusterAccessProfileArgs'] cluster_access_profile: Cluster access profile.
618
+ :param pulumi.Input['FlinkProfileArgs'] flink_profile: The Flink cluster profile.
619
+ :param pulumi.Input['IdentityProfileArgs'] identity_profile: This is deprecated. Please use managed identity profile instead.
620
+ :param pulumi.Input['KafkaProfileArgs'] kafka_profile: The Kafka cluster profile.
621
+ :param Any llap_profile: LLAP cluster profile.
622
+ :param pulumi.Input['ClusterLogAnalyticsProfileArgs'] log_analytics_profile: Cluster log analytics profile to enable or disable OMS agent for cluster.
623
+ :param pulumi.Input['ManagedIdentityProfileArgs'] managed_identity_profile: This property is required by Trino, Spark and Flink cluster but is optional for Kafka cluster.
624
+ :param pulumi.Input['ClusterPrometheusProfileArgs'] prometheus_profile: Cluster Prometheus profile.
625
+ :param pulumi.Input['ClusterRangerPluginProfileArgs'] ranger_plugin_profile: Cluster Ranger plugin profile.
626
+ :param pulumi.Input['RangerProfileArgs'] ranger_profile: The ranger cluster profile.
627
+ :param pulumi.Input[Sequence[pulumi.Input['ScriptActionProfileArgs']]] script_action_profiles: The script action profile list.
628
+ :param pulumi.Input['SecretsProfileArgs'] secrets_profile: The cluster secret profile.
629
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigsProfileArgs']]] service_configs_profiles: The service configs profiles.
630
+ :param pulumi.Input['SparkProfileArgs'] spark_profile: The spark cluster profile.
631
+ :param pulumi.Input['SshProfileArgs'] ssh_profile: Ssh profile for the cluster.
632
+ :param Any stub_profile: Stub cluster profile.
633
+ :param pulumi.Input['TrinoProfileArgs'] trino_profile: Trino Cluster profile.
634
+ """
635
+ pulumi.set(__self__, "authorization_profile", authorization_profile)
636
+ pulumi.set(__self__, "cluster_version", cluster_version)
637
+ pulumi.set(__self__, "oss_version", oss_version)
638
+ if autoscale_profile is not None:
639
+ pulumi.set(__self__, "autoscale_profile", autoscale_profile)
640
+ if cluster_access_profile is not None:
641
+ pulumi.set(__self__, "cluster_access_profile", cluster_access_profile)
642
+ if flink_profile is not None:
643
+ pulumi.set(__self__, "flink_profile", flink_profile)
644
+ if identity_profile is not None:
645
+ pulumi.set(__self__, "identity_profile", identity_profile)
646
+ if kafka_profile is not None:
647
+ pulumi.set(__self__, "kafka_profile", kafka_profile)
648
+ if llap_profile is not None:
649
+ pulumi.set(__self__, "llap_profile", llap_profile)
650
+ if log_analytics_profile is not None:
651
+ pulumi.set(__self__, "log_analytics_profile", log_analytics_profile)
652
+ if managed_identity_profile is not None:
653
+ pulumi.set(__self__, "managed_identity_profile", managed_identity_profile)
654
+ if prometheus_profile is not None:
655
+ pulumi.set(__self__, "prometheus_profile", prometheus_profile)
656
+ if ranger_plugin_profile is not None:
657
+ pulumi.set(__self__, "ranger_plugin_profile", ranger_plugin_profile)
658
+ if ranger_profile is not None:
659
+ pulumi.set(__self__, "ranger_profile", ranger_profile)
660
+ if script_action_profiles is not None:
661
+ pulumi.set(__self__, "script_action_profiles", script_action_profiles)
662
+ if secrets_profile is not None:
663
+ pulumi.set(__self__, "secrets_profile", secrets_profile)
664
+ if service_configs_profiles is not None:
665
+ pulumi.set(__self__, "service_configs_profiles", service_configs_profiles)
666
+ if spark_profile is not None:
667
+ pulumi.set(__self__, "spark_profile", spark_profile)
668
+ if ssh_profile is not None:
669
+ pulumi.set(__self__, "ssh_profile", ssh_profile)
670
+ if stub_profile is not None:
671
+ pulumi.set(__self__, "stub_profile", stub_profile)
672
+ if trino_profile is not None:
673
+ pulumi.set(__self__, "trino_profile", trino_profile)
674
+
675
+ @property
676
+ @pulumi.getter(name="authorizationProfile")
677
+ def authorization_profile(self) -> pulumi.Input['AuthorizationProfileArgs']:
678
+ """
679
+ Authorization profile with details of AAD user Ids and group Ids authorized for data plane access.
680
+ """
681
+ return pulumi.get(self, "authorization_profile")
682
+
683
+ @authorization_profile.setter
684
+ def authorization_profile(self, value: pulumi.Input['AuthorizationProfileArgs']):
685
+ pulumi.set(self, "authorization_profile", value)
686
+
687
+ @property
688
+ @pulumi.getter(name="clusterVersion")
689
+ def cluster_version(self) -> pulumi.Input[str]:
690
+ """
691
+ Version with 3/4 part.
692
+ """
693
+ return pulumi.get(self, "cluster_version")
694
+
695
+ @cluster_version.setter
696
+ def cluster_version(self, value: pulumi.Input[str]):
697
+ pulumi.set(self, "cluster_version", value)
698
+
699
+ @property
700
+ @pulumi.getter(name="ossVersion")
701
+ def oss_version(self) -> pulumi.Input[str]:
702
+ """
703
+ Version with three part.
704
+ """
705
+ return pulumi.get(self, "oss_version")
706
+
707
+ @oss_version.setter
708
+ def oss_version(self, value: pulumi.Input[str]):
709
+ pulumi.set(self, "oss_version", value)
710
+
711
+ @property
712
+ @pulumi.getter(name="autoscaleProfile")
713
+ def autoscale_profile(self) -> Optional[pulumi.Input['AutoscaleProfileArgs']]:
714
+ """
715
+ This is the Autoscale profile for the cluster. This will allow customer to create cluster enabled with Autoscale.
716
+ """
717
+ return pulumi.get(self, "autoscale_profile")
718
+
719
+ @autoscale_profile.setter
720
+ def autoscale_profile(self, value: Optional[pulumi.Input['AutoscaleProfileArgs']]):
721
+ pulumi.set(self, "autoscale_profile", value)
722
+
723
+ @property
724
+ @pulumi.getter(name="clusterAccessProfile")
725
+ def cluster_access_profile(self) -> Optional[pulumi.Input['ClusterAccessProfileArgs']]:
726
+ """
727
+ Cluster access profile.
728
+ """
729
+ return pulumi.get(self, "cluster_access_profile")
730
+
731
+ @cluster_access_profile.setter
732
+ def cluster_access_profile(self, value: Optional[pulumi.Input['ClusterAccessProfileArgs']]):
733
+ pulumi.set(self, "cluster_access_profile", value)
734
+
735
+ @property
736
+ @pulumi.getter(name="flinkProfile")
737
+ def flink_profile(self) -> Optional[pulumi.Input['FlinkProfileArgs']]:
738
+ """
739
+ The Flink cluster profile.
740
+ """
741
+ return pulumi.get(self, "flink_profile")
742
+
743
+ @flink_profile.setter
744
+ def flink_profile(self, value: Optional[pulumi.Input['FlinkProfileArgs']]):
745
+ pulumi.set(self, "flink_profile", value)
746
+
747
+ @property
748
+ @pulumi.getter(name="identityProfile")
749
+ def identity_profile(self) -> Optional[pulumi.Input['IdentityProfileArgs']]:
750
+ """
751
+ This is deprecated. Please use managed identity profile instead.
752
+ """
753
+ return pulumi.get(self, "identity_profile")
754
+
755
+ @identity_profile.setter
756
+ def identity_profile(self, value: Optional[pulumi.Input['IdentityProfileArgs']]):
757
+ pulumi.set(self, "identity_profile", value)
758
+
759
+ @property
760
+ @pulumi.getter(name="kafkaProfile")
761
+ def kafka_profile(self) -> Optional[pulumi.Input['KafkaProfileArgs']]:
762
+ """
763
+ The Kafka cluster profile.
764
+ """
765
+ return pulumi.get(self, "kafka_profile")
766
+
767
+ @kafka_profile.setter
768
+ def kafka_profile(self, value: Optional[pulumi.Input['KafkaProfileArgs']]):
769
+ pulumi.set(self, "kafka_profile", value)
770
+
771
+ @property
772
+ @pulumi.getter(name="llapProfile")
773
+ def llap_profile(self) -> Optional[Any]:
774
+ """
775
+ LLAP cluster profile.
776
+ """
777
+ return pulumi.get(self, "llap_profile")
778
+
779
+ @llap_profile.setter
780
+ def llap_profile(self, value: Optional[Any]):
781
+ pulumi.set(self, "llap_profile", value)
782
+
783
+ @property
784
+ @pulumi.getter(name="logAnalyticsProfile")
785
+ def log_analytics_profile(self) -> Optional[pulumi.Input['ClusterLogAnalyticsProfileArgs']]:
786
+ """
787
+ Cluster log analytics profile to enable or disable OMS agent for cluster.
788
+ """
789
+ return pulumi.get(self, "log_analytics_profile")
790
+
791
+ @log_analytics_profile.setter
792
+ def log_analytics_profile(self, value: Optional[pulumi.Input['ClusterLogAnalyticsProfileArgs']]):
793
+ pulumi.set(self, "log_analytics_profile", value)
794
+
795
+ @property
796
+ @pulumi.getter(name="managedIdentityProfile")
797
+ def managed_identity_profile(self) -> Optional[pulumi.Input['ManagedIdentityProfileArgs']]:
798
+ """
799
+ This property is required by Trino, Spark and Flink cluster but is optional for Kafka cluster.
800
+ """
801
+ return pulumi.get(self, "managed_identity_profile")
802
+
803
+ @managed_identity_profile.setter
804
+ def managed_identity_profile(self, value: Optional[pulumi.Input['ManagedIdentityProfileArgs']]):
805
+ pulumi.set(self, "managed_identity_profile", value)
806
+
807
+ @property
808
+ @pulumi.getter(name="prometheusProfile")
809
+ def prometheus_profile(self) -> Optional[pulumi.Input['ClusterPrometheusProfileArgs']]:
810
+ """
811
+ Cluster Prometheus profile.
812
+ """
813
+ return pulumi.get(self, "prometheus_profile")
814
+
815
+ @prometheus_profile.setter
816
+ def prometheus_profile(self, value: Optional[pulumi.Input['ClusterPrometheusProfileArgs']]):
817
+ pulumi.set(self, "prometheus_profile", value)
818
+
819
+ @property
820
+ @pulumi.getter(name="rangerPluginProfile")
821
+ def ranger_plugin_profile(self) -> Optional[pulumi.Input['ClusterRangerPluginProfileArgs']]:
822
+ """
823
+ Cluster Ranger plugin profile.
824
+ """
825
+ return pulumi.get(self, "ranger_plugin_profile")
826
+
827
+ @ranger_plugin_profile.setter
828
+ def ranger_plugin_profile(self, value: Optional[pulumi.Input['ClusterRangerPluginProfileArgs']]):
829
+ pulumi.set(self, "ranger_plugin_profile", value)
830
+
831
+ @property
832
+ @pulumi.getter(name="rangerProfile")
833
+ def ranger_profile(self) -> Optional[pulumi.Input['RangerProfileArgs']]:
834
+ """
835
+ The ranger cluster profile.
836
+ """
837
+ return pulumi.get(self, "ranger_profile")
838
+
839
+ @ranger_profile.setter
840
+ def ranger_profile(self, value: Optional[pulumi.Input['RangerProfileArgs']]):
841
+ pulumi.set(self, "ranger_profile", value)
842
+
843
+ @property
844
+ @pulumi.getter(name="scriptActionProfiles")
845
+ def script_action_profiles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScriptActionProfileArgs']]]]:
846
+ """
847
+ The script action profile list.
848
+ """
849
+ return pulumi.get(self, "script_action_profiles")
850
+
851
+ @script_action_profiles.setter
852
+ def script_action_profiles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScriptActionProfileArgs']]]]):
853
+ pulumi.set(self, "script_action_profiles", value)
854
+
855
+ @property
856
+ @pulumi.getter(name="secretsProfile")
857
+ def secrets_profile(self) -> Optional[pulumi.Input['SecretsProfileArgs']]:
858
+ """
859
+ The cluster secret profile.
860
+ """
861
+ return pulumi.get(self, "secrets_profile")
862
+
863
+ @secrets_profile.setter
864
+ def secrets_profile(self, value: Optional[pulumi.Input['SecretsProfileArgs']]):
865
+ pulumi.set(self, "secrets_profile", value)
866
+
867
+ @property
868
+ @pulumi.getter(name="serviceConfigsProfiles")
869
+ def service_configs_profiles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigsProfileArgs']]]]:
870
+ """
871
+ The service configs profiles.
872
+ """
873
+ return pulumi.get(self, "service_configs_profiles")
874
+
875
+ @service_configs_profiles.setter
876
+ def service_configs_profiles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigsProfileArgs']]]]):
877
+ pulumi.set(self, "service_configs_profiles", value)
878
+
879
+ @property
880
+ @pulumi.getter(name="sparkProfile")
881
+ def spark_profile(self) -> Optional[pulumi.Input['SparkProfileArgs']]:
882
+ """
883
+ The spark cluster profile.
884
+ """
885
+ return pulumi.get(self, "spark_profile")
886
+
887
+ @spark_profile.setter
888
+ def spark_profile(self, value: Optional[pulumi.Input['SparkProfileArgs']]):
889
+ pulumi.set(self, "spark_profile", value)
890
+
891
+ @property
892
+ @pulumi.getter(name="sshProfile")
893
+ def ssh_profile(self) -> Optional[pulumi.Input['SshProfileArgs']]:
894
+ """
895
+ Ssh profile for the cluster.
896
+ """
897
+ return pulumi.get(self, "ssh_profile")
898
+
899
+ @ssh_profile.setter
900
+ def ssh_profile(self, value: Optional[pulumi.Input['SshProfileArgs']]):
901
+ pulumi.set(self, "ssh_profile", value)
902
+
903
+ @property
904
+ @pulumi.getter(name="stubProfile")
905
+ def stub_profile(self) -> Optional[Any]:
906
+ """
907
+ Stub cluster profile.
908
+ """
909
+ return pulumi.get(self, "stub_profile")
910
+
911
+ @stub_profile.setter
912
+ def stub_profile(self, value: Optional[Any]):
913
+ pulumi.set(self, "stub_profile", value)
914
+
915
+ @property
916
+ @pulumi.getter(name="trinoProfile")
917
+ def trino_profile(self) -> Optional[pulumi.Input['TrinoProfileArgs']]:
918
+ """
919
+ Trino Cluster profile.
920
+ """
921
+ return pulumi.get(self, "trino_profile")
922
+
923
+ @trino_profile.setter
924
+ def trino_profile(self, value: Optional[pulumi.Input['TrinoProfileArgs']]):
925
+ pulumi.set(self, "trino_profile", value)
926
+
927
+
928
+ @pulumi.input_type
929
+ class ClusterPrometheusProfileArgs:
930
+ def __init__(__self__, *,
931
+ enabled: Optional[pulumi.Input[bool]] = None):
932
+ """
933
+ Cluster Prometheus profile.
934
+ :param pulumi.Input[bool] enabled: Enable Prometheus for cluster or not.
935
+ """
936
+ if enabled is None:
937
+ enabled = False
938
+ pulumi.set(__self__, "enabled", enabled)
939
+
940
+ @property
941
+ @pulumi.getter
942
+ def enabled(self) -> pulumi.Input[bool]:
943
+ """
944
+ Enable Prometheus for cluster or not.
945
+ """
946
+ return pulumi.get(self, "enabled")
947
+
948
+ @enabled.setter
949
+ def enabled(self, value: pulumi.Input[bool]):
950
+ pulumi.set(self, "enabled", value)
951
+
952
+
953
+ @pulumi.input_type
954
+ class ClusterRangerPluginProfileArgs:
955
+ def __init__(__self__, *,
956
+ enabled: Optional[pulumi.Input[bool]] = None):
957
+ """
958
+ Cluster Ranger plugin profile.
959
+ :param pulumi.Input[bool] enabled: Enable Ranger for cluster or not.
960
+ """
961
+ if enabled is None:
962
+ enabled = False
963
+ pulumi.set(__self__, "enabled", enabled)
964
+
965
+ @property
966
+ @pulumi.getter
967
+ def enabled(self) -> pulumi.Input[bool]:
968
+ """
969
+ Enable Ranger for cluster or not.
970
+ """
971
+ return pulumi.get(self, "enabled")
972
+
973
+ @enabled.setter
974
+ def enabled(self, value: pulumi.Input[bool]):
975
+ pulumi.set(self, "enabled", value)
976
+
977
+
978
+ @pulumi.input_type
979
+ class ClusterServiceConfigsProfileArgs:
980
+ def __init__(__self__, *,
981
+ configs: pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigArgs']]],
982
+ service_name: pulumi.Input[str]):
983
+ """
984
+ Cluster service configs.
985
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigArgs']]] configs: List of service configs.
986
+ :param pulumi.Input[str] service_name: Name of the service the configurations should apply to.
987
+ """
988
+ pulumi.set(__self__, "configs", configs)
989
+ pulumi.set(__self__, "service_name", service_name)
990
+
991
+ @property
992
+ @pulumi.getter
993
+ def configs(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigArgs']]]:
994
+ """
995
+ List of service configs.
996
+ """
997
+ return pulumi.get(self, "configs")
998
+
999
+ @configs.setter
1000
+ def configs(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterServiceConfigArgs']]]):
1001
+ pulumi.set(self, "configs", value)
1002
+
1003
+ @property
1004
+ @pulumi.getter(name="serviceName")
1005
+ def service_name(self) -> pulumi.Input[str]:
1006
+ """
1007
+ Name of the service the configurations should apply to.
1008
+ """
1009
+ return pulumi.get(self, "service_name")
1010
+
1011
+ @service_name.setter
1012
+ def service_name(self, value: pulumi.Input[str]):
1013
+ pulumi.set(self, "service_name", value)
1014
+
1015
+
1016
+ @pulumi.input_type
1017
+ class ClusterServiceConfigArgs:
1018
+ def __init__(__self__, *,
1019
+ component: pulumi.Input[str],
1020
+ files: pulumi.Input[Sequence[pulumi.Input['ClusterConfigFileArgs']]]):
1021
+ """
1022
+ Cluster configs per component.
1023
+ :param pulumi.Input[str] component: Name of the component the config files should apply to.
1024
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterConfigFileArgs']]] files: List of Config Files.
1025
+ """
1026
+ pulumi.set(__self__, "component", component)
1027
+ pulumi.set(__self__, "files", files)
1028
+
1029
+ @property
1030
+ @pulumi.getter
1031
+ def component(self) -> pulumi.Input[str]:
1032
+ """
1033
+ Name of the component the config files should apply to.
1034
+ """
1035
+ return pulumi.get(self, "component")
1036
+
1037
+ @component.setter
1038
+ def component(self, value: pulumi.Input[str]):
1039
+ pulumi.set(self, "component", value)
1040
+
1041
+ @property
1042
+ @pulumi.getter
1043
+ def files(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterConfigFileArgs']]]:
1044
+ """
1045
+ List of Config Files.
1046
+ """
1047
+ return pulumi.get(self, "files")
1048
+
1049
+ @files.setter
1050
+ def files(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterConfigFileArgs']]]):
1051
+ pulumi.set(self, "files", value)
1052
+
1053
+
1054
+ @pulumi.input_type
1055
+ class ComparisonRuleArgs:
1056
+ def __init__(__self__, *,
1057
+ operator: pulumi.Input[Union[str, 'ComparisonOperator']],
1058
+ threshold: pulumi.Input[float]):
1059
+ """
1060
+ The comparison rule.
1061
+ :param pulumi.Input[Union[str, 'ComparisonOperator']] operator: The comparison operator.
1062
+ :param pulumi.Input[float] threshold: Threshold setting.
1063
+ """
1064
+ pulumi.set(__self__, "operator", operator)
1065
+ pulumi.set(__self__, "threshold", threshold)
1066
+
1067
+ @property
1068
+ @pulumi.getter
1069
+ def operator(self) -> pulumi.Input[Union[str, 'ComparisonOperator']]:
1070
+ """
1071
+ The comparison operator.
1072
+ """
1073
+ return pulumi.get(self, "operator")
1074
+
1075
+ @operator.setter
1076
+ def operator(self, value: pulumi.Input[Union[str, 'ComparisonOperator']]):
1077
+ pulumi.set(self, "operator", value)
1078
+
1079
+ @property
1080
+ @pulumi.getter
1081
+ def threshold(self) -> pulumi.Input[float]:
1082
+ """
1083
+ Threshold setting.
1084
+ """
1085
+ return pulumi.get(self, "threshold")
1086
+
1087
+ @threshold.setter
1088
+ def threshold(self, value: pulumi.Input[float]):
1089
+ pulumi.set(self, "threshold", value)
1090
+
1091
+
1092
+ @pulumi.input_type
1093
+ class ComputeProfileArgs:
1094
+ def __init__(__self__, *,
1095
+ nodes: pulumi.Input[Sequence[pulumi.Input['NodeProfileArgs']]]):
1096
+ """
1097
+ The compute profile.
1098
+ :param pulumi.Input[Sequence[pulumi.Input['NodeProfileArgs']]] nodes: The nodes definitions.
1099
+ """
1100
+ pulumi.set(__self__, "nodes", nodes)
1101
+
1102
+ @property
1103
+ @pulumi.getter
1104
+ def nodes(self) -> pulumi.Input[Sequence[pulumi.Input['NodeProfileArgs']]]:
1105
+ """
1106
+ The nodes definitions.
1107
+ """
1108
+ return pulumi.get(self, "nodes")
1109
+
1110
+ @nodes.setter
1111
+ def nodes(self, value: pulumi.Input[Sequence[pulumi.Input['NodeProfileArgs']]]):
1112
+ pulumi.set(self, "nodes", value)
1113
+
1114
+
1115
+ @pulumi.input_type
1116
+ class ComputeResourceDefinitionArgs:
1117
+ def __init__(__self__, *,
1118
+ cpu: pulumi.Input[float],
1119
+ memory: pulumi.Input[float]):
1120
+ """
1121
+ The cpu and memory requirement definition.
1122
+ :param pulumi.Input[float] cpu: The required CPU.
1123
+ :param pulumi.Input[float] memory: The required memory in MB, Container memory will be 110 percentile
1124
+ """
1125
+ pulumi.set(__self__, "cpu", cpu)
1126
+ pulumi.set(__self__, "memory", memory)
1127
+
1128
+ @property
1129
+ @pulumi.getter
1130
+ def cpu(self) -> pulumi.Input[float]:
1131
+ """
1132
+ The required CPU.
1133
+ """
1134
+ return pulumi.get(self, "cpu")
1135
+
1136
+ @cpu.setter
1137
+ def cpu(self, value: pulumi.Input[float]):
1138
+ pulumi.set(self, "cpu", value)
1139
+
1140
+ @property
1141
+ @pulumi.getter
1142
+ def memory(self) -> pulumi.Input[float]:
1143
+ """
1144
+ The required memory in MB, Container memory will be 110 percentile
1145
+ """
1146
+ return pulumi.get(self, "memory")
1147
+
1148
+ @memory.setter
1149
+ def memory(self, value: pulumi.Input[float]):
1150
+ pulumi.set(self, "memory", value)
1151
+
1152
+
1153
+ @pulumi.input_type
1154
+ class DiskStorageProfileArgs:
1155
+ def __init__(__self__, *,
1156
+ data_disk_size: pulumi.Input[int],
1157
+ data_disk_type: pulumi.Input[Union[str, 'DataDiskType']]):
1158
+ """
1159
+ Kafka disk storage profile.
1160
+ :param pulumi.Input[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.
1161
+ :param pulumi.Input[Union[str, 'DataDiskType']] data_disk_type: Managed Disk Type.
1162
+ """
1163
+ pulumi.set(__self__, "data_disk_size", data_disk_size)
1164
+ pulumi.set(__self__, "data_disk_type", data_disk_type)
1165
+
1166
+ @property
1167
+ @pulumi.getter(name="dataDiskSize")
1168
+ def data_disk_size(self) -> pulumi.Input[int]:
1169
+ """
1170
+ 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.
1171
+ """
1172
+ return pulumi.get(self, "data_disk_size")
1173
+
1174
+ @data_disk_size.setter
1175
+ def data_disk_size(self, value: pulumi.Input[int]):
1176
+ pulumi.set(self, "data_disk_size", value)
1177
+
1178
+ @property
1179
+ @pulumi.getter(name="dataDiskType")
1180
+ def data_disk_type(self) -> pulumi.Input[Union[str, 'DataDiskType']]:
1181
+ """
1182
+ Managed Disk Type.
1183
+ """
1184
+ return pulumi.get(self, "data_disk_type")
1185
+
1186
+ @data_disk_type.setter
1187
+ def data_disk_type(self, value: pulumi.Input[Union[str, 'DataDiskType']]):
1188
+ pulumi.set(self, "data_disk_type", value)
1189
+
1190
+
1191
+ @pulumi.input_type
1192
+ class FlinkCatalogOptionsArgs:
1193
+ def __init__(__self__, *,
1194
+ hive: Optional[pulumi.Input['FlinkHiveCatalogOptionArgs']] = None):
1195
+ """
1196
+ Flink cluster catalog options.
1197
+ :param pulumi.Input['FlinkHiveCatalogOptionArgs'] hive: Hive Catalog Option for Flink cluster.
1198
+ """
1199
+ if hive is not None:
1200
+ pulumi.set(__self__, "hive", hive)
1201
+
1202
+ @property
1203
+ @pulumi.getter
1204
+ def hive(self) -> Optional[pulumi.Input['FlinkHiveCatalogOptionArgs']]:
1205
+ """
1206
+ Hive Catalog Option for Flink cluster.
1207
+ """
1208
+ return pulumi.get(self, "hive")
1209
+
1210
+ @hive.setter
1211
+ def hive(self, value: Optional[pulumi.Input['FlinkHiveCatalogOptionArgs']]):
1212
+ pulumi.set(self, "hive", value)
1213
+
1214
+
1215
+ @pulumi.input_type
1216
+ class FlinkHiveCatalogOptionArgs:
1217
+ def __init__(__self__, *,
1218
+ metastore_db_connection_url: pulumi.Input[str],
1219
+ metastore_db_connection_authentication_mode: Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]] = None,
1220
+ metastore_db_connection_password_secret: Optional[pulumi.Input[str]] = None,
1221
+ metastore_db_connection_user_name: Optional[pulumi.Input[str]] = None):
1222
+ """
1223
+ Hive Catalog Option for Flink cluster.
1224
+ :param pulumi.Input[str] metastore_db_connection_url: Connection string for hive metastore database.
1225
+ :param pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']] 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
1226
+ :param pulumi.Input[str] metastore_db_connection_password_secret: Secret reference name from secretsProfile.secrets containing password for database connection.
1227
+ :param pulumi.Input[str] metastore_db_connection_user_name: User name for database connection.
1228
+ """
1229
+ pulumi.set(__self__, "metastore_db_connection_url", metastore_db_connection_url)
1230
+ if metastore_db_connection_authentication_mode is None:
1231
+ metastore_db_connection_authentication_mode = 'IdentityAuth'
1232
+ if metastore_db_connection_authentication_mode is not None:
1233
+ pulumi.set(__self__, "metastore_db_connection_authentication_mode", metastore_db_connection_authentication_mode)
1234
+ if metastore_db_connection_password_secret is not None:
1235
+ pulumi.set(__self__, "metastore_db_connection_password_secret", metastore_db_connection_password_secret)
1236
+ if metastore_db_connection_user_name is not None:
1237
+ pulumi.set(__self__, "metastore_db_connection_user_name", metastore_db_connection_user_name)
1238
+
1239
+ @property
1240
+ @pulumi.getter(name="metastoreDbConnectionURL")
1241
+ def metastore_db_connection_url(self) -> pulumi.Input[str]:
1242
+ """
1243
+ Connection string for hive metastore database.
1244
+ """
1245
+ return pulumi.get(self, "metastore_db_connection_url")
1246
+
1247
+ @metastore_db_connection_url.setter
1248
+ def metastore_db_connection_url(self, value: pulumi.Input[str]):
1249
+ pulumi.set(self, "metastore_db_connection_url", value)
1250
+
1251
+ @property
1252
+ @pulumi.getter(name="metastoreDbConnectionAuthenticationMode")
1253
+ def metastore_db_connection_authentication_mode(self) -> Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]]:
1254
+ """
1255
+ 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
1256
+ """
1257
+ return pulumi.get(self, "metastore_db_connection_authentication_mode")
1258
+
1259
+ @metastore_db_connection_authentication_mode.setter
1260
+ def metastore_db_connection_authentication_mode(self, value: Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]]):
1261
+ pulumi.set(self, "metastore_db_connection_authentication_mode", value)
1262
+
1263
+ @property
1264
+ @pulumi.getter(name="metastoreDbConnectionPasswordSecret")
1265
+ def metastore_db_connection_password_secret(self) -> Optional[pulumi.Input[str]]:
1266
+ """
1267
+ Secret reference name from secretsProfile.secrets containing password for database connection.
1268
+ """
1269
+ return pulumi.get(self, "metastore_db_connection_password_secret")
1270
+
1271
+ @metastore_db_connection_password_secret.setter
1272
+ def metastore_db_connection_password_secret(self, value: Optional[pulumi.Input[str]]):
1273
+ pulumi.set(self, "metastore_db_connection_password_secret", value)
1274
+
1275
+ @property
1276
+ @pulumi.getter(name="metastoreDbConnectionUserName")
1277
+ def metastore_db_connection_user_name(self) -> Optional[pulumi.Input[str]]:
1278
+ """
1279
+ User name for database connection.
1280
+ """
1281
+ return pulumi.get(self, "metastore_db_connection_user_name")
1282
+
1283
+ @metastore_db_connection_user_name.setter
1284
+ def metastore_db_connection_user_name(self, value: Optional[pulumi.Input[str]]):
1285
+ pulumi.set(self, "metastore_db_connection_user_name", value)
1286
+
1287
+
1288
+ @pulumi.input_type
1289
+ class FlinkJobProfileArgs:
1290
+ def __init__(__self__, *,
1291
+ jar_name: pulumi.Input[str],
1292
+ job_jar_directory: pulumi.Input[str],
1293
+ upgrade_mode: pulumi.Input[Union[str, 'UpgradeMode']],
1294
+ args: Optional[pulumi.Input[str]] = None,
1295
+ entry_class: Optional[pulumi.Input[str]] = None,
1296
+ save_point_name: Optional[pulumi.Input[str]] = None):
1297
+ """
1298
+ 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.
1299
+ :param pulumi.Input[str] jar_name: A string property that represents the name of the job JAR.
1300
+ :param pulumi.Input[str] job_jar_directory: A string property that specifies the directory where the job JAR is located.
1301
+ :param pulumi.Input[Union[str, 'UpgradeMode']] 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.
1302
+ :param pulumi.Input[str] args: A string property representing additional JVM arguments for the Flink job. It should be space separated value.
1303
+ :param pulumi.Input[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.
1304
+ :param pulumi.Input[str] save_point_name: A string property that represents the name of the savepoint for the Flink job
1305
+ """
1306
+ pulumi.set(__self__, "jar_name", jar_name)
1307
+ pulumi.set(__self__, "job_jar_directory", job_jar_directory)
1308
+ pulumi.set(__self__, "upgrade_mode", upgrade_mode)
1309
+ if args is not None:
1310
+ pulumi.set(__self__, "args", args)
1311
+ if entry_class is not None:
1312
+ pulumi.set(__self__, "entry_class", entry_class)
1313
+ if save_point_name is not None:
1314
+ pulumi.set(__self__, "save_point_name", save_point_name)
1315
+
1316
+ @property
1317
+ @pulumi.getter(name="jarName")
1318
+ def jar_name(self) -> pulumi.Input[str]:
1319
+ """
1320
+ A string property that represents the name of the job JAR.
1321
+ """
1322
+ return pulumi.get(self, "jar_name")
1323
+
1324
+ @jar_name.setter
1325
+ def jar_name(self, value: pulumi.Input[str]):
1326
+ pulumi.set(self, "jar_name", value)
1327
+
1328
+ @property
1329
+ @pulumi.getter(name="jobJarDirectory")
1330
+ def job_jar_directory(self) -> pulumi.Input[str]:
1331
+ """
1332
+ A string property that specifies the directory where the job JAR is located.
1333
+ """
1334
+ return pulumi.get(self, "job_jar_directory")
1335
+
1336
+ @job_jar_directory.setter
1337
+ def job_jar_directory(self, value: pulumi.Input[str]):
1338
+ pulumi.set(self, "job_jar_directory", value)
1339
+
1340
+ @property
1341
+ @pulumi.getter(name="upgradeMode")
1342
+ def upgrade_mode(self) -> pulumi.Input[Union[str, 'UpgradeMode']]:
1343
+ """
1344
+ 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.
1345
+ """
1346
+ return pulumi.get(self, "upgrade_mode")
1347
+
1348
+ @upgrade_mode.setter
1349
+ def upgrade_mode(self, value: pulumi.Input[Union[str, 'UpgradeMode']]):
1350
+ pulumi.set(self, "upgrade_mode", value)
1351
+
1352
+ @property
1353
+ @pulumi.getter
1354
+ def args(self) -> Optional[pulumi.Input[str]]:
1355
+ """
1356
+ A string property representing additional JVM arguments for the Flink job. It should be space separated value.
1357
+ """
1358
+ return pulumi.get(self, "args")
1359
+
1360
+ @args.setter
1361
+ def args(self, value: Optional[pulumi.Input[str]]):
1362
+ pulumi.set(self, "args", value)
1363
+
1364
+ @property
1365
+ @pulumi.getter(name="entryClass")
1366
+ def entry_class(self) -> Optional[pulumi.Input[str]]:
1367
+ """
1368
+ 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.
1369
+ """
1370
+ return pulumi.get(self, "entry_class")
1371
+
1372
+ @entry_class.setter
1373
+ def entry_class(self, value: Optional[pulumi.Input[str]]):
1374
+ pulumi.set(self, "entry_class", value)
1375
+
1376
+ @property
1377
+ @pulumi.getter(name="savePointName")
1378
+ def save_point_name(self) -> Optional[pulumi.Input[str]]:
1379
+ """
1380
+ A string property that represents the name of the savepoint for the Flink job
1381
+ """
1382
+ return pulumi.get(self, "save_point_name")
1383
+
1384
+ @save_point_name.setter
1385
+ def save_point_name(self, value: Optional[pulumi.Input[str]]):
1386
+ pulumi.set(self, "save_point_name", value)
1387
+
1388
+
1389
+ @pulumi.input_type
1390
+ class FlinkProfileArgs:
1391
+ def __init__(__self__, *,
1392
+ job_manager: pulumi.Input['ComputeResourceDefinitionArgs'],
1393
+ storage: pulumi.Input['FlinkStorageProfileArgs'],
1394
+ task_manager: pulumi.Input['ComputeResourceDefinitionArgs'],
1395
+ catalog_options: Optional[pulumi.Input['FlinkCatalogOptionsArgs']] = None,
1396
+ deployment_mode: Optional[pulumi.Input[Union[str, 'DeploymentMode']]] = None,
1397
+ history_server: Optional[pulumi.Input['ComputeResourceDefinitionArgs']] = None,
1398
+ job_spec: Optional[pulumi.Input['FlinkJobProfileArgs']] = None,
1399
+ num_replicas: Optional[pulumi.Input[int]] = None):
1400
+ """
1401
+ The Flink cluster profile.
1402
+ :param pulumi.Input['ComputeResourceDefinitionArgs'] job_manager: Job Manager container/ process CPU and memory requirements
1403
+ :param pulumi.Input['FlinkStorageProfileArgs'] storage: The storage profile
1404
+ :param pulumi.Input['ComputeResourceDefinitionArgs'] task_manager: Task Manager container/ process CPU and memory requirements
1405
+ :param pulumi.Input['FlinkCatalogOptionsArgs'] catalog_options: Flink cluster catalog options.
1406
+ :param pulumi.Input[Union[str, 'DeploymentMode']] 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
1407
+ :param pulumi.Input['ComputeResourceDefinitionArgs'] history_server: History Server container/ process CPU and memory requirements
1408
+ :param pulumi.Input['FlinkJobProfileArgs'] 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.
1409
+ :param pulumi.Input[int] num_replicas: The number of task managers.
1410
+ """
1411
+ pulumi.set(__self__, "job_manager", job_manager)
1412
+ pulumi.set(__self__, "storage", storage)
1413
+ pulumi.set(__self__, "task_manager", task_manager)
1414
+ if catalog_options is not None:
1415
+ pulumi.set(__self__, "catalog_options", catalog_options)
1416
+ if deployment_mode is not None:
1417
+ pulumi.set(__self__, "deployment_mode", deployment_mode)
1418
+ if history_server is not None:
1419
+ pulumi.set(__self__, "history_server", history_server)
1420
+ if job_spec is not None:
1421
+ pulumi.set(__self__, "job_spec", job_spec)
1422
+ if num_replicas is not None:
1423
+ pulumi.set(__self__, "num_replicas", num_replicas)
1424
+
1425
+ @property
1426
+ @pulumi.getter(name="jobManager")
1427
+ def job_manager(self) -> pulumi.Input['ComputeResourceDefinitionArgs']:
1428
+ """
1429
+ Job Manager container/ process CPU and memory requirements
1430
+ """
1431
+ return pulumi.get(self, "job_manager")
1432
+
1433
+ @job_manager.setter
1434
+ def job_manager(self, value: pulumi.Input['ComputeResourceDefinitionArgs']):
1435
+ pulumi.set(self, "job_manager", value)
1436
+
1437
+ @property
1438
+ @pulumi.getter
1439
+ def storage(self) -> pulumi.Input['FlinkStorageProfileArgs']:
1440
+ """
1441
+ The storage profile
1442
+ """
1443
+ return pulumi.get(self, "storage")
1444
+
1445
+ @storage.setter
1446
+ def storage(self, value: pulumi.Input['FlinkStorageProfileArgs']):
1447
+ pulumi.set(self, "storage", value)
1448
+
1449
+ @property
1450
+ @pulumi.getter(name="taskManager")
1451
+ def task_manager(self) -> pulumi.Input['ComputeResourceDefinitionArgs']:
1452
+ """
1453
+ Task Manager container/ process CPU and memory requirements
1454
+ """
1455
+ return pulumi.get(self, "task_manager")
1456
+
1457
+ @task_manager.setter
1458
+ def task_manager(self, value: pulumi.Input['ComputeResourceDefinitionArgs']):
1459
+ pulumi.set(self, "task_manager", value)
1460
+
1461
+ @property
1462
+ @pulumi.getter(name="catalogOptions")
1463
+ def catalog_options(self) -> Optional[pulumi.Input['FlinkCatalogOptionsArgs']]:
1464
+ """
1465
+ Flink cluster catalog options.
1466
+ """
1467
+ return pulumi.get(self, "catalog_options")
1468
+
1469
+ @catalog_options.setter
1470
+ def catalog_options(self, value: Optional[pulumi.Input['FlinkCatalogOptionsArgs']]):
1471
+ pulumi.set(self, "catalog_options", value)
1472
+
1473
+ @property
1474
+ @pulumi.getter(name="deploymentMode")
1475
+ def deployment_mode(self) -> Optional[pulumi.Input[Union[str, 'DeploymentMode']]]:
1476
+ """
1477
+ 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
1478
+ """
1479
+ return pulumi.get(self, "deployment_mode")
1480
+
1481
+ @deployment_mode.setter
1482
+ def deployment_mode(self, value: Optional[pulumi.Input[Union[str, 'DeploymentMode']]]):
1483
+ pulumi.set(self, "deployment_mode", value)
1484
+
1485
+ @property
1486
+ @pulumi.getter(name="historyServer")
1487
+ def history_server(self) -> Optional[pulumi.Input['ComputeResourceDefinitionArgs']]:
1488
+ """
1489
+ History Server container/ process CPU and memory requirements
1490
+ """
1491
+ return pulumi.get(self, "history_server")
1492
+
1493
+ @history_server.setter
1494
+ def history_server(self, value: Optional[pulumi.Input['ComputeResourceDefinitionArgs']]):
1495
+ pulumi.set(self, "history_server", value)
1496
+
1497
+ @property
1498
+ @pulumi.getter(name="jobSpec")
1499
+ def job_spec(self) -> Optional[pulumi.Input['FlinkJobProfileArgs']]:
1500
+ """
1501
+ 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.
1502
+ """
1503
+ return pulumi.get(self, "job_spec")
1504
+
1505
+ @job_spec.setter
1506
+ def job_spec(self, value: Optional[pulumi.Input['FlinkJobProfileArgs']]):
1507
+ pulumi.set(self, "job_spec", value)
1508
+
1509
+ @property
1510
+ @pulumi.getter(name="numReplicas")
1511
+ def num_replicas(self) -> Optional[pulumi.Input[int]]:
1512
+ """
1513
+ The number of task managers.
1514
+ """
1515
+ return pulumi.get(self, "num_replicas")
1516
+
1517
+ @num_replicas.setter
1518
+ def num_replicas(self, value: Optional[pulumi.Input[int]]):
1519
+ pulumi.set(self, "num_replicas", value)
1520
+
1521
+
1522
+ @pulumi.input_type
1523
+ class FlinkStorageProfileArgs:
1524
+ def __init__(__self__, *,
1525
+ storage_uri: pulumi.Input[str],
1526
+ storagekey: Optional[pulumi.Input[str]] = None):
1527
+ """
1528
+ The storage profile
1529
+ :param pulumi.Input[str] storage_uri: Storage account uri which is used for savepoint and checkpoint state.
1530
+ :param pulumi.Input[str] storagekey: Storage key is only required for wasb(s) storage.
1531
+ """
1532
+ pulumi.set(__self__, "storage_uri", storage_uri)
1533
+ if storagekey is not None:
1534
+ pulumi.set(__self__, "storagekey", storagekey)
1535
+
1536
+ @property
1537
+ @pulumi.getter(name="storageUri")
1538
+ def storage_uri(self) -> pulumi.Input[str]:
1539
+ """
1540
+ Storage account uri which is used for savepoint and checkpoint state.
1541
+ """
1542
+ return pulumi.get(self, "storage_uri")
1543
+
1544
+ @storage_uri.setter
1545
+ def storage_uri(self, value: pulumi.Input[str]):
1546
+ pulumi.set(self, "storage_uri", value)
1547
+
1548
+ @property
1549
+ @pulumi.getter
1550
+ def storagekey(self) -> Optional[pulumi.Input[str]]:
1551
+ """
1552
+ Storage key is only required for wasb(s) storage.
1553
+ """
1554
+ return pulumi.get(self, "storagekey")
1555
+
1556
+ @storagekey.setter
1557
+ def storagekey(self, value: Optional[pulumi.Input[str]]):
1558
+ pulumi.set(self, "storagekey", value)
1559
+
1560
+
1561
+ @pulumi.input_type
1562
+ class HiveCatalogOptionArgs:
1563
+ def __init__(__self__, *,
1564
+ catalog_name: pulumi.Input[str],
1565
+ metastore_db_connection_url: pulumi.Input[str],
1566
+ metastore_warehouse_dir: pulumi.Input[str],
1567
+ metastore_db_connection_authentication_mode: Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]] = None,
1568
+ metastore_db_connection_password_secret: Optional[pulumi.Input[str]] = None,
1569
+ metastore_db_connection_user_name: Optional[pulumi.Input[str]] = None):
1570
+ """
1571
+ Hive Catalog Option
1572
+ :param pulumi.Input[str] catalog_name: Name of trino catalog which should use specified hive metastore.
1573
+ :param pulumi.Input[str] metastore_db_connection_url: Connection string for hive metastore database.
1574
+ :param pulumi.Input[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
1575
+ :param pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']] 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
1576
+ :param pulumi.Input[str] metastore_db_connection_password_secret: Secret reference name from secretsProfile.secrets containing password for database connection.
1577
+ :param pulumi.Input[str] metastore_db_connection_user_name: User name for database connection.
1578
+ """
1579
+ pulumi.set(__self__, "catalog_name", catalog_name)
1580
+ pulumi.set(__self__, "metastore_db_connection_url", metastore_db_connection_url)
1581
+ pulumi.set(__self__, "metastore_warehouse_dir", metastore_warehouse_dir)
1582
+ if metastore_db_connection_authentication_mode is None:
1583
+ metastore_db_connection_authentication_mode = 'IdentityAuth'
1584
+ if metastore_db_connection_authentication_mode is not None:
1585
+ pulumi.set(__self__, "metastore_db_connection_authentication_mode", metastore_db_connection_authentication_mode)
1586
+ if metastore_db_connection_password_secret is not None:
1587
+ pulumi.set(__self__, "metastore_db_connection_password_secret", metastore_db_connection_password_secret)
1588
+ if metastore_db_connection_user_name is not None:
1589
+ pulumi.set(__self__, "metastore_db_connection_user_name", metastore_db_connection_user_name)
1590
+
1591
+ @property
1592
+ @pulumi.getter(name="catalogName")
1593
+ def catalog_name(self) -> pulumi.Input[str]:
1594
+ """
1595
+ Name of trino catalog which should use specified hive metastore.
1596
+ """
1597
+ return pulumi.get(self, "catalog_name")
1598
+
1599
+ @catalog_name.setter
1600
+ def catalog_name(self, value: pulumi.Input[str]):
1601
+ pulumi.set(self, "catalog_name", value)
1602
+
1603
+ @property
1604
+ @pulumi.getter(name="metastoreDbConnectionURL")
1605
+ def metastore_db_connection_url(self) -> pulumi.Input[str]:
1606
+ """
1607
+ Connection string for hive metastore database.
1608
+ """
1609
+ return pulumi.get(self, "metastore_db_connection_url")
1610
+
1611
+ @metastore_db_connection_url.setter
1612
+ def metastore_db_connection_url(self, value: pulumi.Input[str]):
1613
+ pulumi.set(self, "metastore_db_connection_url", value)
1614
+
1615
+ @property
1616
+ @pulumi.getter(name="metastoreWarehouseDir")
1617
+ def metastore_warehouse_dir(self) -> pulumi.Input[str]:
1618
+ """
1619
+ 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
1620
+ """
1621
+ return pulumi.get(self, "metastore_warehouse_dir")
1622
+
1623
+ @metastore_warehouse_dir.setter
1624
+ def metastore_warehouse_dir(self, value: pulumi.Input[str]):
1625
+ pulumi.set(self, "metastore_warehouse_dir", value)
1626
+
1627
+ @property
1628
+ @pulumi.getter(name="metastoreDbConnectionAuthenticationMode")
1629
+ def metastore_db_connection_authentication_mode(self) -> Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]]:
1630
+ """
1631
+ 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
1632
+ """
1633
+ return pulumi.get(self, "metastore_db_connection_authentication_mode")
1634
+
1635
+ @metastore_db_connection_authentication_mode.setter
1636
+ def metastore_db_connection_authentication_mode(self, value: Optional[pulumi.Input[Union[str, 'MetastoreDbConnectionAuthenticationMode']]]):
1637
+ pulumi.set(self, "metastore_db_connection_authentication_mode", value)
1638
+
1639
+ @property
1640
+ @pulumi.getter(name="metastoreDbConnectionPasswordSecret")
1641
+ def metastore_db_connection_password_secret(self) -> Optional[pulumi.Input[str]]:
1642
+ """
1643
+ Secret reference name from secretsProfile.secrets containing password for database connection.
1644
+ """
1645
+ return pulumi.get(self, "metastore_db_connection_password_secret")
1646
+
1647
+ @metastore_db_connection_password_secret.setter
1648
+ def metastore_db_connection_password_secret(self, value: Optional[pulumi.Input[str]]):
1649
+ pulumi.set(self, "metastore_db_connection_password_secret", value)
1650
+
1651
+ @property
1652
+ @pulumi.getter(name="metastoreDbConnectionUserName")
1653
+ def metastore_db_connection_user_name(self) -> Optional[pulumi.Input[str]]:
1654
+ """
1655
+ User name for database connection.
1656
+ """
1657
+ return pulumi.get(self, "metastore_db_connection_user_name")
1658
+
1659
+ @metastore_db_connection_user_name.setter
1660
+ def metastore_db_connection_user_name(self, value: Optional[pulumi.Input[str]]):
1661
+ pulumi.set(self, "metastore_db_connection_user_name", value)
1662
+
1663
+
1664
+ @pulumi.input_type
1665
+ class IdentityProfileArgs:
1666
+ def __init__(__self__, *,
1667
+ msi_client_id: pulumi.Input[str],
1668
+ msi_object_id: pulumi.Input[str],
1669
+ msi_resource_id: pulumi.Input[str]):
1670
+ """
1671
+ Identity Profile with details of an MSI.
1672
+ :param pulumi.Input[str] msi_client_id: ClientId of the MSI.
1673
+ :param pulumi.Input[str] msi_object_id: ObjectId of the MSI.
1674
+ :param pulumi.Input[str] msi_resource_id: ResourceId of the MSI.
1675
+ """
1676
+ pulumi.set(__self__, "msi_client_id", msi_client_id)
1677
+ pulumi.set(__self__, "msi_object_id", msi_object_id)
1678
+ pulumi.set(__self__, "msi_resource_id", msi_resource_id)
1679
+
1680
+ @property
1681
+ @pulumi.getter(name="msiClientId")
1682
+ def msi_client_id(self) -> pulumi.Input[str]:
1683
+ """
1684
+ ClientId of the MSI.
1685
+ """
1686
+ return pulumi.get(self, "msi_client_id")
1687
+
1688
+ @msi_client_id.setter
1689
+ def msi_client_id(self, value: pulumi.Input[str]):
1690
+ pulumi.set(self, "msi_client_id", value)
1691
+
1692
+ @property
1693
+ @pulumi.getter(name="msiObjectId")
1694
+ def msi_object_id(self) -> pulumi.Input[str]:
1695
+ """
1696
+ ObjectId of the MSI.
1697
+ """
1698
+ return pulumi.get(self, "msi_object_id")
1699
+
1700
+ @msi_object_id.setter
1701
+ def msi_object_id(self, value: pulumi.Input[str]):
1702
+ pulumi.set(self, "msi_object_id", value)
1703
+
1704
+ @property
1705
+ @pulumi.getter(name="msiResourceId")
1706
+ def msi_resource_id(self) -> pulumi.Input[str]:
1707
+ """
1708
+ ResourceId of the MSI.
1709
+ """
1710
+ return pulumi.get(self, "msi_resource_id")
1711
+
1712
+ @msi_resource_id.setter
1713
+ def msi_resource_id(self, value: pulumi.Input[str]):
1714
+ pulumi.set(self, "msi_resource_id", value)
1715
+
1716
+
1717
+ @pulumi.input_type
1718
+ class KafkaProfileArgs:
1719
+ def __init__(__self__, *,
1720
+ disk_storage: pulumi.Input['DiskStorageProfileArgs'],
1721
+ enable_k_raft: Optional[pulumi.Input[bool]] = None,
1722
+ enable_public_endpoints: Optional[pulumi.Input[bool]] = None,
1723
+ remote_storage_uri: Optional[pulumi.Input[str]] = None):
1724
+ """
1725
+ The Kafka cluster profile.
1726
+ :param pulumi.Input['DiskStorageProfileArgs'] disk_storage: Kafka disk storage profile.
1727
+ :param pulumi.Input[bool] enable_k_raft: Expose Kafka cluster in KRaft mode.
1728
+ :param pulumi.Input[bool] enable_public_endpoints: Expose worker nodes as public endpoints.
1729
+ :param pulumi.Input[str] remote_storage_uri: Fully qualified path of Azure Storage container used for Tiered Storage.
1730
+ """
1731
+ pulumi.set(__self__, "disk_storage", disk_storage)
1732
+ if enable_k_raft is None:
1733
+ enable_k_raft = True
1734
+ if enable_k_raft is not None:
1735
+ pulumi.set(__self__, "enable_k_raft", enable_k_raft)
1736
+ if enable_public_endpoints is None:
1737
+ enable_public_endpoints = False
1738
+ if enable_public_endpoints is not None:
1739
+ pulumi.set(__self__, "enable_public_endpoints", enable_public_endpoints)
1740
+ if remote_storage_uri is not None:
1741
+ pulumi.set(__self__, "remote_storage_uri", remote_storage_uri)
1742
+
1743
+ @property
1744
+ @pulumi.getter(name="diskStorage")
1745
+ def disk_storage(self) -> pulumi.Input['DiskStorageProfileArgs']:
1746
+ """
1747
+ Kafka disk storage profile.
1748
+ """
1749
+ return pulumi.get(self, "disk_storage")
1750
+
1751
+ @disk_storage.setter
1752
+ def disk_storage(self, value: pulumi.Input['DiskStorageProfileArgs']):
1753
+ pulumi.set(self, "disk_storage", value)
1754
+
1755
+ @property
1756
+ @pulumi.getter(name="enableKRaft")
1757
+ def enable_k_raft(self) -> Optional[pulumi.Input[bool]]:
1758
+ """
1759
+ Expose Kafka cluster in KRaft mode.
1760
+ """
1761
+ return pulumi.get(self, "enable_k_raft")
1762
+
1763
+ @enable_k_raft.setter
1764
+ def enable_k_raft(self, value: Optional[pulumi.Input[bool]]):
1765
+ pulumi.set(self, "enable_k_raft", value)
1766
+
1767
+ @property
1768
+ @pulumi.getter(name="enablePublicEndpoints")
1769
+ def enable_public_endpoints(self) -> Optional[pulumi.Input[bool]]:
1770
+ """
1771
+ Expose worker nodes as public endpoints.
1772
+ """
1773
+ return pulumi.get(self, "enable_public_endpoints")
1774
+
1775
+ @enable_public_endpoints.setter
1776
+ def enable_public_endpoints(self, value: Optional[pulumi.Input[bool]]):
1777
+ pulumi.set(self, "enable_public_endpoints", value)
1778
+
1779
+ @property
1780
+ @pulumi.getter(name="remoteStorageUri")
1781
+ def remote_storage_uri(self) -> Optional[pulumi.Input[str]]:
1782
+ """
1783
+ Fully qualified path of Azure Storage container used for Tiered Storage.
1784
+ """
1785
+ return pulumi.get(self, "remote_storage_uri")
1786
+
1787
+ @remote_storage_uri.setter
1788
+ def remote_storage_uri(self, value: Optional[pulumi.Input[str]]):
1789
+ pulumi.set(self, "remote_storage_uri", value)
1790
+
1791
+
1792
+ @pulumi.input_type
1793
+ class LoadBasedConfigArgs:
1794
+ def __init__(__self__, *,
1795
+ max_nodes: pulumi.Input[int],
1796
+ min_nodes: pulumi.Input[int],
1797
+ scaling_rules: pulumi.Input[Sequence[pulumi.Input['ScalingRuleArgs']]],
1798
+ cooldown_period: Optional[pulumi.Input[int]] = None,
1799
+ poll_interval: Optional[pulumi.Input[int]] = None):
1800
+ """
1801
+ Profile of load based Autoscale.
1802
+ :param pulumi.Input[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.
1803
+ :param pulumi.Input[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.
1804
+ :param pulumi.Input[Sequence[pulumi.Input['ScalingRuleArgs']]] scaling_rules: The scaling rules.
1805
+ :param pulumi.Input[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.
1806
+ :param pulumi.Input[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.
1807
+ """
1808
+ pulumi.set(__self__, "max_nodes", max_nodes)
1809
+ pulumi.set(__self__, "min_nodes", min_nodes)
1810
+ pulumi.set(__self__, "scaling_rules", scaling_rules)
1811
+ if cooldown_period is not None:
1812
+ pulumi.set(__self__, "cooldown_period", cooldown_period)
1813
+ if poll_interval is not None:
1814
+ pulumi.set(__self__, "poll_interval", poll_interval)
1815
+
1816
+ @property
1817
+ @pulumi.getter(name="maxNodes")
1818
+ def max_nodes(self) -> pulumi.Input[int]:
1819
+ """
1820
+ 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.
1821
+ """
1822
+ return pulumi.get(self, "max_nodes")
1823
+
1824
+ @max_nodes.setter
1825
+ def max_nodes(self, value: pulumi.Input[int]):
1826
+ pulumi.set(self, "max_nodes", value)
1827
+
1828
+ @property
1829
+ @pulumi.getter(name="minNodes")
1830
+ def min_nodes(self) -> pulumi.Input[int]:
1831
+ """
1832
+ 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.
1833
+ """
1834
+ return pulumi.get(self, "min_nodes")
1835
+
1836
+ @min_nodes.setter
1837
+ def min_nodes(self, value: pulumi.Input[int]):
1838
+ pulumi.set(self, "min_nodes", value)
1839
+
1840
+ @property
1841
+ @pulumi.getter(name="scalingRules")
1842
+ def scaling_rules(self) -> pulumi.Input[Sequence[pulumi.Input['ScalingRuleArgs']]]:
1843
+ """
1844
+ The scaling rules.
1845
+ """
1846
+ return pulumi.get(self, "scaling_rules")
1847
+
1848
+ @scaling_rules.setter
1849
+ def scaling_rules(self, value: pulumi.Input[Sequence[pulumi.Input['ScalingRuleArgs']]]):
1850
+ pulumi.set(self, "scaling_rules", value)
1851
+
1852
+ @property
1853
+ @pulumi.getter(name="cooldownPeriod")
1854
+ def cooldown_period(self) -> Optional[pulumi.Input[int]]:
1855
+ """
1856
+ 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.
1857
+ """
1858
+ return pulumi.get(self, "cooldown_period")
1859
+
1860
+ @cooldown_period.setter
1861
+ def cooldown_period(self, value: Optional[pulumi.Input[int]]):
1862
+ pulumi.set(self, "cooldown_period", value)
1863
+
1864
+ @property
1865
+ @pulumi.getter(name="pollInterval")
1866
+ def poll_interval(self) -> Optional[pulumi.Input[int]]:
1867
+ """
1868
+ User can specify the poll interval, this is the time period (in seconds) after which scaling metrics are polled for triggering a scaling operation.
1869
+ """
1870
+ return pulumi.get(self, "poll_interval")
1871
+
1872
+ @poll_interval.setter
1873
+ def poll_interval(self, value: Optional[pulumi.Input[int]]):
1874
+ pulumi.set(self, "poll_interval", value)
1875
+
1876
+
1877
+ @pulumi.input_type
1878
+ class ManagedIdentityProfileArgs:
1879
+ def __init__(__self__, *,
1880
+ identity_list: pulumi.Input[Sequence[pulumi.Input['ManagedIdentitySpecArgs']]]):
1881
+ """
1882
+ The details of managed identity.
1883
+ :param pulumi.Input[Sequence[pulumi.Input['ManagedIdentitySpecArgs']]] identity_list: The list of managed identity.
1884
+ """
1885
+ pulumi.set(__self__, "identity_list", identity_list)
1886
+
1887
+ @property
1888
+ @pulumi.getter(name="identityList")
1889
+ def identity_list(self) -> pulumi.Input[Sequence[pulumi.Input['ManagedIdentitySpecArgs']]]:
1890
+ """
1891
+ The list of managed identity.
1892
+ """
1893
+ return pulumi.get(self, "identity_list")
1894
+
1895
+ @identity_list.setter
1896
+ def identity_list(self, value: pulumi.Input[Sequence[pulumi.Input['ManagedIdentitySpecArgs']]]):
1897
+ pulumi.set(self, "identity_list", value)
1898
+
1899
+
1900
+ @pulumi.input_type
1901
+ class ManagedIdentitySpecArgs:
1902
+ def __init__(__self__, *,
1903
+ client_id: pulumi.Input[str],
1904
+ object_id: pulumi.Input[str],
1905
+ resource_id: pulumi.Input[str],
1906
+ type: pulumi.Input[Union[str, 'ManagedIdentityType']]):
1907
+ """
1908
+ The details of a managed identity.
1909
+ :param pulumi.Input[str] client_id: ClientId of the managed identity.
1910
+ :param pulumi.Input[str] object_id: ObjectId of the managed identity.
1911
+ :param pulumi.Input[str] resource_id: ResourceId of the managed identity.
1912
+ :param pulumi.Input[Union[str, 'ManagedIdentityType']] type: The type of managed identity.
1913
+ """
1914
+ pulumi.set(__self__, "client_id", client_id)
1915
+ pulumi.set(__self__, "object_id", object_id)
1916
+ pulumi.set(__self__, "resource_id", resource_id)
1917
+ pulumi.set(__self__, "type", type)
1918
+
1919
+ @property
1920
+ @pulumi.getter(name="clientId")
1921
+ def client_id(self) -> pulumi.Input[str]:
1922
+ """
1923
+ ClientId of the managed identity.
1924
+ """
1925
+ return pulumi.get(self, "client_id")
1926
+
1927
+ @client_id.setter
1928
+ def client_id(self, value: pulumi.Input[str]):
1929
+ pulumi.set(self, "client_id", value)
1930
+
1931
+ @property
1932
+ @pulumi.getter(name="objectId")
1933
+ def object_id(self) -> pulumi.Input[str]:
1934
+ """
1935
+ ObjectId of the managed identity.
1936
+ """
1937
+ return pulumi.get(self, "object_id")
1938
+
1939
+ @object_id.setter
1940
+ def object_id(self, value: pulumi.Input[str]):
1941
+ pulumi.set(self, "object_id", value)
1942
+
1943
+ @property
1944
+ @pulumi.getter(name="resourceId")
1945
+ def resource_id(self) -> pulumi.Input[str]:
1946
+ """
1947
+ ResourceId of the managed identity.
1948
+ """
1949
+ return pulumi.get(self, "resource_id")
1950
+
1951
+ @resource_id.setter
1952
+ def resource_id(self, value: pulumi.Input[str]):
1953
+ pulumi.set(self, "resource_id", value)
1954
+
1955
+ @property
1956
+ @pulumi.getter
1957
+ def type(self) -> pulumi.Input[Union[str, 'ManagedIdentityType']]:
1958
+ """
1959
+ The type of managed identity.
1960
+ """
1961
+ return pulumi.get(self, "type")
1962
+
1963
+ @type.setter
1964
+ def type(self, value: pulumi.Input[Union[str, 'ManagedIdentityType']]):
1965
+ pulumi.set(self, "type", value)
1966
+
1967
+
1968
+ @pulumi.input_type
1969
+ class NodeProfileArgs:
1970
+ def __init__(__self__, *,
1971
+ count: pulumi.Input[int],
1972
+ type: pulumi.Input[str],
1973
+ vm_size: pulumi.Input[str]):
1974
+ """
1975
+ The node profile.
1976
+ :param pulumi.Input[int] count: The number of virtual machines.
1977
+ :param pulumi.Input[str] type: The node type.
1978
+ :param pulumi.Input[str] vm_size: The virtual machine SKU.
1979
+ """
1980
+ pulumi.set(__self__, "count", count)
1981
+ pulumi.set(__self__, "type", type)
1982
+ pulumi.set(__self__, "vm_size", vm_size)
1983
+
1984
+ @property
1985
+ @pulumi.getter
1986
+ def count(self) -> pulumi.Input[int]:
1987
+ """
1988
+ The number of virtual machines.
1989
+ """
1990
+ return pulumi.get(self, "count")
1991
+
1992
+ @count.setter
1993
+ def count(self, value: pulumi.Input[int]):
1994
+ pulumi.set(self, "count", value)
1995
+
1996
+ @property
1997
+ @pulumi.getter
1998
+ def type(self) -> pulumi.Input[str]:
1999
+ """
2000
+ The node type.
2001
+ """
2002
+ return pulumi.get(self, "type")
2003
+
2004
+ @type.setter
2005
+ def type(self, value: pulumi.Input[str]):
2006
+ pulumi.set(self, "type", value)
2007
+
2008
+ @property
2009
+ @pulumi.getter(name="vmSize")
2010
+ def vm_size(self) -> pulumi.Input[str]:
2011
+ """
2012
+ The virtual machine SKU.
2013
+ """
2014
+ return pulumi.get(self, "vm_size")
2015
+
2016
+ @vm_size.setter
2017
+ def vm_size(self, value: pulumi.Input[str]):
2018
+ pulumi.set(self, "vm_size", value)
2019
+
2020
+
2021
+ @pulumi.input_type
2022
+ class RangerAdminSpecDatabaseArgs:
2023
+ def __init__(__self__, *,
2024
+ host: pulumi.Input[str],
2025
+ name: pulumi.Input[str],
2026
+ password_secret_ref: Optional[pulumi.Input[str]] = None,
2027
+ username: Optional[pulumi.Input[str]] = None):
2028
+ """
2029
+ :param pulumi.Input[str] host: The database URL
2030
+ :param pulumi.Input[str] name: The database name
2031
+ :param pulumi.Input[str] password_secret_ref: Reference for the database password
2032
+ :param pulumi.Input[str] username: The name of the database user
2033
+ """
2034
+ pulumi.set(__self__, "host", host)
2035
+ pulumi.set(__self__, "name", name)
2036
+ if password_secret_ref is not None:
2037
+ pulumi.set(__self__, "password_secret_ref", password_secret_ref)
2038
+ if username is not None:
2039
+ pulumi.set(__self__, "username", username)
2040
+
2041
+ @property
2042
+ @pulumi.getter
2043
+ def host(self) -> pulumi.Input[str]:
2044
+ """
2045
+ The database URL
2046
+ """
2047
+ return pulumi.get(self, "host")
2048
+
2049
+ @host.setter
2050
+ def host(self, value: pulumi.Input[str]):
2051
+ pulumi.set(self, "host", value)
2052
+
2053
+ @property
2054
+ @pulumi.getter
2055
+ def name(self) -> pulumi.Input[str]:
2056
+ """
2057
+ The database name
2058
+ """
2059
+ return pulumi.get(self, "name")
2060
+
2061
+ @name.setter
2062
+ def name(self, value: pulumi.Input[str]):
2063
+ pulumi.set(self, "name", value)
2064
+
2065
+ @property
2066
+ @pulumi.getter(name="passwordSecretRef")
2067
+ def password_secret_ref(self) -> Optional[pulumi.Input[str]]:
2068
+ """
2069
+ Reference for the database password
2070
+ """
2071
+ return pulumi.get(self, "password_secret_ref")
2072
+
2073
+ @password_secret_ref.setter
2074
+ def password_secret_ref(self, value: Optional[pulumi.Input[str]]):
2075
+ pulumi.set(self, "password_secret_ref", value)
2076
+
2077
+ @property
2078
+ @pulumi.getter
2079
+ def username(self) -> Optional[pulumi.Input[str]]:
2080
+ """
2081
+ The name of the database user
2082
+ """
2083
+ return pulumi.get(self, "username")
2084
+
2085
+ @username.setter
2086
+ def username(self, value: Optional[pulumi.Input[str]]):
2087
+ pulumi.set(self, "username", value)
2088
+
2089
+
2090
+ @pulumi.input_type
2091
+ class RangerAdminSpecArgs:
2092
+ def __init__(__self__, *,
2093
+ admins: pulumi.Input[Sequence[pulumi.Input[str]]],
2094
+ database: pulumi.Input['RangerAdminSpecDatabaseArgs']):
2095
+ """
2096
+ Specification for the Ranger Admin service.
2097
+ :param pulumi.Input[Sequence[pulumi.Input[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.
2098
+ """
2099
+ pulumi.set(__self__, "admins", admins)
2100
+ pulumi.set(__self__, "database", database)
2101
+
2102
+ @property
2103
+ @pulumi.getter
2104
+ def admins(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
2105
+ """
2106
+ List of usernames that should be marked as ranger admins. These usernames should match the user principal name (UPN) of the respective AAD users.
2107
+ """
2108
+ return pulumi.get(self, "admins")
2109
+
2110
+ @admins.setter
2111
+ def admins(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
2112
+ pulumi.set(self, "admins", value)
2113
+
2114
+ @property
2115
+ @pulumi.getter
2116
+ def database(self) -> pulumi.Input['RangerAdminSpecDatabaseArgs']:
2117
+ return pulumi.get(self, "database")
2118
+
2119
+ @database.setter
2120
+ def database(self, value: pulumi.Input['RangerAdminSpecDatabaseArgs']):
2121
+ pulumi.set(self, "database", value)
2122
+
2123
+
2124
+ @pulumi.input_type
2125
+ class RangerAuditSpecArgs:
2126
+ def __init__(__self__, *,
2127
+ storage_account: Optional[pulumi.Input[str]] = None):
2128
+ """
2129
+ Properties required to describe audit log storage.
2130
+ :param pulumi.Input[str] storage_account: Azure storage location of the blobs. MSI should have read/write access to this Storage account.
2131
+ """
2132
+ if storage_account is not None:
2133
+ pulumi.set(__self__, "storage_account", storage_account)
2134
+
2135
+ @property
2136
+ @pulumi.getter(name="storageAccount")
2137
+ def storage_account(self) -> Optional[pulumi.Input[str]]:
2138
+ """
2139
+ Azure storage location of the blobs. MSI should have read/write access to this Storage account.
2140
+ """
2141
+ return pulumi.get(self, "storage_account")
2142
+
2143
+ @storage_account.setter
2144
+ def storage_account(self, value: Optional[pulumi.Input[str]]):
2145
+ pulumi.set(self, "storage_account", value)
2146
+
2147
+
2148
+ @pulumi.input_type
2149
+ class RangerProfileArgs:
2150
+ def __init__(__self__, *,
2151
+ ranger_admin: pulumi.Input['RangerAdminSpecArgs'],
2152
+ ranger_usersync: pulumi.Input['RangerUsersyncSpecArgs'],
2153
+ ranger_audit: Optional[pulumi.Input['RangerAuditSpecArgs']] = None):
2154
+ """
2155
+ The ranger cluster profile.
2156
+ :param pulumi.Input['RangerAdminSpecArgs'] ranger_admin: Specification for the Ranger Admin service.
2157
+ :param pulumi.Input['RangerUsersyncSpecArgs'] ranger_usersync: Specification for the Ranger Usersync service
2158
+ :param pulumi.Input['RangerAuditSpecArgs'] ranger_audit: Properties required to describe audit log storage.
2159
+ """
2160
+ pulumi.set(__self__, "ranger_admin", ranger_admin)
2161
+ pulumi.set(__self__, "ranger_usersync", ranger_usersync)
2162
+ if ranger_audit is not None:
2163
+ pulumi.set(__self__, "ranger_audit", ranger_audit)
2164
+
2165
+ @property
2166
+ @pulumi.getter(name="rangerAdmin")
2167
+ def ranger_admin(self) -> pulumi.Input['RangerAdminSpecArgs']:
2168
+ """
2169
+ Specification for the Ranger Admin service.
2170
+ """
2171
+ return pulumi.get(self, "ranger_admin")
2172
+
2173
+ @ranger_admin.setter
2174
+ def ranger_admin(self, value: pulumi.Input['RangerAdminSpecArgs']):
2175
+ pulumi.set(self, "ranger_admin", value)
2176
+
2177
+ @property
2178
+ @pulumi.getter(name="rangerUsersync")
2179
+ def ranger_usersync(self) -> pulumi.Input['RangerUsersyncSpecArgs']:
2180
+ """
2181
+ Specification for the Ranger Usersync service
2182
+ """
2183
+ return pulumi.get(self, "ranger_usersync")
2184
+
2185
+ @ranger_usersync.setter
2186
+ def ranger_usersync(self, value: pulumi.Input['RangerUsersyncSpecArgs']):
2187
+ pulumi.set(self, "ranger_usersync", value)
2188
+
2189
+ @property
2190
+ @pulumi.getter(name="rangerAudit")
2191
+ def ranger_audit(self) -> Optional[pulumi.Input['RangerAuditSpecArgs']]:
2192
+ """
2193
+ Properties required to describe audit log storage.
2194
+ """
2195
+ return pulumi.get(self, "ranger_audit")
2196
+
2197
+ @ranger_audit.setter
2198
+ def ranger_audit(self, value: Optional[pulumi.Input['RangerAuditSpecArgs']]):
2199
+ pulumi.set(self, "ranger_audit", value)
2200
+
2201
+
2202
+ @pulumi.input_type
2203
+ class RangerUsersyncSpecArgs:
2204
+ def __init__(__self__, *,
2205
+ enabled: Optional[pulumi.Input[bool]] = None,
2206
+ groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
2207
+ mode: Optional[pulumi.Input[Union[str, 'RangerUsersyncMode']]] = None,
2208
+ user_mapping_location: Optional[pulumi.Input[str]] = None,
2209
+ users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
2210
+ """
2211
+ Specification for the Ranger Usersync service
2212
+ :param pulumi.Input[bool] enabled: Denotes whether usersync service should be enabled
2213
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: List of groups that should be synced. These group names should match the object id of the respective AAD groups.
2214
+ :param pulumi.Input[Union[str, 'RangerUsersyncMode']] mode: User & groups can be synced automatically or via a static list that's refreshed.
2215
+ :param pulumi.Input[str] user_mapping_location: Azure storage location of a mapping file that lists user & group associations.
2216
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] users: List of user names that should be synced. These usernames should match the User principal name of the respective AAD users.
2217
+ """
2218
+ if enabled is None:
2219
+ enabled = True
2220
+ if enabled is not None:
2221
+ pulumi.set(__self__, "enabled", enabled)
2222
+ if groups is not None:
2223
+ pulumi.set(__self__, "groups", groups)
2224
+ if mode is None:
2225
+ mode = 'automatic'
2226
+ if mode is not None:
2227
+ pulumi.set(__self__, "mode", mode)
2228
+ if user_mapping_location is not None:
2229
+ pulumi.set(__self__, "user_mapping_location", user_mapping_location)
2230
+ if users is not None:
2231
+ pulumi.set(__self__, "users", users)
2232
+
2233
+ @property
2234
+ @pulumi.getter
2235
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
2236
+ """
2237
+ Denotes whether usersync service should be enabled
2238
+ """
2239
+ return pulumi.get(self, "enabled")
2240
+
2241
+ @enabled.setter
2242
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
2243
+ pulumi.set(self, "enabled", value)
2244
+
2245
+ @property
2246
+ @pulumi.getter
2247
+ def groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2248
+ """
2249
+ List of groups that should be synced. These group names should match the object id of the respective AAD groups.
2250
+ """
2251
+ return pulumi.get(self, "groups")
2252
+
2253
+ @groups.setter
2254
+ def groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2255
+ pulumi.set(self, "groups", value)
2256
+
2257
+ @property
2258
+ @pulumi.getter
2259
+ def mode(self) -> Optional[pulumi.Input[Union[str, 'RangerUsersyncMode']]]:
2260
+ """
2261
+ User & groups can be synced automatically or via a static list that's refreshed.
2262
+ """
2263
+ return pulumi.get(self, "mode")
2264
+
2265
+ @mode.setter
2266
+ def mode(self, value: Optional[pulumi.Input[Union[str, 'RangerUsersyncMode']]]):
2267
+ pulumi.set(self, "mode", value)
2268
+
2269
+ @property
2270
+ @pulumi.getter(name="userMappingLocation")
2271
+ def user_mapping_location(self) -> Optional[pulumi.Input[str]]:
2272
+ """
2273
+ Azure storage location of a mapping file that lists user & group associations.
2274
+ """
2275
+ return pulumi.get(self, "user_mapping_location")
2276
+
2277
+ @user_mapping_location.setter
2278
+ def user_mapping_location(self, value: Optional[pulumi.Input[str]]):
2279
+ pulumi.set(self, "user_mapping_location", value)
2280
+
2281
+ @property
2282
+ @pulumi.getter
2283
+ def users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
2284
+ """
2285
+ List of user names that should be synced. These usernames should match the User principal name of the respective AAD users.
2286
+ """
2287
+ return pulumi.get(self, "users")
2288
+
2289
+ @users.setter
2290
+ def users(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
2291
+ pulumi.set(self, "users", value)
2292
+
2293
+
2294
+ @pulumi.input_type
2295
+ class ScalingRuleArgs:
2296
+ def __init__(__self__, *,
2297
+ action_type: pulumi.Input[Union[str, 'ScaleActionType']],
2298
+ comparison_rule: pulumi.Input['ComparisonRuleArgs'],
2299
+ evaluation_count: pulumi.Input[int],
2300
+ scaling_metric: pulumi.Input[str]):
2301
+ """
2302
+ The scaling rule.
2303
+ :param pulumi.Input[Union[str, 'ScaleActionType']] action_type: The action type.
2304
+ :param pulumi.Input['ComparisonRuleArgs'] comparison_rule: The comparison rule.
2305
+ :param pulumi.Input[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.
2306
+ :param pulumi.Input[str] scaling_metric: Metrics name for individual workloads. For example: cpu
2307
+ """
2308
+ pulumi.set(__self__, "action_type", action_type)
2309
+ pulumi.set(__self__, "comparison_rule", comparison_rule)
2310
+ pulumi.set(__self__, "evaluation_count", evaluation_count)
2311
+ pulumi.set(__self__, "scaling_metric", scaling_metric)
2312
+
2313
+ @property
2314
+ @pulumi.getter(name="actionType")
2315
+ def action_type(self) -> pulumi.Input[Union[str, 'ScaleActionType']]:
2316
+ """
2317
+ The action type.
2318
+ """
2319
+ return pulumi.get(self, "action_type")
2320
+
2321
+ @action_type.setter
2322
+ def action_type(self, value: pulumi.Input[Union[str, 'ScaleActionType']]):
2323
+ pulumi.set(self, "action_type", value)
2324
+
2325
+ @property
2326
+ @pulumi.getter(name="comparisonRule")
2327
+ def comparison_rule(self) -> pulumi.Input['ComparisonRuleArgs']:
2328
+ """
2329
+ The comparison rule.
2330
+ """
2331
+ return pulumi.get(self, "comparison_rule")
2332
+
2333
+ @comparison_rule.setter
2334
+ def comparison_rule(self, value: pulumi.Input['ComparisonRuleArgs']):
2335
+ pulumi.set(self, "comparison_rule", value)
2336
+
2337
+ @property
2338
+ @pulumi.getter(name="evaluationCount")
2339
+ def evaluation_count(self) -> pulumi.Input[int]:
2340
+ """
2341
+ This is an evaluation count for a scaling condition, the number of times a trigger condition should be successful, before scaling activity is triggered.
2342
+ """
2343
+ return pulumi.get(self, "evaluation_count")
2344
+
2345
+ @evaluation_count.setter
2346
+ def evaluation_count(self, value: pulumi.Input[int]):
2347
+ pulumi.set(self, "evaluation_count", value)
2348
+
2349
+ @property
2350
+ @pulumi.getter(name="scalingMetric")
2351
+ def scaling_metric(self) -> pulumi.Input[str]:
2352
+ """
2353
+ Metrics name for individual workloads. For example: cpu
2354
+ """
2355
+ return pulumi.get(self, "scaling_metric")
2356
+
2357
+ @scaling_metric.setter
2358
+ def scaling_metric(self, value: pulumi.Input[str]):
2359
+ pulumi.set(self, "scaling_metric", value)
2360
+
2361
+
2362
+ @pulumi.input_type
2363
+ class ScheduleBasedConfigArgs:
2364
+ def __init__(__self__, *,
2365
+ default_count: pulumi.Input[int],
2366
+ schedules: pulumi.Input[Sequence[pulumi.Input['ScheduleArgs']]],
2367
+ time_zone: pulumi.Input[str]):
2368
+ """
2369
+ Profile of schedule based Autoscale.
2370
+ :param pulumi.Input[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)
2371
+ :param pulumi.Input[Sequence[pulumi.Input['ScheduleArgs']]] 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).
2372
+ :param pulumi.Input[str] time_zone: User has to specify the timezone on which the schedule has to be set for schedule based autoscale configuration.
2373
+ """
2374
+ pulumi.set(__self__, "default_count", default_count)
2375
+ pulumi.set(__self__, "schedules", schedules)
2376
+ pulumi.set(__self__, "time_zone", time_zone)
2377
+
2378
+ @property
2379
+ @pulumi.getter(name="defaultCount")
2380
+ def default_count(self) -> pulumi.Input[int]:
2381
+ """
2382
+ 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)
2383
+ """
2384
+ return pulumi.get(self, "default_count")
2385
+
2386
+ @default_count.setter
2387
+ def default_count(self, value: pulumi.Input[int]):
2388
+ pulumi.set(self, "default_count", value)
2389
+
2390
+ @property
2391
+ @pulumi.getter
2392
+ def schedules(self) -> pulumi.Input[Sequence[pulumi.Input['ScheduleArgs']]]:
2393
+ """
2394
+ 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).
2395
+ """
2396
+ return pulumi.get(self, "schedules")
2397
+
2398
+ @schedules.setter
2399
+ def schedules(self, value: pulumi.Input[Sequence[pulumi.Input['ScheduleArgs']]]):
2400
+ pulumi.set(self, "schedules", value)
2401
+
2402
+ @property
2403
+ @pulumi.getter(name="timeZone")
2404
+ def time_zone(self) -> pulumi.Input[str]:
2405
+ """
2406
+ User has to specify the timezone on which the schedule has to be set for schedule based autoscale configuration.
2407
+ """
2408
+ return pulumi.get(self, "time_zone")
2409
+
2410
+ @time_zone.setter
2411
+ def time_zone(self, value: pulumi.Input[str]):
2412
+ pulumi.set(self, "time_zone", value)
2413
+
2414
+
2415
+ @pulumi.input_type
2416
+ class ScheduleArgs:
2417
+ def __init__(__self__, *,
2418
+ count: pulumi.Input[int],
2419
+ days: pulumi.Input[Sequence[pulumi.Input[Union[str, 'ScheduleDay']]]],
2420
+ end_time: pulumi.Input[str],
2421
+ start_time: pulumi.Input[str]):
2422
+ """
2423
+ Schedule definition.
2424
+ :param pulumi.Input[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.
2425
+ :param pulumi.Input[Sequence[pulumi.Input[Union[str, 'ScheduleDay']]]] days: User has to set the days where schedule has to be set for autoscale operation.
2426
+ :param pulumi.Input[str] end_time: User has to set the end time of current schedule configuration, format like 10:30 (HH:MM).
2427
+ :param pulumi.Input[str] start_time: User has to set the start time of current schedule configuration, format like 10:30 (HH:MM).
2428
+ """
2429
+ pulumi.set(__self__, "count", count)
2430
+ pulumi.set(__self__, "days", days)
2431
+ pulumi.set(__self__, "end_time", end_time)
2432
+ pulumi.set(__self__, "start_time", start_time)
2433
+
2434
+ @property
2435
+ @pulumi.getter
2436
+ def count(self) -> pulumi.Input[int]:
2437
+ """
2438
+ User has to set the node count anticipated at end of the scaling operation of the set current schedule configuration, format is integer.
2439
+ """
2440
+ return pulumi.get(self, "count")
2441
+
2442
+ @count.setter
2443
+ def count(self, value: pulumi.Input[int]):
2444
+ pulumi.set(self, "count", value)
2445
+
2446
+ @property
2447
+ @pulumi.getter
2448
+ def days(self) -> pulumi.Input[Sequence[pulumi.Input[Union[str, 'ScheduleDay']]]]:
2449
+ """
2450
+ User has to set the days where schedule has to be set for autoscale operation.
2451
+ """
2452
+ return pulumi.get(self, "days")
2453
+
2454
+ @days.setter
2455
+ def days(self, value: pulumi.Input[Sequence[pulumi.Input[Union[str, 'ScheduleDay']]]]):
2456
+ pulumi.set(self, "days", value)
2457
+
2458
+ @property
2459
+ @pulumi.getter(name="endTime")
2460
+ def end_time(self) -> pulumi.Input[str]:
2461
+ """
2462
+ User has to set the end time of current schedule configuration, format like 10:30 (HH:MM).
2463
+ """
2464
+ return pulumi.get(self, "end_time")
2465
+
2466
+ @end_time.setter
2467
+ def end_time(self, value: pulumi.Input[str]):
2468
+ pulumi.set(self, "end_time", value)
2469
+
2470
+ @property
2471
+ @pulumi.getter(name="startTime")
2472
+ def start_time(self) -> pulumi.Input[str]:
2473
+ """
2474
+ User has to set the start time of current schedule configuration, format like 10:30 (HH:MM).
2475
+ """
2476
+ return pulumi.get(self, "start_time")
2477
+
2478
+ @start_time.setter
2479
+ def start_time(self, value: pulumi.Input[str]):
2480
+ pulumi.set(self, "start_time", value)
2481
+
2482
+
2483
+ @pulumi.input_type
2484
+ class ScriptActionProfileArgs:
2485
+ def __init__(__self__, *,
2486
+ name: pulumi.Input[str],
2487
+ services: pulumi.Input[Sequence[pulumi.Input[str]]],
2488
+ type: pulumi.Input[str],
2489
+ url: pulumi.Input[str],
2490
+ parameters: Optional[pulumi.Input[str]] = None,
2491
+ should_persist: Optional[pulumi.Input[bool]] = None,
2492
+ timeout_in_minutes: Optional[pulumi.Input[int]] = None):
2493
+ """
2494
+ The script action profile.
2495
+ :param pulumi.Input[str] name: Script name.
2496
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of services to apply the script action.
2497
+ :param pulumi.Input[str] type: Type of the script action. Supported type is bash scripts.
2498
+ :param pulumi.Input[str] url: Url of the script file.
2499
+ :param pulumi.Input[str] parameters: Additional parameters for the script action. It should be space-separated list of arguments required for script execution.
2500
+ :param pulumi.Input[bool] should_persist: Specify if the script should persist on the cluster.
2501
+ :param pulumi.Input[int] timeout_in_minutes: Timeout duration for the script action in minutes.
2502
+ """
2503
+ pulumi.set(__self__, "name", name)
2504
+ pulumi.set(__self__, "services", services)
2505
+ pulumi.set(__self__, "type", type)
2506
+ pulumi.set(__self__, "url", url)
2507
+ if parameters is not None:
2508
+ pulumi.set(__self__, "parameters", parameters)
2509
+ if should_persist is None:
2510
+ should_persist = True
2511
+ if should_persist is not None:
2512
+ pulumi.set(__self__, "should_persist", should_persist)
2513
+ if timeout_in_minutes is not None:
2514
+ pulumi.set(__self__, "timeout_in_minutes", timeout_in_minutes)
2515
+
2516
+ @property
2517
+ @pulumi.getter
2518
+ def name(self) -> pulumi.Input[str]:
2519
+ """
2520
+ Script name.
2521
+ """
2522
+ return pulumi.get(self, "name")
2523
+
2524
+ @name.setter
2525
+ def name(self, value: pulumi.Input[str]):
2526
+ pulumi.set(self, "name", value)
2527
+
2528
+ @property
2529
+ @pulumi.getter
2530
+ def services(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
2531
+ """
2532
+ List of services to apply the script action.
2533
+ """
2534
+ return pulumi.get(self, "services")
2535
+
2536
+ @services.setter
2537
+ def services(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
2538
+ pulumi.set(self, "services", value)
2539
+
2540
+ @property
2541
+ @pulumi.getter
2542
+ def type(self) -> pulumi.Input[str]:
2543
+ """
2544
+ Type of the script action. Supported type is bash scripts.
2545
+ """
2546
+ return pulumi.get(self, "type")
2547
+
2548
+ @type.setter
2549
+ def type(self, value: pulumi.Input[str]):
2550
+ pulumi.set(self, "type", value)
2551
+
2552
+ @property
2553
+ @pulumi.getter
2554
+ def url(self) -> pulumi.Input[str]:
2555
+ """
2556
+ Url of the script file.
2557
+ """
2558
+ return pulumi.get(self, "url")
2559
+
2560
+ @url.setter
2561
+ def url(self, value: pulumi.Input[str]):
2562
+ pulumi.set(self, "url", value)
2563
+
2564
+ @property
2565
+ @pulumi.getter
2566
+ def parameters(self) -> Optional[pulumi.Input[str]]:
2567
+ """
2568
+ Additional parameters for the script action. It should be space-separated list of arguments required for script execution.
2569
+ """
2570
+ return pulumi.get(self, "parameters")
2571
+
2572
+ @parameters.setter
2573
+ def parameters(self, value: Optional[pulumi.Input[str]]):
2574
+ pulumi.set(self, "parameters", value)
2575
+
2576
+ @property
2577
+ @pulumi.getter(name="shouldPersist")
2578
+ def should_persist(self) -> Optional[pulumi.Input[bool]]:
2579
+ """
2580
+ Specify if the script should persist on the cluster.
2581
+ """
2582
+ return pulumi.get(self, "should_persist")
2583
+
2584
+ @should_persist.setter
2585
+ def should_persist(self, value: Optional[pulumi.Input[bool]]):
2586
+ pulumi.set(self, "should_persist", value)
2587
+
2588
+ @property
2589
+ @pulumi.getter(name="timeoutInMinutes")
2590
+ def timeout_in_minutes(self) -> Optional[pulumi.Input[int]]:
2591
+ """
2592
+ Timeout duration for the script action in minutes.
2593
+ """
2594
+ return pulumi.get(self, "timeout_in_minutes")
2595
+
2596
+ @timeout_in_minutes.setter
2597
+ def timeout_in_minutes(self, value: Optional[pulumi.Input[int]]):
2598
+ pulumi.set(self, "timeout_in_minutes", value)
2599
+
2600
+
2601
+ @pulumi.input_type
2602
+ class SecretReferenceArgs:
2603
+ def __init__(__self__, *,
2604
+ key_vault_object_name: pulumi.Input[str],
2605
+ reference_name: pulumi.Input[str],
2606
+ type: pulumi.Input[Union[str, 'KeyVaultObjectType']],
2607
+ version: Optional[pulumi.Input[str]] = None):
2608
+ """
2609
+ Secret reference and corresponding properties of a key vault secret.
2610
+ :param pulumi.Input[str] key_vault_object_name: Object identifier name of the secret in key vault.
2611
+ :param pulumi.Input[str] reference_name: Reference name of the secret to be used in service configs.
2612
+ :param pulumi.Input[Union[str, 'KeyVaultObjectType']] type: Type of key vault object: secret, key or certificate.
2613
+ :param pulumi.Input[str] version: Version of the secret in key vault.
2614
+ """
2615
+ pulumi.set(__self__, "key_vault_object_name", key_vault_object_name)
2616
+ pulumi.set(__self__, "reference_name", reference_name)
2617
+ pulumi.set(__self__, "type", type)
2618
+ if version is not None:
2619
+ pulumi.set(__self__, "version", version)
2620
+
2621
+ @property
2622
+ @pulumi.getter(name="keyVaultObjectName")
2623
+ def key_vault_object_name(self) -> pulumi.Input[str]:
2624
+ """
2625
+ Object identifier name of the secret in key vault.
2626
+ """
2627
+ return pulumi.get(self, "key_vault_object_name")
2628
+
2629
+ @key_vault_object_name.setter
2630
+ def key_vault_object_name(self, value: pulumi.Input[str]):
2631
+ pulumi.set(self, "key_vault_object_name", value)
2632
+
2633
+ @property
2634
+ @pulumi.getter(name="referenceName")
2635
+ def reference_name(self) -> pulumi.Input[str]:
2636
+ """
2637
+ Reference name of the secret to be used in service configs.
2638
+ """
2639
+ return pulumi.get(self, "reference_name")
2640
+
2641
+ @reference_name.setter
2642
+ def reference_name(self, value: pulumi.Input[str]):
2643
+ pulumi.set(self, "reference_name", value)
2644
+
2645
+ @property
2646
+ @pulumi.getter
2647
+ def type(self) -> pulumi.Input[Union[str, 'KeyVaultObjectType']]:
2648
+ """
2649
+ Type of key vault object: secret, key or certificate.
2650
+ """
2651
+ return pulumi.get(self, "type")
2652
+
2653
+ @type.setter
2654
+ def type(self, value: pulumi.Input[Union[str, 'KeyVaultObjectType']]):
2655
+ pulumi.set(self, "type", value)
2656
+
2657
+ @property
2658
+ @pulumi.getter
2659
+ def version(self) -> Optional[pulumi.Input[str]]:
2660
+ """
2661
+ Version of the secret in key vault.
2662
+ """
2663
+ return pulumi.get(self, "version")
2664
+
2665
+ @version.setter
2666
+ def version(self, value: Optional[pulumi.Input[str]]):
2667
+ pulumi.set(self, "version", value)
2668
+
2669
+
2670
+ @pulumi.input_type
2671
+ class SecretsProfileArgs:
2672
+ def __init__(__self__, *,
2673
+ key_vault_resource_id: pulumi.Input[str],
2674
+ secrets: Optional[pulumi.Input[Sequence[pulumi.Input['SecretReferenceArgs']]]] = None):
2675
+ """
2676
+ The cluster secret profile.
2677
+ :param pulumi.Input[str] key_vault_resource_id: Name of the user Key Vault where all the cluster specific user secrets are stored.
2678
+ :param pulumi.Input[Sequence[pulumi.Input['SecretReferenceArgs']]] secrets: Properties of Key Vault secret.
2679
+ """
2680
+ pulumi.set(__self__, "key_vault_resource_id", key_vault_resource_id)
2681
+ if secrets is not None:
2682
+ pulumi.set(__self__, "secrets", secrets)
2683
+
2684
+ @property
2685
+ @pulumi.getter(name="keyVaultResourceId")
2686
+ def key_vault_resource_id(self) -> pulumi.Input[str]:
2687
+ """
2688
+ Name of the user Key Vault where all the cluster specific user secrets are stored.
2689
+ """
2690
+ return pulumi.get(self, "key_vault_resource_id")
2691
+
2692
+ @key_vault_resource_id.setter
2693
+ def key_vault_resource_id(self, value: pulumi.Input[str]):
2694
+ pulumi.set(self, "key_vault_resource_id", value)
2695
+
2696
+ @property
2697
+ @pulumi.getter
2698
+ def secrets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretReferenceArgs']]]]:
2699
+ """
2700
+ Properties of Key Vault secret.
2701
+ """
2702
+ return pulumi.get(self, "secrets")
2703
+
2704
+ @secrets.setter
2705
+ def secrets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SecretReferenceArgs']]]]):
2706
+ pulumi.set(self, "secrets", value)
2707
+
2708
+
2709
+ @pulumi.input_type
2710
+ class SparkMetastoreSpecArgs:
2711
+ def __init__(__self__, *,
2712
+ db_name: pulumi.Input[str],
2713
+ db_server_host: pulumi.Input[str],
2714
+ db_connection_authentication_mode: Optional[pulumi.Input[Union[str, 'DbConnectionAuthenticationMode']]] = None,
2715
+ db_password_secret_name: Optional[pulumi.Input[str]] = None,
2716
+ db_user_name: Optional[pulumi.Input[str]] = None,
2717
+ key_vault_id: Optional[pulumi.Input[str]] = None,
2718
+ thrift_url: Optional[pulumi.Input[str]] = None):
2719
+ """
2720
+ The metastore specification for Spark cluster.
2721
+ :param pulumi.Input[str] db_name: The database name.
2722
+ :param pulumi.Input[str] db_server_host: The database server host.
2723
+ :param pulumi.Input[Union[str, 'DbConnectionAuthenticationMode']] 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
2724
+ :param pulumi.Input[str] db_password_secret_name: The secret name which contains the database user password.
2725
+ :param pulumi.Input[str] db_user_name: The database user name.
2726
+ :param pulumi.Input[str] key_vault_id: The key vault resource id.
2727
+ :param pulumi.Input[str] thrift_url: The thrift url.
2728
+ """
2729
+ pulumi.set(__self__, "db_name", db_name)
2730
+ pulumi.set(__self__, "db_server_host", db_server_host)
2731
+ if db_connection_authentication_mode is None:
2732
+ db_connection_authentication_mode = 'IdentityAuth'
2733
+ if db_connection_authentication_mode is not None:
2734
+ pulumi.set(__self__, "db_connection_authentication_mode", db_connection_authentication_mode)
2735
+ if db_password_secret_name is not None:
2736
+ pulumi.set(__self__, "db_password_secret_name", db_password_secret_name)
2737
+ if db_user_name is not None:
2738
+ pulumi.set(__self__, "db_user_name", db_user_name)
2739
+ if key_vault_id is not None:
2740
+ pulumi.set(__self__, "key_vault_id", key_vault_id)
2741
+ if thrift_url is not None:
2742
+ pulumi.set(__self__, "thrift_url", thrift_url)
2743
+
2744
+ @property
2745
+ @pulumi.getter(name="dbName")
2746
+ def db_name(self) -> pulumi.Input[str]:
2747
+ """
2748
+ The database name.
2749
+ """
2750
+ return pulumi.get(self, "db_name")
2751
+
2752
+ @db_name.setter
2753
+ def db_name(self, value: pulumi.Input[str]):
2754
+ pulumi.set(self, "db_name", value)
2755
+
2756
+ @property
2757
+ @pulumi.getter(name="dbServerHost")
2758
+ def db_server_host(self) -> pulumi.Input[str]:
2759
+ """
2760
+ The database server host.
2761
+ """
2762
+ return pulumi.get(self, "db_server_host")
2763
+
2764
+ @db_server_host.setter
2765
+ def db_server_host(self, value: pulumi.Input[str]):
2766
+ pulumi.set(self, "db_server_host", value)
2767
+
2768
+ @property
2769
+ @pulumi.getter(name="dbConnectionAuthenticationMode")
2770
+ def db_connection_authentication_mode(self) -> Optional[pulumi.Input[Union[str, 'DbConnectionAuthenticationMode']]]:
2771
+ """
2772
+ 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
2773
+ """
2774
+ return pulumi.get(self, "db_connection_authentication_mode")
2775
+
2776
+ @db_connection_authentication_mode.setter
2777
+ def db_connection_authentication_mode(self, value: Optional[pulumi.Input[Union[str, 'DbConnectionAuthenticationMode']]]):
2778
+ pulumi.set(self, "db_connection_authentication_mode", value)
2779
+
2780
+ @property
2781
+ @pulumi.getter(name="dbPasswordSecretName")
2782
+ def db_password_secret_name(self) -> Optional[pulumi.Input[str]]:
2783
+ """
2784
+ The secret name which contains the database user password.
2785
+ """
2786
+ return pulumi.get(self, "db_password_secret_name")
2787
+
2788
+ @db_password_secret_name.setter
2789
+ def db_password_secret_name(self, value: Optional[pulumi.Input[str]]):
2790
+ pulumi.set(self, "db_password_secret_name", value)
2791
+
2792
+ @property
2793
+ @pulumi.getter(name="dbUserName")
2794
+ def db_user_name(self) -> Optional[pulumi.Input[str]]:
2795
+ """
2796
+ The database user name.
2797
+ """
2798
+ return pulumi.get(self, "db_user_name")
2799
+
2800
+ @db_user_name.setter
2801
+ def db_user_name(self, value: Optional[pulumi.Input[str]]):
2802
+ pulumi.set(self, "db_user_name", value)
2803
+
2804
+ @property
2805
+ @pulumi.getter(name="keyVaultId")
2806
+ def key_vault_id(self) -> Optional[pulumi.Input[str]]:
2807
+ """
2808
+ The key vault resource id.
2809
+ """
2810
+ return pulumi.get(self, "key_vault_id")
2811
+
2812
+ @key_vault_id.setter
2813
+ def key_vault_id(self, value: Optional[pulumi.Input[str]]):
2814
+ pulumi.set(self, "key_vault_id", value)
2815
+
2816
+ @property
2817
+ @pulumi.getter(name="thriftUrl")
2818
+ def thrift_url(self) -> Optional[pulumi.Input[str]]:
2819
+ """
2820
+ The thrift url.
2821
+ """
2822
+ return pulumi.get(self, "thrift_url")
2823
+
2824
+ @thrift_url.setter
2825
+ def thrift_url(self, value: Optional[pulumi.Input[str]]):
2826
+ pulumi.set(self, "thrift_url", value)
2827
+
2828
+
2829
+ @pulumi.input_type
2830
+ class SparkProfileArgs:
2831
+ def __init__(__self__, *,
2832
+ default_storage_url: Optional[pulumi.Input[str]] = None,
2833
+ metastore_spec: Optional[pulumi.Input['SparkMetastoreSpecArgs']] = None,
2834
+ user_plugins_spec: Optional[pulumi.Input['SparkUserPluginsArgs']] = None):
2835
+ """
2836
+ The spark cluster profile.
2837
+ :param pulumi.Input[str] default_storage_url: The default storage URL.
2838
+ :param pulumi.Input['SparkMetastoreSpecArgs'] metastore_spec: The metastore specification for Spark cluster.
2839
+ :param pulumi.Input['SparkUserPluginsArgs'] user_plugins_spec: Spark user plugins spec
2840
+ """
2841
+ if default_storage_url is not None:
2842
+ pulumi.set(__self__, "default_storage_url", default_storage_url)
2843
+ if metastore_spec is not None:
2844
+ pulumi.set(__self__, "metastore_spec", metastore_spec)
2845
+ if user_plugins_spec is not None:
2846
+ pulumi.set(__self__, "user_plugins_spec", user_plugins_spec)
2847
+
2848
+ @property
2849
+ @pulumi.getter(name="defaultStorageUrl")
2850
+ def default_storage_url(self) -> Optional[pulumi.Input[str]]:
2851
+ """
2852
+ The default storage URL.
2853
+ """
2854
+ return pulumi.get(self, "default_storage_url")
2855
+
2856
+ @default_storage_url.setter
2857
+ def default_storage_url(self, value: Optional[pulumi.Input[str]]):
2858
+ pulumi.set(self, "default_storage_url", value)
2859
+
2860
+ @property
2861
+ @pulumi.getter(name="metastoreSpec")
2862
+ def metastore_spec(self) -> Optional[pulumi.Input['SparkMetastoreSpecArgs']]:
2863
+ """
2864
+ The metastore specification for Spark cluster.
2865
+ """
2866
+ return pulumi.get(self, "metastore_spec")
2867
+
2868
+ @metastore_spec.setter
2869
+ def metastore_spec(self, value: Optional[pulumi.Input['SparkMetastoreSpecArgs']]):
2870
+ pulumi.set(self, "metastore_spec", value)
2871
+
2872
+ @property
2873
+ @pulumi.getter(name="userPluginsSpec")
2874
+ def user_plugins_spec(self) -> Optional[pulumi.Input['SparkUserPluginsArgs']]:
2875
+ """
2876
+ Spark user plugins spec
2877
+ """
2878
+ return pulumi.get(self, "user_plugins_spec")
2879
+
2880
+ @user_plugins_spec.setter
2881
+ def user_plugins_spec(self, value: Optional[pulumi.Input['SparkUserPluginsArgs']]):
2882
+ pulumi.set(self, "user_plugins_spec", value)
2883
+
2884
+
2885
+ @pulumi.input_type
2886
+ class SparkUserPluginsArgs:
2887
+ def __init__(__self__, *,
2888
+ plugins: Optional[pulumi.Input[Sequence[pulumi.Input['SparkUserPluginArgs']]]] = None):
2889
+ """
2890
+ Spark user plugins spec
2891
+ :param pulumi.Input[Sequence[pulumi.Input['SparkUserPluginArgs']]] plugins: Spark user plugins.
2892
+ """
2893
+ if plugins is not None:
2894
+ pulumi.set(__self__, "plugins", plugins)
2895
+
2896
+ @property
2897
+ @pulumi.getter
2898
+ def plugins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SparkUserPluginArgs']]]]:
2899
+ """
2900
+ Spark user plugins.
2901
+ """
2902
+ return pulumi.get(self, "plugins")
2903
+
2904
+ @plugins.setter
2905
+ def plugins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SparkUserPluginArgs']]]]):
2906
+ pulumi.set(self, "plugins", value)
2907
+
2908
+
2909
+ @pulumi.input_type
2910
+ class SparkUserPluginArgs:
2911
+ def __init__(__self__, *,
2912
+ path: pulumi.Input[str]):
2913
+ """
2914
+ Spark user plugin.
2915
+ :param pulumi.Input[str] path: Fully qualified path to the folder containing the plugins.
2916
+ """
2917
+ pulumi.set(__self__, "path", path)
2918
+
2919
+ @property
2920
+ @pulumi.getter
2921
+ def path(self) -> pulumi.Input[str]:
2922
+ """
2923
+ Fully qualified path to the folder containing the plugins.
2924
+ """
2925
+ return pulumi.get(self, "path")
2926
+
2927
+ @path.setter
2928
+ def path(self, value: pulumi.Input[str]):
2929
+ pulumi.set(self, "path", value)
2930
+
2931
+
2932
+ @pulumi.input_type
2933
+ class SshProfileArgs:
2934
+ def __init__(__self__, *,
2935
+ count: pulumi.Input[int],
2936
+ vm_size: Optional[pulumi.Input[str]] = None):
2937
+ """
2938
+ Ssh profile for the cluster.
2939
+ :param pulumi.Input[int] count: Number of ssh pods per cluster.
2940
+ :param pulumi.Input[str] vm_size: The virtual machine SKU.
2941
+ """
2942
+ pulumi.set(__self__, "count", count)
2943
+ if vm_size is not None:
2944
+ pulumi.set(__self__, "vm_size", vm_size)
2945
+
2946
+ @property
2947
+ @pulumi.getter
2948
+ def count(self) -> pulumi.Input[int]:
2949
+ """
2950
+ Number of ssh pods per cluster.
2951
+ """
2952
+ return pulumi.get(self, "count")
2953
+
2954
+ @count.setter
2955
+ def count(self, value: pulumi.Input[int]):
2956
+ pulumi.set(self, "count", value)
2957
+
2958
+ @property
2959
+ @pulumi.getter(name="vmSize")
2960
+ def vm_size(self) -> Optional[pulumi.Input[str]]:
2961
+ """
2962
+ The virtual machine SKU.
2963
+ """
2964
+ return pulumi.get(self, "vm_size")
2965
+
2966
+ @vm_size.setter
2967
+ def vm_size(self, value: Optional[pulumi.Input[str]]):
2968
+ pulumi.set(self, "vm_size", value)
2969
+
2970
+
2971
+ @pulumi.input_type
2972
+ class TrinoCoordinatorArgs:
2973
+ def __init__(__self__, *,
2974
+ enable: Optional[pulumi.Input[bool]] = None,
2975
+ high_availability_enabled: Optional[pulumi.Input[bool]] = None,
2976
+ port: Optional[pulumi.Input[int]] = None,
2977
+ suspend: Optional[pulumi.Input[bool]] = None):
2978
+ """
2979
+ Trino Coordinator.
2980
+ :param pulumi.Input[bool] enable: The flag that if enable debug or not.
2981
+ :param pulumi.Input[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.
2982
+ :param pulumi.Input[int] port: The debug port.
2983
+ :param pulumi.Input[bool] suspend: The flag that if suspend debug or not.
2984
+ """
2985
+ if enable is None:
2986
+ enable = False
2987
+ if enable is not None:
2988
+ pulumi.set(__self__, "enable", enable)
2989
+ if high_availability_enabled is None:
2990
+ high_availability_enabled = True
2991
+ if high_availability_enabled is not None:
2992
+ pulumi.set(__self__, "high_availability_enabled", high_availability_enabled)
2993
+ if port is None:
2994
+ port = 8008
2995
+ if port is not None:
2996
+ pulumi.set(__self__, "port", port)
2997
+ if suspend is None:
2998
+ suspend = False
2999
+ if suspend is not None:
3000
+ pulumi.set(__self__, "suspend", suspend)
3001
+
3002
+ @property
3003
+ @pulumi.getter
3004
+ def enable(self) -> Optional[pulumi.Input[bool]]:
3005
+ """
3006
+ The flag that if enable debug or not.
3007
+ """
3008
+ return pulumi.get(self, "enable")
3009
+
3010
+ @enable.setter
3011
+ def enable(self, value: Optional[pulumi.Input[bool]]):
3012
+ pulumi.set(self, "enable", value)
3013
+
3014
+ @property
3015
+ @pulumi.getter(name="highAvailabilityEnabled")
3016
+ def high_availability_enabled(self) -> Optional[pulumi.Input[bool]]:
3017
+ """
3018
+ The flag that if enable coordinator HA, uses multiple coordinator replicas with auto failover, one per each head node. Default: true.
3019
+ """
3020
+ return pulumi.get(self, "high_availability_enabled")
3021
+
3022
+ @high_availability_enabled.setter
3023
+ def high_availability_enabled(self, value: Optional[pulumi.Input[bool]]):
3024
+ pulumi.set(self, "high_availability_enabled", value)
3025
+
3026
+ @property
3027
+ @pulumi.getter
3028
+ def port(self) -> Optional[pulumi.Input[int]]:
3029
+ """
3030
+ The debug port.
3031
+ """
3032
+ return pulumi.get(self, "port")
3033
+
3034
+ @port.setter
3035
+ def port(self, value: Optional[pulumi.Input[int]]):
3036
+ pulumi.set(self, "port", value)
3037
+
3038
+ @property
3039
+ @pulumi.getter
3040
+ def suspend(self) -> Optional[pulumi.Input[bool]]:
3041
+ """
3042
+ The flag that if suspend debug or not.
3043
+ """
3044
+ return pulumi.get(self, "suspend")
3045
+
3046
+ @suspend.setter
3047
+ def suspend(self, value: Optional[pulumi.Input[bool]]):
3048
+ pulumi.set(self, "suspend", value)
3049
+
3050
+
3051
+ @pulumi.input_type
3052
+ class TrinoProfileArgs:
3053
+ def __init__(__self__, *,
3054
+ catalog_options: Optional[pulumi.Input['CatalogOptionsArgs']] = None,
3055
+ coordinator: Optional[pulumi.Input['TrinoCoordinatorArgs']] = None,
3056
+ user_plugins_spec: Optional[pulumi.Input['TrinoUserPluginsArgs']] = None,
3057
+ user_telemetry_spec: Optional[pulumi.Input['TrinoUserTelemetryArgs']] = None,
3058
+ worker: Optional[pulumi.Input['TrinoWorkerArgs']] = None):
3059
+ """
3060
+ Trino Cluster profile.
3061
+ :param pulumi.Input['CatalogOptionsArgs'] catalog_options: Trino cluster catalog options.
3062
+ :param pulumi.Input['TrinoCoordinatorArgs'] coordinator: Trino Coordinator.
3063
+ :param pulumi.Input['TrinoUserPluginsArgs'] user_plugins_spec: Trino user plugins spec
3064
+ :param pulumi.Input['TrinoUserTelemetryArgs'] user_telemetry_spec: User telemetry
3065
+ :param pulumi.Input['TrinoWorkerArgs'] worker: Trino worker.
3066
+ """
3067
+ if catalog_options is not None:
3068
+ pulumi.set(__self__, "catalog_options", catalog_options)
3069
+ if coordinator is not None:
3070
+ pulumi.set(__self__, "coordinator", coordinator)
3071
+ if user_plugins_spec is not None:
3072
+ pulumi.set(__self__, "user_plugins_spec", user_plugins_spec)
3073
+ if user_telemetry_spec is not None:
3074
+ pulumi.set(__self__, "user_telemetry_spec", user_telemetry_spec)
3075
+ if worker is not None:
3076
+ pulumi.set(__self__, "worker", worker)
3077
+
3078
+ @property
3079
+ @pulumi.getter(name="catalogOptions")
3080
+ def catalog_options(self) -> Optional[pulumi.Input['CatalogOptionsArgs']]:
3081
+ """
3082
+ Trino cluster catalog options.
3083
+ """
3084
+ return pulumi.get(self, "catalog_options")
3085
+
3086
+ @catalog_options.setter
3087
+ def catalog_options(self, value: Optional[pulumi.Input['CatalogOptionsArgs']]):
3088
+ pulumi.set(self, "catalog_options", value)
3089
+
3090
+ @property
3091
+ @pulumi.getter
3092
+ def coordinator(self) -> Optional[pulumi.Input['TrinoCoordinatorArgs']]:
3093
+ """
3094
+ Trino Coordinator.
3095
+ """
3096
+ return pulumi.get(self, "coordinator")
3097
+
3098
+ @coordinator.setter
3099
+ def coordinator(self, value: Optional[pulumi.Input['TrinoCoordinatorArgs']]):
3100
+ pulumi.set(self, "coordinator", value)
3101
+
3102
+ @property
3103
+ @pulumi.getter(name="userPluginsSpec")
3104
+ def user_plugins_spec(self) -> Optional[pulumi.Input['TrinoUserPluginsArgs']]:
3105
+ """
3106
+ Trino user plugins spec
3107
+ """
3108
+ return pulumi.get(self, "user_plugins_spec")
3109
+
3110
+ @user_plugins_spec.setter
3111
+ def user_plugins_spec(self, value: Optional[pulumi.Input['TrinoUserPluginsArgs']]):
3112
+ pulumi.set(self, "user_plugins_spec", value)
3113
+
3114
+ @property
3115
+ @pulumi.getter(name="userTelemetrySpec")
3116
+ def user_telemetry_spec(self) -> Optional[pulumi.Input['TrinoUserTelemetryArgs']]:
3117
+ """
3118
+ User telemetry
3119
+ """
3120
+ return pulumi.get(self, "user_telemetry_spec")
3121
+
3122
+ @user_telemetry_spec.setter
3123
+ def user_telemetry_spec(self, value: Optional[pulumi.Input['TrinoUserTelemetryArgs']]):
3124
+ pulumi.set(self, "user_telemetry_spec", value)
3125
+
3126
+ @property
3127
+ @pulumi.getter
3128
+ def worker(self) -> Optional[pulumi.Input['TrinoWorkerArgs']]:
3129
+ """
3130
+ Trino worker.
3131
+ """
3132
+ return pulumi.get(self, "worker")
3133
+
3134
+ @worker.setter
3135
+ def worker(self, value: Optional[pulumi.Input['TrinoWorkerArgs']]):
3136
+ pulumi.set(self, "worker", value)
3137
+
3138
+
3139
+ @pulumi.input_type
3140
+ class TrinoTelemetryConfigArgs:
3141
+ def __init__(__self__, *,
3142
+ hivecatalog_name: Optional[pulumi.Input[str]] = None,
3143
+ hivecatalog_schema: Optional[pulumi.Input[str]] = None,
3144
+ partition_retention_in_days: Optional[pulumi.Input[int]] = None,
3145
+ path: Optional[pulumi.Input[str]] = None):
3146
+ """
3147
+ Trino user telemetry definition.
3148
+ :param pulumi.Input[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.
3149
+ :param pulumi.Input[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.
3150
+ :param pulumi.Input[int] partition_retention_in_days: Retention period for query log table partitions, this doesn't have any affect on actual data.
3151
+ :param pulumi.Input[str] path: Azure storage location of the blobs.
3152
+ """
3153
+ if hivecatalog_name is not None:
3154
+ pulumi.set(__self__, "hivecatalog_name", hivecatalog_name)
3155
+ if hivecatalog_schema is None:
3156
+ hivecatalog_schema = 'trinologs'
3157
+ if hivecatalog_schema is not None:
3158
+ pulumi.set(__self__, "hivecatalog_schema", hivecatalog_schema)
3159
+ if partition_retention_in_days is None:
3160
+ partition_retention_in_days = 365
3161
+ if partition_retention_in_days is not None:
3162
+ pulumi.set(__self__, "partition_retention_in_days", partition_retention_in_days)
3163
+ if path is not None:
3164
+ pulumi.set(__self__, "path", path)
3165
+
3166
+ @property
3167
+ @pulumi.getter(name="hivecatalogName")
3168
+ def hivecatalog_name(self) -> Optional[pulumi.Input[str]]:
3169
+ """
3170
+ Hive Catalog name used to mount external tables on the logs written by trino, if not specified there tables are not created.
3171
+ """
3172
+ return pulumi.get(self, "hivecatalog_name")
3173
+
3174
+ @hivecatalog_name.setter
3175
+ def hivecatalog_name(self, value: Optional[pulumi.Input[str]]):
3176
+ pulumi.set(self, "hivecatalog_name", value)
3177
+
3178
+ @property
3179
+ @pulumi.getter(name="hivecatalogSchema")
3180
+ def hivecatalog_schema(self) -> Optional[pulumi.Input[str]]:
3181
+ """
3182
+ Schema of the above catalog to use, to mount query logs as external tables, if not specified tables will be mounted under schema trinologs.
3183
+ """
3184
+ return pulumi.get(self, "hivecatalog_schema")
3185
+
3186
+ @hivecatalog_schema.setter
3187
+ def hivecatalog_schema(self, value: Optional[pulumi.Input[str]]):
3188
+ pulumi.set(self, "hivecatalog_schema", value)
3189
+
3190
+ @property
3191
+ @pulumi.getter(name="partitionRetentionInDays")
3192
+ def partition_retention_in_days(self) -> Optional[pulumi.Input[int]]:
3193
+ """
3194
+ Retention period for query log table partitions, this doesn't have any affect on actual data.
3195
+ """
3196
+ return pulumi.get(self, "partition_retention_in_days")
3197
+
3198
+ @partition_retention_in_days.setter
3199
+ def partition_retention_in_days(self, value: Optional[pulumi.Input[int]]):
3200
+ pulumi.set(self, "partition_retention_in_days", value)
3201
+
3202
+ @property
3203
+ @pulumi.getter
3204
+ def path(self) -> Optional[pulumi.Input[str]]:
3205
+ """
3206
+ Azure storage location of the blobs.
3207
+ """
3208
+ return pulumi.get(self, "path")
3209
+
3210
+ @path.setter
3211
+ def path(self, value: Optional[pulumi.Input[str]]):
3212
+ pulumi.set(self, "path", value)
3213
+
3214
+
3215
+ @pulumi.input_type
3216
+ class TrinoUserPluginsArgs:
3217
+ def __init__(__self__, *,
3218
+ plugins: Optional[pulumi.Input[Sequence[pulumi.Input['TrinoUserPluginArgs']]]] = None):
3219
+ """
3220
+ Trino user plugins spec
3221
+ :param pulumi.Input[Sequence[pulumi.Input['TrinoUserPluginArgs']]] plugins: Trino user plugins.
3222
+ """
3223
+ if plugins is not None:
3224
+ pulumi.set(__self__, "plugins", plugins)
3225
+
3226
+ @property
3227
+ @pulumi.getter
3228
+ def plugins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TrinoUserPluginArgs']]]]:
3229
+ """
3230
+ Trino user plugins.
3231
+ """
3232
+ return pulumi.get(self, "plugins")
3233
+
3234
+ @plugins.setter
3235
+ def plugins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TrinoUserPluginArgs']]]]):
3236
+ pulumi.set(self, "plugins", value)
3237
+
3238
+
3239
+ @pulumi.input_type
3240
+ class TrinoUserPluginArgs:
3241
+ def __init__(__self__, *,
3242
+ enabled: Optional[pulumi.Input[bool]] = None,
3243
+ name: Optional[pulumi.Input[str]] = None,
3244
+ path: Optional[pulumi.Input[str]] = None):
3245
+ """
3246
+ Trino user plugin.
3247
+ :param pulumi.Input[bool] enabled: Denotes whether the plugin is active or not.
3248
+ :param pulumi.Input[str] name: This field maps to the sub-directory in trino plugins location, that will contain all the plugins under path.
3249
+ :param pulumi.Input[str] path: Fully qualified path to the folder containing the plugins.
3250
+ """
3251
+ if enabled is not None:
3252
+ pulumi.set(__self__, "enabled", enabled)
3253
+ if name is not None:
3254
+ pulumi.set(__self__, "name", name)
3255
+ if path is not None:
3256
+ pulumi.set(__self__, "path", path)
3257
+
3258
+ @property
3259
+ @pulumi.getter
3260
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
3261
+ """
3262
+ Denotes whether the plugin is active or not.
3263
+ """
3264
+ return pulumi.get(self, "enabled")
3265
+
3266
+ @enabled.setter
3267
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
3268
+ pulumi.set(self, "enabled", value)
3269
+
3270
+ @property
3271
+ @pulumi.getter
3272
+ def name(self) -> Optional[pulumi.Input[str]]:
3273
+ """
3274
+ This field maps to the sub-directory in trino plugins location, that will contain all the plugins under path.
3275
+ """
3276
+ return pulumi.get(self, "name")
3277
+
3278
+ @name.setter
3279
+ def name(self, value: Optional[pulumi.Input[str]]):
3280
+ pulumi.set(self, "name", value)
3281
+
3282
+ @property
3283
+ @pulumi.getter
3284
+ def path(self) -> Optional[pulumi.Input[str]]:
3285
+ """
3286
+ Fully qualified path to the folder containing the plugins.
3287
+ """
3288
+ return pulumi.get(self, "path")
3289
+
3290
+ @path.setter
3291
+ def path(self, value: Optional[pulumi.Input[str]]):
3292
+ pulumi.set(self, "path", value)
3293
+
3294
+
3295
+ @pulumi.input_type
3296
+ class TrinoUserTelemetryArgs:
3297
+ def __init__(__self__, *,
3298
+ storage: Optional[pulumi.Input['TrinoTelemetryConfigArgs']] = None):
3299
+ """
3300
+ User telemetry
3301
+ :param pulumi.Input['TrinoTelemetryConfigArgs'] storage: Trino user telemetry definition.
3302
+ """
3303
+ if storage is not None:
3304
+ pulumi.set(__self__, "storage", storage)
3305
+
3306
+ @property
3307
+ @pulumi.getter
3308
+ def storage(self) -> Optional[pulumi.Input['TrinoTelemetryConfigArgs']]:
3309
+ """
3310
+ Trino user telemetry definition.
3311
+ """
3312
+ return pulumi.get(self, "storage")
3313
+
3314
+ @storage.setter
3315
+ def storage(self, value: Optional[pulumi.Input['TrinoTelemetryConfigArgs']]):
3316
+ pulumi.set(self, "storage", value)
3317
+
3318
+
3319
+ @pulumi.input_type
3320
+ class TrinoWorkerArgs:
3321
+ def __init__(__self__, *,
3322
+ enable: Optional[pulumi.Input[bool]] = None,
3323
+ port: Optional[pulumi.Input[int]] = None,
3324
+ suspend: Optional[pulumi.Input[bool]] = None):
3325
+ """
3326
+ Trino worker.
3327
+ :param pulumi.Input[bool] enable: The flag that if enable debug or not.
3328
+ :param pulumi.Input[int] port: The debug port.
3329
+ :param pulumi.Input[bool] suspend: The flag that if suspend debug or not.
3330
+ """
3331
+ if enable is None:
3332
+ enable = False
3333
+ if enable is not None:
3334
+ pulumi.set(__self__, "enable", enable)
3335
+ if port is None:
3336
+ port = 8008
3337
+ if port is not None:
3338
+ pulumi.set(__self__, "port", port)
3339
+ if suspend is None:
3340
+ suspend = False
3341
+ if suspend is not None:
3342
+ pulumi.set(__self__, "suspend", suspend)
3343
+
3344
+ @property
3345
+ @pulumi.getter
3346
+ def enable(self) -> Optional[pulumi.Input[bool]]:
3347
+ """
3348
+ The flag that if enable debug or not.
3349
+ """
3350
+ return pulumi.get(self, "enable")
3351
+
3352
+ @enable.setter
3353
+ def enable(self, value: Optional[pulumi.Input[bool]]):
3354
+ pulumi.set(self, "enable", value)
3355
+
3356
+ @property
3357
+ @pulumi.getter
3358
+ def port(self) -> Optional[pulumi.Input[int]]:
3359
+ """
3360
+ The debug port.
3361
+ """
3362
+ return pulumi.get(self, "port")
3363
+
3364
+ @port.setter
3365
+ def port(self, value: Optional[pulumi.Input[int]]):
3366
+ pulumi.set(self, "port", value)
3367
+
3368
+ @property
3369
+ @pulumi.getter
3370
+ def suspend(self) -> Optional[pulumi.Input[bool]]:
3371
+ """
3372
+ The flag that if suspend debug or not.
3373
+ """
3374
+ return pulumi.get(self, "suspend")
3375
+
3376
+ @suspend.setter
3377
+ def suspend(self, value: Optional[pulumi.Input[bool]]):
3378
+ pulumi.set(self, "suspend", value)
3379
+
3380
+