pulumi-azure-native 2.32.1a1710772071__py3-none-any.whl → 2.32.1a1711118999__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.1a1711118999.dist-info}/METADATA +1 -1
  1246. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711118999.dist-info}/RECORD +1248 -950
  1247. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711118999.dist-info}/WHEEL +0 -0
  1248. {pulumi_azure_native-2.32.1a1710772071.dist-info → pulumi_azure_native-2.32.1a1711118999.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3268 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+ from ._enums import *
13
+
14
+ __all__ = [
15
+ 'AddIncidentTaskActionPropertiesResponse',
16
+ 'AlertDetailsOverrideResponse',
17
+ 'AlertPropertyMappingResponse',
18
+ 'AlertsDataTypeOfDataConnectorResponse',
19
+ 'AutomationRuleAddIncidentTaskActionResponse',
20
+ 'AutomationRuleBooleanConditionResponse',
21
+ 'AutomationRuleModifyPropertiesActionResponse',
22
+ 'AutomationRulePropertyArrayChangedValuesConditionResponse',
23
+ 'AutomationRulePropertyArrayValuesConditionResponse',
24
+ 'AutomationRulePropertyValuesChangedConditionResponse',
25
+ 'AutomationRulePropertyValuesConditionResponse',
26
+ 'AutomationRuleRunPlaybookActionResponse',
27
+ 'AutomationRuleTriggeringLogicResponse',
28
+ 'AwsCloudTrailDataConnectorDataTypesResponse',
29
+ 'AwsCloudTrailDataConnectorDataTypesResponseLogs',
30
+ 'BooleanConditionPropertiesResponse',
31
+ 'ClientInfoResponse',
32
+ 'DataConnectorDataTypeCommonResponse',
33
+ 'EntityMappingResponse',
34
+ 'EventGroupingSettingsResponse',
35
+ 'FieldMappingResponse',
36
+ 'GroupingConfigurationResponse',
37
+ 'IncidentAdditionalDataResponse',
38
+ 'IncidentConfigurationResponse',
39
+ 'IncidentInfoResponse',
40
+ 'IncidentLabelResponse',
41
+ 'IncidentOwnerInfoResponse',
42
+ 'IncidentPropertiesActionResponse',
43
+ 'MCASDataConnectorDataTypesResponse',
44
+ 'MetadataAuthorResponse',
45
+ 'MetadataCategoriesResponse',
46
+ 'MetadataDependenciesResponse',
47
+ 'MetadataSourceResponse',
48
+ 'MetadataSupportResponse',
49
+ 'OfficeDataConnectorDataTypesResponse',
50
+ 'OfficeDataConnectorDataTypesResponseExchange',
51
+ 'OfficeDataConnectorDataTypesResponseSharePoint',
52
+ 'OfficeDataConnectorDataTypesResponseTeams',
53
+ 'PlaybookActionPropertiesResponse',
54
+ 'PropertyArrayChangedConditionPropertiesResponse',
55
+ 'PropertyArrayConditionPropertiesResponse',
56
+ 'PropertyChangedConditionPropertiesResponse',
57
+ 'PropertyConditionPropertiesResponse',
58
+ 'RepoResponse',
59
+ 'SecurityMLAnalyticsSettingsDataSourceResponse',
60
+ 'SystemDataResponse',
61
+ 'TIDataConnectorDataTypesResponse',
62
+ 'TIDataConnectorDataTypesResponseIndicators',
63
+ 'TemplatePropertiesResponse',
64
+ 'UserInfoResponse',
65
+ 'WatchlistUserInfoResponse',
66
+ ]
67
+
68
+ @pulumi.output_type
69
+ class AddIncidentTaskActionPropertiesResponse(dict):
70
+ """
71
+ Describes an automation rule action to add a task to an incident.
72
+ """
73
+ def __init__(__self__, *,
74
+ title: str,
75
+ description: Optional[str] = None):
76
+ """
77
+ Describes an automation rule action to add a task to an incident.
78
+ :param str title: The title of the task.
79
+ :param str description: The description of the task.
80
+ """
81
+ pulumi.set(__self__, "title", title)
82
+ if description is not None:
83
+ pulumi.set(__self__, "description", description)
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def title(self) -> str:
88
+ """
89
+ The title of the task.
90
+ """
91
+ return pulumi.get(self, "title")
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def description(self) -> Optional[str]:
96
+ """
97
+ The description of the task.
98
+ """
99
+ return pulumi.get(self, "description")
100
+
101
+
102
+ @pulumi.output_type
103
+ class AlertDetailsOverrideResponse(dict):
104
+ """
105
+ Settings for how to dynamically override alert static details
106
+ """
107
+ @staticmethod
108
+ def __key_warning(key: str):
109
+ suggest = None
110
+ if key == "alertDescriptionFormat":
111
+ suggest = "alert_description_format"
112
+ elif key == "alertDisplayNameFormat":
113
+ suggest = "alert_display_name_format"
114
+ elif key == "alertDynamicProperties":
115
+ suggest = "alert_dynamic_properties"
116
+ elif key == "alertSeverityColumnName":
117
+ suggest = "alert_severity_column_name"
118
+ elif key == "alertTacticsColumnName":
119
+ suggest = "alert_tactics_column_name"
120
+
121
+ if suggest:
122
+ pulumi.log.warn(f"Key '{key}' not found in AlertDetailsOverrideResponse. Access the value via the '{suggest}' property getter instead.")
123
+
124
+ def __getitem__(self, key: str) -> Any:
125
+ AlertDetailsOverrideResponse.__key_warning(key)
126
+ return super().__getitem__(key)
127
+
128
+ def get(self, key: str, default = None) -> Any:
129
+ AlertDetailsOverrideResponse.__key_warning(key)
130
+ return super().get(key, default)
131
+
132
+ def __init__(__self__, *,
133
+ alert_description_format: Optional[str] = None,
134
+ alert_display_name_format: Optional[str] = None,
135
+ alert_dynamic_properties: Optional[Sequence['outputs.AlertPropertyMappingResponse']] = None,
136
+ alert_severity_column_name: Optional[str] = None,
137
+ alert_tactics_column_name: Optional[str] = None):
138
+ """
139
+ Settings for how to dynamically override alert static details
140
+ :param str alert_description_format: the format containing columns name(s) to override the alert description
141
+ :param str alert_display_name_format: the format containing columns name(s) to override the alert name
142
+ :param Sequence['AlertPropertyMappingResponse'] alert_dynamic_properties: List of additional dynamic properties to override
143
+ :param str alert_severity_column_name: the column name to take the alert severity from
144
+ :param str alert_tactics_column_name: the column name to take the alert tactics from
145
+ """
146
+ if alert_description_format is not None:
147
+ pulumi.set(__self__, "alert_description_format", alert_description_format)
148
+ if alert_display_name_format is not None:
149
+ pulumi.set(__self__, "alert_display_name_format", alert_display_name_format)
150
+ if alert_dynamic_properties is not None:
151
+ pulumi.set(__self__, "alert_dynamic_properties", alert_dynamic_properties)
152
+ if alert_severity_column_name is not None:
153
+ pulumi.set(__self__, "alert_severity_column_name", alert_severity_column_name)
154
+ if alert_tactics_column_name is not None:
155
+ pulumi.set(__self__, "alert_tactics_column_name", alert_tactics_column_name)
156
+
157
+ @property
158
+ @pulumi.getter(name="alertDescriptionFormat")
159
+ def alert_description_format(self) -> Optional[str]:
160
+ """
161
+ the format containing columns name(s) to override the alert description
162
+ """
163
+ return pulumi.get(self, "alert_description_format")
164
+
165
+ @property
166
+ @pulumi.getter(name="alertDisplayNameFormat")
167
+ def alert_display_name_format(self) -> Optional[str]:
168
+ """
169
+ the format containing columns name(s) to override the alert name
170
+ """
171
+ return pulumi.get(self, "alert_display_name_format")
172
+
173
+ @property
174
+ @pulumi.getter(name="alertDynamicProperties")
175
+ def alert_dynamic_properties(self) -> Optional[Sequence['outputs.AlertPropertyMappingResponse']]:
176
+ """
177
+ List of additional dynamic properties to override
178
+ """
179
+ return pulumi.get(self, "alert_dynamic_properties")
180
+
181
+ @property
182
+ @pulumi.getter(name="alertSeverityColumnName")
183
+ def alert_severity_column_name(self) -> Optional[str]:
184
+ """
185
+ the column name to take the alert severity from
186
+ """
187
+ return pulumi.get(self, "alert_severity_column_name")
188
+
189
+ @property
190
+ @pulumi.getter(name="alertTacticsColumnName")
191
+ def alert_tactics_column_name(self) -> Optional[str]:
192
+ """
193
+ the column name to take the alert tactics from
194
+ """
195
+ return pulumi.get(self, "alert_tactics_column_name")
196
+
197
+
198
+ @pulumi.output_type
199
+ class AlertPropertyMappingResponse(dict):
200
+ """
201
+ A single alert property mapping to override
202
+ """
203
+ @staticmethod
204
+ def __key_warning(key: str):
205
+ suggest = None
206
+ if key == "alertProperty":
207
+ suggest = "alert_property"
208
+
209
+ if suggest:
210
+ pulumi.log.warn(f"Key '{key}' not found in AlertPropertyMappingResponse. Access the value via the '{suggest}' property getter instead.")
211
+
212
+ def __getitem__(self, key: str) -> Any:
213
+ AlertPropertyMappingResponse.__key_warning(key)
214
+ return super().__getitem__(key)
215
+
216
+ def get(self, key: str, default = None) -> Any:
217
+ AlertPropertyMappingResponse.__key_warning(key)
218
+ return super().get(key, default)
219
+
220
+ def __init__(__self__, *,
221
+ alert_property: Optional[str] = None,
222
+ value: Optional[str] = None):
223
+ """
224
+ A single alert property mapping to override
225
+ :param str alert_property: The V3 alert property
226
+ :param str value: the column name to use to override this property
227
+ """
228
+ if alert_property is not None:
229
+ pulumi.set(__self__, "alert_property", alert_property)
230
+ if value is not None:
231
+ pulumi.set(__self__, "value", value)
232
+
233
+ @property
234
+ @pulumi.getter(name="alertProperty")
235
+ def alert_property(self) -> Optional[str]:
236
+ """
237
+ The V3 alert property
238
+ """
239
+ return pulumi.get(self, "alert_property")
240
+
241
+ @property
242
+ @pulumi.getter
243
+ def value(self) -> Optional[str]:
244
+ """
245
+ the column name to use to override this property
246
+ """
247
+ return pulumi.get(self, "value")
248
+
249
+
250
+ @pulumi.output_type
251
+ class AlertsDataTypeOfDataConnectorResponse(dict):
252
+ """
253
+ Alerts data type for data connectors.
254
+ """
255
+ def __init__(__self__, *,
256
+ alerts: Optional['outputs.DataConnectorDataTypeCommonResponse'] = None):
257
+ """
258
+ Alerts data type for data connectors.
259
+ :param 'DataConnectorDataTypeCommonResponse' alerts: Alerts data type connection.
260
+ """
261
+ if alerts is not None:
262
+ pulumi.set(__self__, "alerts", alerts)
263
+
264
+ @property
265
+ @pulumi.getter
266
+ def alerts(self) -> Optional['outputs.DataConnectorDataTypeCommonResponse']:
267
+ """
268
+ Alerts data type connection.
269
+ """
270
+ return pulumi.get(self, "alerts")
271
+
272
+
273
+ @pulumi.output_type
274
+ class AutomationRuleAddIncidentTaskActionResponse(dict):
275
+ """
276
+ Describes an automation rule action to add a task to an incident
277
+ """
278
+ @staticmethod
279
+ def __key_warning(key: str):
280
+ suggest = None
281
+ if key == "actionType":
282
+ suggest = "action_type"
283
+ elif key == "actionConfiguration":
284
+ suggest = "action_configuration"
285
+
286
+ if suggest:
287
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleAddIncidentTaskActionResponse. Access the value via the '{suggest}' property getter instead.")
288
+
289
+ def __getitem__(self, key: str) -> Any:
290
+ AutomationRuleAddIncidentTaskActionResponse.__key_warning(key)
291
+ return super().__getitem__(key)
292
+
293
+ def get(self, key: str, default = None) -> Any:
294
+ AutomationRuleAddIncidentTaskActionResponse.__key_warning(key)
295
+ return super().get(key, default)
296
+
297
+ def __init__(__self__, *,
298
+ action_type: str,
299
+ order: int,
300
+ action_configuration: Optional['outputs.AddIncidentTaskActionPropertiesResponse'] = None):
301
+ """
302
+ Describes an automation rule action to add a task to an incident
303
+ :param str action_type: The type of the automation rule action.
304
+ Expected value is 'AddIncidentTask'.
305
+ :param 'AddIncidentTaskActionPropertiesResponse' action_configuration: Describes an automation rule action to add a task to an incident.
306
+ """
307
+ pulumi.set(__self__, "action_type", 'AddIncidentTask')
308
+ pulumi.set(__self__, "order", order)
309
+ if action_configuration is not None:
310
+ pulumi.set(__self__, "action_configuration", action_configuration)
311
+
312
+ @property
313
+ @pulumi.getter(name="actionType")
314
+ def action_type(self) -> str:
315
+ """
316
+ The type of the automation rule action.
317
+ Expected value is 'AddIncidentTask'.
318
+ """
319
+ return pulumi.get(self, "action_type")
320
+
321
+ @property
322
+ @pulumi.getter
323
+ def order(self) -> int:
324
+ return pulumi.get(self, "order")
325
+
326
+ @property
327
+ @pulumi.getter(name="actionConfiguration")
328
+ def action_configuration(self) -> Optional['outputs.AddIncidentTaskActionPropertiesResponse']:
329
+ """
330
+ Describes an automation rule action to add a task to an incident.
331
+ """
332
+ return pulumi.get(self, "action_configuration")
333
+
334
+
335
+ @pulumi.output_type
336
+ class AutomationRuleBooleanConditionResponse(dict):
337
+ """
338
+ Describes an automation rule condition with boolean operators.
339
+ """
340
+ @staticmethod
341
+ def __key_warning(key: str):
342
+ suggest = None
343
+ if key == "innerConditions":
344
+ suggest = "inner_conditions"
345
+
346
+ if suggest:
347
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleBooleanConditionResponse. Access the value via the '{suggest}' property getter instead.")
348
+
349
+ def __getitem__(self, key: str) -> Any:
350
+ AutomationRuleBooleanConditionResponse.__key_warning(key)
351
+ return super().__getitem__(key)
352
+
353
+ def get(self, key: str, default = None) -> Any:
354
+ AutomationRuleBooleanConditionResponse.__key_warning(key)
355
+ return super().get(key, default)
356
+
357
+ def __init__(__self__, *,
358
+ inner_conditions: Optional[Sequence[Any]] = None,
359
+ operator: Optional[str] = None):
360
+ """
361
+ Describes an automation rule condition with boolean operators.
362
+ :param str operator: Describes a boolean condition operator.
363
+ """
364
+ if inner_conditions is not None:
365
+ pulumi.set(__self__, "inner_conditions", inner_conditions)
366
+ if operator is not None:
367
+ pulumi.set(__self__, "operator", operator)
368
+
369
+ @property
370
+ @pulumi.getter(name="innerConditions")
371
+ def inner_conditions(self) -> Optional[Sequence[Any]]:
372
+ return pulumi.get(self, "inner_conditions")
373
+
374
+ @property
375
+ @pulumi.getter
376
+ def operator(self) -> Optional[str]:
377
+ """
378
+ Describes a boolean condition operator.
379
+ """
380
+ return pulumi.get(self, "operator")
381
+
382
+
383
+ @pulumi.output_type
384
+ class AutomationRuleModifyPropertiesActionResponse(dict):
385
+ """
386
+ Describes an automation rule action to modify an object's properties
387
+ """
388
+ @staticmethod
389
+ def __key_warning(key: str):
390
+ suggest = None
391
+ if key == "actionType":
392
+ suggest = "action_type"
393
+ elif key == "actionConfiguration":
394
+ suggest = "action_configuration"
395
+
396
+ if suggest:
397
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleModifyPropertiesActionResponse. Access the value via the '{suggest}' property getter instead.")
398
+
399
+ def __getitem__(self, key: str) -> Any:
400
+ AutomationRuleModifyPropertiesActionResponse.__key_warning(key)
401
+ return super().__getitem__(key)
402
+
403
+ def get(self, key: str, default = None) -> Any:
404
+ AutomationRuleModifyPropertiesActionResponse.__key_warning(key)
405
+ return super().get(key, default)
406
+
407
+ def __init__(__self__, *,
408
+ action_type: str,
409
+ order: int,
410
+ action_configuration: Optional['outputs.IncidentPropertiesActionResponse'] = None):
411
+ """
412
+ Describes an automation rule action to modify an object's properties
413
+ :param str action_type: The type of the automation rule action.
414
+ Expected value is 'ModifyProperties'.
415
+ """
416
+ pulumi.set(__self__, "action_type", 'ModifyProperties')
417
+ pulumi.set(__self__, "order", order)
418
+ if action_configuration is not None:
419
+ pulumi.set(__self__, "action_configuration", action_configuration)
420
+
421
+ @property
422
+ @pulumi.getter(name="actionType")
423
+ def action_type(self) -> str:
424
+ """
425
+ The type of the automation rule action.
426
+ Expected value is 'ModifyProperties'.
427
+ """
428
+ return pulumi.get(self, "action_type")
429
+
430
+ @property
431
+ @pulumi.getter
432
+ def order(self) -> int:
433
+ return pulumi.get(self, "order")
434
+
435
+ @property
436
+ @pulumi.getter(name="actionConfiguration")
437
+ def action_configuration(self) -> Optional['outputs.IncidentPropertiesActionResponse']:
438
+ return pulumi.get(self, "action_configuration")
439
+
440
+
441
+ @pulumi.output_type
442
+ class AutomationRulePropertyArrayChangedValuesConditionResponse(dict):
443
+ @staticmethod
444
+ def __key_warning(key: str):
445
+ suggest = None
446
+ if key == "arrayType":
447
+ suggest = "array_type"
448
+ elif key == "changeType":
449
+ suggest = "change_type"
450
+
451
+ if suggest:
452
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRulePropertyArrayChangedValuesConditionResponse. Access the value via the '{suggest}' property getter instead.")
453
+
454
+ def __getitem__(self, key: str) -> Any:
455
+ AutomationRulePropertyArrayChangedValuesConditionResponse.__key_warning(key)
456
+ return super().__getitem__(key)
457
+
458
+ def get(self, key: str, default = None) -> Any:
459
+ AutomationRulePropertyArrayChangedValuesConditionResponse.__key_warning(key)
460
+ return super().get(key, default)
461
+
462
+ def __init__(__self__, *,
463
+ array_type: Optional[str] = None,
464
+ change_type: Optional[str] = None):
465
+ if array_type is not None:
466
+ pulumi.set(__self__, "array_type", array_type)
467
+ if change_type is not None:
468
+ pulumi.set(__self__, "change_type", change_type)
469
+
470
+ @property
471
+ @pulumi.getter(name="arrayType")
472
+ def array_type(self) -> Optional[str]:
473
+ return pulumi.get(self, "array_type")
474
+
475
+ @property
476
+ @pulumi.getter(name="changeType")
477
+ def change_type(self) -> Optional[str]:
478
+ return pulumi.get(self, "change_type")
479
+
480
+
481
+ @pulumi.output_type
482
+ class AutomationRulePropertyArrayValuesConditionResponse(dict):
483
+ """
484
+ Describes an automation rule condition on array properties.
485
+ """
486
+ @staticmethod
487
+ def __key_warning(key: str):
488
+ suggest = None
489
+ if key == "arrayConditionType":
490
+ suggest = "array_condition_type"
491
+ elif key == "arrayType":
492
+ suggest = "array_type"
493
+ elif key == "itemConditions":
494
+ suggest = "item_conditions"
495
+
496
+ if suggest:
497
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRulePropertyArrayValuesConditionResponse. Access the value via the '{suggest}' property getter instead.")
498
+
499
+ def __getitem__(self, key: str) -> Any:
500
+ AutomationRulePropertyArrayValuesConditionResponse.__key_warning(key)
501
+ return super().__getitem__(key)
502
+
503
+ def get(self, key: str, default = None) -> Any:
504
+ AutomationRulePropertyArrayValuesConditionResponse.__key_warning(key)
505
+ return super().get(key, default)
506
+
507
+ def __init__(__self__, *,
508
+ array_condition_type: Optional[str] = None,
509
+ array_type: Optional[str] = None,
510
+ item_conditions: Optional[Sequence[Any]] = None):
511
+ """
512
+ Describes an automation rule condition on array properties.
513
+ :param str array_condition_type: Describes an array condition evaluation type.
514
+ :param str array_type: Describes an array condition evaluated array type.
515
+ """
516
+ if array_condition_type is not None:
517
+ pulumi.set(__self__, "array_condition_type", array_condition_type)
518
+ if array_type is not None:
519
+ pulumi.set(__self__, "array_type", array_type)
520
+ if item_conditions is not None:
521
+ pulumi.set(__self__, "item_conditions", item_conditions)
522
+
523
+ @property
524
+ @pulumi.getter(name="arrayConditionType")
525
+ def array_condition_type(self) -> Optional[str]:
526
+ """
527
+ Describes an array condition evaluation type.
528
+ """
529
+ return pulumi.get(self, "array_condition_type")
530
+
531
+ @property
532
+ @pulumi.getter(name="arrayType")
533
+ def array_type(self) -> Optional[str]:
534
+ """
535
+ Describes an array condition evaluated array type.
536
+ """
537
+ return pulumi.get(self, "array_type")
538
+
539
+ @property
540
+ @pulumi.getter(name="itemConditions")
541
+ def item_conditions(self) -> Optional[Sequence[Any]]:
542
+ return pulumi.get(self, "item_conditions")
543
+
544
+
545
+ @pulumi.output_type
546
+ class AutomationRulePropertyValuesChangedConditionResponse(dict):
547
+ @staticmethod
548
+ def __key_warning(key: str):
549
+ suggest = None
550
+ if key == "changeType":
551
+ suggest = "change_type"
552
+ elif key == "propertyName":
553
+ suggest = "property_name"
554
+ elif key == "propertyValues":
555
+ suggest = "property_values"
556
+
557
+ if suggest:
558
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRulePropertyValuesChangedConditionResponse. Access the value via the '{suggest}' property getter instead.")
559
+
560
+ def __getitem__(self, key: str) -> Any:
561
+ AutomationRulePropertyValuesChangedConditionResponse.__key_warning(key)
562
+ return super().__getitem__(key)
563
+
564
+ def get(self, key: str, default = None) -> Any:
565
+ AutomationRulePropertyValuesChangedConditionResponse.__key_warning(key)
566
+ return super().get(key, default)
567
+
568
+ def __init__(__self__, *,
569
+ change_type: Optional[str] = None,
570
+ operator: Optional[str] = None,
571
+ property_name: Optional[str] = None,
572
+ property_values: Optional[Sequence[str]] = None):
573
+ if change_type is not None:
574
+ pulumi.set(__self__, "change_type", change_type)
575
+ if operator is not None:
576
+ pulumi.set(__self__, "operator", operator)
577
+ if property_name is not None:
578
+ pulumi.set(__self__, "property_name", property_name)
579
+ if property_values is not None:
580
+ pulumi.set(__self__, "property_values", property_values)
581
+
582
+ @property
583
+ @pulumi.getter(name="changeType")
584
+ def change_type(self) -> Optional[str]:
585
+ return pulumi.get(self, "change_type")
586
+
587
+ @property
588
+ @pulumi.getter
589
+ def operator(self) -> Optional[str]:
590
+ return pulumi.get(self, "operator")
591
+
592
+ @property
593
+ @pulumi.getter(name="propertyName")
594
+ def property_name(self) -> Optional[str]:
595
+ return pulumi.get(self, "property_name")
596
+
597
+ @property
598
+ @pulumi.getter(name="propertyValues")
599
+ def property_values(self) -> Optional[Sequence[str]]:
600
+ return pulumi.get(self, "property_values")
601
+
602
+
603
+ @pulumi.output_type
604
+ class AutomationRulePropertyValuesConditionResponse(dict):
605
+ @staticmethod
606
+ def __key_warning(key: str):
607
+ suggest = None
608
+ if key == "propertyName":
609
+ suggest = "property_name"
610
+ elif key == "propertyValues":
611
+ suggest = "property_values"
612
+
613
+ if suggest:
614
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRulePropertyValuesConditionResponse. Access the value via the '{suggest}' property getter instead.")
615
+
616
+ def __getitem__(self, key: str) -> Any:
617
+ AutomationRulePropertyValuesConditionResponse.__key_warning(key)
618
+ return super().__getitem__(key)
619
+
620
+ def get(self, key: str, default = None) -> Any:
621
+ AutomationRulePropertyValuesConditionResponse.__key_warning(key)
622
+ return super().get(key, default)
623
+
624
+ def __init__(__self__, *,
625
+ operator: Optional[str] = None,
626
+ property_name: Optional[str] = None,
627
+ property_values: Optional[Sequence[str]] = None):
628
+ """
629
+ :param str property_name: The property to evaluate in an automation rule property condition.
630
+ """
631
+ if operator is not None:
632
+ pulumi.set(__self__, "operator", operator)
633
+ if property_name is not None:
634
+ pulumi.set(__self__, "property_name", property_name)
635
+ if property_values is not None:
636
+ pulumi.set(__self__, "property_values", property_values)
637
+
638
+ @property
639
+ @pulumi.getter
640
+ def operator(self) -> Optional[str]:
641
+ return pulumi.get(self, "operator")
642
+
643
+ @property
644
+ @pulumi.getter(name="propertyName")
645
+ def property_name(self) -> Optional[str]:
646
+ """
647
+ The property to evaluate in an automation rule property condition.
648
+ """
649
+ return pulumi.get(self, "property_name")
650
+
651
+ @property
652
+ @pulumi.getter(name="propertyValues")
653
+ def property_values(self) -> Optional[Sequence[str]]:
654
+ return pulumi.get(self, "property_values")
655
+
656
+
657
+ @pulumi.output_type
658
+ class AutomationRuleRunPlaybookActionResponse(dict):
659
+ """
660
+ Describes an automation rule action to run a playbook
661
+ """
662
+ @staticmethod
663
+ def __key_warning(key: str):
664
+ suggest = None
665
+ if key == "actionType":
666
+ suggest = "action_type"
667
+ elif key == "actionConfiguration":
668
+ suggest = "action_configuration"
669
+
670
+ if suggest:
671
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleRunPlaybookActionResponse. Access the value via the '{suggest}' property getter instead.")
672
+
673
+ def __getitem__(self, key: str) -> Any:
674
+ AutomationRuleRunPlaybookActionResponse.__key_warning(key)
675
+ return super().__getitem__(key)
676
+
677
+ def get(self, key: str, default = None) -> Any:
678
+ AutomationRuleRunPlaybookActionResponse.__key_warning(key)
679
+ return super().get(key, default)
680
+
681
+ def __init__(__self__, *,
682
+ action_type: str,
683
+ order: int,
684
+ action_configuration: Optional['outputs.PlaybookActionPropertiesResponse'] = None):
685
+ """
686
+ Describes an automation rule action to run a playbook
687
+ :param str action_type: The type of the automation rule action.
688
+ Expected value is 'RunPlaybook'.
689
+ """
690
+ pulumi.set(__self__, "action_type", 'RunPlaybook')
691
+ pulumi.set(__self__, "order", order)
692
+ if action_configuration is not None:
693
+ pulumi.set(__self__, "action_configuration", action_configuration)
694
+
695
+ @property
696
+ @pulumi.getter(name="actionType")
697
+ def action_type(self) -> str:
698
+ """
699
+ The type of the automation rule action.
700
+ Expected value is 'RunPlaybook'.
701
+ """
702
+ return pulumi.get(self, "action_type")
703
+
704
+ @property
705
+ @pulumi.getter
706
+ def order(self) -> int:
707
+ return pulumi.get(self, "order")
708
+
709
+ @property
710
+ @pulumi.getter(name="actionConfiguration")
711
+ def action_configuration(self) -> Optional['outputs.PlaybookActionPropertiesResponse']:
712
+ return pulumi.get(self, "action_configuration")
713
+
714
+
715
+ @pulumi.output_type
716
+ class AutomationRuleTriggeringLogicResponse(dict):
717
+ """
718
+ Describes automation rule triggering logic.
719
+ """
720
+ @staticmethod
721
+ def __key_warning(key: str):
722
+ suggest = None
723
+ if key == "isEnabled":
724
+ suggest = "is_enabled"
725
+ elif key == "triggersOn":
726
+ suggest = "triggers_on"
727
+ elif key == "triggersWhen":
728
+ suggest = "triggers_when"
729
+ elif key == "expirationTimeUtc":
730
+ suggest = "expiration_time_utc"
731
+
732
+ if suggest:
733
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleTriggeringLogicResponse. Access the value via the '{suggest}' property getter instead.")
734
+
735
+ def __getitem__(self, key: str) -> Any:
736
+ AutomationRuleTriggeringLogicResponse.__key_warning(key)
737
+ return super().__getitem__(key)
738
+
739
+ def get(self, key: str, default = None) -> Any:
740
+ AutomationRuleTriggeringLogicResponse.__key_warning(key)
741
+ return super().get(key, default)
742
+
743
+ def __init__(__self__, *,
744
+ is_enabled: bool,
745
+ triggers_on: str,
746
+ triggers_when: str,
747
+ conditions: Optional[Sequence[Any]] = None,
748
+ expiration_time_utc: Optional[str] = None):
749
+ """
750
+ Describes automation rule triggering logic.
751
+ :param bool is_enabled: Determines whether the automation rule is enabled or disabled.
752
+ :param Sequence[Union['BooleanConditionPropertiesResponse', 'PropertyArrayChangedConditionPropertiesResponse', 'PropertyArrayConditionPropertiesResponse', 'PropertyChangedConditionPropertiesResponse', 'PropertyConditionPropertiesResponse']] conditions: The conditions to evaluate to determine if the automation rule should be triggered on a given object.
753
+ :param str expiration_time_utc: Determines when the automation rule should automatically expire and be disabled.
754
+ """
755
+ pulumi.set(__self__, "is_enabled", is_enabled)
756
+ pulumi.set(__self__, "triggers_on", triggers_on)
757
+ pulumi.set(__self__, "triggers_when", triggers_when)
758
+ if conditions is not None:
759
+ pulumi.set(__self__, "conditions", conditions)
760
+ if expiration_time_utc is not None:
761
+ pulumi.set(__self__, "expiration_time_utc", expiration_time_utc)
762
+
763
+ @property
764
+ @pulumi.getter(name="isEnabled")
765
+ def is_enabled(self) -> bool:
766
+ """
767
+ Determines whether the automation rule is enabled or disabled.
768
+ """
769
+ return pulumi.get(self, "is_enabled")
770
+
771
+ @property
772
+ @pulumi.getter(name="triggersOn")
773
+ def triggers_on(self) -> str:
774
+ return pulumi.get(self, "triggers_on")
775
+
776
+ @property
777
+ @pulumi.getter(name="triggersWhen")
778
+ def triggers_when(self) -> str:
779
+ return pulumi.get(self, "triggers_when")
780
+
781
+ @property
782
+ @pulumi.getter
783
+ def conditions(self) -> Optional[Sequence[Any]]:
784
+ """
785
+ The conditions to evaluate to determine if the automation rule should be triggered on a given object.
786
+ """
787
+ return pulumi.get(self, "conditions")
788
+
789
+ @property
790
+ @pulumi.getter(name="expirationTimeUtc")
791
+ def expiration_time_utc(self) -> Optional[str]:
792
+ """
793
+ Determines when the automation rule should automatically expire and be disabled.
794
+ """
795
+ return pulumi.get(self, "expiration_time_utc")
796
+
797
+
798
+ @pulumi.output_type
799
+ class AwsCloudTrailDataConnectorDataTypesResponse(dict):
800
+ """
801
+ The available data types for Amazon Web Services CloudTrail data connector.
802
+ """
803
+ def __init__(__self__, *,
804
+ logs: Optional['outputs.AwsCloudTrailDataConnectorDataTypesResponseLogs'] = None):
805
+ """
806
+ The available data types for Amazon Web Services CloudTrail data connector.
807
+ :param 'AwsCloudTrailDataConnectorDataTypesResponseLogs' logs: Logs data type.
808
+ """
809
+ if logs is not None:
810
+ pulumi.set(__self__, "logs", logs)
811
+
812
+ @property
813
+ @pulumi.getter
814
+ def logs(self) -> Optional['outputs.AwsCloudTrailDataConnectorDataTypesResponseLogs']:
815
+ """
816
+ Logs data type.
817
+ """
818
+ return pulumi.get(self, "logs")
819
+
820
+
821
+ @pulumi.output_type
822
+ class AwsCloudTrailDataConnectorDataTypesResponseLogs(dict):
823
+ """
824
+ Logs data type.
825
+ """
826
+ def __init__(__self__, *,
827
+ state: Optional[str] = None):
828
+ """
829
+ Logs data type.
830
+ :param str state: Describe whether this data type connection is enabled or not.
831
+ """
832
+ if state is not None:
833
+ pulumi.set(__self__, "state", state)
834
+
835
+ @property
836
+ @pulumi.getter
837
+ def state(self) -> Optional[str]:
838
+ """
839
+ Describe whether this data type connection is enabled or not.
840
+ """
841
+ return pulumi.get(self, "state")
842
+
843
+
844
+ @pulumi.output_type
845
+ class BooleanConditionPropertiesResponse(dict):
846
+ """
847
+ Describes an automation rule condition that applies a boolean operator (e.g AND, OR) to conditions
848
+ """
849
+ @staticmethod
850
+ def __key_warning(key: str):
851
+ suggest = None
852
+ if key == "conditionType":
853
+ suggest = "condition_type"
854
+ elif key == "conditionProperties":
855
+ suggest = "condition_properties"
856
+
857
+ if suggest:
858
+ pulumi.log.warn(f"Key '{key}' not found in BooleanConditionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
859
+
860
+ def __getitem__(self, key: str) -> Any:
861
+ BooleanConditionPropertiesResponse.__key_warning(key)
862
+ return super().__getitem__(key)
863
+
864
+ def get(self, key: str, default = None) -> Any:
865
+ BooleanConditionPropertiesResponse.__key_warning(key)
866
+ return super().get(key, default)
867
+
868
+ def __init__(__self__, *,
869
+ condition_type: str,
870
+ condition_properties: Optional['outputs.AutomationRuleBooleanConditionResponse'] = None):
871
+ """
872
+ Describes an automation rule condition that applies a boolean operator (e.g AND, OR) to conditions
873
+ :param str condition_type:
874
+ Expected value is 'Boolean'.
875
+ :param 'AutomationRuleBooleanConditionResponse' condition_properties: Describes an automation rule condition with boolean operators.
876
+ """
877
+ pulumi.set(__self__, "condition_type", 'Boolean')
878
+ if condition_properties is not None:
879
+ pulumi.set(__self__, "condition_properties", condition_properties)
880
+
881
+ @property
882
+ @pulumi.getter(name="conditionType")
883
+ def condition_type(self) -> str:
884
+ """
885
+
886
+ Expected value is 'Boolean'.
887
+ """
888
+ return pulumi.get(self, "condition_type")
889
+
890
+ @property
891
+ @pulumi.getter(name="conditionProperties")
892
+ def condition_properties(self) -> Optional['outputs.AutomationRuleBooleanConditionResponse']:
893
+ """
894
+ Describes an automation rule condition with boolean operators.
895
+ """
896
+ return pulumi.get(self, "condition_properties")
897
+
898
+
899
+ @pulumi.output_type
900
+ class ClientInfoResponse(dict):
901
+ """
902
+ Information on the client (user or application) that made some action
903
+ """
904
+ @staticmethod
905
+ def __key_warning(key: str):
906
+ suggest = None
907
+ if key == "objectId":
908
+ suggest = "object_id"
909
+ elif key == "userPrincipalName":
910
+ suggest = "user_principal_name"
911
+
912
+ if suggest:
913
+ pulumi.log.warn(f"Key '{key}' not found in ClientInfoResponse. Access the value via the '{suggest}' property getter instead.")
914
+
915
+ def __getitem__(self, key: str) -> Any:
916
+ ClientInfoResponse.__key_warning(key)
917
+ return super().__getitem__(key)
918
+
919
+ def get(self, key: str, default = None) -> Any:
920
+ ClientInfoResponse.__key_warning(key)
921
+ return super().get(key, default)
922
+
923
+ def __init__(__self__, *,
924
+ email: Optional[str] = None,
925
+ name: Optional[str] = None,
926
+ object_id: Optional[str] = None,
927
+ user_principal_name: Optional[str] = None):
928
+ """
929
+ Information on the client (user or application) that made some action
930
+ :param str email: The email of the client.
931
+ :param str name: The name of the client.
932
+ :param str object_id: The object id of the client.
933
+ :param str user_principal_name: The user principal name of the client.
934
+ """
935
+ if email is not None:
936
+ pulumi.set(__self__, "email", email)
937
+ if name is not None:
938
+ pulumi.set(__self__, "name", name)
939
+ if object_id is not None:
940
+ pulumi.set(__self__, "object_id", object_id)
941
+ if user_principal_name is not None:
942
+ pulumi.set(__self__, "user_principal_name", user_principal_name)
943
+
944
+ @property
945
+ @pulumi.getter
946
+ def email(self) -> Optional[str]:
947
+ """
948
+ The email of the client.
949
+ """
950
+ return pulumi.get(self, "email")
951
+
952
+ @property
953
+ @pulumi.getter
954
+ def name(self) -> Optional[str]:
955
+ """
956
+ The name of the client.
957
+ """
958
+ return pulumi.get(self, "name")
959
+
960
+ @property
961
+ @pulumi.getter(name="objectId")
962
+ def object_id(self) -> Optional[str]:
963
+ """
964
+ The object id of the client.
965
+ """
966
+ return pulumi.get(self, "object_id")
967
+
968
+ @property
969
+ @pulumi.getter(name="userPrincipalName")
970
+ def user_principal_name(self) -> Optional[str]:
971
+ """
972
+ The user principal name of the client.
973
+ """
974
+ return pulumi.get(self, "user_principal_name")
975
+
976
+
977
+ @pulumi.output_type
978
+ class DataConnectorDataTypeCommonResponse(dict):
979
+ """
980
+ Common field for data type in data connectors.
981
+ """
982
+ def __init__(__self__, *,
983
+ state: Optional[str] = None):
984
+ """
985
+ Common field for data type in data connectors.
986
+ :param str state: Describe whether this data type connection is enabled or not.
987
+ """
988
+ if state is not None:
989
+ pulumi.set(__self__, "state", state)
990
+
991
+ @property
992
+ @pulumi.getter
993
+ def state(self) -> Optional[str]:
994
+ """
995
+ Describe whether this data type connection is enabled or not.
996
+ """
997
+ return pulumi.get(self, "state")
998
+
999
+
1000
+ @pulumi.output_type
1001
+ class EntityMappingResponse(dict):
1002
+ """
1003
+ Single entity mapping for the alert rule
1004
+ """
1005
+ @staticmethod
1006
+ def __key_warning(key: str):
1007
+ suggest = None
1008
+ if key == "entityType":
1009
+ suggest = "entity_type"
1010
+ elif key == "fieldMappings":
1011
+ suggest = "field_mappings"
1012
+
1013
+ if suggest:
1014
+ pulumi.log.warn(f"Key '{key}' not found in EntityMappingResponse. Access the value via the '{suggest}' property getter instead.")
1015
+
1016
+ def __getitem__(self, key: str) -> Any:
1017
+ EntityMappingResponse.__key_warning(key)
1018
+ return super().__getitem__(key)
1019
+
1020
+ def get(self, key: str, default = None) -> Any:
1021
+ EntityMappingResponse.__key_warning(key)
1022
+ return super().get(key, default)
1023
+
1024
+ def __init__(__self__, *,
1025
+ entity_type: Optional[str] = None,
1026
+ field_mappings: Optional[Sequence['outputs.FieldMappingResponse']] = None):
1027
+ """
1028
+ Single entity mapping for the alert rule
1029
+ :param str entity_type: The V3 type of the mapped entity
1030
+ :param Sequence['FieldMappingResponse'] field_mappings: array of field mappings for the given entity mapping
1031
+ """
1032
+ if entity_type is not None:
1033
+ pulumi.set(__self__, "entity_type", entity_type)
1034
+ if field_mappings is not None:
1035
+ pulumi.set(__self__, "field_mappings", field_mappings)
1036
+
1037
+ @property
1038
+ @pulumi.getter(name="entityType")
1039
+ def entity_type(self) -> Optional[str]:
1040
+ """
1041
+ The V3 type of the mapped entity
1042
+ """
1043
+ return pulumi.get(self, "entity_type")
1044
+
1045
+ @property
1046
+ @pulumi.getter(name="fieldMappings")
1047
+ def field_mappings(self) -> Optional[Sequence['outputs.FieldMappingResponse']]:
1048
+ """
1049
+ array of field mappings for the given entity mapping
1050
+ """
1051
+ return pulumi.get(self, "field_mappings")
1052
+
1053
+
1054
+ @pulumi.output_type
1055
+ class EventGroupingSettingsResponse(dict):
1056
+ """
1057
+ Event grouping settings property bag.
1058
+ """
1059
+ @staticmethod
1060
+ def __key_warning(key: str):
1061
+ suggest = None
1062
+ if key == "aggregationKind":
1063
+ suggest = "aggregation_kind"
1064
+
1065
+ if suggest:
1066
+ pulumi.log.warn(f"Key '{key}' not found in EventGroupingSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1067
+
1068
+ def __getitem__(self, key: str) -> Any:
1069
+ EventGroupingSettingsResponse.__key_warning(key)
1070
+ return super().__getitem__(key)
1071
+
1072
+ def get(self, key: str, default = None) -> Any:
1073
+ EventGroupingSettingsResponse.__key_warning(key)
1074
+ return super().get(key, default)
1075
+
1076
+ def __init__(__self__, *,
1077
+ aggregation_kind: Optional[str] = None):
1078
+ """
1079
+ Event grouping settings property bag.
1080
+ :param str aggregation_kind: The event grouping aggregation kinds
1081
+ """
1082
+ if aggregation_kind is not None:
1083
+ pulumi.set(__self__, "aggregation_kind", aggregation_kind)
1084
+
1085
+ @property
1086
+ @pulumi.getter(name="aggregationKind")
1087
+ def aggregation_kind(self) -> Optional[str]:
1088
+ """
1089
+ The event grouping aggregation kinds
1090
+ """
1091
+ return pulumi.get(self, "aggregation_kind")
1092
+
1093
+
1094
+ @pulumi.output_type
1095
+ class FieldMappingResponse(dict):
1096
+ """
1097
+ A single field mapping of the mapped entity
1098
+ """
1099
+ @staticmethod
1100
+ def __key_warning(key: str):
1101
+ suggest = None
1102
+ if key == "columnName":
1103
+ suggest = "column_name"
1104
+
1105
+ if suggest:
1106
+ pulumi.log.warn(f"Key '{key}' not found in FieldMappingResponse. Access the value via the '{suggest}' property getter instead.")
1107
+
1108
+ def __getitem__(self, key: str) -> Any:
1109
+ FieldMappingResponse.__key_warning(key)
1110
+ return super().__getitem__(key)
1111
+
1112
+ def get(self, key: str, default = None) -> Any:
1113
+ FieldMappingResponse.__key_warning(key)
1114
+ return super().get(key, default)
1115
+
1116
+ def __init__(__self__, *,
1117
+ column_name: Optional[str] = None,
1118
+ identifier: Optional[str] = None):
1119
+ """
1120
+ A single field mapping of the mapped entity
1121
+ :param str column_name: the column name to be mapped to the identifier
1122
+ :param str identifier: the V3 identifier of the entity
1123
+ """
1124
+ if column_name is not None:
1125
+ pulumi.set(__self__, "column_name", column_name)
1126
+ if identifier is not None:
1127
+ pulumi.set(__self__, "identifier", identifier)
1128
+
1129
+ @property
1130
+ @pulumi.getter(name="columnName")
1131
+ def column_name(self) -> Optional[str]:
1132
+ """
1133
+ the column name to be mapped to the identifier
1134
+ """
1135
+ return pulumi.get(self, "column_name")
1136
+
1137
+ @property
1138
+ @pulumi.getter
1139
+ def identifier(self) -> Optional[str]:
1140
+ """
1141
+ the V3 identifier of the entity
1142
+ """
1143
+ return pulumi.get(self, "identifier")
1144
+
1145
+
1146
+ @pulumi.output_type
1147
+ class GroupingConfigurationResponse(dict):
1148
+ """
1149
+ Grouping configuration property bag.
1150
+ """
1151
+ @staticmethod
1152
+ def __key_warning(key: str):
1153
+ suggest = None
1154
+ if key == "lookbackDuration":
1155
+ suggest = "lookback_duration"
1156
+ elif key == "matchingMethod":
1157
+ suggest = "matching_method"
1158
+ elif key == "reopenClosedIncident":
1159
+ suggest = "reopen_closed_incident"
1160
+ elif key == "groupByAlertDetails":
1161
+ suggest = "group_by_alert_details"
1162
+ elif key == "groupByCustomDetails":
1163
+ suggest = "group_by_custom_details"
1164
+ elif key == "groupByEntities":
1165
+ suggest = "group_by_entities"
1166
+
1167
+ if suggest:
1168
+ pulumi.log.warn(f"Key '{key}' not found in GroupingConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1169
+
1170
+ def __getitem__(self, key: str) -> Any:
1171
+ GroupingConfigurationResponse.__key_warning(key)
1172
+ return super().__getitem__(key)
1173
+
1174
+ def get(self, key: str, default = None) -> Any:
1175
+ GroupingConfigurationResponse.__key_warning(key)
1176
+ return super().get(key, default)
1177
+
1178
+ def __init__(__self__, *,
1179
+ enabled: bool,
1180
+ lookback_duration: str,
1181
+ matching_method: str,
1182
+ reopen_closed_incident: bool,
1183
+ group_by_alert_details: Optional[Sequence[str]] = None,
1184
+ group_by_custom_details: Optional[Sequence[str]] = None,
1185
+ group_by_entities: Optional[Sequence[str]] = None):
1186
+ """
1187
+ Grouping configuration property bag.
1188
+ :param bool enabled: Grouping enabled
1189
+ :param str lookback_duration: Limit the group to alerts created within the lookback duration (in ISO 8601 duration format)
1190
+ :param str matching_method: Grouping matching method. When method is Selected at least one of groupByEntities, groupByAlertDetails, groupByCustomDetails must be provided and not empty.
1191
+ :param bool reopen_closed_incident: Re-open closed matching incidents
1192
+ :param Sequence[str] group_by_alert_details: A list of alert details to group by (when matchingMethod is Selected)
1193
+ :param Sequence[str] group_by_custom_details: A list of custom details keys to group by (when matchingMethod is Selected). Only keys defined in the current alert rule may be used.
1194
+ :param Sequence[str] group_by_entities: A list of entity types to group by (when matchingMethod is Selected). Only entities defined in the current alert rule may be used.
1195
+ """
1196
+ pulumi.set(__self__, "enabled", enabled)
1197
+ pulumi.set(__self__, "lookback_duration", lookback_duration)
1198
+ pulumi.set(__self__, "matching_method", matching_method)
1199
+ pulumi.set(__self__, "reopen_closed_incident", reopen_closed_incident)
1200
+ if group_by_alert_details is not None:
1201
+ pulumi.set(__self__, "group_by_alert_details", group_by_alert_details)
1202
+ if group_by_custom_details is not None:
1203
+ pulumi.set(__self__, "group_by_custom_details", group_by_custom_details)
1204
+ if group_by_entities is not None:
1205
+ pulumi.set(__self__, "group_by_entities", group_by_entities)
1206
+
1207
+ @property
1208
+ @pulumi.getter
1209
+ def enabled(self) -> bool:
1210
+ """
1211
+ Grouping enabled
1212
+ """
1213
+ return pulumi.get(self, "enabled")
1214
+
1215
+ @property
1216
+ @pulumi.getter(name="lookbackDuration")
1217
+ def lookback_duration(self) -> str:
1218
+ """
1219
+ Limit the group to alerts created within the lookback duration (in ISO 8601 duration format)
1220
+ """
1221
+ return pulumi.get(self, "lookback_duration")
1222
+
1223
+ @property
1224
+ @pulumi.getter(name="matchingMethod")
1225
+ def matching_method(self) -> str:
1226
+ """
1227
+ Grouping matching method. When method is Selected at least one of groupByEntities, groupByAlertDetails, groupByCustomDetails must be provided and not empty.
1228
+ """
1229
+ return pulumi.get(self, "matching_method")
1230
+
1231
+ @property
1232
+ @pulumi.getter(name="reopenClosedIncident")
1233
+ def reopen_closed_incident(self) -> bool:
1234
+ """
1235
+ Re-open closed matching incidents
1236
+ """
1237
+ return pulumi.get(self, "reopen_closed_incident")
1238
+
1239
+ @property
1240
+ @pulumi.getter(name="groupByAlertDetails")
1241
+ def group_by_alert_details(self) -> Optional[Sequence[str]]:
1242
+ """
1243
+ A list of alert details to group by (when matchingMethod is Selected)
1244
+ """
1245
+ return pulumi.get(self, "group_by_alert_details")
1246
+
1247
+ @property
1248
+ @pulumi.getter(name="groupByCustomDetails")
1249
+ def group_by_custom_details(self) -> Optional[Sequence[str]]:
1250
+ """
1251
+ A list of custom details keys to group by (when matchingMethod is Selected). Only keys defined in the current alert rule may be used.
1252
+ """
1253
+ return pulumi.get(self, "group_by_custom_details")
1254
+
1255
+ @property
1256
+ @pulumi.getter(name="groupByEntities")
1257
+ def group_by_entities(self) -> Optional[Sequence[str]]:
1258
+ """
1259
+ A list of entity types to group by (when matchingMethod is Selected). Only entities defined in the current alert rule may be used.
1260
+ """
1261
+ return pulumi.get(self, "group_by_entities")
1262
+
1263
+
1264
+ @pulumi.output_type
1265
+ class IncidentAdditionalDataResponse(dict):
1266
+ """
1267
+ Incident additional data property bag.
1268
+ """
1269
+ @staticmethod
1270
+ def __key_warning(key: str):
1271
+ suggest = None
1272
+ if key == "alertProductNames":
1273
+ suggest = "alert_product_names"
1274
+ elif key == "alertsCount":
1275
+ suggest = "alerts_count"
1276
+ elif key == "bookmarksCount":
1277
+ suggest = "bookmarks_count"
1278
+ elif key == "commentsCount":
1279
+ suggest = "comments_count"
1280
+ elif key == "providerIncidentUrl":
1281
+ suggest = "provider_incident_url"
1282
+
1283
+ if suggest:
1284
+ pulumi.log.warn(f"Key '{key}' not found in IncidentAdditionalDataResponse. Access the value via the '{suggest}' property getter instead.")
1285
+
1286
+ def __getitem__(self, key: str) -> Any:
1287
+ IncidentAdditionalDataResponse.__key_warning(key)
1288
+ return super().__getitem__(key)
1289
+
1290
+ def get(self, key: str, default = None) -> Any:
1291
+ IncidentAdditionalDataResponse.__key_warning(key)
1292
+ return super().get(key, default)
1293
+
1294
+ def __init__(__self__, *,
1295
+ alert_product_names: Sequence[str],
1296
+ alerts_count: int,
1297
+ bookmarks_count: int,
1298
+ comments_count: int,
1299
+ provider_incident_url: str,
1300
+ tactics: Sequence[str]):
1301
+ """
1302
+ Incident additional data property bag.
1303
+ :param Sequence[str] alert_product_names: List of product names of alerts in the incident
1304
+ :param int alerts_count: The number of alerts in the incident
1305
+ :param int bookmarks_count: The number of bookmarks in the incident
1306
+ :param int comments_count: The number of comments in the incident
1307
+ :param str provider_incident_url: The provider incident url to the incident in Microsoft 365 Defender portal
1308
+ :param Sequence[str] tactics: The tactics associated with incident
1309
+ """
1310
+ pulumi.set(__self__, "alert_product_names", alert_product_names)
1311
+ pulumi.set(__self__, "alerts_count", alerts_count)
1312
+ pulumi.set(__self__, "bookmarks_count", bookmarks_count)
1313
+ pulumi.set(__self__, "comments_count", comments_count)
1314
+ pulumi.set(__self__, "provider_incident_url", provider_incident_url)
1315
+ pulumi.set(__self__, "tactics", tactics)
1316
+
1317
+ @property
1318
+ @pulumi.getter(name="alertProductNames")
1319
+ def alert_product_names(self) -> Sequence[str]:
1320
+ """
1321
+ List of product names of alerts in the incident
1322
+ """
1323
+ return pulumi.get(self, "alert_product_names")
1324
+
1325
+ @property
1326
+ @pulumi.getter(name="alertsCount")
1327
+ def alerts_count(self) -> int:
1328
+ """
1329
+ The number of alerts in the incident
1330
+ """
1331
+ return pulumi.get(self, "alerts_count")
1332
+
1333
+ @property
1334
+ @pulumi.getter(name="bookmarksCount")
1335
+ def bookmarks_count(self) -> int:
1336
+ """
1337
+ The number of bookmarks in the incident
1338
+ """
1339
+ return pulumi.get(self, "bookmarks_count")
1340
+
1341
+ @property
1342
+ @pulumi.getter(name="commentsCount")
1343
+ def comments_count(self) -> int:
1344
+ """
1345
+ The number of comments in the incident
1346
+ """
1347
+ return pulumi.get(self, "comments_count")
1348
+
1349
+ @property
1350
+ @pulumi.getter(name="providerIncidentUrl")
1351
+ def provider_incident_url(self) -> str:
1352
+ """
1353
+ The provider incident url to the incident in Microsoft 365 Defender portal
1354
+ """
1355
+ return pulumi.get(self, "provider_incident_url")
1356
+
1357
+ @property
1358
+ @pulumi.getter
1359
+ def tactics(self) -> Sequence[str]:
1360
+ """
1361
+ The tactics associated with incident
1362
+ """
1363
+ return pulumi.get(self, "tactics")
1364
+
1365
+
1366
+ @pulumi.output_type
1367
+ class IncidentConfigurationResponse(dict):
1368
+ """
1369
+ Incident Configuration property bag.
1370
+ """
1371
+ @staticmethod
1372
+ def __key_warning(key: str):
1373
+ suggest = None
1374
+ if key == "createIncident":
1375
+ suggest = "create_incident"
1376
+ elif key == "groupingConfiguration":
1377
+ suggest = "grouping_configuration"
1378
+
1379
+ if suggest:
1380
+ pulumi.log.warn(f"Key '{key}' not found in IncidentConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1381
+
1382
+ def __getitem__(self, key: str) -> Any:
1383
+ IncidentConfigurationResponse.__key_warning(key)
1384
+ return super().__getitem__(key)
1385
+
1386
+ def get(self, key: str, default = None) -> Any:
1387
+ IncidentConfigurationResponse.__key_warning(key)
1388
+ return super().get(key, default)
1389
+
1390
+ def __init__(__self__, *,
1391
+ create_incident: bool,
1392
+ grouping_configuration: Optional['outputs.GroupingConfigurationResponse'] = None):
1393
+ """
1394
+ Incident Configuration property bag.
1395
+ :param bool create_incident: Create incidents from alerts triggered by this analytics rule
1396
+ :param 'GroupingConfigurationResponse' grouping_configuration: Set how the alerts that are triggered by this analytics rule, are grouped into incidents
1397
+ """
1398
+ pulumi.set(__self__, "create_incident", create_incident)
1399
+ if grouping_configuration is not None:
1400
+ pulumi.set(__self__, "grouping_configuration", grouping_configuration)
1401
+
1402
+ @property
1403
+ @pulumi.getter(name="createIncident")
1404
+ def create_incident(self) -> bool:
1405
+ """
1406
+ Create incidents from alerts triggered by this analytics rule
1407
+ """
1408
+ return pulumi.get(self, "create_incident")
1409
+
1410
+ @property
1411
+ @pulumi.getter(name="groupingConfiguration")
1412
+ def grouping_configuration(self) -> Optional['outputs.GroupingConfigurationResponse']:
1413
+ """
1414
+ Set how the alerts that are triggered by this analytics rule, are grouped into incidents
1415
+ """
1416
+ return pulumi.get(self, "grouping_configuration")
1417
+
1418
+
1419
+ @pulumi.output_type
1420
+ class IncidentInfoResponse(dict):
1421
+ """
1422
+ Describes related incident information for the bookmark
1423
+ """
1424
+ @staticmethod
1425
+ def __key_warning(key: str):
1426
+ suggest = None
1427
+ if key == "incidentId":
1428
+ suggest = "incident_id"
1429
+ elif key == "relationName":
1430
+ suggest = "relation_name"
1431
+
1432
+ if suggest:
1433
+ pulumi.log.warn(f"Key '{key}' not found in IncidentInfoResponse. Access the value via the '{suggest}' property getter instead.")
1434
+
1435
+ def __getitem__(self, key: str) -> Any:
1436
+ IncidentInfoResponse.__key_warning(key)
1437
+ return super().__getitem__(key)
1438
+
1439
+ def get(self, key: str, default = None) -> Any:
1440
+ IncidentInfoResponse.__key_warning(key)
1441
+ return super().get(key, default)
1442
+
1443
+ def __init__(__self__, *,
1444
+ incident_id: Optional[str] = None,
1445
+ relation_name: Optional[str] = None,
1446
+ severity: Optional[str] = None,
1447
+ title: Optional[str] = None):
1448
+ """
1449
+ Describes related incident information for the bookmark
1450
+ :param str incident_id: Incident Id
1451
+ :param str relation_name: Relation Name
1452
+ :param str severity: The severity of the incident
1453
+ :param str title: The title of the incident
1454
+ """
1455
+ if incident_id is not None:
1456
+ pulumi.set(__self__, "incident_id", incident_id)
1457
+ if relation_name is not None:
1458
+ pulumi.set(__self__, "relation_name", relation_name)
1459
+ if severity is not None:
1460
+ pulumi.set(__self__, "severity", severity)
1461
+ if title is not None:
1462
+ pulumi.set(__self__, "title", title)
1463
+
1464
+ @property
1465
+ @pulumi.getter(name="incidentId")
1466
+ def incident_id(self) -> Optional[str]:
1467
+ """
1468
+ Incident Id
1469
+ """
1470
+ return pulumi.get(self, "incident_id")
1471
+
1472
+ @property
1473
+ @pulumi.getter(name="relationName")
1474
+ def relation_name(self) -> Optional[str]:
1475
+ """
1476
+ Relation Name
1477
+ """
1478
+ return pulumi.get(self, "relation_name")
1479
+
1480
+ @property
1481
+ @pulumi.getter
1482
+ def severity(self) -> Optional[str]:
1483
+ """
1484
+ The severity of the incident
1485
+ """
1486
+ return pulumi.get(self, "severity")
1487
+
1488
+ @property
1489
+ @pulumi.getter
1490
+ def title(self) -> Optional[str]:
1491
+ """
1492
+ The title of the incident
1493
+ """
1494
+ return pulumi.get(self, "title")
1495
+
1496
+
1497
+ @pulumi.output_type
1498
+ class IncidentLabelResponse(dict):
1499
+ """
1500
+ Represents an incident label
1501
+ """
1502
+ @staticmethod
1503
+ def __key_warning(key: str):
1504
+ suggest = None
1505
+ if key == "labelName":
1506
+ suggest = "label_name"
1507
+ elif key == "labelType":
1508
+ suggest = "label_type"
1509
+
1510
+ if suggest:
1511
+ pulumi.log.warn(f"Key '{key}' not found in IncidentLabelResponse. Access the value via the '{suggest}' property getter instead.")
1512
+
1513
+ def __getitem__(self, key: str) -> Any:
1514
+ IncidentLabelResponse.__key_warning(key)
1515
+ return super().__getitem__(key)
1516
+
1517
+ def get(self, key: str, default = None) -> Any:
1518
+ IncidentLabelResponse.__key_warning(key)
1519
+ return super().get(key, default)
1520
+
1521
+ def __init__(__self__, *,
1522
+ label_name: str,
1523
+ label_type: str):
1524
+ """
1525
+ Represents an incident label
1526
+ :param str label_name: The name of the label
1527
+ :param str label_type: The type of the label
1528
+ """
1529
+ pulumi.set(__self__, "label_name", label_name)
1530
+ pulumi.set(__self__, "label_type", label_type)
1531
+
1532
+ @property
1533
+ @pulumi.getter(name="labelName")
1534
+ def label_name(self) -> str:
1535
+ """
1536
+ The name of the label
1537
+ """
1538
+ return pulumi.get(self, "label_name")
1539
+
1540
+ @property
1541
+ @pulumi.getter(name="labelType")
1542
+ def label_type(self) -> str:
1543
+ """
1544
+ The type of the label
1545
+ """
1546
+ return pulumi.get(self, "label_type")
1547
+
1548
+
1549
+ @pulumi.output_type
1550
+ class IncidentOwnerInfoResponse(dict):
1551
+ """
1552
+ Information on the user an incident is assigned to
1553
+ """
1554
+ @staticmethod
1555
+ def __key_warning(key: str):
1556
+ suggest = None
1557
+ if key == "assignedTo":
1558
+ suggest = "assigned_to"
1559
+ elif key == "objectId":
1560
+ suggest = "object_id"
1561
+ elif key == "ownerType":
1562
+ suggest = "owner_type"
1563
+ elif key == "userPrincipalName":
1564
+ suggest = "user_principal_name"
1565
+
1566
+ if suggest:
1567
+ pulumi.log.warn(f"Key '{key}' not found in IncidentOwnerInfoResponse. Access the value via the '{suggest}' property getter instead.")
1568
+
1569
+ def __getitem__(self, key: str) -> Any:
1570
+ IncidentOwnerInfoResponse.__key_warning(key)
1571
+ return super().__getitem__(key)
1572
+
1573
+ def get(self, key: str, default = None) -> Any:
1574
+ IncidentOwnerInfoResponse.__key_warning(key)
1575
+ return super().get(key, default)
1576
+
1577
+ def __init__(__self__, *,
1578
+ assigned_to: Optional[str] = None,
1579
+ email: Optional[str] = None,
1580
+ object_id: Optional[str] = None,
1581
+ owner_type: Optional[str] = None,
1582
+ user_principal_name: Optional[str] = None):
1583
+ """
1584
+ Information on the user an incident is assigned to
1585
+ :param str assigned_to: The name of the user the incident is assigned to.
1586
+ :param str email: The email of the user the incident is assigned to.
1587
+ :param str object_id: The object id of the user the incident is assigned to.
1588
+ :param str owner_type: The type of the owner the incident is assigned to.
1589
+ :param str user_principal_name: The user principal name of the user the incident is assigned to.
1590
+ """
1591
+ if assigned_to is not None:
1592
+ pulumi.set(__self__, "assigned_to", assigned_to)
1593
+ if email is not None:
1594
+ pulumi.set(__self__, "email", email)
1595
+ if object_id is not None:
1596
+ pulumi.set(__self__, "object_id", object_id)
1597
+ if owner_type is not None:
1598
+ pulumi.set(__self__, "owner_type", owner_type)
1599
+ if user_principal_name is not None:
1600
+ pulumi.set(__self__, "user_principal_name", user_principal_name)
1601
+
1602
+ @property
1603
+ @pulumi.getter(name="assignedTo")
1604
+ def assigned_to(self) -> Optional[str]:
1605
+ """
1606
+ The name of the user the incident is assigned to.
1607
+ """
1608
+ return pulumi.get(self, "assigned_to")
1609
+
1610
+ @property
1611
+ @pulumi.getter
1612
+ def email(self) -> Optional[str]:
1613
+ """
1614
+ The email of the user the incident is assigned to.
1615
+ """
1616
+ return pulumi.get(self, "email")
1617
+
1618
+ @property
1619
+ @pulumi.getter(name="objectId")
1620
+ def object_id(self) -> Optional[str]:
1621
+ """
1622
+ The object id of the user the incident is assigned to.
1623
+ """
1624
+ return pulumi.get(self, "object_id")
1625
+
1626
+ @property
1627
+ @pulumi.getter(name="ownerType")
1628
+ def owner_type(self) -> Optional[str]:
1629
+ """
1630
+ The type of the owner the incident is assigned to.
1631
+ """
1632
+ return pulumi.get(self, "owner_type")
1633
+
1634
+ @property
1635
+ @pulumi.getter(name="userPrincipalName")
1636
+ def user_principal_name(self) -> Optional[str]:
1637
+ """
1638
+ The user principal name of the user the incident is assigned to.
1639
+ """
1640
+ return pulumi.get(self, "user_principal_name")
1641
+
1642
+
1643
+ @pulumi.output_type
1644
+ class IncidentPropertiesActionResponse(dict):
1645
+ @staticmethod
1646
+ def __key_warning(key: str):
1647
+ suggest = None
1648
+ if key == "classificationComment":
1649
+ suggest = "classification_comment"
1650
+ elif key == "classificationReason":
1651
+ suggest = "classification_reason"
1652
+
1653
+ if suggest:
1654
+ pulumi.log.warn(f"Key '{key}' not found in IncidentPropertiesActionResponse. Access the value via the '{suggest}' property getter instead.")
1655
+
1656
+ def __getitem__(self, key: str) -> Any:
1657
+ IncidentPropertiesActionResponse.__key_warning(key)
1658
+ return super().__getitem__(key)
1659
+
1660
+ def get(self, key: str, default = None) -> Any:
1661
+ IncidentPropertiesActionResponse.__key_warning(key)
1662
+ return super().get(key, default)
1663
+
1664
+ def __init__(__self__, *,
1665
+ classification: Optional[str] = None,
1666
+ classification_comment: Optional[str] = None,
1667
+ classification_reason: Optional[str] = None,
1668
+ labels: Optional[Sequence['outputs.IncidentLabelResponse']] = None,
1669
+ owner: Optional['outputs.IncidentOwnerInfoResponse'] = None,
1670
+ severity: Optional[str] = None,
1671
+ status: Optional[str] = None):
1672
+ """
1673
+ :param str classification: The reason the incident was closed
1674
+ :param str classification_comment: Describes the reason the incident was closed.
1675
+ :param str classification_reason: The classification reason the incident was closed with
1676
+ :param Sequence['IncidentLabelResponse'] labels: List of labels to add to the incident.
1677
+ :param 'IncidentOwnerInfoResponse' owner: Information on the user an incident is assigned to
1678
+ :param str severity: The severity of the incident
1679
+ :param str status: The status of the incident
1680
+ """
1681
+ if classification is not None:
1682
+ pulumi.set(__self__, "classification", classification)
1683
+ if classification_comment is not None:
1684
+ pulumi.set(__self__, "classification_comment", classification_comment)
1685
+ if classification_reason is not None:
1686
+ pulumi.set(__self__, "classification_reason", classification_reason)
1687
+ if labels is not None:
1688
+ pulumi.set(__self__, "labels", labels)
1689
+ if owner is not None:
1690
+ pulumi.set(__self__, "owner", owner)
1691
+ if severity is not None:
1692
+ pulumi.set(__self__, "severity", severity)
1693
+ if status is not None:
1694
+ pulumi.set(__self__, "status", status)
1695
+
1696
+ @property
1697
+ @pulumi.getter
1698
+ def classification(self) -> Optional[str]:
1699
+ """
1700
+ The reason the incident was closed
1701
+ """
1702
+ return pulumi.get(self, "classification")
1703
+
1704
+ @property
1705
+ @pulumi.getter(name="classificationComment")
1706
+ def classification_comment(self) -> Optional[str]:
1707
+ """
1708
+ Describes the reason the incident was closed.
1709
+ """
1710
+ return pulumi.get(self, "classification_comment")
1711
+
1712
+ @property
1713
+ @pulumi.getter(name="classificationReason")
1714
+ def classification_reason(self) -> Optional[str]:
1715
+ """
1716
+ The classification reason the incident was closed with
1717
+ """
1718
+ return pulumi.get(self, "classification_reason")
1719
+
1720
+ @property
1721
+ @pulumi.getter
1722
+ def labels(self) -> Optional[Sequence['outputs.IncidentLabelResponse']]:
1723
+ """
1724
+ List of labels to add to the incident.
1725
+ """
1726
+ return pulumi.get(self, "labels")
1727
+
1728
+ @property
1729
+ @pulumi.getter
1730
+ def owner(self) -> Optional['outputs.IncidentOwnerInfoResponse']:
1731
+ """
1732
+ Information on the user an incident is assigned to
1733
+ """
1734
+ return pulumi.get(self, "owner")
1735
+
1736
+ @property
1737
+ @pulumi.getter
1738
+ def severity(self) -> Optional[str]:
1739
+ """
1740
+ The severity of the incident
1741
+ """
1742
+ return pulumi.get(self, "severity")
1743
+
1744
+ @property
1745
+ @pulumi.getter
1746
+ def status(self) -> Optional[str]:
1747
+ """
1748
+ The status of the incident
1749
+ """
1750
+ return pulumi.get(self, "status")
1751
+
1752
+
1753
+ @pulumi.output_type
1754
+ class MCASDataConnectorDataTypesResponse(dict):
1755
+ """
1756
+ The available data types for MCAS (Microsoft Cloud App Security) data connector.
1757
+ """
1758
+ @staticmethod
1759
+ def __key_warning(key: str):
1760
+ suggest = None
1761
+ if key == "discoveryLogs":
1762
+ suggest = "discovery_logs"
1763
+
1764
+ if suggest:
1765
+ pulumi.log.warn(f"Key '{key}' not found in MCASDataConnectorDataTypesResponse. Access the value via the '{suggest}' property getter instead.")
1766
+
1767
+ def __getitem__(self, key: str) -> Any:
1768
+ MCASDataConnectorDataTypesResponse.__key_warning(key)
1769
+ return super().__getitem__(key)
1770
+
1771
+ def get(self, key: str, default = None) -> Any:
1772
+ MCASDataConnectorDataTypesResponse.__key_warning(key)
1773
+ return super().get(key, default)
1774
+
1775
+ def __init__(__self__, *,
1776
+ alerts: Optional['outputs.DataConnectorDataTypeCommonResponse'] = None,
1777
+ discovery_logs: Optional['outputs.DataConnectorDataTypeCommonResponse'] = None):
1778
+ """
1779
+ The available data types for MCAS (Microsoft Cloud App Security) data connector.
1780
+ :param 'DataConnectorDataTypeCommonResponse' alerts: Alerts data type connection.
1781
+ :param 'DataConnectorDataTypeCommonResponse' discovery_logs: Discovery log data type connection.
1782
+ """
1783
+ if alerts is not None:
1784
+ pulumi.set(__self__, "alerts", alerts)
1785
+ if discovery_logs is not None:
1786
+ pulumi.set(__self__, "discovery_logs", discovery_logs)
1787
+
1788
+ @property
1789
+ @pulumi.getter
1790
+ def alerts(self) -> Optional['outputs.DataConnectorDataTypeCommonResponse']:
1791
+ """
1792
+ Alerts data type connection.
1793
+ """
1794
+ return pulumi.get(self, "alerts")
1795
+
1796
+ @property
1797
+ @pulumi.getter(name="discoveryLogs")
1798
+ def discovery_logs(self) -> Optional['outputs.DataConnectorDataTypeCommonResponse']:
1799
+ """
1800
+ Discovery log data type connection.
1801
+ """
1802
+ return pulumi.get(self, "discovery_logs")
1803
+
1804
+
1805
+ @pulumi.output_type
1806
+ class MetadataAuthorResponse(dict):
1807
+ """
1808
+ Publisher or creator of the content item.
1809
+ """
1810
+ def __init__(__self__, *,
1811
+ email: Optional[str] = None,
1812
+ link: Optional[str] = None,
1813
+ name: Optional[str] = None):
1814
+ """
1815
+ Publisher or creator of the content item.
1816
+ :param str email: Email of author contact
1817
+ :param str link: Link for author/vendor page
1818
+ :param str name: Name of the author. Company or person.
1819
+ """
1820
+ if email is not None:
1821
+ pulumi.set(__self__, "email", email)
1822
+ if link is not None:
1823
+ pulumi.set(__self__, "link", link)
1824
+ if name is not None:
1825
+ pulumi.set(__self__, "name", name)
1826
+
1827
+ @property
1828
+ @pulumi.getter
1829
+ def email(self) -> Optional[str]:
1830
+ """
1831
+ Email of author contact
1832
+ """
1833
+ return pulumi.get(self, "email")
1834
+
1835
+ @property
1836
+ @pulumi.getter
1837
+ def link(self) -> Optional[str]:
1838
+ """
1839
+ Link for author/vendor page
1840
+ """
1841
+ return pulumi.get(self, "link")
1842
+
1843
+ @property
1844
+ @pulumi.getter
1845
+ def name(self) -> Optional[str]:
1846
+ """
1847
+ Name of the author. Company or person.
1848
+ """
1849
+ return pulumi.get(self, "name")
1850
+
1851
+
1852
+ @pulumi.output_type
1853
+ class MetadataCategoriesResponse(dict):
1854
+ """
1855
+ ies for the solution content item
1856
+ """
1857
+ def __init__(__self__, *,
1858
+ domains: Optional[Sequence[str]] = None,
1859
+ verticals: Optional[Sequence[str]] = None):
1860
+ """
1861
+ ies for the solution content item
1862
+ :param Sequence[str] domains: domain for the solution content item
1863
+ :param Sequence[str] verticals: Industry verticals for the solution content item
1864
+ """
1865
+ if domains is not None:
1866
+ pulumi.set(__self__, "domains", domains)
1867
+ if verticals is not None:
1868
+ pulumi.set(__self__, "verticals", verticals)
1869
+
1870
+ @property
1871
+ @pulumi.getter
1872
+ def domains(self) -> Optional[Sequence[str]]:
1873
+ """
1874
+ domain for the solution content item
1875
+ """
1876
+ return pulumi.get(self, "domains")
1877
+
1878
+ @property
1879
+ @pulumi.getter
1880
+ def verticals(self) -> Optional[Sequence[str]]:
1881
+ """
1882
+ Industry verticals for the solution content item
1883
+ """
1884
+ return pulumi.get(self, "verticals")
1885
+
1886
+
1887
+ @pulumi.output_type
1888
+ class MetadataDependenciesResponse(dict):
1889
+ """
1890
+ Dependencies for the content item, what other content items it requires to work. Can describe more complex dependencies using a recursive/nested structure. For a single dependency an id/kind/version can be supplied or operator/criteria for complex dependencies.
1891
+ """
1892
+ @staticmethod
1893
+ def __key_warning(key: str):
1894
+ suggest = None
1895
+ if key == "contentId":
1896
+ suggest = "content_id"
1897
+
1898
+ if suggest:
1899
+ pulumi.log.warn(f"Key '{key}' not found in MetadataDependenciesResponse. Access the value via the '{suggest}' property getter instead.")
1900
+
1901
+ def __getitem__(self, key: str) -> Any:
1902
+ MetadataDependenciesResponse.__key_warning(key)
1903
+ return super().__getitem__(key)
1904
+
1905
+ def get(self, key: str, default = None) -> Any:
1906
+ MetadataDependenciesResponse.__key_warning(key)
1907
+ return super().get(key, default)
1908
+
1909
+ def __init__(__self__, *,
1910
+ content_id: Optional[str] = None,
1911
+ criteria: Optional[Sequence['outputs.MetadataDependenciesResponse']] = None,
1912
+ kind: Optional[str] = None,
1913
+ name: Optional[str] = None,
1914
+ operator: Optional[str] = None,
1915
+ version: Optional[str] = None):
1916
+ """
1917
+ Dependencies for the content item, what other content items it requires to work. Can describe more complex dependencies using a recursive/nested structure. For a single dependency an id/kind/version can be supplied or operator/criteria for complex dependencies.
1918
+ :param str content_id: Id of the content item we depend on
1919
+ :param Sequence['MetadataDependenciesResponse'] criteria: This is the list of dependencies we must fulfill, according to the AND/OR operator
1920
+ :param str kind: Type of the content item we depend on
1921
+ :param str name: Name of the content item
1922
+ :param str operator: Operator used for list of dependencies in criteria array.
1923
+ :param str version: Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
1924
+ """
1925
+ if content_id is not None:
1926
+ pulumi.set(__self__, "content_id", content_id)
1927
+ if criteria is not None:
1928
+ pulumi.set(__self__, "criteria", criteria)
1929
+ if kind is not None:
1930
+ pulumi.set(__self__, "kind", kind)
1931
+ if name is not None:
1932
+ pulumi.set(__self__, "name", name)
1933
+ if operator is not None:
1934
+ pulumi.set(__self__, "operator", operator)
1935
+ if version is not None:
1936
+ pulumi.set(__self__, "version", version)
1937
+
1938
+ @property
1939
+ @pulumi.getter(name="contentId")
1940
+ def content_id(self) -> Optional[str]:
1941
+ """
1942
+ Id of the content item we depend on
1943
+ """
1944
+ return pulumi.get(self, "content_id")
1945
+
1946
+ @property
1947
+ @pulumi.getter
1948
+ def criteria(self) -> Optional[Sequence['outputs.MetadataDependenciesResponse']]:
1949
+ """
1950
+ This is the list of dependencies we must fulfill, according to the AND/OR operator
1951
+ """
1952
+ return pulumi.get(self, "criteria")
1953
+
1954
+ @property
1955
+ @pulumi.getter
1956
+ def kind(self) -> Optional[str]:
1957
+ """
1958
+ Type of the content item we depend on
1959
+ """
1960
+ return pulumi.get(self, "kind")
1961
+
1962
+ @property
1963
+ @pulumi.getter
1964
+ def name(self) -> Optional[str]:
1965
+ """
1966
+ Name of the content item
1967
+ """
1968
+ return pulumi.get(self, "name")
1969
+
1970
+ @property
1971
+ @pulumi.getter
1972
+ def operator(self) -> Optional[str]:
1973
+ """
1974
+ Operator used for list of dependencies in criteria array.
1975
+ """
1976
+ return pulumi.get(self, "operator")
1977
+
1978
+ @property
1979
+ @pulumi.getter
1980
+ def version(self) -> Optional[str]:
1981
+ """
1982
+ Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
1983
+ """
1984
+ return pulumi.get(self, "version")
1985
+
1986
+
1987
+ @pulumi.output_type
1988
+ class MetadataSourceResponse(dict):
1989
+ """
1990
+ The original source of the content item, where it comes from.
1991
+ """
1992
+ @staticmethod
1993
+ def __key_warning(key: str):
1994
+ suggest = None
1995
+ if key == "sourceId":
1996
+ suggest = "source_id"
1997
+
1998
+ if suggest:
1999
+ pulumi.log.warn(f"Key '{key}' not found in MetadataSourceResponse. Access the value via the '{suggest}' property getter instead.")
2000
+
2001
+ def __getitem__(self, key: str) -> Any:
2002
+ MetadataSourceResponse.__key_warning(key)
2003
+ return super().__getitem__(key)
2004
+
2005
+ def get(self, key: str, default = None) -> Any:
2006
+ MetadataSourceResponse.__key_warning(key)
2007
+ return super().get(key, default)
2008
+
2009
+ def __init__(__self__, *,
2010
+ kind: str,
2011
+ name: Optional[str] = None,
2012
+ source_id: Optional[str] = None):
2013
+ """
2014
+ The original source of the content item, where it comes from.
2015
+ :param str kind: Source type of the content
2016
+ :param str name: Name of the content source. The repo name, solution name, LA workspace name etc.
2017
+ :param str source_id: ID of the content source. The solution ID, workspace ID, etc
2018
+ """
2019
+ pulumi.set(__self__, "kind", kind)
2020
+ if name is not None:
2021
+ pulumi.set(__self__, "name", name)
2022
+ if source_id is not None:
2023
+ pulumi.set(__self__, "source_id", source_id)
2024
+
2025
+ @property
2026
+ @pulumi.getter
2027
+ def kind(self) -> str:
2028
+ """
2029
+ Source type of the content
2030
+ """
2031
+ return pulumi.get(self, "kind")
2032
+
2033
+ @property
2034
+ @pulumi.getter
2035
+ def name(self) -> Optional[str]:
2036
+ """
2037
+ Name of the content source. The repo name, solution name, LA workspace name etc.
2038
+ """
2039
+ return pulumi.get(self, "name")
2040
+
2041
+ @property
2042
+ @pulumi.getter(name="sourceId")
2043
+ def source_id(self) -> Optional[str]:
2044
+ """
2045
+ ID of the content source. The solution ID, workspace ID, etc
2046
+ """
2047
+ return pulumi.get(self, "source_id")
2048
+
2049
+
2050
+ @pulumi.output_type
2051
+ class MetadataSupportResponse(dict):
2052
+ """
2053
+ Support information for the content item.
2054
+ """
2055
+ def __init__(__self__, *,
2056
+ tier: str,
2057
+ email: Optional[str] = None,
2058
+ link: Optional[str] = None,
2059
+ name: Optional[str] = None):
2060
+ """
2061
+ Support information for the content item.
2062
+ :param str tier: Type of support for content item
2063
+ :param str email: Email of support contact
2064
+ :param str link: Link for support help, like to support page to open a ticket etc.
2065
+ :param str name: Name of the support contact. Company or person.
2066
+ """
2067
+ pulumi.set(__self__, "tier", tier)
2068
+ if email is not None:
2069
+ pulumi.set(__self__, "email", email)
2070
+ if link is not None:
2071
+ pulumi.set(__self__, "link", link)
2072
+ if name is not None:
2073
+ pulumi.set(__self__, "name", name)
2074
+
2075
+ @property
2076
+ @pulumi.getter
2077
+ def tier(self) -> str:
2078
+ """
2079
+ Type of support for content item
2080
+ """
2081
+ return pulumi.get(self, "tier")
2082
+
2083
+ @property
2084
+ @pulumi.getter
2085
+ def email(self) -> Optional[str]:
2086
+ """
2087
+ Email of support contact
2088
+ """
2089
+ return pulumi.get(self, "email")
2090
+
2091
+ @property
2092
+ @pulumi.getter
2093
+ def link(self) -> Optional[str]:
2094
+ """
2095
+ Link for support help, like to support page to open a ticket etc.
2096
+ """
2097
+ return pulumi.get(self, "link")
2098
+
2099
+ @property
2100
+ @pulumi.getter
2101
+ def name(self) -> Optional[str]:
2102
+ """
2103
+ Name of the support contact. Company or person.
2104
+ """
2105
+ return pulumi.get(self, "name")
2106
+
2107
+
2108
+ @pulumi.output_type
2109
+ class OfficeDataConnectorDataTypesResponse(dict):
2110
+ """
2111
+ The available data types for office data connector.
2112
+ """
2113
+ @staticmethod
2114
+ def __key_warning(key: str):
2115
+ suggest = None
2116
+ if key == "sharePoint":
2117
+ suggest = "share_point"
2118
+
2119
+ if suggest:
2120
+ pulumi.log.warn(f"Key '{key}' not found in OfficeDataConnectorDataTypesResponse. Access the value via the '{suggest}' property getter instead.")
2121
+
2122
+ def __getitem__(self, key: str) -> Any:
2123
+ OfficeDataConnectorDataTypesResponse.__key_warning(key)
2124
+ return super().__getitem__(key)
2125
+
2126
+ def get(self, key: str, default = None) -> Any:
2127
+ OfficeDataConnectorDataTypesResponse.__key_warning(key)
2128
+ return super().get(key, default)
2129
+
2130
+ def __init__(__self__, *,
2131
+ exchange: Optional['outputs.OfficeDataConnectorDataTypesResponseExchange'] = None,
2132
+ share_point: Optional['outputs.OfficeDataConnectorDataTypesResponseSharePoint'] = None,
2133
+ teams: Optional['outputs.OfficeDataConnectorDataTypesResponseTeams'] = None):
2134
+ """
2135
+ The available data types for office data connector.
2136
+ :param 'OfficeDataConnectorDataTypesResponseExchange' exchange: Exchange data type connection.
2137
+ :param 'OfficeDataConnectorDataTypesResponseSharePoint' share_point: SharePoint data type connection.
2138
+ :param 'OfficeDataConnectorDataTypesResponseTeams' teams: Teams data type connection.
2139
+ """
2140
+ if exchange is not None:
2141
+ pulumi.set(__self__, "exchange", exchange)
2142
+ if share_point is not None:
2143
+ pulumi.set(__self__, "share_point", share_point)
2144
+ if teams is not None:
2145
+ pulumi.set(__self__, "teams", teams)
2146
+
2147
+ @property
2148
+ @pulumi.getter
2149
+ def exchange(self) -> Optional['outputs.OfficeDataConnectorDataTypesResponseExchange']:
2150
+ """
2151
+ Exchange data type connection.
2152
+ """
2153
+ return pulumi.get(self, "exchange")
2154
+
2155
+ @property
2156
+ @pulumi.getter(name="sharePoint")
2157
+ def share_point(self) -> Optional['outputs.OfficeDataConnectorDataTypesResponseSharePoint']:
2158
+ """
2159
+ SharePoint data type connection.
2160
+ """
2161
+ return pulumi.get(self, "share_point")
2162
+
2163
+ @property
2164
+ @pulumi.getter
2165
+ def teams(self) -> Optional['outputs.OfficeDataConnectorDataTypesResponseTeams']:
2166
+ """
2167
+ Teams data type connection.
2168
+ """
2169
+ return pulumi.get(self, "teams")
2170
+
2171
+
2172
+ @pulumi.output_type
2173
+ class OfficeDataConnectorDataTypesResponseExchange(dict):
2174
+ """
2175
+ Exchange data type connection.
2176
+ """
2177
+ def __init__(__self__, *,
2178
+ state: Optional[str] = None):
2179
+ """
2180
+ Exchange data type connection.
2181
+ :param str state: Describe whether this data type connection is enabled or not.
2182
+ """
2183
+ if state is not None:
2184
+ pulumi.set(__self__, "state", state)
2185
+
2186
+ @property
2187
+ @pulumi.getter
2188
+ def state(self) -> Optional[str]:
2189
+ """
2190
+ Describe whether this data type connection is enabled or not.
2191
+ """
2192
+ return pulumi.get(self, "state")
2193
+
2194
+
2195
+ @pulumi.output_type
2196
+ class OfficeDataConnectorDataTypesResponseSharePoint(dict):
2197
+ """
2198
+ SharePoint data type connection.
2199
+ """
2200
+ def __init__(__self__, *,
2201
+ state: Optional[str] = None):
2202
+ """
2203
+ SharePoint data type connection.
2204
+ :param str state: Describe whether this data type connection is enabled or not.
2205
+ """
2206
+ if state is not None:
2207
+ pulumi.set(__self__, "state", state)
2208
+
2209
+ @property
2210
+ @pulumi.getter
2211
+ def state(self) -> Optional[str]:
2212
+ """
2213
+ Describe whether this data type connection is enabled or not.
2214
+ """
2215
+ return pulumi.get(self, "state")
2216
+
2217
+
2218
+ @pulumi.output_type
2219
+ class OfficeDataConnectorDataTypesResponseTeams(dict):
2220
+ """
2221
+ Teams data type connection.
2222
+ """
2223
+ def __init__(__self__, *,
2224
+ state: Optional[str] = None):
2225
+ """
2226
+ Teams data type connection.
2227
+ :param str state: Describe whether this data type connection is enabled or not.
2228
+ """
2229
+ if state is not None:
2230
+ pulumi.set(__self__, "state", state)
2231
+
2232
+ @property
2233
+ @pulumi.getter
2234
+ def state(self) -> Optional[str]:
2235
+ """
2236
+ Describe whether this data type connection is enabled or not.
2237
+ """
2238
+ return pulumi.get(self, "state")
2239
+
2240
+
2241
+ @pulumi.output_type
2242
+ class PlaybookActionPropertiesResponse(dict):
2243
+ @staticmethod
2244
+ def __key_warning(key: str):
2245
+ suggest = None
2246
+ if key == "logicAppResourceId":
2247
+ suggest = "logic_app_resource_id"
2248
+ elif key == "tenantId":
2249
+ suggest = "tenant_id"
2250
+
2251
+ if suggest:
2252
+ pulumi.log.warn(f"Key '{key}' not found in PlaybookActionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2253
+
2254
+ def __getitem__(self, key: str) -> Any:
2255
+ PlaybookActionPropertiesResponse.__key_warning(key)
2256
+ return super().__getitem__(key)
2257
+
2258
+ def get(self, key: str, default = None) -> Any:
2259
+ PlaybookActionPropertiesResponse.__key_warning(key)
2260
+ return super().get(key, default)
2261
+
2262
+ def __init__(__self__, *,
2263
+ logic_app_resource_id: str,
2264
+ tenant_id: Optional[str] = None):
2265
+ """
2266
+ :param str logic_app_resource_id: The resource id of the playbook resource.
2267
+ :param str tenant_id: The tenant id of the playbook resource.
2268
+ """
2269
+ pulumi.set(__self__, "logic_app_resource_id", logic_app_resource_id)
2270
+ if tenant_id is not None:
2271
+ pulumi.set(__self__, "tenant_id", tenant_id)
2272
+
2273
+ @property
2274
+ @pulumi.getter(name="logicAppResourceId")
2275
+ def logic_app_resource_id(self) -> str:
2276
+ """
2277
+ The resource id of the playbook resource.
2278
+ """
2279
+ return pulumi.get(self, "logic_app_resource_id")
2280
+
2281
+ @property
2282
+ @pulumi.getter(name="tenantId")
2283
+ def tenant_id(self) -> Optional[str]:
2284
+ """
2285
+ The tenant id of the playbook resource.
2286
+ """
2287
+ return pulumi.get(self, "tenant_id")
2288
+
2289
+
2290
+ @pulumi.output_type
2291
+ class PropertyArrayChangedConditionPropertiesResponse(dict):
2292
+ """
2293
+ Describes an automation rule condition that evaluates an array property's value change
2294
+ """
2295
+ @staticmethod
2296
+ def __key_warning(key: str):
2297
+ suggest = None
2298
+ if key == "conditionType":
2299
+ suggest = "condition_type"
2300
+ elif key == "conditionProperties":
2301
+ suggest = "condition_properties"
2302
+
2303
+ if suggest:
2304
+ pulumi.log.warn(f"Key '{key}' not found in PropertyArrayChangedConditionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2305
+
2306
+ def __getitem__(self, key: str) -> Any:
2307
+ PropertyArrayChangedConditionPropertiesResponse.__key_warning(key)
2308
+ return super().__getitem__(key)
2309
+
2310
+ def get(self, key: str, default = None) -> Any:
2311
+ PropertyArrayChangedConditionPropertiesResponse.__key_warning(key)
2312
+ return super().get(key, default)
2313
+
2314
+ def __init__(__self__, *,
2315
+ condition_type: str,
2316
+ condition_properties: Optional['outputs.AutomationRulePropertyArrayChangedValuesConditionResponse'] = None):
2317
+ """
2318
+ Describes an automation rule condition that evaluates an array property's value change
2319
+ :param str condition_type:
2320
+ Expected value is 'PropertyArrayChanged'.
2321
+ """
2322
+ pulumi.set(__self__, "condition_type", 'PropertyArrayChanged')
2323
+ if condition_properties is not None:
2324
+ pulumi.set(__self__, "condition_properties", condition_properties)
2325
+
2326
+ @property
2327
+ @pulumi.getter(name="conditionType")
2328
+ def condition_type(self) -> str:
2329
+ """
2330
+
2331
+ Expected value is 'PropertyArrayChanged'.
2332
+ """
2333
+ return pulumi.get(self, "condition_type")
2334
+
2335
+ @property
2336
+ @pulumi.getter(name="conditionProperties")
2337
+ def condition_properties(self) -> Optional['outputs.AutomationRulePropertyArrayChangedValuesConditionResponse']:
2338
+ return pulumi.get(self, "condition_properties")
2339
+
2340
+
2341
+ @pulumi.output_type
2342
+ class PropertyArrayConditionPropertiesResponse(dict):
2343
+ """
2344
+ Describes an automation rule condition that evaluates an array property's value
2345
+ """
2346
+ @staticmethod
2347
+ def __key_warning(key: str):
2348
+ suggest = None
2349
+ if key == "conditionType":
2350
+ suggest = "condition_type"
2351
+ elif key == "conditionProperties":
2352
+ suggest = "condition_properties"
2353
+
2354
+ if suggest:
2355
+ pulumi.log.warn(f"Key '{key}' not found in PropertyArrayConditionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2356
+
2357
+ def __getitem__(self, key: str) -> Any:
2358
+ PropertyArrayConditionPropertiesResponse.__key_warning(key)
2359
+ return super().__getitem__(key)
2360
+
2361
+ def get(self, key: str, default = None) -> Any:
2362
+ PropertyArrayConditionPropertiesResponse.__key_warning(key)
2363
+ return super().get(key, default)
2364
+
2365
+ def __init__(__self__, *,
2366
+ condition_type: str,
2367
+ condition_properties: Optional['outputs.AutomationRulePropertyArrayValuesConditionResponse'] = None):
2368
+ """
2369
+ Describes an automation rule condition that evaluates an array property's value
2370
+ :param str condition_type:
2371
+ Expected value is 'PropertyArray'.
2372
+ :param 'AutomationRulePropertyArrayValuesConditionResponse' condition_properties: Describes an automation rule condition on array properties.
2373
+ """
2374
+ pulumi.set(__self__, "condition_type", 'PropertyArray')
2375
+ if condition_properties is not None:
2376
+ pulumi.set(__self__, "condition_properties", condition_properties)
2377
+
2378
+ @property
2379
+ @pulumi.getter(name="conditionType")
2380
+ def condition_type(self) -> str:
2381
+ """
2382
+
2383
+ Expected value is 'PropertyArray'.
2384
+ """
2385
+ return pulumi.get(self, "condition_type")
2386
+
2387
+ @property
2388
+ @pulumi.getter(name="conditionProperties")
2389
+ def condition_properties(self) -> Optional['outputs.AutomationRulePropertyArrayValuesConditionResponse']:
2390
+ """
2391
+ Describes an automation rule condition on array properties.
2392
+ """
2393
+ return pulumi.get(self, "condition_properties")
2394
+
2395
+
2396
+ @pulumi.output_type
2397
+ class PropertyChangedConditionPropertiesResponse(dict):
2398
+ """
2399
+ Describes an automation rule condition that evaluates a property's value change
2400
+ """
2401
+ @staticmethod
2402
+ def __key_warning(key: str):
2403
+ suggest = None
2404
+ if key == "conditionType":
2405
+ suggest = "condition_type"
2406
+ elif key == "conditionProperties":
2407
+ suggest = "condition_properties"
2408
+
2409
+ if suggest:
2410
+ pulumi.log.warn(f"Key '{key}' not found in PropertyChangedConditionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2411
+
2412
+ def __getitem__(self, key: str) -> Any:
2413
+ PropertyChangedConditionPropertiesResponse.__key_warning(key)
2414
+ return super().__getitem__(key)
2415
+
2416
+ def get(self, key: str, default = None) -> Any:
2417
+ PropertyChangedConditionPropertiesResponse.__key_warning(key)
2418
+ return super().get(key, default)
2419
+
2420
+ def __init__(__self__, *,
2421
+ condition_type: str,
2422
+ condition_properties: Optional['outputs.AutomationRulePropertyValuesChangedConditionResponse'] = None):
2423
+ """
2424
+ Describes an automation rule condition that evaluates a property's value change
2425
+ :param str condition_type:
2426
+ Expected value is 'PropertyChanged'.
2427
+ """
2428
+ pulumi.set(__self__, "condition_type", 'PropertyChanged')
2429
+ if condition_properties is not None:
2430
+ pulumi.set(__self__, "condition_properties", condition_properties)
2431
+
2432
+ @property
2433
+ @pulumi.getter(name="conditionType")
2434
+ def condition_type(self) -> str:
2435
+ """
2436
+
2437
+ Expected value is 'PropertyChanged'.
2438
+ """
2439
+ return pulumi.get(self, "condition_type")
2440
+
2441
+ @property
2442
+ @pulumi.getter(name="conditionProperties")
2443
+ def condition_properties(self) -> Optional['outputs.AutomationRulePropertyValuesChangedConditionResponse']:
2444
+ return pulumi.get(self, "condition_properties")
2445
+
2446
+
2447
+ @pulumi.output_type
2448
+ class PropertyConditionPropertiesResponse(dict):
2449
+ """
2450
+ Describes an automation rule condition that evaluates a property's value
2451
+ """
2452
+ @staticmethod
2453
+ def __key_warning(key: str):
2454
+ suggest = None
2455
+ if key == "conditionType":
2456
+ suggest = "condition_type"
2457
+ elif key == "conditionProperties":
2458
+ suggest = "condition_properties"
2459
+
2460
+ if suggest:
2461
+ pulumi.log.warn(f"Key '{key}' not found in PropertyConditionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2462
+
2463
+ def __getitem__(self, key: str) -> Any:
2464
+ PropertyConditionPropertiesResponse.__key_warning(key)
2465
+ return super().__getitem__(key)
2466
+
2467
+ def get(self, key: str, default = None) -> Any:
2468
+ PropertyConditionPropertiesResponse.__key_warning(key)
2469
+ return super().get(key, default)
2470
+
2471
+ def __init__(__self__, *,
2472
+ condition_type: str,
2473
+ condition_properties: Optional['outputs.AutomationRulePropertyValuesConditionResponse'] = None):
2474
+ """
2475
+ Describes an automation rule condition that evaluates a property's value
2476
+ :param str condition_type:
2477
+ Expected value is 'Property'.
2478
+ """
2479
+ pulumi.set(__self__, "condition_type", 'Property')
2480
+ if condition_properties is not None:
2481
+ pulumi.set(__self__, "condition_properties", condition_properties)
2482
+
2483
+ @property
2484
+ @pulumi.getter(name="conditionType")
2485
+ def condition_type(self) -> str:
2486
+ """
2487
+
2488
+ Expected value is 'Property'.
2489
+ """
2490
+ return pulumi.get(self, "condition_type")
2491
+
2492
+ @property
2493
+ @pulumi.getter(name="conditionProperties")
2494
+ def condition_properties(self) -> Optional['outputs.AutomationRulePropertyValuesConditionResponse']:
2495
+ return pulumi.get(self, "condition_properties")
2496
+
2497
+
2498
+ @pulumi.output_type
2499
+ class RepoResponse(dict):
2500
+ """
2501
+ Represents a repository.
2502
+ """
2503
+ def __init__(__self__, *,
2504
+ branches: Optional[Sequence[str]] = None,
2505
+ full_name: Optional[str] = None,
2506
+ installation_id: Optional[float] = None,
2507
+ url: Optional[str] = None):
2508
+ """
2509
+ Represents a repository.
2510
+ :param Sequence[str] branches: Array of branches.
2511
+ :param str full_name: The name of the repository.
2512
+ :param float installation_id: The installation id of the repository.
2513
+ :param str url: The url to access the repository.
2514
+ """
2515
+ if branches is not None:
2516
+ pulumi.set(__self__, "branches", branches)
2517
+ if full_name is not None:
2518
+ pulumi.set(__self__, "full_name", full_name)
2519
+ if installation_id is not None:
2520
+ pulumi.set(__self__, "installation_id", installation_id)
2521
+ if url is not None:
2522
+ pulumi.set(__self__, "url", url)
2523
+
2524
+ @property
2525
+ @pulumi.getter
2526
+ def branches(self) -> Optional[Sequence[str]]:
2527
+ """
2528
+ Array of branches.
2529
+ """
2530
+ return pulumi.get(self, "branches")
2531
+
2532
+ @property
2533
+ @pulumi.getter(name="fullName")
2534
+ def full_name(self) -> Optional[str]:
2535
+ """
2536
+ The name of the repository.
2537
+ """
2538
+ return pulumi.get(self, "full_name")
2539
+
2540
+ @property
2541
+ @pulumi.getter(name="installationId")
2542
+ def installation_id(self) -> Optional[float]:
2543
+ """
2544
+ The installation id of the repository.
2545
+ """
2546
+ return pulumi.get(self, "installation_id")
2547
+
2548
+ @property
2549
+ @pulumi.getter
2550
+ def url(self) -> Optional[str]:
2551
+ """
2552
+ The url to access the repository.
2553
+ """
2554
+ return pulumi.get(self, "url")
2555
+
2556
+
2557
+ @pulumi.output_type
2558
+ class SecurityMLAnalyticsSettingsDataSourceResponse(dict):
2559
+ """
2560
+ security ml analytics settings data sources
2561
+ """
2562
+ @staticmethod
2563
+ def __key_warning(key: str):
2564
+ suggest = None
2565
+ if key == "connectorId":
2566
+ suggest = "connector_id"
2567
+ elif key == "dataTypes":
2568
+ suggest = "data_types"
2569
+
2570
+ if suggest:
2571
+ pulumi.log.warn(f"Key '{key}' not found in SecurityMLAnalyticsSettingsDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
2572
+
2573
+ def __getitem__(self, key: str) -> Any:
2574
+ SecurityMLAnalyticsSettingsDataSourceResponse.__key_warning(key)
2575
+ return super().__getitem__(key)
2576
+
2577
+ def get(self, key: str, default = None) -> Any:
2578
+ SecurityMLAnalyticsSettingsDataSourceResponse.__key_warning(key)
2579
+ return super().get(key, default)
2580
+
2581
+ def __init__(__self__, *,
2582
+ connector_id: Optional[str] = None,
2583
+ data_types: Optional[Sequence[str]] = None):
2584
+ """
2585
+ security ml analytics settings data sources
2586
+ :param str connector_id: The connector id that provides the following data types
2587
+ :param Sequence[str] data_types: The data types used by the security ml analytics settings
2588
+ """
2589
+ if connector_id is not None:
2590
+ pulumi.set(__self__, "connector_id", connector_id)
2591
+ if data_types is not None:
2592
+ pulumi.set(__self__, "data_types", data_types)
2593
+
2594
+ @property
2595
+ @pulumi.getter(name="connectorId")
2596
+ def connector_id(self) -> Optional[str]:
2597
+ """
2598
+ The connector id that provides the following data types
2599
+ """
2600
+ return pulumi.get(self, "connector_id")
2601
+
2602
+ @property
2603
+ @pulumi.getter(name="dataTypes")
2604
+ def data_types(self) -> Optional[Sequence[str]]:
2605
+ """
2606
+ The data types used by the security ml analytics settings
2607
+ """
2608
+ return pulumi.get(self, "data_types")
2609
+
2610
+
2611
+ @pulumi.output_type
2612
+ class SystemDataResponse(dict):
2613
+ """
2614
+ Metadata pertaining to creation and last modification of the resource.
2615
+ """
2616
+ @staticmethod
2617
+ def __key_warning(key: str):
2618
+ suggest = None
2619
+ if key == "createdAt":
2620
+ suggest = "created_at"
2621
+ elif key == "createdBy":
2622
+ suggest = "created_by"
2623
+ elif key == "createdByType":
2624
+ suggest = "created_by_type"
2625
+ elif key == "lastModifiedAt":
2626
+ suggest = "last_modified_at"
2627
+ elif key == "lastModifiedBy":
2628
+ suggest = "last_modified_by"
2629
+ elif key == "lastModifiedByType":
2630
+ suggest = "last_modified_by_type"
2631
+
2632
+ if suggest:
2633
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
2634
+
2635
+ def __getitem__(self, key: str) -> Any:
2636
+ SystemDataResponse.__key_warning(key)
2637
+ return super().__getitem__(key)
2638
+
2639
+ def get(self, key: str, default = None) -> Any:
2640
+ SystemDataResponse.__key_warning(key)
2641
+ return super().get(key, default)
2642
+
2643
+ def __init__(__self__, *,
2644
+ created_at: Optional[str] = None,
2645
+ created_by: Optional[str] = None,
2646
+ created_by_type: Optional[str] = None,
2647
+ last_modified_at: Optional[str] = None,
2648
+ last_modified_by: Optional[str] = None,
2649
+ last_modified_by_type: Optional[str] = None):
2650
+ """
2651
+ Metadata pertaining to creation and last modification of the resource.
2652
+ :param str created_at: The timestamp of resource creation (UTC).
2653
+ :param str created_by: The identity that created the resource.
2654
+ :param str created_by_type: The type of identity that created the resource.
2655
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
2656
+ :param str last_modified_by: The identity that last modified the resource.
2657
+ :param str last_modified_by_type: The type of identity that last modified the resource.
2658
+ """
2659
+ if created_at is not None:
2660
+ pulumi.set(__self__, "created_at", created_at)
2661
+ if created_by is not None:
2662
+ pulumi.set(__self__, "created_by", created_by)
2663
+ if created_by_type is not None:
2664
+ pulumi.set(__self__, "created_by_type", created_by_type)
2665
+ if last_modified_at is not None:
2666
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
2667
+ if last_modified_by is not None:
2668
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
2669
+ if last_modified_by_type is not None:
2670
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
2671
+
2672
+ @property
2673
+ @pulumi.getter(name="createdAt")
2674
+ def created_at(self) -> Optional[str]:
2675
+ """
2676
+ The timestamp of resource creation (UTC).
2677
+ """
2678
+ return pulumi.get(self, "created_at")
2679
+
2680
+ @property
2681
+ @pulumi.getter(name="createdBy")
2682
+ def created_by(self) -> Optional[str]:
2683
+ """
2684
+ The identity that created the resource.
2685
+ """
2686
+ return pulumi.get(self, "created_by")
2687
+
2688
+ @property
2689
+ @pulumi.getter(name="createdByType")
2690
+ def created_by_type(self) -> Optional[str]:
2691
+ """
2692
+ The type of identity that created the resource.
2693
+ """
2694
+ return pulumi.get(self, "created_by_type")
2695
+
2696
+ @property
2697
+ @pulumi.getter(name="lastModifiedAt")
2698
+ def last_modified_at(self) -> Optional[str]:
2699
+ """
2700
+ The timestamp of resource last modification (UTC)
2701
+ """
2702
+ return pulumi.get(self, "last_modified_at")
2703
+
2704
+ @property
2705
+ @pulumi.getter(name="lastModifiedBy")
2706
+ def last_modified_by(self) -> Optional[str]:
2707
+ """
2708
+ The identity that last modified the resource.
2709
+ """
2710
+ return pulumi.get(self, "last_modified_by")
2711
+
2712
+ @property
2713
+ @pulumi.getter(name="lastModifiedByType")
2714
+ def last_modified_by_type(self) -> Optional[str]:
2715
+ """
2716
+ The type of identity that last modified the resource.
2717
+ """
2718
+ return pulumi.get(self, "last_modified_by_type")
2719
+
2720
+
2721
+ @pulumi.output_type
2722
+ class TIDataConnectorDataTypesResponse(dict):
2723
+ """
2724
+ The available data types for TI (Threat Intelligence) data connector.
2725
+ """
2726
+ def __init__(__self__, *,
2727
+ indicators: Optional['outputs.TIDataConnectorDataTypesResponseIndicators'] = None):
2728
+ """
2729
+ The available data types for TI (Threat Intelligence) data connector.
2730
+ :param 'TIDataConnectorDataTypesResponseIndicators' indicators: Data type for indicators connection.
2731
+ """
2732
+ if indicators is not None:
2733
+ pulumi.set(__self__, "indicators", indicators)
2734
+
2735
+ @property
2736
+ @pulumi.getter
2737
+ def indicators(self) -> Optional['outputs.TIDataConnectorDataTypesResponseIndicators']:
2738
+ """
2739
+ Data type for indicators connection.
2740
+ """
2741
+ return pulumi.get(self, "indicators")
2742
+
2743
+
2744
+ @pulumi.output_type
2745
+ class TIDataConnectorDataTypesResponseIndicators(dict):
2746
+ """
2747
+ Data type for indicators connection.
2748
+ """
2749
+ def __init__(__self__, *,
2750
+ state: Optional[str] = None):
2751
+ """
2752
+ Data type for indicators connection.
2753
+ :param str state: Describe whether this data type connection is enabled or not.
2754
+ """
2755
+ if state is not None:
2756
+ pulumi.set(__self__, "state", state)
2757
+
2758
+ @property
2759
+ @pulumi.getter
2760
+ def state(self) -> Optional[str]:
2761
+ """
2762
+ Describe whether this data type connection is enabled or not.
2763
+ """
2764
+ return pulumi.get(self, "state")
2765
+
2766
+
2767
+ @pulumi.output_type
2768
+ class TemplatePropertiesResponse(dict):
2769
+ """
2770
+ Template property bag.
2771
+ """
2772
+ @staticmethod
2773
+ def __key_warning(key: str):
2774
+ suggest = None
2775
+ if key == "contentId":
2776
+ suggest = "content_id"
2777
+ elif key == "contentKind":
2778
+ suggest = "content_kind"
2779
+ elif key == "contentProductId":
2780
+ suggest = "content_product_id"
2781
+ elif key == "dependantTemplates":
2782
+ suggest = "dependant_templates"
2783
+ elif key == "displayName":
2784
+ suggest = "display_name"
2785
+ elif key == "isDeprecated":
2786
+ suggest = "is_deprecated"
2787
+ elif key == "packageId":
2788
+ suggest = "package_id"
2789
+ elif key == "packageVersion":
2790
+ suggest = "package_version"
2791
+ elif key == "contentSchemaVersion":
2792
+ suggest = "content_schema_version"
2793
+ elif key == "customVersion":
2794
+ suggest = "custom_version"
2795
+ elif key == "firstPublishDate":
2796
+ suggest = "first_publish_date"
2797
+ elif key == "lastPublishDate":
2798
+ suggest = "last_publish_date"
2799
+ elif key == "mainTemplate":
2800
+ suggest = "main_template"
2801
+ elif key == "packageKind":
2802
+ suggest = "package_kind"
2803
+ elif key == "packageName":
2804
+ suggest = "package_name"
2805
+ elif key == "previewImages":
2806
+ suggest = "preview_images"
2807
+ elif key == "previewImagesDark":
2808
+ suggest = "preview_images_dark"
2809
+ elif key == "threatAnalysisTactics":
2810
+ suggest = "threat_analysis_tactics"
2811
+ elif key == "threatAnalysisTechniques":
2812
+ suggest = "threat_analysis_techniques"
2813
+
2814
+ if suggest:
2815
+ pulumi.log.warn(f"Key '{key}' not found in TemplatePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2816
+
2817
+ def __getitem__(self, key: str) -> Any:
2818
+ TemplatePropertiesResponse.__key_warning(key)
2819
+ return super().__getitem__(key)
2820
+
2821
+ def get(self, key: str, default = None) -> Any:
2822
+ TemplatePropertiesResponse.__key_warning(key)
2823
+ return super().get(key, default)
2824
+
2825
+ def __init__(__self__, *,
2826
+ content_id: str,
2827
+ content_kind: str,
2828
+ content_product_id: str,
2829
+ dependant_templates: Sequence['outputs.TemplatePropertiesResponse'],
2830
+ display_name: str,
2831
+ is_deprecated: str,
2832
+ package_id: str,
2833
+ package_version: str,
2834
+ source: 'outputs.MetadataSourceResponse',
2835
+ version: str,
2836
+ author: Optional['outputs.MetadataAuthorResponse'] = None,
2837
+ categories: Optional['outputs.MetadataCategoriesResponse'] = None,
2838
+ content_schema_version: Optional[str] = None,
2839
+ custom_version: Optional[str] = None,
2840
+ dependencies: Optional['outputs.MetadataDependenciesResponse'] = None,
2841
+ first_publish_date: Optional[str] = None,
2842
+ icon: Optional[str] = None,
2843
+ last_publish_date: Optional[str] = None,
2844
+ main_template: Optional[Any] = None,
2845
+ package_kind: Optional[str] = None,
2846
+ package_name: Optional[str] = None,
2847
+ preview_images: Optional[Sequence[str]] = None,
2848
+ preview_images_dark: Optional[Sequence[str]] = None,
2849
+ providers: Optional[Sequence[str]] = None,
2850
+ support: Optional['outputs.MetadataSupportResponse'] = None,
2851
+ threat_analysis_tactics: Optional[Sequence[str]] = None,
2852
+ threat_analysis_techniques: Optional[Sequence[str]] = None):
2853
+ """
2854
+ Template property bag.
2855
+ :param str content_id: Static ID for the content. Used to identify dependencies and content from solutions or community. Hard-coded/static for out of the box content and solutions. Dynamic for user-created. This is the resource name
2856
+ :param str content_kind: The kind of content the template is for.
2857
+ :param str content_product_id: Unique ID for the content. It should be generated based on the contentId of the package, contentId of the template, contentKind of the template and the contentVersion of the template
2858
+ :param Sequence['TemplatePropertiesResponse'] dependant_templates: Dependant templates. Expandable.
2859
+ :param str display_name: The display name of the template
2860
+ :param str is_deprecated: Flag indicates if this template is deprecated
2861
+ :param str package_id: the package Id contains this template
2862
+ :param str package_version: Version of the package. Default and recommended format is numeric (e.g. 1, 1.0, 1.0.0, 1.0.0.0), following ARM metadata best practices. Can also be any string, but then we cannot guarantee any version checks
2863
+ :param 'MetadataSourceResponse' source: Source of the content. This is where/how it was created.
2864
+ :param str version: Version of the content. Default and recommended format is numeric (e.g. 1, 1.0, 1.0.0, 1.0.0.0), following ARM metadata best practices. Can also be any string, but then we cannot guarantee any version checks
2865
+ :param 'MetadataAuthorResponse' author: The creator of the content item.
2866
+ :param 'MetadataCategoriesResponse' categories: Categories for the item
2867
+ :param str content_schema_version: Schema version of the content. Can be used to distinguish between different flow based on the schema version
2868
+ :param str custom_version: The custom version of the content. A optional free text
2869
+ :param 'MetadataDependenciesResponse' dependencies: Dependencies for the content item, what other content items it requires to work. Can describe more complex dependencies using a recursive/nested structure. For a single dependency an id/kind/version can be supplied or operator/criteria for complex formats.
2870
+ :param str first_publish_date: first publish date content item
2871
+ :param str icon: the icon identifier. this id can later be fetched from the content metadata
2872
+ :param str last_publish_date: last publish date for the content item
2873
+ :param Any main_template: The JSON of the ARM template to deploy active content. Expandable.
2874
+ :param str package_kind: the packageKind of the package contains this template
2875
+ :param str package_name: the name of the package contains this template
2876
+ :param Sequence[str] preview_images: preview image file names. These will be taken from the solution artifacts
2877
+ :param Sequence[str] preview_images_dark: preview image file names. These will be taken from the solution artifacts. used for dark theme support
2878
+ :param Sequence[str] providers: Providers for the content item
2879
+ :param 'MetadataSupportResponse' support: Support information for the template - type, name, contact information
2880
+ :param Sequence[str] threat_analysis_tactics: the tactics the resource covers
2881
+ :param Sequence[str] threat_analysis_techniques: the techniques the resource covers, these have to be aligned with the tactics being used
2882
+ """
2883
+ pulumi.set(__self__, "content_id", content_id)
2884
+ pulumi.set(__self__, "content_kind", content_kind)
2885
+ pulumi.set(__self__, "content_product_id", content_product_id)
2886
+ pulumi.set(__self__, "dependant_templates", dependant_templates)
2887
+ pulumi.set(__self__, "display_name", display_name)
2888
+ pulumi.set(__self__, "is_deprecated", is_deprecated)
2889
+ pulumi.set(__self__, "package_id", package_id)
2890
+ pulumi.set(__self__, "package_version", package_version)
2891
+ pulumi.set(__self__, "source", source)
2892
+ pulumi.set(__self__, "version", version)
2893
+ if author is not None:
2894
+ pulumi.set(__self__, "author", author)
2895
+ if categories is not None:
2896
+ pulumi.set(__self__, "categories", categories)
2897
+ if content_schema_version is not None:
2898
+ pulumi.set(__self__, "content_schema_version", content_schema_version)
2899
+ if custom_version is not None:
2900
+ pulumi.set(__self__, "custom_version", custom_version)
2901
+ if dependencies is not None:
2902
+ pulumi.set(__self__, "dependencies", dependencies)
2903
+ if first_publish_date is not None:
2904
+ pulumi.set(__self__, "first_publish_date", first_publish_date)
2905
+ if icon is not None:
2906
+ pulumi.set(__self__, "icon", icon)
2907
+ if last_publish_date is not None:
2908
+ pulumi.set(__self__, "last_publish_date", last_publish_date)
2909
+ if main_template is not None:
2910
+ pulumi.set(__self__, "main_template", main_template)
2911
+ if package_kind is not None:
2912
+ pulumi.set(__self__, "package_kind", package_kind)
2913
+ if package_name is not None:
2914
+ pulumi.set(__self__, "package_name", package_name)
2915
+ if preview_images is not None:
2916
+ pulumi.set(__self__, "preview_images", preview_images)
2917
+ if preview_images_dark is not None:
2918
+ pulumi.set(__self__, "preview_images_dark", preview_images_dark)
2919
+ if providers is not None:
2920
+ pulumi.set(__self__, "providers", providers)
2921
+ if support is not None:
2922
+ pulumi.set(__self__, "support", support)
2923
+ if threat_analysis_tactics is not None:
2924
+ pulumi.set(__self__, "threat_analysis_tactics", threat_analysis_tactics)
2925
+ if threat_analysis_techniques is not None:
2926
+ pulumi.set(__self__, "threat_analysis_techniques", threat_analysis_techniques)
2927
+
2928
+ @property
2929
+ @pulumi.getter(name="contentId")
2930
+ def content_id(self) -> str:
2931
+ """
2932
+ Static ID for the content. Used to identify dependencies and content from solutions or community. Hard-coded/static for out of the box content and solutions. Dynamic for user-created. This is the resource name
2933
+ """
2934
+ return pulumi.get(self, "content_id")
2935
+
2936
+ @property
2937
+ @pulumi.getter(name="contentKind")
2938
+ def content_kind(self) -> str:
2939
+ """
2940
+ The kind of content the template is for.
2941
+ """
2942
+ return pulumi.get(self, "content_kind")
2943
+
2944
+ @property
2945
+ @pulumi.getter(name="contentProductId")
2946
+ def content_product_id(self) -> str:
2947
+ """
2948
+ Unique ID for the content. It should be generated based on the contentId of the package, contentId of the template, contentKind of the template and the contentVersion of the template
2949
+ """
2950
+ return pulumi.get(self, "content_product_id")
2951
+
2952
+ @property
2953
+ @pulumi.getter(name="dependantTemplates")
2954
+ def dependant_templates(self) -> Sequence['outputs.TemplatePropertiesResponse']:
2955
+ """
2956
+ Dependant templates. Expandable.
2957
+ """
2958
+ return pulumi.get(self, "dependant_templates")
2959
+
2960
+ @property
2961
+ @pulumi.getter(name="displayName")
2962
+ def display_name(self) -> str:
2963
+ """
2964
+ The display name of the template
2965
+ """
2966
+ return pulumi.get(self, "display_name")
2967
+
2968
+ @property
2969
+ @pulumi.getter(name="isDeprecated")
2970
+ def is_deprecated(self) -> str:
2971
+ """
2972
+ Flag indicates if this template is deprecated
2973
+ """
2974
+ return pulumi.get(self, "is_deprecated")
2975
+
2976
+ @property
2977
+ @pulumi.getter(name="packageId")
2978
+ def package_id(self) -> str:
2979
+ """
2980
+ the package Id contains this template
2981
+ """
2982
+ return pulumi.get(self, "package_id")
2983
+
2984
+ @property
2985
+ @pulumi.getter(name="packageVersion")
2986
+ def package_version(self) -> str:
2987
+ """
2988
+ Version of the package. Default and recommended format is numeric (e.g. 1, 1.0, 1.0.0, 1.0.0.0), following ARM metadata best practices. Can also be any string, but then we cannot guarantee any version checks
2989
+ """
2990
+ return pulumi.get(self, "package_version")
2991
+
2992
+ @property
2993
+ @pulumi.getter
2994
+ def source(self) -> 'outputs.MetadataSourceResponse':
2995
+ """
2996
+ Source of the content. This is where/how it was created.
2997
+ """
2998
+ return pulumi.get(self, "source")
2999
+
3000
+ @property
3001
+ @pulumi.getter
3002
+ def version(self) -> str:
3003
+ """
3004
+ Version of the content. Default and recommended format is numeric (e.g. 1, 1.0, 1.0.0, 1.0.0.0), following ARM metadata best practices. Can also be any string, but then we cannot guarantee any version checks
3005
+ """
3006
+ return pulumi.get(self, "version")
3007
+
3008
+ @property
3009
+ @pulumi.getter
3010
+ def author(self) -> Optional['outputs.MetadataAuthorResponse']:
3011
+ """
3012
+ The creator of the content item.
3013
+ """
3014
+ return pulumi.get(self, "author")
3015
+
3016
+ @property
3017
+ @pulumi.getter
3018
+ def categories(self) -> Optional['outputs.MetadataCategoriesResponse']:
3019
+ """
3020
+ Categories for the item
3021
+ """
3022
+ return pulumi.get(self, "categories")
3023
+
3024
+ @property
3025
+ @pulumi.getter(name="contentSchemaVersion")
3026
+ def content_schema_version(self) -> Optional[str]:
3027
+ """
3028
+ Schema version of the content. Can be used to distinguish between different flow based on the schema version
3029
+ """
3030
+ return pulumi.get(self, "content_schema_version")
3031
+
3032
+ @property
3033
+ @pulumi.getter(name="customVersion")
3034
+ def custom_version(self) -> Optional[str]:
3035
+ """
3036
+ The custom version of the content. A optional free text
3037
+ """
3038
+ return pulumi.get(self, "custom_version")
3039
+
3040
+ @property
3041
+ @pulumi.getter
3042
+ def dependencies(self) -> Optional['outputs.MetadataDependenciesResponse']:
3043
+ """
3044
+ Dependencies for the content item, what other content items it requires to work. Can describe more complex dependencies using a recursive/nested structure. For a single dependency an id/kind/version can be supplied or operator/criteria for complex formats.
3045
+ """
3046
+ return pulumi.get(self, "dependencies")
3047
+
3048
+ @property
3049
+ @pulumi.getter(name="firstPublishDate")
3050
+ def first_publish_date(self) -> Optional[str]:
3051
+ """
3052
+ first publish date content item
3053
+ """
3054
+ return pulumi.get(self, "first_publish_date")
3055
+
3056
+ @property
3057
+ @pulumi.getter
3058
+ def icon(self) -> Optional[str]:
3059
+ """
3060
+ the icon identifier. this id can later be fetched from the content metadata
3061
+ """
3062
+ return pulumi.get(self, "icon")
3063
+
3064
+ @property
3065
+ @pulumi.getter(name="lastPublishDate")
3066
+ def last_publish_date(self) -> Optional[str]:
3067
+ """
3068
+ last publish date for the content item
3069
+ """
3070
+ return pulumi.get(self, "last_publish_date")
3071
+
3072
+ @property
3073
+ @pulumi.getter(name="mainTemplate")
3074
+ def main_template(self) -> Optional[Any]:
3075
+ """
3076
+ The JSON of the ARM template to deploy active content. Expandable.
3077
+ """
3078
+ return pulumi.get(self, "main_template")
3079
+
3080
+ @property
3081
+ @pulumi.getter(name="packageKind")
3082
+ def package_kind(self) -> Optional[str]:
3083
+ """
3084
+ the packageKind of the package contains this template
3085
+ """
3086
+ return pulumi.get(self, "package_kind")
3087
+
3088
+ @property
3089
+ @pulumi.getter(name="packageName")
3090
+ def package_name(self) -> Optional[str]:
3091
+ """
3092
+ the name of the package contains this template
3093
+ """
3094
+ return pulumi.get(self, "package_name")
3095
+
3096
+ @property
3097
+ @pulumi.getter(name="previewImages")
3098
+ def preview_images(self) -> Optional[Sequence[str]]:
3099
+ """
3100
+ preview image file names. These will be taken from the solution artifacts
3101
+ """
3102
+ return pulumi.get(self, "preview_images")
3103
+
3104
+ @property
3105
+ @pulumi.getter(name="previewImagesDark")
3106
+ def preview_images_dark(self) -> Optional[Sequence[str]]:
3107
+ """
3108
+ preview image file names. These will be taken from the solution artifacts. used for dark theme support
3109
+ """
3110
+ return pulumi.get(self, "preview_images_dark")
3111
+
3112
+ @property
3113
+ @pulumi.getter
3114
+ def providers(self) -> Optional[Sequence[str]]:
3115
+ """
3116
+ Providers for the content item
3117
+ """
3118
+ return pulumi.get(self, "providers")
3119
+
3120
+ @property
3121
+ @pulumi.getter
3122
+ def support(self) -> Optional['outputs.MetadataSupportResponse']:
3123
+ """
3124
+ Support information for the template - type, name, contact information
3125
+ """
3126
+ return pulumi.get(self, "support")
3127
+
3128
+ @property
3129
+ @pulumi.getter(name="threatAnalysisTactics")
3130
+ def threat_analysis_tactics(self) -> Optional[Sequence[str]]:
3131
+ """
3132
+ the tactics the resource covers
3133
+ """
3134
+ return pulumi.get(self, "threat_analysis_tactics")
3135
+
3136
+ @property
3137
+ @pulumi.getter(name="threatAnalysisTechniques")
3138
+ def threat_analysis_techniques(self) -> Optional[Sequence[str]]:
3139
+ """
3140
+ the techniques the resource covers, these have to be aligned with the tactics being used
3141
+ """
3142
+ return pulumi.get(self, "threat_analysis_techniques")
3143
+
3144
+
3145
+ @pulumi.output_type
3146
+ class UserInfoResponse(dict):
3147
+ """
3148
+ User information that made some action
3149
+ """
3150
+ @staticmethod
3151
+ def __key_warning(key: str):
3152
+ suggest = None
3153
+ if key == "objectId":
3154
+ suggest = "object_id"
3155
+
3156
+ if suggest:
3157
+ pulumi.log.warn(f"Key '{key}' not found in UserInfoResponse. Access the value via the '{suggest}' property getter instead.")
3158
+
3159
+ def __getitem__(self, key: str) -> Any:
3160
+ UserInfoResponse.__key_warning(key)
3161
+ return super().__getitem__(key)
3162
+
3163
+ def get(self, key: str, default = None) -> Any:
3164
+ UserInfoResponse.__key_warning(key)
3165
+ return super().get(key, default)
3166
+
3167
+ def __init__(__self__, *,
3168
+ email: str,
3169
+ name: str,
3170
+ object_id: Optional[str] = None):
3171
+ """
3172
+ User information that made some action
3173
+ :param str email: The email of the user.
3174
+ :param str name: The name of the user.
3175
+ :param str object_id: The object id of the user.
3176
+ """
3177
+ pulumi.set(__self__, "email", email)
3178
+ pulumi.set(__self__, "name", name)
3179
+ if object_id is not None:
3180
+ pulumi.set(__self__, "object_id", object_id)
3181
+
3182
+ @property
3183
+ @pulumi.getter
3184
+ def email(self) -> str:
3185
+ """
3186
+ The email of the user.
3187
+ """
3188
+ return pulumi.get(self, "email")
3189
+
3190
+ @property
3191
+ @pulumi.getter
3192
+ def name(self) -> str:
3193
+ """
3194
+ The name of the user.
3195
+ """
3196
+ return pulumi.get(self, "name")
3197
+
3198
+ @property
3199
+ @pulumi.getter(name="objectId")
3200
+ def object_id(self) -> Optional[str]:
3201
+ """
3202
+ The object id of the user.
3203
+ """
3204
+ return pulumi.get(self, "object_id")
3205
+
3206
+
3207
+ @pulumi.output_type
3208
+ class WatchlistUserInfoResponse(dict):
3209
+ """
3210
+ User information that made some action
3211
+ """
3212
+ @staticmethod
3213
+ def __key_warning(key: str):
3214
+ suggest = None
3215
+ if key == "objectId":
3216
+ suggest = "object_id"
3217
+
3218
+ if suggest:
3219
+ pulumi.log.warn(f"Key '{key}' not found in WatchlistUserInfoResponse. Access the value via the '{suggest}' property getter instead.")
3220
+
3221
+ def __getitem__(self, key: str) -> Any:
3222
+ WatchlistUserInfoResponse.__key_warning(key)
3223
+ return super().__getitem__(key)
3224
+
3225
+ def get(self, key: str, default = None) -> Any:
3226
+ WatchlistUserInfoResponse.__key_warning(key)
3227
+ return super().get(key, default)
3228
+
3229
+ def __init__(__self__, *,
3230
+ email: str,
3231
+ name: str,
3232
+ object_id: Optional[str] = None):
3233
+ """
3234
+ User information that made some action
3235
+ :param str email: The email of the user.
3236
+ :param str name: The name of the user.
3237
+ :param str object_id: The object id of the user.
3238
+ """
3239
+ pulumi.set(__self__, "email", email)
3240
+ pulumi.set(__self__, "name", name)
3241
+ if object_id is not None:
3242
+ pulumi.set(__self__, "object_id", object_id)
3243
+
3244
+ @property
3245
+ @pulumi.getter
3246
+ def email(self) -> str:
3247
+ """
3248
+ The email of the user.
3249
+ """
3250
+ return pulumi.get(self, "email")
3251
+
3252
+ @property
3253
+ @pulumi.getter
3254
+ def name(self) -> str:
3255
+ """
3256
+ The name of the user.
3257
+ """
3258
+ return pulumi.get(self, "name")
3259
+
3260
+ @property
3261
+ @pulumi.getter(name="objectId")
3262
+ def object_id(self) -> Optional[str]:
3263
+ """
3264
+ The object id of the user.
3265
+ """
3266
+ return pulumi.get(self, "object_id")
3267
+
3268
+