pulumi-azure-native 2.35.0__py3-none-any.whl → 2.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (341) hide show
  1. pulumi_azure_native/__init__.py +73 -0
  2. pulumi_azure_native/azurearcdata/__init__.py +7 -0
  3. pulumi_azure_native/azurearcdata/_enums.py +12 -0
  4. pulumi_azure_native/azurearcdata/_inputs.py +399 -0
  5. pulumi_azure_native/azurearcdata/active_directory_connector.py +5 -1
  6. pulumi_azure_native/azurearcdata/data_controller.py +5 -1
  7. pulumi_azure_native/azurearcdata/failover_group.py +5 -1
  8. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +4 -0
  9. pulumi_azure_native/azurearcdata/get_data_controller.py +4 -0
  10. pulumi_azure_native/azurearcdata/get_failover_group.py +4 -0
  11. pulumi_azure_native/azurearcdata/get_postgres_instance.py +4 -0
  12. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +4 -0
  13. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +164 -0
  14. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +164 -0
  15. pulumi_azure_native/azurearcdata/get_sql_server_database.py +4 -0
  16. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +4 -0
  17. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +138 -0
  18. pulumi_azure_native/azurearcdata/outputs.py +1047 -0
  19. pulumi_azure_native/azurearcdata/postgres_instance.py +5 -1
  20. pulumi_azure_native/azurearcdata/sql_managed_instance.py +5 -1
  21. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +276 -0
  22. pulumi_azure_native/azurearcdata/sql_server_database.py +5 -1
  23. pulumi_azure_native/azurearcdata/sql_server_instance.py +5 -1
  24. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  25. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  26. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  27. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  28. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  29. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  30. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  31. pulumi_azure_native/azurearcdata/v20240101/__init__.py +28 -0
  32. pulumi_azure_native/azurearcdata/v20240101/_enums.py +188 -0
  33. pulumi_azure_native/azurearcdata/v20240101/_inputs.py +3132 -0
  34. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +217 -0
  35. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +283 -0
  36. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +217 -0
  37. pulumi_azure_native/azurearcdata/v20240101/get_active_directory_connector.py +136 -0
  38. pulumi_azure_native/azurearcdata/v20240101/get_data_controller.py +170 -0
  39. pulumi_azure_native/azurearcdata/v20240101/get_failover_group.py +136 -0
  40. pulumi_azure_native/azurearcdata/v20240101/get_postgres_instance.py +183 -0
  41. pulumi_azure_native/azurearcdata/v20240101/get_sql_managed_instance.py +183 -0
  42. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group.py +162 -0
  43. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group_detail_view.py +162 -0
  44. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_database.py +162 -0
  45. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance.py +157 -0
  46. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance_telemetry.py +136 -0
  47. pulumi_azure_native/azurearcdata/v20240101/outputs.py +4225 -0
  48. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +312 -0
  49. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +312 -0
  50. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +274 -0
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +275 -0
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +253 -0
  53. pulumi_azure_native/azuresphere/v20240401/list_catalog_deployments.py +1 -1
  54. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_groups.py +1 -1
  55. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_insights.py +1 -1
  56. pulumi_azure_native/azuresphere/v20240401/list_catalog_devices.py +1 -1
  57. pulumi_azure_native/eventhub/v20230101preview/outputs.py +14 -1
  58. pulumi_azure_native/insights/__init__.py +3 -0
  59. pulumi_azure_native/insights/data_collection_endpoint.py +5 -1
  60. pulumi_azure_native/insights/data_collection_rule.py +5 -1
  61. pulumi_azure_native/insights/data_collection_rule_association.py +5 -1
  62. pulumi_azure_native/insights/get_data_collection_endpoint.py +4 -0
  63. pulumi_azure_native/insights/get_data_collection_rule.py +4 -0
  64. pulumi_azure_native/insights/get_data_collection_rule_association.py +4 -0
  65. pulumi_azure_native/insights/v20220601/data_collection_endpoint.py +1 -1
  66. pulumi_azure_native/insights/v20220601/data_collection_rule.py +1 -1
  67. pulumi_azure_native/insights/v20220601/data_collection_rule_association.py +1 -1
  68. pulumi_azure_native/insights/v20230311/__init__.py +16 -0
  69. pulumi_azure_native/insights/v20230311/_enums.py +196 -0
  70. pulumi_azure_native/insights/v20230311/_inputs.py +2122 -0
  71. pulumi_azure_native/insights/v20230311/data_collection_endpoint.py +449 -0
  72. pulumi_azure_native/insights/v20230311/data_collection_rule.py +568 -0
  73. pulumi_azure_native/insights/v20230311/data_collection_rule_association.py +281 -0
  74. pulumi_azure_native/insights/v20230311/get_data_collection_endpoint.py +313 -0
  75. pulumi_azure_native/insights/v20230311/get_data_collection_rule.py +340 -0
  76. pulumi_azure_native/insights/v20230311/get_data_collection_rule_association.py +196 -0
  77. pulumi_azure_native/insights/v20230311/outputs.py +3280 -0
  78. pulumi_azure_native/loadtestservice/_enums.py +7 -1
  79. pulumi_azure_native/loadtestservice/_inputs.py +5 -5
  80. pulumi_azure_native/loadtestservice/get_load_test.py +7 -7
  81. pulumi_azure_native/loadtestservice/load_test.py +9 -9
  82. pulumi_azure_native/loadtestservice/outputs.py +49 -49
  83. pulumi_azure_native/loadtestservice/v20221201/_enums.py +7 -1
  84. pulumi_azure_native/loadtestservice/v20221201/_inputs.py +5 -5
  85. pulumi_azure_native/loadtestservice/v20221201/get_load_test.py +7 -7
  86. pulumi_azure_native/loadtestservice/v20221201/load_test.py +9 -9
  87. pulumi_azure_native/loadtestservice/v20221201/outputs.py +49 -49
  88. pulumi_azure_native/netapp/__init__.py +3 -0
  89. pulumi_azure_native/netapp/account.py +3 -3
  90. pulumi_azure_native/netapp/backup.py +2 -2
  91. pulumi_azure_native/netapp/backup_policy.py +3 -3
  92. pulumi_azure_native/netapp/backup_vault.py +3 -3
  93. pulumi_azure_native/netapp/get_account.py +2 -2
  94. pulumi_azure_native/netapp/get_backup.py +2 -2
  95. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  96. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  97. pulumi_azure_native/netapp/get_pool.py +2 -2
  98. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  99. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  100. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  101. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  102. pulumi_azure_native/netapp/get_volume.py +2 -2
  103. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  104. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  105. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  106. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  107. pulumi_azure_native/netapp/pool.py +3 -3
  108. pulumi_azure_native/netapp/snapshot.py +3 -3
  109. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  110. pulumi_azure_native/netapp/subvolume.py +3 -3
  111. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  112. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  113. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  114. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  115. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  116. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  117. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  118. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  119. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  120. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  121. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  122. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  123. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  124. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  125. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  126. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  127. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  128. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  129. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  130. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  131. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  132. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  133. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  134. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  135. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  136. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  137. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  138. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  139. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  140. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  141. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  142. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  143. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  144. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  145. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  146. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  147. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  148. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  149. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  150. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  151. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  152. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  153. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  154. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  155. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  156. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  157. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  158. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  159. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  160. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  161. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  162. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  163. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  164. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  165. pulumi_azure_native/netapp/v20230701preview/__init__.py +35 -0
  166. pulumi_azure_native/netapp/v20230701preview/_enums.py +267 -0
  167. pulumi_azure_native/netapp/v20230701preview/_inputs.py +2339 -0
  168. pulumi_azure_native/netapp/v20230701preview/account.py +380 -0
  169. pulumi_azure_native/netapp/v20230701preview/backup.py +397 -0
  170. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +409 -0
  171. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +253 -0
  172. pulumi_azure_native/netapp/v20230701preview/get_account.py +248 -0
  173. pulumi_azure_native/netapp/v20230701preview/get_backup.py +271 -0
  174. pulumi_azure_native/netapp/v20230701preview/get_backup_policy.py +266 -0
  175. pulumi_azure_native/netapp/v20230701preview/get_backup_vault.py +162 -0
  176. pulumi_azure_native/netapp/v20230701preview/get_pool.py +279 -0
  177. pulumi_azure_native/netapp/v20230701preview/get_snapshot.py +185 -0
  178. pulumi_azure_native/netapp/v20230701preview/get_snapshot_policy.py +240 -0
  179. pulumi_azure_native/netapp/v20230701preview/get_subvolume.py +185 -0
  180. pulumi_azure_native/netapp/v20230701preview/get_subvolume_metadata.py +249 -0
  181. pulumi_azure_native/netapp/v20230701preview/get_volume.py +895 -0
  182. pulumi_azure_native/netapp/v20230701preview/get_volume_group.py +162 -0
  183. pulumi_azure_native/netapp/v20230701preview/get_volume_group_id_for_ldap_user.py +93 -0
  184. pulumi_azure_native/netapp/v20230701preview/get_volume_quota_rule.py +211 -0
  185. pulumi_azure_native/netapp/v20230701preview/list_volume_replications.py +89 -0
  186. pulumi_azure_native/netapp/v20230701preview/outputs.py +3111 -0
  187. pulumi_azure_native/netapp/v20230701preview/pool.py +457 -0
  188. pulumi_azure_native/netapp/v20230701preview/snapshot.py +286 -0
  189. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +409 -0
  190. pulumi_azure_native/netapp/v20230701preview/subvolume.py +324 -0
  191. pulumi_azure_native/netapp/v20230701preview/volume.py +1644 -0
  192. pulumi_azure_native/netapp/v20230701preview/volume_group.py +274 -0
  193. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +383 -0
  194. pulumi_azure_native/netapp/volume.py +3 -3
  195. pulumi_azure_native/netapp/volume_group.py +3 -3
  196. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  197. pulumi_azure_native/quota/_enums.py +1 -1
  198. pulumi_azure_native/quota/_inputs.py +10 -10
  199. pulumi_azure_native/quota/get_group_quota.py +7 -7
  200. pulumi_azure_native/quota/get_group_quota_subscription.py +8 -8
  201. pulumi_azure_native/quota/group_quota.py +15 -15
  202. pulumi_azure_native/quota/group_quota_subscription.py +17 -17
  203. pulumi_azure_native/quota/outputs.py +12 -12
  204. pulumi_azure_native/quota/v20230601preview/_enums.py +1 -1
  205. pulumi_azure_native/quota/v20230601preview/_inputs.py +10 -10
  206. pulumi_azure_native/quota/v20230601preview/get_group_quota.py +7 -7
  207. pulumi_azure_native/quota/v20230601preview/get_group_quota_subscription.py +8 -8
  208. pulumi_azure_native/quota/v20230601preview/group_quota.py +15 -15
  209. pulumi_azure_native/quota/v20230601preview/group_quota_subscription.py +17 -17
  210. pulumi_azure_native/quota/v20230601preview/outputs.py +12 -12
  211. pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
  212. pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
  213. pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
  214. pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
  215. pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
  216. pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
  217. pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
  218. pulumi_azure_native/recoveryservices/protected_item.py +3 -3
  219. pulumi_azure_native/recoveryservices/protection_container.py +3 -3
  220. pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
  221. pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
  222. pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
  223. pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
  224. pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
  225. pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
  226. pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
  227. pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
  228. pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
  229. pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
  230. pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
  231. pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
  232. pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
  233. pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
  234. pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
  235. pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
  236. pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
  237. pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
  238. pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
  239. pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
  240. pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
  241. pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
  242. pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
  243. pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
  244. pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
  245. pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
  246. pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
  247. pulumi_azure_native/recoveryservices/v20240201/__init__.py +12 -0
  248. pulumi_azure_native/recoveryservices/v20240201/_enums.py +368 -0
  249. pulumi_azure_native/recoveryservices/v20240201/_inputs.py +11655 -197
  250. pulumi_azure_native/recoveryservices/v20240201/get_private_endpoint_connection.py +162 -0
  251. pulumi_azure_native/recoveryservices/v20240201/get_protected_item.py +179 -0
  252. pulumi_azure_native/recoveryservices/v20240201/get_protection_container.py +167 -0
  253. pulumi_azure_native/recoveryservices/v20240201/get_protection_intent.py +169 -0
  254. pulumi_azure_native/recoveryservices/v20240201/get_protection_policy.py +164 -0
  255. pulumi_azure_native/recoveryservices/v20240201/get_resource_guard_proxy.py +157 -0
  256. pulumi_azure_native/recoveryservices/v20240201/outputs.py +13072 -317
  257. pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +293 -0
  258. pulumi_azure_native/recoveryservices/v20240201/protected_item.py +335 -0
  259. pulumi_azure_native/recoveryservices/v20240201/protection_container.py +314 -0
  260. pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +314 -0
  261. pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +293 -0
  262. pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +285 -0
  263. pulumi_azure_native/resources/__init__.py +3 -0
  264. pulumi_azure_native/resources/deployment.py +3 -3
  265. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  266. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  267. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  268. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  269. pulumi_azure_native/resources/get_deployment.py +2 -2
  270. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  271. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  272. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  273. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  274. pulumi_azure_native/resources/get_resource.py +2 -2
  275. pulumi_azure_native/resources/get_resource_group.py +2 -2
  276. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  277. pulumi_azure_native/resources/resource.py +3 -3
  278. pulumi_azure_native/resources/resource_group.py +3 -3
  279. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  280. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  281. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  282. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  283. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  284. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  285. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  286. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  287. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  288. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  289. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  290. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  291. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  292. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  293. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  294. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  295. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  296. pulumi_azure_native/resources/v20240301/__init__.py +26 -0
  297. pulumi_azure_native/resources/v20240301/_enums.py +55 -0
  298. pulumi_azure_native/resources/v20240301/_inputs.py +788 -0
  299. pulumi_azure_native/resources/v20240301/deployment.py +244 -0
  300. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +244 -0
  301. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +244 -0
  302. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +223 -0
  303. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +223 -0
  304. pulumi_azure_native/resources/v20240301/get_deployment.py +144 -0
  305. pulumi_azure_native/resources/v20240301/get_deployment_at_management_group_scope.py +144 -0
  306. pulumi_azure_native/resources/v20240301/get_deployment_at_scope.py +144 -0
  307. pulumi_azure_native/resources/v20240301/get_deployment_at_subscription_scope.py +139 -0
  308. pulumi_azure_native/resources/v20240301/get_deployment_at_tenant_scope.py +139 -0
  309. pulumi_azure_native/resources/v20240301/get_resource.py +237 -0
  310. pulumi_azure_native/resources/v20240301/get_resource_group.py +152 -0
  311. pulumi_azure_native/resources/v20240301/get_tag_at_scope.py +113 -0
  312. pulumi_azure_native/resources/v20240301/outputs.py +1842 -0
  313. pulumi_azure_native/resources/v20240301/resource.py +480 -0
  314. pulumi_azure_native/resources/v20240301/resource_group.py +230 -0
  315. pulumi_azure_native/resources/v20240301/tag_at_scope.py +165 -0
  316. pulumi_azure_native/security/__init__.py +3 -0
  317. pulumi_azure_native/security/dev_ops_configuration.py +5 -1
  318. pulumi_azure_native/security/get_dev_ops_configuration.py +4 -0
  319. pulumi_azure_native/security/list_azure_dev_ops_org_available.py +4 -0
  320. pulumi_azure_native/security/list_git_hub_owner_available.py +4 -0
  321. pulumi_azure_native/security/list_git_lab_group_available.py +4 -0
  322. pulumi_azure_native/security/list_git_lab_subgroup.py +4 -0
  323. pulumi_azure_native/security/v20230901preview/dev_ops_configuration.py +1 -1
  324. pulumi_azure_native/security/v20240401/__init__.py +16 -0
  325. pulumi_azure_native/security/v20240401/_enums.py +40 -0
  326. pulumi_azure_native/security/v20240401/_inputs.py +135 -0
  327. pulumi_azure_native/security/v20240401/dev_ops_configuration.py +196 -0
  328. pulumi_azure_native/security/v20240401/get_dev_ops_configuration.py +131 -0
  329. pulumi_azure_native/security/v20240401/list_azure_dev_ops_org_available.py +92 -0
  330. pulumi_azure_native/security/v20240401/list_git_hub_owner_available.py +92 -0
  331. pulumi_azure_native/security/v20240401/list_git_lab_group_available.py +92 -0
  332. pulumi_azure_native/security/v20240401/list_git_lab_subgroup.py +97 -0
  333. pulumi_azure_native/security/v20240401/outputs.py +1018 -0
  334. pulumi_azure_native/standbypool/_inputs.py +2 -2
  335. pulumi_azure_native/standbypool/outputs.py +2 -2
  336. pulumi_azure_native/standbypool/v20231201preview/_inputs.py +2 -2
  337. pulumi_azure_native/standbypool/v20231201preview/outputs.py +2 -2
  338. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/METADATA +1 -1
  339. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/RECORD +341 -234
  340. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/WHEEL +0 -0
  341. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3280 @@
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
+ 'AdxDestinationResponse',
16
+ 'AgentSettingResponse',
17
+ 'ColumnDefinitionResponse',
18
+ 'DataCollectionEndpointResourceResponseIdentity',
19
+ 'DataCollectionEndpointResourceResponseSystemData',
20
+ 'DataCollectionEndpointResponseConfigurationAccess',
21
+ 'DataCollectionEndpointResponseFailoverConfiguration',
22
+ 'DataCollectionEndpointResponseLogsIngestion',
23
+ 'DataCollectionEndpointResponseMetadata',
24
+ 'DataCollectionEndpointResponseMetricsIngestion',
25
+ 'DataCollectionEndpointResponseNetworkAcls',
26
+ 'DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData',
27
+ 'DataCollectionRuleAssociationResponseMetadata',
28
+ 'DataCollectionRuleResourceResponseIdentity',
29
+ 'DataCollectionRuleResourceResponseSystemData',
30
+ 'DataCollectionRuleResponseAgentSettings',
31
+ 'DataCollectionRuleResponseDataSources',
32
+ 'DataCollectionRuleResponseDestinations',
33
+ 'DataCollectionRuleResponseEndpoints',
34
+ 'DataCollectionRuleResponseMetadata',
35
+ 'DataCollectionRuleResponseReferences',
36
+ 'DataFlowResponse',
37
+ 'DataImportSourcesResponseEventHub',
38
+ 'DataSourcesSpecResponseDataImports',
39
+ 'DestinationsSpecResponseAzureMonitorMetrics',
40
+ 'EventHubDestinationResponse',
41
+ 'EventHubDirectDestinationResponse',
42
+ 'ExtensionDataSourceResponse',
43
+ 'IisLogsDataSourceResponse',
44
+ 'LocationSpecResponse',
45
+ 'LogAnalyticsDestinationResponse',
46
+ 'LogFileSettingsResponseText',
47
+ 'LogFilesDataSourceResponse',
48
+ 'LogFilesDataSourceResponseSettings',
49
+ 'MicrosoftFabricDestinationResponse',
50
+ 'MonitoringAccountDestinationResponse',
51
+ 'PerfCounterDataSourceResponse',
52
+ 'PlatformTelemetryDataSourceResponse',
53
+ 'PrivateLinkScopedResourceResponse',
54
+ 'PrometheusForwarderDataSourceResponse',
55
+ 'ReferencesSpecResponseEnrichmentData',
56
+ 'StorageBlobDestinationResponse',
57
+ 'StorageBlobResponse',
58
+ 'StorageTableDestinationResponse',
59
+ 'StreamDeclarationResponse',
60
+ 'SyslogDataSourceResponse',
61
+ 'UserAssignedIdentityResponse',
62
+ 'WindowsEventLogDataSourceResponse',
63
+ 'WindowsFirewallLogsDataSourceResponse',
64
+ ]
65
+
66
+ @pulumi.output_type
67
+ class AdxDestinationResponse(dict):
68
+ """
69
+ Azure Data Explorer (Adx) destination.
70
+ """
71
+ @staticmethod
72
+ def __key_warning(key: str):
73
+ suggest = None
74
+ if key == "ingestionUri":
75
+ suggest = "ingestion_uri"
76
+ elif key == "databaseName":
77
+ suggest = "database_name"
78
+ elif key == "resourceId":
79
+ suggest = "resource_id"
80
+
81
+ if suggest:
82
+ pulumi.log.warn(f"Key '{key}' not found in AdxDestinationResponse. Access the value via the '{suggest}' property getter instead.")
83
+
84
+ def __getitem__(self, key: str) -> Any:
85
+ AdxDestinationResponse.__key_warning(key)
86
+ return super().__getitem__(key)
87
+
88
+ def get(self, key: str, default = None) -> Any:
89
+ AdxDestinationResponse.__key_warning(key)
90
+ return super().get(key, default)
91
+
92
+ def __init__(__self__, *,
93
+ ingestion_uri: str,
94
+ database_name: Optional[str] = None,
95
+ name: Optional[str] = None,
96
+ resource_id: Optional[str] = None):
97
+ """
98
+ Azure Data Explorer (Adx) destination.
99
+ :param str ingestion_uri: The ingestion uri of the Adx resource.
100
+ :param str database_name: The name of the database to which data will be ingested.
101
+ :param str name: A friendly name for the destination.
102
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
103
+ :param str resource_id: The ARM resource id of the Adx resource.
104
+ """
105
+ pulumi.set(__self__, "ingestion_uri", ingestion_uri)
106
+ if database_name is not None:
107
+ pulumi.set(__self__, "database_name", database_name)
108
+ if name is not None:
109
+ pulumi.set(__self__, "name", name)
110
+ if resource_id is not None:
111
+ pulumi.set(__self__, "resource_id", resource_id)
112
+
113
+ @property
114
+ @pulumi.getter(name="ingestionUri")
115
+ def ingestion_uri(self) -> str:
116
+ """
117
+ The ingestion uri of the Adx resource.
118
+ """
119
+ return pulumi.get(self, "ingestion_uri")
120
+
121
+ @property
122
+ @pulumi.getter(name="databaseName")
123
+ def database_name(self) -> Optional[str]:
124
+ """
125
+ The name of the database to which data will be ingested.
126
+ """
127
+ return pulumi.get(self, "database_name")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def name(self) -> Optional[str]:
132
+ """
133
+ A friendly name for the destination.
134
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
135
+ """
136
+ return pulumi.get(self, "name")
137
+
138
+ @property
139
+ @pulumi.getter(name="resourceId")
140
+ def resource_id(self) -> Optional[str]:
141
+ """
142
+ The ARM resource id of the Adx resource.
143
+ """
144
+ return pulumi.get(self, "resource_id")
145
+
146
+
147
+ @pulumi.output_type
148
+ class AgentSettingResponse(dict):
149
+ """
150
+ A setting used to control an agent behavior on a host machine
151
+ """
152
+ def __init__(__self__, *,
153
+ name: Optional[str] = None,
154
+ value: Optional[str] = None):
155
+ """
156
+ A setting used to control an agent behavior on a host machine
157
+ :param str name: The name of the setting.
158
+ Must be part of the list of supported settings
159
+ :param str value: The value of the setting
160
+ """
161
+ if name is not None:
162
+ pulumi.set(__self__, "name", name)
163
+ if value is not None:
164
+ pulumi.set(__self__, "value", value)
165
+
166
+ @property
167
+ @pulumi.getter
168
+ def name(self) -> Optional[str]:
169
+ """
170
+ The name of the setting.
171
+ Must be part of the list of supported settings
172
+ """
173
+ return pulumi.get(self, "name")
174
+
175
+ @property
176
+ @pulumi.getter
177
+ def value(self) -> Optional[str]:
178
+ """
179
+ The value of the setting
180
+ """
181
+ return pulumi.get(self, "value")
182
+
183
+
184
+ @pulumi.output_type
185
+ class ColumnDefinitionResponse(dict):
186
+ """
187
+ Definition of custom data column.
188
+ """
189
+ def __init__(__self__, *,
190
+ name: Optional[str] = None,
191
+ type: Optional[str] = None):
192
+ """
193
+ Definition of custom data column.
194
+ :param str name: The name of the column.
195
+ :param str type: The type of the column data.
196
+ """
197
+ if name is not None:
198
+ pulumi.set(__self__, "name", name)
199
+ if type is not None:
200
+ pulumi.set(__self__, "type", type)
201
+
202
+ @property
203
+ @pulumi.getter
204
+ def name(self) -> Optional[str]:
205
+ """
206
+ The name of the column.
207
+ """
208
+ return pulumi.get(self, "name")
209
+
210
+ @property
211
+ @pulumi.getter
212
+ def type(self) -> Optional[str]:
213
+ """
214
+ The type of the column data.
215
+ """
216
+ return pulumi.get(self, "type")
217
+
218
+
219
+ @pulumi.output_type
220
+ class DataCollectionEndpointResourceResponseIdentity(dict):
221
+ """
222
+ Managed service identity of the resource.
223
+ """
224
+ @staticmethod
225
+ def __key_warning(key: str):
226
+ suggest = None
227
+ if key == "principalId":
228
+ suggest = "principal_id"
229
+ elif key == "tenantId":
230
+ suggest = "tenant_id"
231
+ elif key == "userAssignedIdentities":
232
+ suggest = "user_assigned_identities"
233
+
234
+ if suggest:
235
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
236
+
237
+ def __getitem__(self, key: str) -> Any:
238
+ DataCollectionEndpointResourceResponseIdentity.__key_warning(key)
239
+ return super().__getitem__(key)
240
+
241
+ def get(self, key: str, default = None) -> Any:
242
+ DataCollectionEndpointResourceResponseIdentity.__key_warning(key)
243
+ return super().get(key, default)
244
+
245
+ def __init__(__self__, *,
246
+ principal_id: str,
247
+ tenant_id: str,
248
+ type: str,
249
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
250
+ """
251
+ Managed service identity of the resource.
252
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
253
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
254
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
255
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
256
+ """
257
+ pulumi.set(__self__, "principal_id", principal_id)
258
+ pulumi.set(__self__, "tenant_id", tenant_id)
259
+ pulumi.set(__self__, "type", type)
260
+ if user_assigned_identities is not None:
261
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
262
+
263
+ @property
264
+ @pulumi.getter(name="principalId")
265
+ def principal_id(self) -> str:
266
+ """
267
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
268
+ """
269
+ return pulumi.get(self, "principal_id")
270
+
271
+ @property
272
+ @pulumi.getter(name="tenantId")
273
+ def tenant_id(self) -> str:
274
+ """
275
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
276
+ """
277
+ return pulumi.get(self, "tenant_id")
278
+
279
+ @property
280
+ @pulumi.getter
281
+ def type(self) -> str:
282
+ """
283
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
284
+ """
285
+ return pulumi.get(self, "type")
286
+
287
+ @property
288
+ @pulumi.getter(name="userAssignedIdentities")
289
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
290
+ """
291
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
292
+ """
293
+ return pulumi.get(self, "user_assigned_identities")
294
+
295
+
296
+ @pulumi.output_type
297
+ class DataCollectionEndpointResourceResponseSystemData(dict):
298
+ """
299
+ Metadata pertaining to creation and last modification of the resource.
300
+ """
301
+ @staticmethod
302
+ def __key_warning(key: str):
303
+ suggest = None
304
+ if key == "createdAt":
305
+ suggest = "created_at"
306
+ elif key == "createdBy":
307
+ suggest = "created_by"
308
+ elif key == "createdByType":
309
+ suggest = "created_by_type"
310
+ elif key == "lastModifiedAt":
311
+ suggest = "last_modified_at"
312
+ elif key == "lastModifiedBy":
313
+ suggest = "last_modified_by"
314
+ elif key == "lastModifiedByType":
315
+ suggest = "last_modified_by_type"
316
+
317
+ if suggest:
318
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
319
+
320
+ def __getitem__(self, key: str) -> Any:
321
+ DataCollectionEndpointResourceResponseSystemData.__key_warning(key)
322
+ return super().__getitem__(key)
323
+
324
+ def get(self, key: str, default = None) -> Any:
325
+ DataCollectionEndpointResourceResponseSystemData.__key_warning(key)
326
+ return super().get(key, default)
327
+
328
+ def __init__(__self__, *,
329
+ created_at: Optional[str] = None,
330
+ created_by: Optional[str] = None,
331
+ created_by_type: Optional[str] = None,
332
+ last_modified_at: Optional[str] = None,
333
+ last_modified_by: Optional[str] = None,
334
+ last_modified_by_type: Optional[str] = None):
335
+ """
336
+ Metadata pertaining to creation and last modification of the resource.
337
+ :param str created_at: The timestamp of resource creation (UTC).
338
+ :param str created_by: The identity that created the resource.
339
+ :param str created_by_type: The type of identity that created the resource.
340
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
341
+ :param str last_modified_by: The identity that last modified the resource.
342
+ :param str last_modified_by_type: The type of identity that last modified the resource.
343
+ """
344
+ if created_at is not None:
345
+ pulumi.set(__self__, "created_at", created_at)
346
+ if created_by is not None:
347
+ pulumi.set(__self__, "created_by", created_by)
348
+ if created_by_type is not None:
349
+ pulumi.set(__self__, "created_by_type", created_by_type)
350
+ if last_modified_at is not None:
351
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
352
+ if last_modified_by is not None:
353
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
354
+ if last_modified_by_type is not None:
355
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
356
+
357
+ @property
358
+ @pulumi.getter(name="createdAt")
359
+ def created_at(self) -> Optional[str]:
360
+ """
361
+ The timestamp of resource creation (UTC).
362
+ """
363
+ return pulumi.get(self, "created_at")
364
+
365
+ @property
366
+ @pulumi.getter(name="createdBy")
367
+ def created_by(self) -> Optional[str]:
368
+ """
369
+ The identity that created the resource.
370
+ """
371
+ return pulumi.get(self, "created_by")
372
+
373
+ @property
374
+ @pulumi.getter(name="createdByType")
375
+ def created_by_type(self) -> Optional[str]:
376
+ """
377
+ The type of identity that created the resource.
378
+ """
379
+ return pulumi.get(self, "created_by_type")
380
+
381
+ @property
382
+ @pulumi.getter(name="lastModifiedAt")
383
+ def last_modified_at(self) -> Optional[str]:
384
+ """
385
+ The timestamp of resource last modification (UTC)
386
+ """
387
+ return pulumi.get(self, "last_modified_at")
388
+
389
+ @property
390
+ @pulumi.getter(name="lastModifiedBy")
391
+ def last_modified_by(self) -> Optional[str]:
392
+ """
393
+ The identity that last modified the resource.
394
+ """
395
+ return pulumi.get(self, "last_modified_by")
396
+
397
+ @property
398
+ @pulumi.getter(name="lastModifiedByType")
399
+ def last_modified_by_type(self) -> Optional[str]:
400
+ """
401
+ The type of identity that last modified the resource.
402
+ """
403
+ return pulumi.get(self, "last_modified_by_type")
404
+
405
+
406
+ @pulumi.output_type
407
+ class DataCollectionEndpointResponseConfigurationAccess(dict):
408
+ """
409
+ The endpoint used by clients to access their configuration.
410
+ """
411
+ def __init__(__self__, *,
412
+ endpoint: str):
413
+ """
414
+ The endpoint used by clients to access their configuration.
415
+ :param str endpoint: The endpoint. This property is READ-ONLY.
416
+ """
417
+ pulumi.set(__self__, "endpoint", endpoint)
418
+
419
+ @property
420
+ @pulumi.getter
421
+ def endpoint(self) -> str:
422
+ """
423
+ The endpoint. This property is READ-ONLY.
424
+ """
425
+ return pulumi.get(self, "endpoint")
426
+
427
+
428
+ @pulumi.output_type
429
+ class DataCollectionEndpointResponseFailoverConfiguration(dict):
430
+ """
431
+ Failover configuration on this endpoint. This property is READ-ONLY.
432
+ """
433
+ @staticmethod
434
+ def __key_warning(key: str):
435
+ suggest = None
436
+ if key == "activeLocation":
437
+ suggest = "active_location"
438
+
439
+ if suggest:
440
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseFailoverConfiguration. Access the value via the '{suggest}' property getter instead.")
441
+
442
+ def __getitem__(self, key: str) -> Any:
443
+ DataCollectionEndpointResponseFailoverConfiguration.__key_warning(key)
444
+ return super().__getitem__(key)
445
+
446
+ def get(self, key: str, default = None) -> Any:
447
+ DataCollectionEndpointResponseFailoverConfiguration.__key_warning(key)
448
+ return super().get(key, default)
449
+
450
+ def __init__(__self__, *,
451
+ active_location: Optional[str] = None,
452
+ locations: Optional[Sequence['outputs.LocationSpecResponse']] = None):
453
+ """
454
+ Failover configuration on this endpoint. This property is READ-ONLY.
455
+ :param str active_location: Active location where data flow will occur.
456
+ :param Sequence['LocationSpecResponse'] locations: Locations that are configured for failover.
457
+ """
458
+ if active_location is not None:
459
+ pulumi.set(__self__, "active_location", active_location)
460
+ if locations is not None:
461
+ pulumi.set(__self__, "locations", locations)
462
+
463
+ @property
464
+ @pulumi.getter(name="activeLocation")
465
+ def active_location(self) -> Optional[str]:
466
+ """
467
+ Active location where data flow will occur.
468
+ """
469
+ return pulumi.get(self, "active_location")
470
+
471
+ @property
472
+ @pulumi.getter
473
+ def locations(self) -> Optional[Sequence['outputs.LocationSpecResponse']]:
474
+ """
475
+ Locations that are configured for failover.
476
+ """
477
+ return pulumi.get(self, "locations")
478
+
479
+
480
+ @pulumi.output_type
481
+ class DataCollectionEndpointResponseLogsIngestion(dict):
482
+ """
483
+ The endpoint used by clients to ingest logs.
484
+ """
485
+ def __init__(__self__, *,
486
+ endpoint: str):
487
+ """
488
+ The endpoint used by clients to ingest logs.
489
+ :param str endpoint: The endpoint. This property is READ-ONLY.
490
+ """
491
+ pulumi.set(__self__, "endpoint", endpoint)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def endpoint(self) -> str:
496
+ """
497
+ The endpoint. This property is READ-ONLY.
498
+ """
499
+ return pulumi.get(self, "endpoint")
500
+
501
+
502
+ @pulumi.output_type
503
+ class DataCollectionEndpointResponseMetadata(dict):
504
+ """
505
+ Metadata for the resource. This property is READ-ONLY.
506
+ """
507
+ @staticmethod
508
+ def __key_warning(key: str):
509
+ suggest = None
510
+ if key == "provisionedBy":
511
+ suggest = "provisioned_by"
512
+ elif key == "provisionedByImmutableId":
513
+ suggest = "provisioned_by_immutable_id"
514
+ elif key == "provisionedByResourceId":
515
+ suggest = "provisioned_by_resource_id"
516
+
517
+ if suggest:
518
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseMetadata. Access the value via the '{suggest}' property getter instead.")
519
+
520
+ def __getitem__(self, key: str) -> Any:
521
+ DataCollectionEndpointResponseMetadata.__key_warning(key)
522
+ return super().__getitem__(key)
523
+
524
+ def get(self, key: str, default = None) -> Any:
525
+ DataCollectionEndpointResponseMetadata.__key_warning(key)
526
+ return super().get(key, default)
527
+
528
+ def __init__(__self__, *,
529
+ provisioned_by: str,
530
+ provisioned_by_immutable_id: str,
531
+ provisioned_by_resource_id: str):
532
+ """
533
+ Metadata for the resource. This property is READ-ONLY.
534
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
535
+ :param str provisioned_by_immutable_id: Immutable Id of azure offering managing this resource on-behalf-of customer.
536
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
537
+ """
538
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
539
+ pulumi.set(__self__, "provisioned_by_immutable_id", provisioned_by_immutable_id)
540
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
541
+
542
+ @property
543
+ @pulumi.getter(name="provisionedBy")
544
+ def provisioned_by(self) -> str:
545
+ """
546
+ Azure offering managing this resource on-behalf-of customer.
547
+ """
548
+ return pulumi.get(self, "provisioned_by")
549
+
550
+ @property
551
+ @pulumi.getter(name="provisionedByImmutableId")
552
+ def provisioned_by_immutable_id(self) -> str:
553
+ """
554
+ Immutable Id of azure offering managing this resource on-behalf-of customer.
555
+ """
556
+ return pulumi.get(self, "provisioned_by_immutable_id")
557
+
558
+ @property
559
+ @pulumi.getter(name="provisionedByResourceId")
560
+ def provisioned_by_resource_id(self) -> str:
561
+ """
562
+ Resource Id of azure offering managing this resource on-behalf-of customer.
563
+ """
564
+ return pulumi.get(self, "provisioned_by_resource_id")
565
+
566
+
567
+ @pulumi.output_type
568
+ class DataCollectionEndpointResponseMetricsIngestion(dict):
569
+ """
570
+ The endpoint used by clients to ingest metrics.
571
+ """
572
+ def __init__(__self__, *,
573
+ endpoint: str):
574
+ """
575
+ The endpoint used by clients to ingest metrics.
576
+ :param str endpoint: The endpoint. This property is READ-ONLY.
577
+ """
578
+ pulumi.set(__self__, "endpoint", endpoint)
579
+
580
+ @property
581
+ @pulumi.getter
582
+ def endpoint(self) -> str:
583
+ """
584
+ The endpoint. This property is READ-ONLY.
585
+ """
586
+ return pulumi.get(self, "endpoint")
587
+
588
+
589
+ @pulumi.output_type
590
+ class DataCollectionEndpointResponseNetworkAcls(dict):
591
+ """
592
+ Network access control rules for the endpoints.
593
+ """
594
+ @staticmethod
595
+ def __key_warning(key: str):
596
+ suggest = None
597
+ if key == "publicNetworkAccess":
598
+ suggest = "public_network_access"
599
+
600
+ if suggest:
601
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseNetworkAcls. Access the value via the '{suggest}' property getter instead.")
602
+
603
+ def __getitem__(self, key: str) -> Any:
604
+ DataCollectionEndpointResponseNetworkAcls.__key_warning(key)
605
+ return super().__getitem__(key)
606
+
607
+ def get(self, key: str, default = None) -> Any:
608
+ DataCollectionEndpointResponseNetworkAcls.__key_warning(key)
609
+ return super().get(key, default)
610
+
611
+ def __init__(__self__, *,
612
+ public_network_access: Optional[str] = None):
613
+ """
614
+ Network access control rules for the endpoints.
615
+ :param str public_network_access: The configuration to set whether network access from public internet to the endpoints are allowed.
616
+ """
617
+ if public_network_access is not None:
618
+ pulumi.set(__self__, "public_network_access", public_network_access)
619
+
620
+ @property
621
+ @pulumi.getter(name="publicNetworkAccess")
622
+ def public_network_access(self) -> Optional[str]:
623
+ """
624
+ The configuration to set whether network access from public internet to the endpoints are allowed.
625
+ """
626
+ return pulumi.get(self, "public_network_access")
627
+
628
+
629
+ @pulumi.output_type
630
+ class DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData(dict):
631
+ """
632
+ Metadata pertaining to creation and last modification of the resource.
633
+ """
634
+ @staticmethod
635
+ def __key_warning(key: str):
636
+ suggest = None
637
+ if key == "createdAt":
638
+ suggest = "created_at"
639
+ elif key == "createdBy":
640
+ suggest = "created_by"
641
+ elif key == "createdByType":
642
+ suggest = "created_by_type"
643
+ elif key == "lastModifiedAt":
644
+ suggest = "last_modified_at"
645
+ elif key == "lastModifiedBy":
646
+ suggest = "last_modified_by"
647
+ elif key == "lastModifiedByType":
648
+ suggest = "last_modified_by_type"
649
+
650
+ if suggest:
651
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
652
+
653
+ def __getitem__(self, key: str) -> Any:
654
+ DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData.__key_warning(key)
655
+ return super().__getitem__(key)
656
+
657
+ def get(self, key: str, default = None) -> Any:
658
+ DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData.__key_warning(key)
659
+ return super().get(key, default)
660
+
661
+ def __init__(__self__, *,
662
+ created_at: Optional[str] = None,
663
+ created_by: Optional[str] = None,
664
+ created_by_type: Optional[str] = None,
665
+ last_modified_at: Optional[str] = None,
666
+ last_modified_by: Optional[str] = None,
667
+ last_modified_by_type: Optional[str] = None):
668
+ """
669
+ Metadata pertaining to creation and last modification of the resource.
670
+ :param str created_at: The timestamp of resource creation (UTC).
671
+ :param str created_by: The identity that created the resource.
672
+ :param str created_by_type: The type of identity that created the resource.
673
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
674
+ :param str last_modified_by: The identity that last modified the resource.
675
+ :param str last_modified_by_type: The type of identity that last modified the resource.
676
+ """
677
+ if created_at is not None:
678
+ pulumi.set(__self__, "created_at", created_at)
679
+ if created_by is not None:
680
+ pulumi.set(__self__, "created_by", created_by)
681
+ if created_by_type is not None:
682
+ pulumi.set(__self__, "created_by_type", created_by_type)
683
+ if last_modified_at is not None:
684
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
685
+ if last_modified_by is not None:
686
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
687
+ if last_modified_by_type is not None:
688
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
689
+
690
+ @property
691
+ @pulumi.getter(name="createdAt")
692
+ def created_at(self) -> Optional[str]:
693
+ """
694
+ The timestamp of resource creation (UTC).
695
+ """
696
+ return pulumi.get(self, "created_at")
697
+
698
+ @property
699
+ @pulumi.getter(name="createdBy")
700
+ def created_by(self) -> Optional[str]:
701
+ """
702
+ The identity that created the resource.
703
+ """
704
+ return pulumi.get(self, "created_by")
705
+
706
+ @property
707
+ @pulumi.getter(name="createdByType")
708
+ def created_by_type(self) -> Optional[str]:
709
+ """
710
+ The type of identity that created the resource.
711
+ """
712
+ return pulumi.get(self, "created_by_type")
713
+
714
+ @property
715
+ @pulumi.getter(name="lastModifiedAt")
716
+ def last_modified_at(self) -> Optional[str]:
717
+ """
718
+ The timestamp of resource last modification (UTC)
719
+ """
720
+ return pulumi.get(self, "last_modified_at")
721
+
722
+ @property
723
+ @pulumi.getter(name="lastModifiedBy")
724
+ def last_modified_by(self) -> Optional[str]:
725
+ """
726
+ The identity that last modified the resource.
727
+ """
728
+ return pulumi.get(self, "last_modified_by")
729
+
730
+ @property
731
+ @pulumi.getter(name="lastModifiedByType")
732
+ def last_modified_by_type(self) -> Optional[str]:
733
+ """
734
+ The type of identity that last modified the resource.
735
+ """
736
+ return pulumi.get(self, "last_modified_by_type")
737
+
738
+
739
+ @pulumi.output_type
740
+ class DataCollectionRuleAssociationResponseMetadata(dict):
741
+ """
742
+ Metadata about the resource
743
+ """
744
+ @staticmethod
745
+ def __key_warning(key: str):
746
+ suggest = None
747
+ if key == "provisionedBy":
748
+ suggest = "provisioned_by"
749
+ elif key == "provisionedByImmutableId":
750
+ suggest = "provisioned_by_immutable_id"
751
+ elif key == "provisionedByResourceId":
752
+ suggest = "provisioned_by_resource_id"
753
+
754
+ if suggest:
755
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleAssociationResponseMetadata. Access the value via the '{suggest}' property getter instead.")
756
+
757
+ def __getitem__(self, key: str) -> Any:
758
+ DataCollectionRuleAssociationResponseMetadata.__key_warning(key)
759
+ return super().__getitem__(key)
760
+
761
+ def get(self, key: str, default = None) -> Any:
762
+ DataCollectionRuleAssociationResponseMetadata.__key_warning(key)
763
+ return super().get(key, default)
764
+
765
+ def __init__(__self__, *,
766
+ provisioned_by: str,
767
+ provisioned_by_immutable_id: str,
768
+ provisioned_by_resource_id: str):
769
+ """
770
+ Metadata about the resource
771
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
772
+ :param str provisioned_by_immutable_id: Immutable Id of azure offering managing this resource on-behalf-of customer.
773
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
774
+ """
775
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
776
+ pulumi.set(__self__, "provisioned_by_immutable_id", provisioned_by_immutable_id)
777
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
778
+
779
+ @property
780
+ @pulumi.getter(name="provisionedBy")
781
+ def provisioned_by(self) -> str:
782
+ """
783
+ Azure offering managing this resource on-behalf-of customer.
784
+ """
785
+ return pulumi.get(self, "provisioned_by")
786
+
787
+ @property
788
+ @pulumi.getter(name="provisionedByImmutableId")
789
+ def provisioned_by_immutable_id(self) -> str:
790
+ """
791
+ Immutable Id of azure offering managing this resource on-behalf-of customer.
792
+ """
793
+ return pulumi.get(self, "provisioned_by_immutable_id")
794
+
795
+ @property
796
+ @pulumi.getter(name="provisionedByResourceId")
797
+ def provisioned_by_resource_id(self) -> str:
798
+ """
799
+ Resource Id of azure offering managing this resource on-behalf-of customer.
800
+ """
801
+ return pulumi.get(self, "provisioned_by_resource_id")
802
+
803
+
804
+ @pulumi.output_type
805
+ class DataCollectionRuleResourceResponseIdentity(dict):
806
+ """
807
+ Managed service identity of the resource.
808
+ """
809
+ @staticmethod
810
+ def __key_warning(key: str):
811
+ suggest = None
812
+ if key == "principalId":
813
+ suggest = "principal_id"
814
+ elif key == "tenantId":
815
+ suggest = "tenant_id"
816
+ elif key == "userAssignedIdentities":
817
+ suggest = "user_assigned_identities"
818
+
819
+ if suggest:
820
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
821
+
822
+ def __getitem__(self, key: str) -> Any:
823
+ DataCollectionRuleResourceResponseIdentity.__key_warning(key)
824
+ return super().__getitem__(key)
825
+
826
+ def get(self, key: str, default = None) -> Any:
827
+ DataCollectionRuleResourceResponseIdentity.__key_warning(key)
828
+ return super().get(key, default)
829
+
830
+ def __init__(__self__, *,
831
+ principal_id: str,
832
+ tenant_id: str,
833
+ type: str,
834
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
835
+ """
836
+ Managed service identity of the resource.
837
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
838
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
839
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
840
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
841
+ """
842
+ pulumi.set(__self__, "principal_id", principal_id)
843
+ pulumi.set(__self__, "tenant_id", tenant_id)
844
+ pulumi.set(__self__, "type", type)
845
+ if user_assigned_identities is not None:
846
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
847
+
848
+ @property
849
+ @pulumi.getter(name="principalId")
850
+ def principal_id(self) -> str:
851
+ """
852
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
853
+ """
854
+ return pulumi.get(self, "principal_id")
855
+
856
+ @property
857
+ @pulumi.getter(name="tenantId")
858
+ def tenant_id(self) -> str:
859
+ """
860
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
861
+ """
862
+ return pulumi.get(self, "tenant_id")
863
+
864
+ @property
865
+ @pulumi.getter
866
+ def type(self) -> str:
867
+ """
868
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
869
+ """
870
+ return pulumi.get(self, "type")
871
+
872
+ @property
873
+ @pulumi.getter(name="userAssignedIdentities")
874
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
875
+ """
876
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
877
+ """
878
+ return pulumi.get(self, "user_assigned_identities")
879
+
880
+
881
+ @pulumi.output_type
882
+ class DataCollectionRuleResourceResponseSystemData(dict):
883
+ """
884
+ Metadata pertaining to creation and last modification of the resource.
885
+ """
886
+ @staticmethod
887
+ def __key_warning(key: str):
888
+ suggest = None
889
+ if key == "createdAt":
890
+ suggest = "created_at"
891
+ elif key == "createdBy":
892
+ suggest = "created_by"
893
+ elif key == "createdByType":
894
+ suggest = "created_by_type"
895
+ elif key == "lastModifiedAt":
896
+ suggest = "last_modified_at"
897
+ elif key == "lastModifiedBy":
898
+ suggest = "last_modified_by"
899
+ elif key == "lastModifiedByType":
900
+ suggest = "last_modified_by_type"
901
+
902
+ if suggest:
903
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
904
+
905
+ def __getitem__(self, key: str) -> Any:
906
+ DataCollectionRuleResourceResponseSystemData.__key_warning(key)
907
+ return super().__getitem__(key)
908
+
909
+ def get(self, key: str, default = None) -> Any:
910
+ DataCollectionRuleResourceResponseSystemData.__key_warning(key)
911
+ return super().get(key, default)
912
+
913
+ def __init__(__self__, *,
914
+ created_at: Optional[str] = None,
915
+ created_by: Optional[str] = None,
916
+ created_by_type: Optional[str] = None,
917
+ last_modified_at: Optional[str] = None,
918
+ last_modified_by: Optional[str] = None,
919
+ last_modified_by_type: Optional[str] = None):
920
+ """
921
+ Metadata pertaining to creation and last modification of the resource.
922
+ :param str created_at: The timestamp of resource creation (UTC).
923
+ :param str created_by: The identity that created the resource.
924
+ :param str created_by_type: The type of identity that created the resource.
925
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
926
+ :param str last_modified_by: The identity that last modified the resource.
927
+ :param str last_modified_by_type: The type of identity that last modified the resource.
928
+ """
929
+ if created_at is not None:
930
+ pulumi.set(__self__, "created_at", created_at)
931
+ if created_by is not None:
932
+ pulumi.set(__self__, "created_by", created_by)
933
+ if created_by_type is not None:
934
+ pulumi.set(__self__, "created_by_type", created_by_type)
935
+ if last_modified_at is not None:
936
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
937
+ if last_modified_by is not None:
938
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
939
+ if last_modified_by_type is not None:
940
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
941
+
942
+ @property
943
+ @pulumi.getter(name="createdAt")
944
+ def created_at(self) -> Optional[str]:
945
+ """
946
+ The timestamp of resource creation (UTC).
947
+ """
948
+ return pulumi.get(self, "created_at")
949
+
950
+ @property
951
+ @pulumi.getter(name="createdBy")
952
+ def created_by(self) -> Optional[str]:
953
+ """
954
+ The identity that created the resource.
955
+ """
956
+ return pulumi.get(self, "created_by")
957
+
958
+ @property
959
+ @pulumi.getter(name="createdByType")
960
+ def created_by_type(self) -> Optional[str]:
961
+ """
962
+ The type of identity that created the resource.
963
+ """
964
+ return pulumi.get(self, "created_by_type")
965
+
966
+ @property
967
+ @pulumi.getter(name="lastModifiedAt")
968
+ def last_modified_at(self) -> Optional[str]:
969
+ """
970
+ The timestamp of resource last modification (UTC)
971
+ """
972
+ return pulumi.get(self, "last_modified_at")
973
+
974
+ @property
975
+ @pulumi.getter(name="lastModifiedBy")
976
+ def last_modified_by(self) -> Optional[str]:
977
+ """
978
+ The identity that last modified the resource.
979
+ """
980
+ return pulumi.get(self, "last_modified_by")
981
+
982
+ @property
983
+ @pulumi.getter(name="lastModifiedByType")
984
+ def last_modified_by_type(self) -> Optional[str]:
985
+ """
986
+ The type of identity that last modified the resource.
987
+ """
988
+ return pulumi.get(self, "last_modified_by_type")
989
+
990
+
991
+ @pulumi.output_type
992
+ class DataCollectionRuleResponseAgentSettings(dict):
993
+ """
994
+ Agent settings used to modify agent behavior on a given host
995
+ """
996
+ def __init__(__self__, *,
997
+ logs: Optional[Sequence['outputs.AgentSettingResponse']] = None):
998
+ """
999
+ Agent settings used to modify agent behavior on a given host
1000
+ :param Sequence['AgentSettingResponse'] logs: All the settings that are applicable to the logs agent (AMA)
1001
+ """
1002
+ if logs is not None:
1003
+ pulumi.set(__self__, "logs", logs)
1004
+
1005
+ @property
1006
+ @pulumi.getter
1007
+ def logs(self) -> Optional[Sequence['outputs.AgentSettingResponse']]:
1008
+ """
1009
+ All the settings that are applicable to the logs agent (AMA)
1010
+ """
1011
+ return pulumi.get(self, "logs")
1012
+
1013
+
1014
+ @pulumi.output_type
1015
+ class DataCollectionRuleResponseDataSources(dict):
1016
+ """
1017
+ The specification of data sources.
1018
+ This property is optional and can be omitted if the rule is meant to be used via direct calls to the provisioned endpoint.
1019
+ """
1020
+ @staticmethod
1021
+ def __key_warning(key: str):
1022
+ suggest = None
1023
+ if key == "dataImports":
1024
+ suggest = "data_imports"
1025
+ elif key == "iisLogs":
1026
+ suggest = "iis_logs"
1027
+ elif key == "logFiles":
1028
+ suggest = "log_files"
1029
+ elif key == "performanceCounters":
1030
+ suggest = "performance_counters"
1031
+ elif key == "platformTelemetry":
1032
+ suggest = "platform_telemetry"
1033
+ elif key == "prometheusForwarder":
1034
+ suggest = "prometheus_forwarder"
1035
+ elif key == "windowsEventLogs":
1036
+ suggest = "windows_event_logs"
1037
+ elif key == "windowsFirewallLogs":
1038
+ suggest = "windows_firewall_logs"
1039
+
1040
+ if suggest:
1041
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseDataSources. Access the value via the '{suggest}' property getter instead.")
1042
+
1043
+ def __getitem__(self, key: str) -> Any:
1044
+ DataCollectionRuleResponseDataSources.__key_warning(key)
1045
+ return super().__getitem__(key)
1046
+
1047
+ def get(self, key: str, default = None) -> Any:
1048
+ DataCollectionRuleResponseDataSources.__key_warning(key)
1049
+ return super().get(key, default)
1050
+
1051
+ def __init__(__self__, *,
1052
+ data_imports: Optional['outputs.DataSourcesSpecResponseDataImports'] = None,
1053
+ extensions: Optional[Sequence['outputs.ExtensionDataSourceResponse']] = None,
1054
+ iis_logs: Optional[Sequence['outputs.IisLogsDataSourceResponse']] = None,
1055
+ log_files: Optional[Sequence['outputs.LogFilesDataSourceResponse']] = None,
1056
+ performance_counters: Optional[Sequence['outputs.PerfCounterDataSourceResponse']] = None,
1057
+ platform_telemetry: Optional[Sequence['outputs.PlatformTelemetryDataSourceResponse']] = None,
1058
+ prometheus_forwarder: Optional[Sequence['outputs.PrometheusForwarderDataSourceResponse']] = None,
1059
+ syslog: Optional[Sequence['outputs.SyslogDataSourceResponse']] = None,
1060
+ windows_event_logs: Optional[Sequence['outputs.WindowsEventLogDataSourceResponse']] = None,
1061
+ windows_firewall_logs: Optional[Sequence['outputs.WindowsFirewallLogsDataSourceResponse']] = None):
1062
+ """
1063
+ The specification of data sources.
1064
+ This property is optional and can be omitted if the rule is meant to be used via direct calls to the provisioned endpoint.
1065
+ :param 'DataSourcesSpecResponseDataImports' data_imports: Specifications of pull based data sources
1066
+ :param Sequence['ExtensionDataSourceResponse'] extensions: The list of Azure VM extension data source configurations.
1067
+ :param Sequence['IisLogsDataSourceResponse'] iis_logs: The list of IIS logs source configurations.
1068
+ :param Sequence['LogFilesDataSourceResponse'] log_files: The list of Log files source configurations.
1069
+ :param Sequence['PerfCounterDataSourceResponse'] performance_counters: The list of performance counter data source configurations.
1070
+ :param Sequence['PlatformTelemetryDataSourceResponse'] platform_telemetry: The list of platform telemetry configurations
1071
+ :param Sequence['PrometheusForwarderDataSourceResponse'] prometheus_forwarder: The list of Prometheus forwarder data source configurations.
1072
+ :param Sequence['SyslogDataSourceResponse'] syslog: The list of Syslog data source configurations.
1073
+ :param Sequence['WindowsEventLogDataSourceResponse'] windows_event_logs: The list of Windows Event Log data source configurations.
1074
+ :param Sequence['WindowsFirewallLogsDataSourceResponse'] windows_firewall_logs: The list of Windows Firewall logs source configurations.
1075
+ """
1076
+ if data_imports is not None:
1077
+ pulumi.set(__self__, "data_imports", data_imports)
1078
+ if extensions is not None:
1079
+ pulumi.set(__self__, "extensions", extensions)
1080
+ if iis_logs is not None:
1081
+ pulumi.set(__self__, "iis_logs", iis_logs)
1082
+ if log_files is not None:
1083
+ pulumi.set(__self__, "log_files", log_files)
1084
+ if performance_counters is not None:
1085
+ pulumi.set(__self__, "performance_counters", performance_counters)
1086
+ if platform_telemetry is not None:
1087
+ pulumi.set(__self__, "platform_telemetry", platform_telemetry)
1088
+ if prometheus_forwarder is not None:
1089
+ pulumi.set(__self__, "prometheus_forwarder", prometheus_forwarder)
1090
+ if syslog is not None:
1091
+ pulumi.set(__self__, "syslog", syslog)
1092
+ if windows_event_logs is not None:
1093
+ pulumi.set(__self__, "windows_event_logs", windows_event_logs)
1094
+ if windows_firewall_logs is not None:
1095
+ pulumi.set(__self__, "windows_firewall_logs", windows_firewall_logs)
1096
+
1097
+ @property
1098
+ @pulumi.getter(name="dataImports")
1099
+ def data_imports(self) -> Optional['outputs.DataSourcesSpecResponseDataImports']:
1100
+ """
1101
+ Specifications of pull based data sources
1102
+ """
1103
+ return pulumi.get(self, "data_imports")
1104
+
1105
+ @property
1106
+ @pulumi.getter
1107
+ def extensions(self) -> Optional[Sequence['outputs.ExtensionDataSourceResponse']]:
1108
+ """
1109
+ The list of Azure VM extension data source configurations.
1110
+ """
1111
+ return pulumi.get(self, "extensions")
1112
+
1113
+ @property
1114
+ @pulumi.getter(name="iisLogs")
1115
+ def iis_logs(self) -> Optional[Sequence['outputs.IisLogsDataSourceResponse']]:
1116
+ """
1117
+ The list of IIS logs source configurations.
1118
+ """
1119
+ return pulumi.get(self, "iis_logs")
1120
+
1121
+ @property
1122
+ @pulumi.getter(name="logFiles")
1123
+ def log_files(self) -> Optional[Sequence['outputs.LogFilesDataSourceResponse']]:
1124
+ """
1125
+ The list of Log files source configurations.
1126
+ """
1127
+ return pulumi.get(self, "log_files")
1128
+
1129
+ @property
1130
+ @pulumi.getter(name="performanceCounters")
1131
+ def performance_counters(self) -> Optional[Sequence['outputs.PerfCounterDataSourceResponse']]:
1132
+ """
1133
+ The list of performance counter data source configurations.
1134
+ """
1135
+ return pulumi.get(self, "performance_counters")
1136
+
1137
+ @property
1138
+ @pulumi.getter(name="platformTelemetry")
1139
+ def platform_telemetry(self) -> Optional[Sequence['outputs.PlatformTelemetryDataSourceResponse']]:
1140
+ """
1141
+ The list of platform telemetry configurations
1142
+ """
1143
+ return pulumi.get(self, "platform_telemetry")
1144
+
1145
+ @property
1146
+ @pulumi.getter(name="prometheusForwarder")
1147
+ def prometheus_forwarder(self) -> Optional[Sequence['outputs.PrometheusForwarderDataSourceResponse']]:
1148
+ """
1149
+ The list of Prometheus forwarder data source configurations.
1150
+ """
1151
+ return pulumi.get(self, "prometheus_forwarder")
1152
+
1153
+ @property
1154
+ @pulumi.getter
1155
+ def syslog(self) -> Optional[Sequence['outputs.SyslogDataSourceResponse']]:
1156
+ """
1157
+ The list of Syslog data source configurations.
1158
+ """
1159
+ return pulumi.get(self, "syslog")
1160
+
1161
+ @property
1162
+ @pulumi.getter(name="windowsEventLogs")
1163
+ def windows_event_logs(self) -> Optional[Sequence['outputs.WindowsEventLogDataSourceResponse']]:
1164
+ """
1165
+ The list of Windows Event Log data source configurations.
1166
+ """
1167
+ return pulumi.get(self, "windows_event_logs")
1168
+
1169
+ @property
1170
+ @pulumi.getter(name="windowsFirewallLogs")
1171
+ def windows_firewall_logs(self) -> Optional[Sequence['outputs.WindowsFirewallLogsDataSourceResponse']]:
1172
+ """
1173
+ The list of Windows Firewall logs source configurations.
1174
+ """
1175
+ return pulumi.get(self, "windows_firewall_logs")
1176
+
1177
+
1178
+ @pulumi.output_type
1179
+ class DataCollectionRuleResponseDestinations(dict):
1180
+ """
1181
+ The specification of destinations.
1182
+ """
1183
+ @staticmethod
1184
+ def __key_warning(key: str):
1185
+ suggest = None
1186
+ if key == "azureDataExplorer":
1187
+ suggest = "azure_data_explorer"
1188
+ elif key == "azureMonitorMetrics":
1189
+ suggest = "azure_monitor_metrics"
1190
+ elif key == "eventHubs":
1191
+ suggest = "event_hubs"
1192
+ elif key == "eventHubsDirect":
1193
+ suggest = "event_hubs_direct"
1194
+ elif key == "logAnalytics":
1195
+ suggest = "log_analytics"
1196
+ elif key == "microsoftFabric":
1197
+ suggest = "microsoft_fabric"
1198
+ elif key == "monitoringAccounts":
1199
+ suggest = "monitoring_accounts"
1200
+ elif key == "storageAccounts":
1201
+ suggest = "storage_accounts"
1202
+ elif key == "storageBlobsDirect":
1203
+ suggest = "storage_blobs_direct"
1204
+ elif key == "storageTablesDirect":
1205
+ suggest = "storage_tables_direct"
1206
+
1207
+ if suggest:
1208
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseDestinations. Access the value via the '{suggest}' property getter instead.")
1209
+
1210
+ def __getitem__(self, key: str) -> Any:
1211
+ DataCollectionRuleResponseDestinations.__key_warning(key)
1212
+ return super().__getitem__(key)
1213
+
1214
+ def get(self, key: str, default = None) -> Any:
1215
+ DataCollectionRuleResponseDestinations.__key_warning(key)
1216
+ return super().get(key, default)
1217
+
1218
+ def __init__(__self__, *,
1219
+ azure_data_explorer: Optional[Sequence['outputs.AdxDestinationResponse']] = None,
1220
+ azure_monitor_metrics: Optional['outputs.DestinationsSpecResponseAzureMonitorMetrics'] = None,
1221
+ event_hubs: Optional[Sequence['outputs.EventHubDestinationResponse']] = None,
1222
+ event_hubs_direct: Optional[Sequence['outputs.EventHubDirectDestinationResponse']] = None,
1223
+ log_analytics: Optional[Sequence['outputs.LogAnalyticsDestinationResponse']] = None,
1224
+ microsoft_fabric: Optional[Sequence['outputs.MicrosoftFabricDestinationResponse']] = None,
1225
+ monitoring_accounts: Optional[Sequence['outputs.MonitoringAccountDestinationResponse']] = None,
1226
+ storage_accounts: Optional[Sequence['outputs.StorageBlobDestinationResponse']] = None,
1227
+ storage_blobs_direct: Optional[Sequence['outputs.StorageBlobDestinationResponse']] = None,
1228
+ storage_tables_direct: Optional[Sequence['outputs.StorageTableDestinationResponse']] = None):
1229
+ """
1230
+ The specification of destinations.
1231
+ :param Sequence['AdxDestinationResponse'] azure_data_explorer: List of Azure Data Explorer destinations.
1232
+ :param 'DestinationsSpecResponseAzureMonitorMetrics' azure_monitor_metrics: Azure Monitor Metrics destination.
1233
+ :param Sequence['EventHubDestinationResponse'] event_hubs: List of Event Hubs destinations.
1234
+ :param Sequence['EventHubDirectDestinationResponse'] event_hubs_direct: List of Event Hubs Direct destinations.
1235
+ :param Sequence['LogAnalyticsDestinationResponse'] log_analytics: List of Log Analytics destinations.
1236
+ :param Sequence['MicrosoftFabricDestinationResponse'] microsoft_fabric: List of Microsoft Fabric destinations.
1237
+ :param Sequence['MonitoringAccountDestinationResponse'] monitoring_accounts: List of monitoring account destinations.
1238
+ :param Sequence['StorageBlobDestinationResponse'] storage_accounts: List of storage accounts destinations.
1239
+ :param Sequence['StorageBlobDestinationResponse'] storage_blobs_direct: List of Storage Blob Direct destinations. To be used only for sending data directly to store from the agent.
1240
+ :param Sequence['StorageTableDestinationResponse'] storage_tables_direct: List of Storage Table Direct destinations.
1241
+ """
1242
+ if azure_data_explorer is not None:
1243
+ pulumi.set(__self__, "azure_data_explorer", azure_data_explorer)
1244
+ if azure_monitor_metrics is not None:
1245
+ pulumi.set(__self__, "azure_monitor_metrics", azure_monitor_metrics)
1246
+ if event_hubs is not None:
1247
+ pulumi.set(__self__, "event_hubs", event_hubs)
1248
+ if event_hubs_direct is not None:
1249
+ pulumi.set(__self__, "event_hubs_direct", event_hubs_direct)
1250
+ if log_analytics is not None:
1251
+ pulumi.set(__self__, "log_analytics", log_analytics)
1252
+ if microsoft_fabric is not None:
1253
+ pulumi.set(__self__, "microsoft_fabric", microsoft_fabric)
1254
+ if monitoring_accounts is not None:
1255
+ pulumi.set(__self__, "monitoring_accounts", monitoring_accounts)
1256
+ if storage_accounts is not None:
1257
+ pulumi.set(__self__, "storage_accounts", storage_accounts)
1258
+ if storage_blobs_direct is not None:
1259
+ pulumi.set(__self__, "storage_blobs_direct", storage_blobs_direct)
1260
+ if storage_tables_direct is not None:
1261
+ pulumi.set(__self__, "storage_tables_direct", storage_tables_direct)
1262
+
1263
+ @property
1264
+ @pulumi.getter(name="azureDataExplorer")
1265
+ def azure_data_explorer(self) -> Optional[Sequence['outputs.AdxDestinationResponse']]:
1266
+ """
1267
+ List of Azure Data Explorer destinations.
1268
+ """
1269
+ return pulumi.get(self, "azure_data_explorer")
1270
+
1271
+ @property
1272
+ @pulumi.getter(name="azureMonitorMetrics")
1273
+ def azure_monitor_metrics(self) -> Optional['outputs.DestinationsSpecResponseAzureMonitorMetrics']:
1274
+ """
1275
+ Azure Monitor Metrics destination.
1276
+ """
1277
+ return pulumi.get(self, "azure_monitor_metrics")
1278
+
1279
+ @property
1280
+ @pulumi.getter(name="eventHubs")
1281
+ def event_hubs(self) -> Optional[Sequence['outputs.EventHubDestinationResponse']]:
1282
+ """
1283
+ List of Event Hubs destinations.
1284
+ """
1285
+ return pulumi.get(self, "event_hubs")
1286
+
1287
+ @property
1288
+ @pulumi.getter(name="eventHubsDirect")
1289
+ def event_hubs_direct(self) -> Optional[Sequence['outputs.EventHubDirectDestinationResponse']]:
1290
+ """
1291
+ List of Event Hubs Direct destinations.
1292
+ """
1293
+ return pulumi.get(self, "event_hubs_direct")
1294
+
1295
+ @property
1296
+ @pulumi.getter(name="logAnalytics")
1297
+ def log_analytics(self) -> Optional[Sequence['outputs.LogAnalyticsDestinationResponse']]:
1298
+ """
1299
+ List of Log Analytics destinations.
1300
+ """
1301
+ return pulumi.get(self, "log_analytics")
1302
+
1303
+ @property
1304
+ @pulumi.getter(name="microsoftFabric")
1305
+ def microsoft_fabric(self) -> Optional[Sequence['outputs.MicrosoftFabricDestinationResponse']]:
1306
+ """
1307
+ List of Microsoft Fabric destinations.
1308
+ """
1309
+ return pulumi.get(self, "microsoft_fabric")
1310
+
1311
+ @property
1312
+ @pulumi.getter(name="monitoringAccounts")
1313
+ def monitoring_accounts(self) -> Optional[Sequence['outputs.MonitoringAccountDestinationResponse']]:
1314
+ """
1315
+ List of monitoring account destinations.
1316
+ """
1317
+ return pulumi.get(self, "monitoring_accounts")
1318
+
1319
+ @property
1320
+ @pulumi.getter(name="storageAccounts")
1321
+ def storage_accounts(self) -> Optional[Sequence['outputs.StorageBlobDestinationResponse']]:
1322
+ """
1323
+ List of storage accounts destinations.
1324
+ """
1325
+ return pulumi.get(self, "storage_accounts")
1326
+
1327
+ @property
1328
+ @pulumi.getter(name="storageBlobsDirect")
1329
+ def storage_blobs_direct(self) -> Optional[Sequence['outputs.StorageBlobDestinationResponse']]:
1330
+ """
1331
+ List of Storage Blob Direct destinations. To be used only for sending data directly to store from the agent.
1332
+ """
1333
+ return pulumi.get(self, "storage_blobs_direct")
1334
+
1335
+ @property
1336
+ @pulumi.getter(name="storageTablesDirect")
1337
+ def storage_tables_direct(self) -> Optional[Sequence['outputs.StorageTableDestinationResponse']]:
1338
+ """
1339
+ List of Storage Table Direct destinations.
1340
+ """
1341
+ return pulumi.get(self, "storage_tables_direct")
1342
+
1343
+
1344
+ @pulumi.output_type
1345
+ class DataCollectionRuleResponseEndpoints(dict):
1346
+ """
1347
+ Defines the ingestion endpoints to send data to via this rule.
1348
+ """
1349
+ @staticmethod
1350
+ def __key_warning(key: str):
1351
+ suggest = None
1352
+ if key == "logsIngestion":
1353
+ suggest = "logs_ingestion"
1354
+ elif key == "metricsIngestion":
1355
+ suggest = "metrics_ingestion"
1356
+
1357
+ if suggest:
1358
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseEndpoints. Access the value via the '{suggest}' property getter instead.")
1359
+
1360
+ def __getitem__(self, key: str) -> Any:
1361
+ DataCollectionRuleResponseEndpoints.__key_warning(key)
1362
+ return super().__getitem__(key)
1363
+
1364
+ def get(self, key: str, default = None) -> Any:
1365
+ DataCollectionRuleResponseEndpoints.__key_warning(key)
1366
+ return super().get(key, default)
1367
+
1368
+ def __init__(__self__, *,
1369
+ logs_ingestion: str,
1370
+ metrics_ingestion: str):
1371
+ """
1372
+ Defines the ingestion endpoints to send data to via this rule.
1373
+ :param str logs_ingestion: The ingestion endpoint for logs
1374
+ :param str metrics_ingestion: The ingestion endpoint for metrics
1375
+ """
1376
+ pulumi.set(__self__, "logs_ingestion", logs_ingestion)
1377
+ pulumi.set(__self__, "metrics_ingestion", metrics_ingestion)
1378
+
1379
+ @property
1380
+ @pulumi.getter(name="logsIngestion")
1381
+ def logs_ingestion(self) -> str:
1382
+ """
1383
+ The ingestion endpoint for logs
1384
+ """
1385
+ return pulumi.get(self, "logs_ingestion")
1386
+
1387
+ @property
1388
+ @pulumi.getter(name="metricsIngestion")
1389
+ def metrics_ingestion(self) -> str:
1390
+ """
1391
+ The ingestion endpoint for metrics
1392
+ """
1393
+ return pulumi.get(self, "metrics_ingestion")
1394
+
1395
+
1396
+ @pulumi.output_type
1397
+ class DataCollectionRuleResponseMetadata(dict):
1398
+ """
1399
+ Metadata about the resource
1400
+ """
1401
+ @staticmethod
1402
+ def __key_warning(key: str):
1403
+ suggest = None
1404
+ if key == "provisionedBy":
1405
+ suggest = "provisioned_by"
1406
+ elif key == "provisionedByImmutableId":
1407
+ suggest = "provisioned_by_immutable_id"
1408
+ elif key == "provisionedByResourceId":
1409
+ suggest = "provisioned_by_resource_id"
1410
+
1411
+ if suggest:
1412
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseMetadata. Access the value via the '{suggest}' property getter instead.")
1413
+
1414
+ def __getitem__(self, key: str) -> Any:
1415
+ DataCollectionRuleResponseMetadata.__key_warning(key)
1416
+ return super().__getitem__(key)
1417
+
1418
+ def get(self, key: str, default = None) -> Any:
1419
+ DataCollectionRuleResponseMetadata.__key_warning(key)
1420
+ return super().get(key, default)
1421
+
1422
+ def __init__(__self__, *,
1423
+ provisioned_by: str,
1424
+ provisioned_by_immutable_id: str,
1425
+ provisioned_by_resource_id: str):
1426
+ """
1427
+ Metadata about the resource
1428
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
1429
+ :param str provisioned_by_immutable_id: Immutable Id of azure offering managing this resource on-behalf-of customer.
1430
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
1431
+ """
1432
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
1433
+ pulumi.set(__self__, "provisioned_by_immutable_id", provisioned_by_immutable_id)
1434
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
1435
+
1436
+ @property
1437
+ @pulumi.getter(name="provisionedBy")
1438
+ def provisioned_by(self) -> str:
1439
+ """
1440
+ Azure offering managing this resource on-behalf-of customer.
1441
+ """
1442
+ return pulumi.get(self, "provisioned_by")
1443
+
1444
+ @property
1445
+ @pulumi.getter(name="provisionedByImmutableId")
1446
+ def provisioned_by_immutable_id(self) -> str:
1447
+ """
1448
+ Immutable Id of azure offering managing this resource on-behalf-of customer.
1449
+ """
1450
+ return pulumi.get(self, "provisioned_by_immutable_id")
1451
+
1452
+ @property
1453
+ @pulumi.getter(name="provisionedByResourceId")
1454
+ def provisioned_by_resource_id(self) -> str:
1455
+ """
1456
+ Resource Id of azure offering managing this resource on-behalf-of customer.
1457
+ """
1458
+ return pulumi.get(self, "provisioned_by_resource_id")
1459
+
1460
+
1461
+ @pulumi.output_type
1462
+ class DataCollectionRuleResponseReferences(dict):
1463
+ """
1464
+ Defines all the references that may be used in other sections of the DCR
1465
+ """
1466
+ @staticmethod
1467
+ def __key_warning(key: str):
1468
+ suggest = None
1469
+ if key == "enrichmentData":
1470
+ suggest = "enrichment_data"
1471
+
1472
+ if suggest:
1473
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseReferences. Access the value via the '{suggest}' property getter instead.")
1474
+
1475
+ def __getitem__(self, key: str) -> Any:
1476
+ DataCollectionRuleResponseReferences.__key_warning(key)
1477
+ return super().__getitem__(key)
1478
+
1479
+ def get(self, key: str, default = None) -> Any:
1480
+ DataCollectionRuleResponseReferences.__key_warning(key)
1481
+ return super().get(key, default)
1482
+
1483
+ def __init__(__self__, *,
1484
+ enrichment_data: Optional['outputs.ReferencesSpecResponseEnrichmentData'] = None):
1485
+ """
1486
+ Defines all the references that may be used in other sections of the DCR
1487
+ :param 'ReferencesSpecResponseEnrichmentData' enrichment_data: All the enrichment data sources referenced in data flows
1488
+ """
1489
+ if enrichment_data is not None:
1490
+ pulumi.set(__self__, "enrichment_data", enrichment_data)
1491
+
1492
+ @property
1493
+ @pulumi.getter(name="enrichmentData")
1494
+ def enrichment_data(self) -> Optional['outputs.ReferencesSpecResponseEnrichmentData']:
1495
+ """
1496
+ All the enrichment data sources referenced in data flows
1497
+ """
1498
+ return pulumi.get(self, "enrichment_data")
1499
+
1500
+
1501
+ @pulumi.output_type
1502
+ class DataFlowResponse(dict):
1503
+ """
1504
+ Definition of which streams are sent to which destinations.
1505
+ """
1506
+ @staticmethod
1507
+ def __key_warning(key: str):
1508
+ suggest = None
1509
+ if key == "builtInTransform":
1510
+ suggest = "built_in_transform"
1511
+ elif key == "captureOverflow":
1512
+ suggest = "capture_overflow"
1513
+ elif key == "outputStream":
1514
+ suggest = "output_stream"
1515
+ elif key == "transformKql":
1516
+ suggest = "transform_kql"
1517
+
1518
+ if suggest:
1519
+ pulumi.log.warn(f"Key '{key}' not found in DataFlowResponse. Access the value via the '{suggest}' property getter instead.")
1520
+
1521
+ def __getitem__(self, key: str) -> Any:
1522
+ DataFlowResponse.__key_warning(key)
1523
+ return super().__getitem__(key)
1524
+
1525
+ def get(self, key: str, default = None) -> Any:
1526
+ DataFlowResponse.__key_warning(key)
1527
+ return super().get(key, default)
1528
+
1529
+ def __init__(__self__, *,
1530
+ built_in_transform: Optional[str] = None,
1531
+ capture_overflow: Optional[bool] = None,
1532
+ destinations: Optional[Sequence[str]] = None,
1533
+ output_stream: Optional[str] = None,
1534
+ streams: Optional[Sequence[str]] = None,
1535
+ transform_kql: Optional[str] = None):
1536
+ """
1537
+ Definition of which streams are sent to which destinations.
1538
+ :param str built_in_transform: The builtIn transform to transform stream data
1539
+ :param bool capture_overflow: Flag to enable overflow column in LA destinations
1540
+ :param Sequence[str] destinations: List of destinations for this data flow.
1541
+ :param str output_stream: The output stream of the transform. Only required if the transform changes data to a different stream.
1542
+ :param Sequence[str] streams: List of streams for this data flow.
1543
+ :param str transform_kql: The KQL query to transform stream data.
1544
+ """
1545
+ if built_in_transform is not None:
1546
+ pulumi.set(__self__, "built_in_transform", built_in_transform)
1547
+ if capture_overflow is not None:
1548
+ pulumi.set(__self__, "capture_overflow", capture_overflow)
1549
+ if destinations is not None:
1550
+ pulumi.set(__self__, "destinations", destinations)
1551
+ if output_stream is not None:
1552
+ pulumi.set(__self__, "output_stream", output_stream)
1553
+ if streams is not None:
1554
+ pulumi.set(__self__, "streams", streams)
1555
+ if transform_kql is not None:
1556
+ pulumi.set(__self__, "transform_kql", transform_kql)
1557
+
1558
+ @property
1559
+ @pulumi.getter(name="builtInTransform")
1560
+ def built_in_transform(self) -> Optional[str]:
1561
+ """
1562
+ The builtIn transform to transform stream data
1563
+ """
1564
+ return pulumi.get(self, "built_in_transform")
1565
+
1566
+ @property
1567
+ @pulumi.getter(name="captureOverflow")
1568
+ def capture_overflow(self) -> Optional[bool]:
1569
+ """
1570
+ Flag to enable overflow column in LA destinations
1571
+ """
1572
+ return pulumi.get(self, "capture_overflow")
1573
+
1574
+ @property
1575
+ @pulumi.getter
1576
+ def destinations(self) -> Optional[Sequence[str]]:
1577
+ """
1578
+ List of destinations for this data flow.
1579
+ """
1580
+ return pulumi.get(self, "destinations")
1581
+
1582
+ @property
1583
+ @pulumi.getter(name="outputStream")
1584
+ def output_stream(self) -> Optional[str]:
1585
+ """
1586
+ The output stream of the transform. Only required if the transform changes data to a different stream.
1587
+ """
1588
+ return pulumi.get(self, "output_stream")
1589
+
1590
+ @property
1591
+ @pulumi.getter
1592
+ def streams(self) -> Optional[Sequence[str]]:
1593
+ """
1594
+ List of streams for this data flow.
1595
+ """
1596
+ return pulumi.get(self, "streams")
1597
+
1598
+ @property
1599
+ @pulumi.getter(name="transformKql")
1600
+ def transform_kql(self) -> Optional[str]:
1601
+ """
1602
+ The KQL query to transform stream data.
1603
+ """
1604
+ return pulumi.get(self, "transform_kql")
1605
+
1606
+
1607
+ @pulumi.output_type
1608
+ class DataImportSourcesResponseEventHub(dict):
1609
+ """
1610
+ Definition of Event Hub configuration.
1611
+ """
1612
+ @staticmethod
1613
+ def __key_warning(key: str):
1614
+ suggest = None
1615
+ if key == "consumerGroup":
1616
+ suggest = "consumer_group"
1617
+
1618
+ if suggest:
1619
+ pulumi.log.warn(f"Key '{key}' not found in DataImportSourcesResponseEventHub. Access the value via the '{suggest}' property getter instead.")
1620
+
1621
+ def __getitem__(self, key: str) -> Any:
1622
+ DataImportSourcesResponseEventHub.__key_warning(key)
1623
+ return super().__getitem__(key)
1624
+
1625
+ def get(self, key: str, default = None) -> Any:
1626
+ DataImportSourcesResponseEventHub.__key_warning(key)
1627
+ return super().get(key, default)
1628
+
1629
+ def __init__(__self__, *,
1630
+ consumer_group: Optional[str] = None,
1631
+ name: Optional[str] = None,
1632
+ stream: Optional[str] = None):
1633
+ """
1634
+ Definition of Event Hub configuration.
1635
+ :param str consumer_group: Event Hub consumer group name
1636
+ :param str name: A friendly name for the data source.
1637
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1638
+ :param str stream: The stream to collect from EventHub
1639
+ """
1640
+ if consumer_group is not None:
1641
+ pulumi.set(__self__, "consumer_group", consumer_group)
1642
+ if name is not None:
1643
+ pulumi.set(__self__, "name", name)
1644
+ if stream is not None:
1645
+ pulumi.set(__self__, "stream", stream)
1646
+
1647
+ @property
1648
+ @pulumi.getter(name="consumerGroup")
1649
+ def consumer_group(self) -> Optional[str]:
1650
+ """
1651
+ Event Hub consumer group name
1652
+ """
1653
+ return pulumi.get(self, "consumer_group")
1654
+
1655
+ @property
1656
+ @pulumi.getter
1657
+ def name(self) -> Optional[str]:
1658
+ """
1659
+ A friendly name for the data source.
1660
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1661
+ """
1662
+ return pulumi.get(self, "name")
1663
+
1664
+ @property
1665
+ @pulumi.getter
1666
+ def stream(self) -> Optional[str]:
1667
+ """
1668
+ The stream to collect from EventHub
1669
+ """
1670
+ return pulumi.get(self, "stream")
1671
+
1672
+
1673
+ @pulumi.output_type
1674
+ class DataSourcesSpecResponseDataImports(dict):
1675
+ """
1676
+ Specifications of pull based data sources
1677
+ """
1678
+ @staticmethod
1679
+ def __key_warning(key: str):
1680
+ suggest = None
1681
+ if key == "eventHub":
1682
+ suggest = "event_hub"
1683
+
1684
+ if suggest:
1685
+ pulumi.log.warn(f"Key '{key}' not found in DataSourcesSpecResponseDataImports. Access the value via the '{suggest}' property getter instead.")
1686
+
1687
+ def __getitem__(self, key: str) -> Any:
1688
+ DataSourcesSpecResponseDataImports.__key_warning(key)
1689
+ return super().__getitem__(key)
1690
+
1691
+ def get(self, key: str, default = None) -> Any:
1692
+ DataSourcesSpecResponseDataImports.__key_warning(key)
1693
+ return super().get(key, default)
1694
+
1695
+ def __init__(__self__, *,
1696
+ event_hub: Optional['outputs.DataImportSourcesResponseEventHub'] = None):
1697
+ """
1698
+ Specifications of pull based data sources
1699
+ :param 'DataImportSourcesResponseEventHub' event_hub: Definition of Event Hub configuration.
1700
+ """
1701
+ if event_hub is not None:
1702
+ pulumi.set(__self__, "event_hub", event_hub)
1703
+
1704
+ @property
1705
+ @pulumi.getter(name="eventHub")
1706
+ def event_hub(self) -> Optional['outputs.DataImportSourcesResponseEventHub']:
1707
+ """
1708
+ Definition of Event Hub configuration.
1709
+ """
1710
+ return pulumi.get(self, "event_hub")
1711
+
1712
+
1713
+ @pulumi.output_type
1714
+ class DestinationsSpecResponseAzureMonitorMetrics(dict):
1715
+ """
1716
+ Azure Monitor Metrics destination.
1717
+ """
1718
+ def __init__(__self__, *,
1719
+ name: Optional[str] = None):
1720
+ """
1721
+ Azure Monitor Metrics destination.
1722
+ :param str name: A friendly name for the destination.
1723
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1724
+ """
1725
+ if name is not None:
1726
+ pulumi.set(__self__, "name", name)
1727
+
1728
+ @property
1729
+ @pulumi.getter
1730
+ def name(self) -> Optional[str]:
1731
+ """
1732
+ A friendly name for the destination.
1733
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1734
+ """
1735
+ return pulumi.get(self, "name")
1736
+
1737
+
1738
+ @pulumi.output_type
1739
+ class EventHubDestinationResponse(dict):
1740
+ @staticmethod
1741
+ def __key_warning(key: str):
1742
+ suggest = None
1743
+ if key == "eventHubResourceId":
1744
+ suggest = "event_hub_resource_id"
1745
+
1746
+ if suggest:
1747
+ pulumi.log.warn(f"Key '{key}' not found in EventHubDestinationResponse. Access the value via the '{suggest}' property getter instead.")
1748
+
1749
+ def __getitem__(self, key: str) -> Any:
1750
+ EventHubDestinationResponse.__key_warning(key)
1751
+ return super().__getitem__(key)
1752
+
1753
+ def get(self, key: str, default = None) -> Any:
1754
+ EventHubDestinationResponse.__key_warning(key)
1755
+ return super().get(key, default)
1756
+
1757
+ def __init__(__self__, *,
1758
+ event_hub_resource_id: Optional[str] = None,
1759
+ name: Optional[str] = None):
1760
+ """
1761
+ :param str event_hub_resource_id: The resource ID of the event hub.
1762
+ :param str name: A friendly name for the destination.
1763
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1764
+ """
1765
+ if event_hub_resource_id is not None:
1766
+ pulumi.set(__self__, "event_hub_resource_id", event_hub_resource_id)
1767
+ if name is not None:
1768
+ pulumi.set(__self__, "name", name)
1769
+
1770
+ @property
1771
+ @pulumi.getter(name="eventHubResourceId")
1772
+ def event_hub_resource_id(self) -> Optional[str]:
1773
+ """
1774
+ The resource ID of the event hub.
1775
+ """
1776
+ return pulumi.get(self, "event_hub_resource_id")
1777
+
1778
+ @property
1779
+ @pulumi.getter
1780
+ def name(self) -> Optional[str]:
1781
+ """
1782
+ A friendly name for the destination.
1783
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1784
+ """
1785
+ return pulumi.get(self, "name")
1786
+
1787
+
1788
+ @pulumi.output_type
1789
+ class EventHubDirectDestinationResponse(dict):
1790
+ @staticmethod
1791
+ def __key_warning(key: str):
1792
+ suggest = None
1793
+ if key == "eventHubResourceId":
1794
+ suggest = "event_hub_resource_id"
1795
+
1796
+ if suggest:
1797
+ pulumi.log.warn(f"Key '{key}' not found in EventHubDirectDestinationResponse. Access the value via the '{suggest}' property getter instead.")
1798
+
1799
+ def __getitem__(self, key: str) -> Any:
1800
+ EventHubDirectDestinationResponse.__key_warning(key)
1801
+ return super().__getitem__(key)
1802
+
1803
+ def get(self, key: str, default = None) -> Any:
1804
+ EventHubDirectDestinationResponse.__key_warning(key)
1805
+ return super().get(key, default)
1806
+
1807
+ def __init__(__self__, *,
1808
+ event_hub_resource_id: Optional[str] = None,
1809
+ name: Optional[str] = None):
1810
+ """
1811
+ :param str event_hub_resource_id: The resource ID of the event hub.
1812
+ :param str name: A friendly name for the destination.
1813
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1814
+ """
1815
+ if event_hub_resource_id is not None:
1816
+ pulumi.set(__self__, "event_hub_resource_id", event_hub_resource_id)
1817
+ if name is not None:
1818
+ pulumi.set(__self__, "name", name)
1819
+
1820
+ @property
1821
+ @pulumi.getter(name="eventHubResourceId")
1822
+ def event_hub_resource_id(self) -> Optional[str]:
1823
+ """
1824
+ The resource ID of the event hub.
1825
+ """
1826
+ return pulumi.get(self, "event_hub_resource_id")
1827
+
1828
+ @property
1829
+ @pulumi.getter
1830
+ def name(self) -> Optional[str]:
1831
+ """
1832
+ A friendly name for the destination.
1833
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1834
+ """
1835
+ return pulumi.get(self, "name")
1836
+
1837
+
1838
+ @pulumi.output_type
1839
+ class ExtensionDataSourceResponse(dict):
1840
+ """
1841
+ Definition of which data will be collected from a separate VM extension that integrates with the Azure Monitor Agent.
1842
+ Collected from either Windows and Linux machines, depending on which extension is defined.
1843
+ """
1844
+ @staticmethod
1845
+ def __key_warning(key: str):
1846
+ suggest = None
1847
+ if key == "extensionName":
1848
+ suggest = "extension_name"
1849
+ elif key == "extensionSettings":
1850
+ suggest = "extension_settings"
1851
+ elif key == "inputDataSources":
1852
+ suggest = "input_data_sources"
1853
+
1854
+ if suggest:
1855
+ pulumi.log.warn(f"Key '{key}' not found in ExtensionDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
1856
+
1857
+ def __getitem__(self, key: str) -> Any:
1858
+ ExtensionDataSourceResponse.__key_warning(key)
1859
+ return super().__getitem__(key)
1860
+
1861
+ def get(self, key: str, default = None) -> Any:
1862
+ ExtensionDataSourceResponse.__key_warning(key)
1863
+ return super().get(key, default)
1864
+
1865
+ def __init__(__self__, *,
1866
+ extension_name: str,
1867
+ extension_settings: Optional[Any] = None,
1868
+ input_data_sources: Optional[Sequence[str]] = None,
1869
+ name: Optional[str] = None,
1870
+ streams: Optional[Sequence[str]] = None):
1871
+ """
1872
+ Definition of which data will be collected from a separate VM extension that integrates with the Azure Monitor Agent.
1873
+ Collected from either Windows and Linux machines, depending on which extension is defined.
1874
+ :param str extension_name: The name of the VM extension.
1875
+ :param Any extension_settings: The extension settings. The format is specific for particular extension.
1876
+ :param Sequence[str] input_data_sources: The list of data sources this extension needs data from.
1877
+ :param str name: A friendly name for the data source.
1878
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1879
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
1880
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
1881
+ """
1882
+ pulumi.set(__self__, "extension_name", extension_name)
1883
+ if extension_settings is not None:
1884
+ pulumi.set(__self__, "extension_settings", extension_settings)
1885
+ if input_data_sources is not None:
1886
+ pulumi.set(__self__, "input_data_sources", input_data_sources)
1887
+ if name is not None:
1888
+ pulumi.set(__self__, "name", name)
1889
+ if streams is not None:
1890
+ pulumi.set(__self__, "streams", streams)
1891
+
1892
+ @property
1893
+ @pulumi.getter(name="extensionName")
1894
+ def extension_name(self) -> str:
1895
+ """
1896
+ The name of the VM extension.
1897
+ """
1898
+ return pulumi.get(self, "extension_name")
1899
+
1900
+ @property
1901
+ @pulumi.getter(name="extensionSettings")
1902
+ def extension_settings(self) -> Optional[Any]:
1903
+ """
1904
+ The extension settings. The format is specific for particular extension.
1905
+ """
1906
+ return pulumi.get(self, "extension_settings")
1907
+
1908
+ @property
1909
+ @pulumi.getter(name="inputDataSources")
1910
+ def input_data_sources(self) -> Optional[Sequence[str]]:
1911
+ """
1912
+ The list of data sources this extension needs data from.
1913
+ """
1914
+ return pulumi.get(self, "input_data_sources")
1915
+
1916
+ @property
1917
+ @pulumi.getter
1918
+ def name(self) -> Optional[str]:
1919
+ """
1920
+ A friendly name for the data source.
1921
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1922
+ """
1923
+ return pulumi.get(self, "name")
1924
+
1925
+ @property
1926
+ @pulumi.getter
1927
+ def streams(self) -> Optional[Sequence[str]]:
1928
+ """
1929
+ List of streams that this data source will be sent to.
1930
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
1931
+ """
1932
+ return pulumi.get(self, "streams")
1933
+
1934
+
1935
+ @pulumi.output_type
1936
+ class IisLogsDataSourceResponse(dict):
1937
+ """
1938
+ Enables IIS logs to be collected by this data collection rule.
1939
+ """
1940
+ @staticmethod
1941
+ def __key_warning(key: str):
1942
+ suggest = None
1943
+ if key == "logDirectories":
1944
+ suggest = "log_directories"
1945
+ elif key == "transformKql":
1946
+ suggest = "transform_kql"
1947
+
1948
+ if suggest:
1949
+ pulumi.log.warn(f"Key '{key}' not found in IisLogsDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
1950
+
1951
+ def __getitem__(self, key: str) -> Any:
1952
+ IisLogsDataSourceResponse.__key_warning(key)
1953
+ return super().__getitem__(key)
1954
+
1955
+ def get(self, key: str, default = None) -> Any:
1956
+ IisLogsDataSourceResponse.__key_warning(key)
1957
+ return super().get(key, default)
1958
+
1959
+ def __init__(__self__, *,
1960
+ streams: Sequence[str],
1961
+ log_directories: Optional[Sequence[str]] = None,
1962
+ name: Optional[str] = None,
1963
+ transform_kql: Optional[str] = None):
1964
+ """
1965
+ Enables IIS logs to be collected by this data collection rule.
1966
+ :param Sequence[str] streams: IIS streams
1967
+ :param Sequence[str] log_directories: Absolute paths file location
1968
+ :param str name: A friendly name for the data source.
1969
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1970
+ :param str transform_kql: The KQL query to transform the data source.
1971
+ """
1972
+ pulumi.set(__self__, "streams", streams)
1973
+ if log_directories is not None:
1974
+ pulumi.set(__self__, "log_directories", log_directories)
1975
+ if name is not None:
1976
+ pulumi.set(__self__, "name", name)
1977
+ if transform_kql is not None:
1978
+ pulumi.set(__self__, "transform_kql", transform_kql)
1979
+
1980
+ @property
1981
+ @pulumi.getter
1982
+ def streams(self) -> Sequence[str]:
1983
+ """
1984
+ IIS streams
1985
+ """
1986
+ return pulumi.get(self, "streams")
1987
+
1988
+ @property
1989
+ @pulumi.getter(name="logDirectories")
1990
+ def log_directories(self) -> Optional[Sequence[str]]:
1991
+ """
1992
+ Absolute paths file location
1993
+ """
1994
+ return pulumi.get(self, "log_directories")
1995
+
1996
+ @property
1997
+ @pulumi.getter
1998
+ def name(self) -> Optional[str]:
1999
+ """
2000
+ A friendly name for the data source.
2001
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2002
+ """
2003
+ return pulumi.get(self, "name")
2004
+
2005
+ @property
2006
+ @pulumi.getter(name="transformKql")
2007
+ def transform_kql(self) -> Optional[str]:
2008
+ """
2009
+ The KQL query to transform the data source.
2010
+ """
2011
+ return pulumi.get(self, "transform_kql")
2012
+
2013
+
2014
+ @pulumi.output_type
2015
+ class LocationSpecResponse(dict):
2016
+ @staticmethod
2017
+ def __key_warning(key: str):
2018
+ suggest = None
2019
+ if key == "provisioningStatus":
2020
+ suggest = "provisioning_status"
2021
+
2022
+ if suggest:
2023
+ pulumi.log.warn(f"Key '{key}' not found in LocationSpecResponse. Access the value via the '{suggest}' property getter instead.")
2024
+
2025
+ def __getitem__(self, key: str) -> Any:
2026
+ LocationSpecResponse.__key_warning(key)
2027
+ return super().__getitem__(key)
2028
+
2029
+ def get(self, key: str, default = None) -> Any:
2030
+ LocationSpecResponse.__key_warning(key)
2031
+ return super().get(key, default)
2032
+
2033
+ def __init__(__self__, *,
2034
+ location: Optional[str] = None,
2035
+ provisioning_status: Optional[str] = None):
2036
+ """
2037
+ :param str location: Name of location.
2038
+ :param str provisioning_status: The resource provisioning state in this location.
2039
+ """
2040
+ if location is not None:
2041
+ pulumi.set(__self__, "location", location)
2042
+ if provisioning_status is not None:
2043
+ pulumi.set(__self__, "provisioning_status", provisioning_status)
2044
+
2045
+ @property
2046
+ @pulumi.getter
2047
+ def location(self) -> Optional[str]:
2048
+ """
2049
+ Name of location.
2050
+ """
2051
+ return pulumi.get(self, "location")
2052
+
2053
+ @property
2054
+ @pulumi.getter(name="provisioningStatus")
2055
+ def provisioning_status(self) -> Optional[str]:
2056
+ """
2057
+ The resource provisioning state in this location.
2058
+ """
2059
+ return pulumi.get(self, "provisioning_status")
2060
+
2061
+
2062
+ @pulumi.output_type
2063
+ class LogAnalyticsDestinationResponse(dict):
2064
+ """
2065
+ Log Analytics destination.
2066
+ """
2067
+ @staticmethod
2068
+ def __key_warning(key: str):
2069
+ suggest = None
2070
+ if key == "workspaceId":
2071
+ suggest = "workspace_id"
2072
+ elif key == "workspaceResourceId":
2073
+ suggest = "workspace_resource_id"
2074
+
2075
+ if suggest:
2076
+ pulumi.log.warn(f"Key '{key}' not found in LogAnalyticsDestinationResponse. Access the value via the '{suggest}' property getter instead.")
2077
+
2078
+ def __getitem__(self, key: str) -> Any:
2079
+ LogAnalyticsDestinationResponse.__key_warning(key)
2080
+ return super().__getitem__(key)
2081
+
2082
+ def get(self, key: str, default = None) -> Any:
2083
+ LogAnalyticsDestinationResponse.__key_warning(key)
2084
+ return super().get(key, default)
2085
+
2086
+ def __init__(__self__, *,
2087
+ workspace_id: str,
2088
+ name: Optional[str] = None,
2089
+ workspace_resource_id: Optional[str] = None):
2090
+ """
2091
+ Log Analytics destination.
2092
+ :param str workspace_id: The Customer ID of the Log Analytics workspace.
2093
+ :param str name: A friendly name for the destination.
2094
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2095
+ :param str workspace_resource_id: The resource ID of the Log Analytics workspace.
2096
+ """
2097
+ pulumi.set(__self__, "workspace_id", workspace_id)
2098
+ if name is not None:
2099
+ pulumi.set(__self__, "name", name)
2100
+ if workspace_resource_id is not None:
2101
+ pulumi.set(__self__, "workspace_resource_id", workspace_resource_id)
2102
+
2103
+ @property
2104
+ @pulumi.getter(name="workspaceId")
2105
+ def workspace_id(self) -> str:
2106
+ """
2107
+ The Customer ID of the Log Analytics workspace.
2108
+ """
2109
+ return pulumi.get(self, "workspace_id")
2110
+
2111
+ @property
2112
+ @pulumi.getter
2113
+ def name(self) -> Optional[str]:
2114
+ """
2115
+ A friendly name for the destination.
2116
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2117
+ """
2118
+ return pulumi.get(self, "name")
2119
+
2120
+ @property
2121
+ @pulumi.getter(name="workspaceResourceId")
2122
+ def workspace_resource_id(self) -> Optional[str]:
2123
+ """
2124
+ The resource ID of the Log Analytics workspace.
2125
+ """
2126
+ return pulumi.get(self, "workspace_resource_id")
2127
+
2128
+
2129
+ @pulumi.output_type
2130
+ class LogFileSettingsResponseText(dict):
2131
+ """
2132
+ Text settings
2133
+ """
2134
+ @staticmethod
2135
+ def __key_warning(key: str):
2136
+ suggest = None
2137
+ if key == "recordStartTimestampFormat":
2138
+ suggest = "record_start_timestamp_format"
2139
+
2140
+ if suggest:
2141
+ pulumi.log.warn(f"Key '{key}' not found in LogFileSettingsResponseText. Access the value via the '{suggest}' property getter instead.")
2142
+
2143
+ def __getitem__(self, key: str) -> Any:
2144
+ LogFileSettingsResponseText.__key_warning(key)
2145
+ return super().__getitem__(key)
2146
+
2147
+ def get(self, key: str, default = None) -> Any:
2148
+ LogFileSettingsResponseText.__key_warning(key)
2149
+ return super().get(key, default)
2150
+
2151
+ def __init__(__self__, *,
2152
+ record_start_timestamp_format: str):
2153
+ """
2154
+ Text settings
2155
+ :param str record_start_timestamp_format: One of the supported timestamp formats
2156
+ """
2157
+ pulumi.set(__self__, "record_start_timestamp_format", record_start_timestamp_format)
2158
+
2159
+ @property
2160
+ @pulumi.getter(name="recordStartTimestampFormat")
2161
+ def record_start_timestamp_format(self) -> str:
2162
+ """
2163
+ One of the supported timestamp formats
2164
+ """
2165
+ return pulumi.get(self, "record_start_timestamp_format")
2166
+
2167
+
2168
+ @pulumi.output_type
2169
+ class LogFilesDataSourceResponse(dict):
2170
+ """
2171
+ Definition of which custom log files will be collected by this data collection rule
2172
+ """
2173
+ @staticmethod
2174
+ def __key_warning(key: str):
2175
+ suggest = None
2176
+ if key == "filePatterns":
2177
+ suggest = "file_patterns"
2178
+ elif key == "transformKql":
2179
+ suggest = "transform_kql"
2180
+
2181
+ if suggest:
2182
+ pulumi.log.warn(f"Key '{key}' not found in LogFilesDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
2183
+
2184
+ def __getitem__(self, key: str) -> Any:
2185
+ LogFilesDataSourceResponse.__key_warning(key)
2186
+ return super().__getitem__(key)
2187
+
2188
+ def get(self, key: str, default = None) -> Any:
2189
+ LogFilesDataSourceResponse.__key_warning(key)
2190
+ return super().get(key, default)
2191
+
2192
+ def __init__(__self__, *,
2193
+ file_patterns: Sequence[str],
2194
+ format: str,
2195
+ streams: Sequence[str],
2196
+ name: Optional[str] = None,
2197
+ settings: Optional['outputs.LogFilesDataSourceResponseSettings'] = None,
2198
+ transform_kql: Optional[str] = None):
2199
+ """
2200
+ Definition of which custom log files will be collected by this data collection rule
2201
+ :param Sequence[str] file_patterns: File Patterns where the log files are located
2202
+ :param str format: The data format of the log files
2203
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
2204
+ A stream indicates what schema will be used for this data source
2205
+ :param str name: A friendly name for the data source.
2206
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2207
+ :param 'LogFilesDataSourceResponseSettings' settings: The log files specific settings.
2208
+ :param str transform_kql: The KQL query to transform the data source.
2209
+ """
2210
+ pulumi.set(__self__, "file_patterns", file_patterns)
2211
+ pulumi.set(__self__, "format", format)
2212
+ pulumi.set(__self__, "streams", streams)
2213
+ if name is not None:
2214
+ pulumi.set(__self__, "name", name)
2215
+ if settings is not None:
2216
+ pulumi.set(__self__, "settings", settings)
2217
+ if transform_kql is not None:
2218
+ pulumi.set(__self__, "transform_kql", transform_kql)
2219
+
2220
+ @property
2221
+ @pulumi.getter(name="filePatterns")
2222
+ def file_patterns(self) -> Sequence[str]:
2223
+ """
2224
+ File Patterns where the log files are located
2225
+ """
2226
+ return pulumi.get(self, "file_patterns")
2227
+
2228
+ @property
2229
+ @pulumi.getter
2230
+ def format(self) -> str:
2231
+ """
2232
+ The data format of the log files
2233
+ """
2234
+ return pulumi.get(self, "format")
2235
+
2236
+ @property
2237
+ @pulumi.getter
2238
+ def streams(self) -> Sequence[str]:
2239
+ """
2240
+ List of streams that this data source will be sent to.
2241
+ A stream indicates what schema will be used for this data source
2242
+ """
2243
+ return pulumi.get(self, "streams")
2244
+
2245
+ @property
2246
+ @pulumi.getter
2247
+ def name(self) -> Optional[str]:
2248
+ """
2249
+ A friendly name for the data source.
2250
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2251
+ """
2252
+ return pulumi.get(self, "name")
2253
+
2254
+ @property
2255
+ @pulumi.getter
2256
+ def settings(self) -> Optional['outputs.LogFilesDataSourceResponseSettings']:
2257
+ """
2258
+ The log files specific settings.
2259
+ """
2260
+ return pulumi.get(self, "settings")
2261
+
2262
+ @property
2263
+ @pulumi.getter(name="transformKql")
2264
+ def transform_kql(self) -> Optional[str]:
2265
+ """
2266
+ The KQL query to transform the data source.
2267
+ """
2268
+ return pulumi.get(self, "transform_kql")
2269
+
2270
+
2271
+ @pulumi.output_type
2272
+ class LogFilesDataSourceResponseSettings(dict):
2273
+ """
2274
+ The log files specific settings.
2275
+ """
2276
+ def __init__(__self__, *,
2277
+ text: Optional['outputs.LogFileSettingsResponseText'] = None):
2278
+ """
2279
+ The log files specific settings.
2280
+ :param 'LogFileSettingsResponseText' text: Text settings
2281
+ """
2282
+ if text is not None:
2283
+ pulumi.set(__self__, "text", text)
2284
+
2285
+ @property
2286
+ @pulumi.getter
2287
+ def text(self) -> Optional['outputs.LogFileSettingsResponseText']:
2288
+ """
2289
+ Text settings
2290
+ """
2291
+ return pulumi.get(self, "text")
2292
+
2293
+
2294
+ @pulumi.output_type
2295
+ class MicrosoftFabricDestinationResponse(dict):
2296
+ """
2297
+ Microsoft Fabric destination (non-Azure).
2298
+ """
2299
+ @staticmethod
2300
+ def __key_warning(key: str):
2301
+ suggest = None
2302
+ if key == "artifactId":
2303
+ suggest = "artifact_id"
2304
+ elif key == "databaseName":
2305
+ suggest = "database_name"
2306
+ elif key == "ingestionUri":
2307
+ suggest = "ingestion_uri"
2308
+ elif key == "tenantId":
2309
+ suggest = "tenant_id"
2310
+
2311
+ if suggest:
2312
+ pulumi.log.warn(f"Key '{key}' not found in MicrosoftFabricDestinationResponse. Access the value via the '{suggest}' property getter instead.")
2313
+
2314
+ def __getitem__(self, key: str) -> Any:
2315
+ MicrosoftFabricDestinationResponse.__key_warning(key)
2316
+ return super().__getitem__(key)
2317
+
2318
+ def get(self, key: str, default = None) -> Any:
2319
+ MicrosoftFabricDestinationResponse.__key_warning(key)
2320
+ return super().get(key, default)
2321
+
2322
+ def __init__(__self__, *,
2323
+ artifact_id: Optional[str] = None,
2324
+ database_name: Optional[str] = None,
2325
+ ingestion_uri: Optional[str] = None,
2326
+ name: Optional[str] = None,
2327
+ tenant_id: Optional[str] = None):
2328
+ """
2329
+ Microsoft Fabric destination (non-Azure).
2330
+ :param str artifact_id: The artifact id of the Microsoft Fabric resource.
2331
+ :param str database_name: The name of the database to which data will be ingested.
2332
+ :param str ingestion_uri: The ingestion uri of the Microsoft Fabric resource.
2333
+ :param str name: A friendly name for the destination.
2334
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2335
+ :param str tenant_id: The tenant id of the Microsoft Fabric resource.
2336
+ """
2337
+ if artifact_id is not None:
2338
+ pulumi.set(__self__, "artifact_id", artifact_id)
2339
+ if database_name is not None:
2340
+ pulumi.set(__self__, "database_name", database_name)
2341
+ if ingestion_uri is not None:
2342
+ pulumi.set(__self__, "ingestion_uri", ingestion_uri)
2343
+ if name is not None:
2344
+ pulumi.set(__self__, "name", name)
2345
+ if tenant_id is not None:
2346
+ pulumi.set(__self__, "tenant_id", tenant_id)
2347
+
2348
+ @property
2349
+ @pulumi.getter(name="artifactId")
2350
+ def artifact_id(self) -> Optional[str]:
2351
+ """
2352
+ The artifact id of the Microsoft Fabric resource.
2353
+ """
2354
+ return pulumi.get(self, "artifact_id")
2355
+
2356
+ @property
2357
+ @pulumi.getter(name="databaseName")
2358
+ def database_name(self) -> Optional[str]:
2359
+ """
2360
+ The name of the database to which data will be ingested.
2361
+ """
2362
+ return pulumi.get(self, "database_name")
2363
+
2364
+ @property
2365
+ @pulumi.getter(name="ingestionUri")
2366
+ def ingestion_uri(self) -> Optional[str]:
2367
+ """
2368
+ The ingestion uri of the Microsoft Fabric resource.
2369
+ """
2370
+ return pulumi.get(self, "ingestion_uri")
2371
+
2372
+ @property
2373
+ @pulumi.getter
2374
+ def name(self) -> Optional[str]:
2375
+ """
2376
+ A friendly name for the destination.
2377
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2378
+ """
2379
+ return pulumi.get(self, "name")
2380
+
2381
+ @property
2382
+ @pulumi.getter(name="tenantId")
2383
+ def tenant_id(self) -> Optional[str]:
2384
+ """
2385
+ The tenant id of the Microsoft Fabric resource.
2386
+ """
2387
+ return pulumi.get(self, "tenant_id")
2388
+
2389
+
2390
+ @pulumi.output_type
2391
+ class MonitoringAccountDestinationResponse(dict):
2392
+ """
2393
+ Monitoring account destination.
2394
+ """
2395
+ @staticmethod
2396
+ def __key_warning(key: str):
2397
+ suggest = None
2398
+ if key == "accountId":
2399
+ suggest = "account_id"
2400
+ elif key == "accountResourceId":
2401
+ suggest = "account_resource_id"
2402
+
2403
+ if suggest:
2404
+ pulumi.log.warn(f"Key '{key}' not found in MonitoringAccountDestinationResponse. Access the value via the '{suggest}' property getter instead.")
2405
+
2406
+ def __getitem__(self, key: str) -> Any:
2407
+ MonitoringAccountDestinationResponse.__key_warning(key)
2408
+ return super().__getitem__(key)
2409
+
2410
+ def get(self, key: str, default = None) -> Any:
2411
+ MonitoringAccountDestinationResponse.__key_warning(key)
2412
+ return super().get(key, default)
2413
+
2414
+ def __init__(__self__, *,
2415
+ account_id: str,
2416
+ account_resource_id: Optional[str] = None,
2417
+ name: Optional[str] = None):
2418
+ """
2419
+ Monitoring account destination.
2420
+ :param str account_id: The immutable ID of the account.
2421
+ :param str account_resource_id: The resource ID of the monitoring account.
2422
+ :param str name: A friendly name for the destination.
2423
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2424
+ """
2425
+ pulumi.set(__self__, "account_id", account_id)
2426
+ if account_resource_id is not None:
2427
+ pulumi.set(__self__, "account_resource_id", account_resource_id)
2428
+ if name is not None:
2429
+ pulumi.set(__self__, "name", name)
2430
+
2431
+ @property
2432
+ @pulumi.getter(name="accountId")
2433
+ def account_id(self) -> str:
2434
+ """
2435
+ The immutable ID of the account.
2436
+ """
2437
+ return pulumi.get(self, "account_id")
2438
+
2439
+ @property
2440
+ @pulumi.getter(name="accountResourceId")
2441
+ def account_resource_id(self) -> Optional[str]:
2442
+ """
2443
+ The resource ID of the monitoring account.
2444
+ """
2445
+ return pulumi.get(self, "account_resource_id")
2446
+
2447
+ @property
2448
+ @pulumi.getter
2449
+ def name(self) -> Optional[str]:
2450
+ """
2451
+ A friendly name for the destination.
2452
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2453
+ """
2454
+ return pulumi.get(self, "name")
2455
+
2456
+
2457
+ @pulumi.output_type
2458
+ class PerfCounterDataSourceResponse(dict):
2459
+ """
2460
+ Definition of which performance counters will be collected and how they will be collected by this data collection rule.
2461
+ Collected from both Windows and Linux machines where the counter is present.
2462
+ """
2463
+ @staticmethod
2464
+ def __key_warning(key: str):
2465
+ suggest = None
2466
+ if key == "counterSpecifiers":
2467
+ suggest = "counter_specifiers"
2468
+ elif key == "samplingFrequencyInSeconds":
2469
+ suggest = "sampling_frequency_in_seconds"
2470
+ elif key == "transformKql":
2471
+ suggest = "transform_kql"
2472
+
2473
+ if suggest:
2474
+ pulumi.log.warn(f"Key '{key}' not found in PerfCounterDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
2475
+
2476
+ def __getitem__(self, key: str) -> Any:
2477
+ PerfCounterDataSourceResponse.__key_warning(key)
2478
+ return super().__getitem__(key)
2479
+
2480
+ def get(self, key: str, default = None) -> Any:
2481
+ PerfCounterDataSourceResponse.__key_warning(key)
2482
+ return super().get(key, default)
2483
+
2484
+ def __init__(__self__, *,
2485
+ counter_specifiers: Optional[Sequence[str]] = None,
2486
+ name: Optional[str] = None,
2487
+ sampling_frequency_in_seconds: Optional[int] = None,
2488
+ streams: Optional[Sequence[str]] = None,
2489
+ transform_kql: Optional[str] = None):
2490
+ """
2491
+ Definition of which performance counters will be collected and how they will be collected by this data collection rule.
2492
+ Collected from both Windows and Linux machines where the counter is present.
2493
+ :param Sequence[str] counter_specifiers: A list of specifier names of the performance counters you want to collect.
2494
+ Use a wildcard (*) to collect a counter for all instances.
2495
+ To get a list of performance counters on Windows, run the command 'typeperf'.
2496
+ :param str name: A friendly name for the data source.
2497
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2498
+ :param int sampling_frequency_in_seconds: The number of seconds between consecutive counter measurements (samples).
2499
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
2500
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
2501
+ :param str transform_kql: The KQL query to transform the data source.
2502
+ """
2503
+ if counter_specifiers is not None:
2504
+ pulumi.set(__self__, "counter_specifiers", counter_specifiers)
2505
+ if name is not None:
2506
+ pulumi.set(__self__, "name", name)
2507
+ if sampling_frequency_in_seconds is not None:
2508
+ pulumi.set(__self__, "sampling_frequency_in_seconds", sampling_frequency_in_seconds)
2509
+ if streams is not None:
2510
+ pulumi.set(__self__, "streams", streams)
2511
+ if transform_kql is not None:
2512
+ pulumi.set(__self__, "transform_kql", transform_kql)
2513
+
2514
+ @property
2515
+ @pulumi.getter(name="counterSpecifiers")
2516
+ def counter_specifiers(self) -> Optional[Sequence[str]]:
2517
+ """
2518
+ A list of specifier names of the performance counters you want to collect.
2519
+ Use a wildcard (*) to collect a counter for all instances.
2520
+ To get a list of performance counters on Windows, run the command 'typeperf'.
2521
+ """
2522
+ return pulumi.get(self, "counter_specifiers")
2523
+
2524
+ @property
2525
+ @pulumi.getter
2526
+ def name(self) -> Optional[str]:
2527
+ """
2528
+ A friendly name for the data source.
2529
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2530
+ """
2531
+ return pulumi.get(self, "name")
2532
+
2533
+ @property
2534
+ @pulumi.getter(name="samplingFrequencyInSeconds")
2535
+ def sampling_frequency_in_seconds(self) -> Optional[int]:
2536
+ """
2537
+ The number of seconds between consecutive counter measurements (samples).
2538
+ """
2539
+ return pulumi.get(self, "sampling_frequency_in_seconds")
2540
+
2541
+ @property
2542
+ @pulumi.getter
2543
+ def streams(self) -> Optional[Sequence[str]]:
2544
+ """
2545
+ List of streams that this data source will be sent to.
2546
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
2547
+ """
2548
+ return pulumi.get(self, "streams")
2549
+
2550
+ @property
2551
+ @pulumi.getter(name="transformKql")
2552
+ def transform_kql(self) -> Optional[str]:
2553
+ """
2554
+ The KQL query to transform the data source.
2555
+ """
2556
+ return pulumi.get(self, "transform_kql")
2557
+
2558
+
2559
+ @pulumi.output_type
2560
+ class PlatformTelemetryDataSourceResponse(dict):
2561
+ """
2562
+ Definition of platform telemetry data source configuration
2563
+ """
2564
+ def __init__(__self__, *,
2565
+ streams: Sequence[str],
2566
+ name: Optional[str] = None):
2567
+ """
2568
+ Definition of platform telemetry data source configuration
2569
+ :param Sequence[str] streams: List of platform telemetry streams to collect
2570
+ :param str name: A friendly name for the data source.
2571
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2572
+ """
2573
+ pulumi.set(__self__, "streams", streams)
2574
+ if name is not None:
2575
+ pulumi.set(__self__, "name", name)
2576
+
2577
+ @property
2578
+ @pulumi.getter
2579
+ def streams(self) -> Sequence[str]:
2580
+ """
2581
+ List of platform telemetry streams to collect
2582
+ """
2583
+ return pulumi.get(self, "streams")
2584
+
2585
+ @property
2586
+ @pulumi.getter
2587
+ def name(self) -> Optional[str]:
2588
+ """
2589
+ A friendly name for the data source.
2590
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2591
+ """
2592
+ return pulumi.get(self, "name")
2593
+
2594
+
2595
+ @pulumi.output_type
2596
+ class PrivateLinkScopedResourceResponse(dict):
2597
+ @staticmethod
2598
+ def __key_warning(key: str):
2599
+ suggest = None
2600
+ if key == "resourceId":
2601
+ suggest = "resource_id"
2602
+ elif key == "scopeId":
2603
+ suggest = "scope_id"
2604
+
2605
+ if suggest:
2606
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkScopedResourceResponse. Access the value via the '{suggest}' property getter instead.")
2607
+
2608
+ def __getitem__(self, key: str) -> Any:
2609
+ PrivateLinkScopedResourceResponse.__key_warning(key)
2610
+ return super().__getitem__(key)
2611
+
2612
+ def get(self, key: str, default = None) -> Any:
2613
+ PrivateLinkScopedResourceResponse.__key_warning(key)
2614
+ return super().get(key, default)
2615
+
2616
+ def __init__(__self__, *,
2617
+ resource_id: Optional[str] = None,
2618
+ scope_id: Optional[str] = None):
2619
+ """
2620
+ :param str resource_id: The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
2621
+ :param str scope_id: The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
2622
+ """
2623
+ if resource_id is not None:
2624
+ pulumi.set(__self__, "resource_id", resource_id)
2625
+ if scope_id is not None:
2626
+ pulumi.set(__self__, "scope_id", scope_id)
2627
+
2628
+ @property
2629
+ @pulumi.getter(name="resourceId")
2630
+ def resource_id(self) -> Optional[str]:
2631
+ """
2632
+ The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
2633
+ """
2634
+ return pulumi.get(self, "resource_id")
2635
+
2636
+ @property
2637
+ @pulumi.getter(name="scopeId")
2638
+ def scope_id(self) -> Optional[str]:
2639
+ """
2640
+ The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
2641
+ """
2642
+ return pulumi.get(self, "scope_id")
2643
+
2644
+
2645
+ @pulumi.output_type
2646
+ class PrometheusForwarderDataSourceResponse(dict):
2647
+ """
2648
+ Definition of Prometheus metrics forwarding configuration.
2649
+ """
2650
+ @staticmethod
2651
+ def __key_warning(key: str):
2652
+ suggest = None
2653
+ if key == "labelIncludeFilter":
2654
+ suggest = "label_include_filter"
2655
+
2656
+ if suggest:
2657
+ pulumi.log.warn(f"Key '{key}' not found in PrometheusForwarderDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
2658
+
2659
+ def __getitem__(self, key: str) -> Any:
2660
+ PrometheusForwarderDataSourceResponse.__key_warning(key)
2661
+ return super().__getitem__(key)
2662
+
2663
+ def get(self, key: str, default = None) -> Any:
2664
+ PrometheusForwarderDataSourceResponse.__key_warning(key)
2665
+ return super().get(key, default)
2666
+
2667
+ def __init__(__self__, *,
2668
+ label_include_filter: Optional[Mapping[str, str]] = None,
2669
+ name: Optional[str] = None,
2670
+ streams: Optional[Sequence[str]] = None):
2671
+ """
2672
+ Definition of Prometheus metrics forwarding configuration.
2673
+ :param Mapping[str, str] label_include_filter: The list of label inclusion filters in the form of label "name-value" pairs.
2674
+ Currently only one label is supported: 'microsoft_metrics_include_label'.
2675
+ Label values are matched case-insensitively.
2676
+ :param str name: A friendly name for the data source.
2677
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2678
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
2679
+ """
2680
+ if label_include_filter is not None:
2681
+ pulumi.set(__self__, "label_include_filter", label_include_filter)
2682
+ if name is not None:
2683
+ pulumi.set(__self__, "name", name)
2684
+ if streams is not None:
2685
+ pulumi.set(__self__, "streams", streams)
2686
+
2687
+ @property
2688
+ @pulumi.getter(name="labelIncludeFilter")
2689
+ def label_include_filter(self) -> Optional[Mapping[str, str]]:
2690
+ """
2691
+ The list of label inclusion filters in the form of label "name-value" pairs.
2692
+ Currently only one label is supported: 'microsoft_metrics_include_label'.
2693
+ Label values are matched case-insensitively.
2694
+ """
2695
+ return pulumi.get(self, "label_include_filter")
2696
+
2697
+ @property
2698
+ @pulumi.getter
2699
+ def name(self) -> Optional[str]:
2700
+ """
2701
+ A friendly name for the data source.
2702
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2703
+ """
2704
+ return pulumi.get(self, "name")
2705
+
2706
+ @property
2707
+ @pulumi.getter
2708
+ def streams(self) -> Optional[Sequence[str]]:
2709
+ """
2710
+ List of streams that this data source will be sent to.
2711
+ """
2712
+ return pulumi.get(self, "streams")
2713
+
2714
+
2715
+ @pulumi.output_type
2716
+ class ReferencesSpecResponseEnrichmentData(dict):
2717
+ """
2718
+ All the enrichment data sources referenced in data flows
2719
+ """
2720
+ @staticmethod
2721
+ def __key_warning(key: str):
2722
+ suggest = None
2723
+ if key == "storageBlobs":
2724
+ suggest = "storage_blobs"
2725
+
2726
+ if suggest:
2727
+ pulumi.log.warn(f"Key '{key}' not found in ReferencesSpecResponseEnrichmentData. Access the value via the '{suggest}' property getter instead.")
2728
+
2729
+ def __getitem__(self, key: str) -> Any:
2730
+ ReferencesSpecResponseEnrichmentData.__key_warning(key)
2731
+ return super().__getitem__(key)
2732
+
2733
+ def get(self, key: str, default = None) -> Any:
2734
+ ReferencesSpecResponseEnrichmentData.__key_warning(key)
2735
+ return super().get(key, default)
2736
+
2737
+ def __init__(__self__, *,
2738
+ storage_blobs: Optional[Sequence['outputs.StorageBlobResponse']] = None):
2739
+ """
2740
+ All the enrichment data sources referenced in data flows
2741
+ :param Sequence['StorageBlobResponse'] storage_blobs: All the storage blobs used as enrichment data sources
2742
+ """
2743
+ if storage_blobs is not None:
2744
+ pulumi.set(__self__, "storage_blobs", storage_blobs)
2745
+
2746
+ @property
2747
+ @pulumi.getter(name="storageBlobs")
2748
+ def storage_blobs(self) -> Optional[Sequence['outputs.StorageBlobResponse']]:
2749
+ """
2750
+ All the storage blobs used as enrichment data sources
2751
+ """
2752
+ return pulumi.get(self, "storage_blobs")
2753
+
2754
+
2755
+ @pulumi.output_type
2756
+ class StorageBlobDestinationResponse(dict):
2757
+ @staticmethod
2758
+ def __key_warning(key: str):
2759
+ suggest = None
2760
+ if key == "containerName":
2761
+ suggest = "container_name"
2762
+ elif key == "storageAccountResourceId":
2763
+ suggest = "storage_account_resource_id"
2764
+
2765
+ if suggest:
2766
+ pulumi.log.warn(f"Key '{key}' not found in StorageBlobDestinationResponse. Access the value via the '{suggest}' property getter instead.")
2767
+
2768
+ def __getitem__(self, key: str) -> Any:
2769
+ StorageBlobDestinationResponse.__key_warning(key)
2770
+ return super().__getitem__(key)
2771
+
2772
+ def get(self, key: str, default = None) -> Any:
2773
+ StorageBlobDestinationResponse.__key_warning(key)
2774
+ return super().get(key, default)
2775
+
2776
+ def __init__(__self__, *,
2777
+ container_name: Optional[str] = None,
2778
+ name: Optional[str] = None,
2779
+ storage_account_resource_id: Optional[str] = None):
2780
+ """
2781
+ :param str container_name: The container name of the Storage Blob.
2782
+ :param str name: A friendly name for the destination.
2783
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2784
+ :param str storage_account_resource_id: The resource ID of the storage account.
2785
+ """
2786
+ if container_name is not None:
2787
+ pulumi.set(__self__, "container_name", container_name)
2788
+ if name is not None:
2789
+ pulumi.set(__self__, "name", name)
2790
+ if storage_account_resource_id is not None:
2791
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
2792
+
2793
+ @property
2794
+ @pulumi.getter(name="containerName")
2795
+ def container_name(self) -> Optional[str]:
2796
+ """
2797
+ The container name of the Storage Blob.
2798
+ """
2799
+ return pulumi.get(self, "container_name")
2800
+
2801
+ @property
2802
+ @pulumi.getter
2803
+ def name(self) -> Optional[str]:
2804
+ """
2805
+ A friendly name for the destination.
2806
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2807
+ """
2808
+ return pulumi.get(self, "name")
2809
+
2810
+ @property
2811
+ @pulumi.getter(name="storageAccountResourceId")
2812
+ def storage_account_resource_id(self) -> Optional[str]:
2813
+ """
2814
+ The resource ID of the storage account.
2815
+ """
2816
+ return pulumi.get(self, "storage_account_resource_id")
2817
+
2818
+
2819
+ @pulumi.output_type
2820
+ class StorageBlobResponse(dict):
2821
+ @staticmethod
2822
+ def __key_warning(key: str):
2823
+ suggest = None
2824
+ if key == "blobUrl":
2825
+ suggest = "blob_url"
2826
+ elif key == "lookupType":
2827
+ suggest = "lookup_type"
2828
+ elif key == "resourceId":
2829
+ suggest = "resource_id"
2830
+
2831
+ if suggest:
2832
+ pulumi.log.warn(f"Key '{key}' not found in StorageBlobResponse. Access the value via the '{suggest}' property getter instead.")
2833
+
2834
+ def __getitem__(self, key: str) -> Any:
2835
+ StorageBlobResponse.__key_warning(key)
2836
+ return super().__getitem__(key)
2837
+
2838
+ def get(self, key: str, default = None) -> Any:
2839
+ StorageBlobResponse.__key_warning(key)
2840
+ return super().get(key, default)
2841
+
2842
+ def __init__(__self__, *,
2843
+ blob_url: Optional[str] = None,
2844
+ lookup_type: Optional[str] = None,
2845
+ name: Optional[str] = None,
2846
+ resource_id: Optional[str] = None):
2847
+ """
2848
+ :param str blob_url: Url of the storage blob
2849
+ :param str lookup_type: The type of lookup to perform on the blob
2850
+ :param str name: The name of the enrichment data source used as an alias when referencing this data source in data flows
2851
+ :param str resource_id: Resource Id of the storage account that hosts the blob
2852
+ """
2853
+ if blob_url is not None:
2854
+ pulumi.set(__self__, "blob_url", blob_url)
2855
+ if lookup_type is not None:
2856
+ pulumi.set(__self__, "lookup_type", lookup_type)
2857
+ if name is not None:
2858
+ pulumi.set(__self__, "name", name)
2859
+ if resource_id is not None:
2860
+ pulumi.set(__self__, "resource_id", resource_id)
2861
+
2862
+ @property
2863
+ @pulumi.getter(name="blobUrl")
2864
+ def blob_url(self) -> Optional[str]:
2865
+ """
2866
+ Url of the storage blob
2867
+ """
2868
+ return pulumi.get(self, "blob_url")
2869
+
2870
+ @property
2871
+ @pulumi.getter(name="lookupType")
2872
+ def lookup_type(self) -> Optional[str]:
2873
+ """
2874
+ The type of lookup to perform on the blob
2875
+ """
2876
+ return pulumi.get(self, "lookup_type")
2877
+
2878
+ @property
2879
+ @pulumi.getter
2880
+ def name(self) -> Optional[str]:
2881
+ """
2882
+ The name of the enrichment data source used as an alias when referencing this data source in data flows
2883
+ """
2884
+ return pulumi.get(self, "name")
2885
+
2886
+ @property
2887
+ @pulumi.getter(name="resourceId")
2888
+ def resource_id(self) -> Optional[str]:
2889
+ """
2890
+ Resource Id of the storage account that hosts the blob
2891
+ """
2892
+ return pulumi.get(self, "resource_id")
2893
+
2894
+
2895
+ @pulumi.output_type
2896
+ class StorageTableDestinationResponse(dict):
2897
+ @staticmethod
2898
+ def __key_warning(key: str):
2899
+ suggest = None
2900
+ if key == "storageAccountResourceId":
2901
+ suggest = "storage_account_resource_id"
2902
+ elif key == "tableName":
2903
+ suggest = "table_name"
2904
+
2905
+ if suggest:
2906
+ pulumi.log.warn(f"Key '{key}' not found in StorageTableDestinationResponse. Access the value via the '{suggest}' property getter instead.")
2907
+
2908
+ def __getitem__(self, key: str) -> Any:
2909
+ StorageTableDestinationResponse.__key_warning(key)
2910
+ return super().__getitem__(key)
2911
+
2912
+ def get(self, key: str, default = None) -> Any:
2913
+ StorageTableDestinationResponse.__key_warning(key)
2914
+ return super().get(key, default)
2915
+
2916
+ def __init__(__self__, *,
2917
+ name: Optional[str] = None,
2918
+ storage_account_resource_id: Optional[str] = None,
2919
+ table_name: Optional[str] = None):
2920
+ """
2921
+ :param str name: A friendly name for the destination.
2922
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2923
+ :param str storage_account_resource_id: The resource ID of the storage account.
2924
+ :param str table_name: The name of the Storage Table.
2925
+ """
2926
+ if name is not None:
2927
+ pulumi.set(__self__, "name", name)
2928
+ if storage_account_resource_id is not None:
2929
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
2930
+ if table_name is not None:
2931
+ pulumi.set(__self__, "table_name", table_name)
2932
+
2933
+ @property
2934
+ @pulumi.getter
2935
+ def name(self) -> Optional[str]:
2936
+ """
2937
+ A friendly name for the destination.
2938
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2939
+ """
2940
+ return pulumi.get(self, "name")
2941
+
2942
+ @property
2943
+ @pulumi.getter(name="storageAccountResourceId")
2944
+ def storage_account_resource_id(self) -> Optional[str]:
2945
+ """
2946
+ The resource ID of the storage account.
2947
+ """
2948
+ return pulumi.get(self, "storage_account_resource_id")
2949
+
2950
+ @property
2951
+ @pulumi.getter(name="tableName")
2952
+ def table_name(self) -> Optional[str]:
2953
+ """
2954
+ The name of the Storage Table.
2955
+ """
2956
+ return pulumi.get(self, "table_name")
2957
+
2958
+
2959
+ @pulumi.output_type
2960
+ class StreamDeclarationResponse(dict):
2961
+ """
2962
+ Declaration of a custom stream.
2963
+ """
2964
+ def __init__(__self__, *,
2965
+ columns: Optional[Sequence['outputs.ColumnDefinitionResponse']] = None):
2966
+ """
2967
+ Declaration of a custom stream.
2968
+ :param Sequence['ColumnDefinitionResponse'] columns: List of columns used by data in this stream.
2969
+ """
2970
+ if columns is not None:
2971
+ pulumi.set(__self__, "columns", columns)
2972
+
2973
+ @property
2974
+ @pulumi.getter
2975
+ def columns(self) -> Optional[Sequence['outputs.ColumnDefinitionResponse']]:
2976
+ """
2977
+ List of columns used by data in this stream.
2978
+ """
2979
+ return pulumi.get(self, "columns")
2980
+
2981
+
2982
+ @pulumi.output_type
2983
+ class SyslogDataSourceResponse(dict):
2984
+ """
2985
+ Definition of which syslog data will be collected and how it will be collected.
2986
+ Only collected from Linux machines.
2987
+ """
2988
+ @staticmethod
2989
+ def __key_warning(key: str):
2990
+ suggest = None
2991
+ if key == "facilityNames":
2992
+ suggest = "facility_names"
2993
+ elif key == "logLevels":
2994
+ suggest = "log_levels"
2995
+ elif key == "transformKql":
2996
+ suggest = "transform_kql"
2997
+
2998
+ if suggest:
2999
+ pulumi.log.warn(f"Key '{key}' not found in SyslogDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
3000
+
3001
+ def __getitem__(self, key: str) -> Any:
3002
+ SyslogDataSourceResponse.__key_warning(key)
3003
+ return super().__getitem__(key)
3004
+
3005
+ def get(self, key: str, default = None) -> Any:
3006
+ SyslogDataSourceResponse.__key_warning(key)
3007
+ return super().get(key, default)
3008
+
3009
+ def __init__(__self__, *,
3010
+ facility_names: Optional[Sequence[str]] = None,
3011
+ log_levels: Optional[Sequence[str]] = None,
3012
+ name: Optional[str] = None,
3013
+ streams: Optional[Sequence[str]] = None,
3014
+ transform_kql: Optional[str] = None):
3015
+ """
3016
+ Definition of which syslog data will be collected and how it will be collected.
3017
+ Only collected from Linux machines.
3018
+ :param Sequence[str] facility_names: The list of facility names.
3019
+ :param Sequence[str] log_levels: The log levels to collect.
3020
+ :param str name: A friendly name for the data source.
3021
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3022
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
3023
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3024
+ :param str transform_kql: The KQL query to transform the data source.
3025
+ """
3026
+ if facility_names is not None:
3027
+ pulumi.set(__self__, "facility_names", facility_names)
3028
+ if log_levels is not None:
3029
+ pulumi.set(__self__, "log_levels", log_levels)
3030
+ if name is not None:
3031
+ pulumi.set(__self__, "name", name)
3032
+ if streams is not None:
3033
+ pulumi.set(__self__, "streams", streams)
3034
+ if transform_kql is not None:
3035
+ pulumi.set(__self__, "transform_kql", transform_kql)
3036
+
3037
+ @property
3038
+ @pulumi.getter(name="facilityNames")
3039
+ def facility_names(self) -> Optional[Sequence[str]]:
3040
+ """
3041
+ The list of facility names.
3042
+ """
3043
+ return pulumi.get(self, "facility_names")
3044
+
3045
+ @property
3046
+ @pulumi.getter(name="logLevels")
3047
+ def log_levels(self) -> Optional[Sequence[str]]:
3048
+ """
3049
+ The log levels to collect.
3050
+ """
3051
+ return pulumi.get(self, "log_levels")
3052
+
3053
+ @property
3054
+ @pulumi.getter
3055
+ def name(self) -> Optional[str]:
3056
+ """
3057
+ A friendly name for the data source.
3058
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3059
+ """
3060
+ return pulumi.get(self, "name")
3061
+
3062
+ @property
3063
+ @pulumi.getter
3064
+ def streams(self) -> Optional[Sequence[str]]:
3065
+ """
3066
+ List of streams that this data source will be sent to.
3067
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3068
+ """
3069
+ return pulumi.get(self, "streams")
3070
+
3071
+ @property
3072
+ @pulumi.getter(name="transformKql")
3073
+ def transform_kql(self) -> Optional[str]:
3074
+ """
3075
+ The KQL query to transform the data source.
3076
+ """
3077
+ return pulumi.get(self, "transform_kql")
3078
+
3079
+
3080
+ @pulumi.output_type
3081
+ class UserAssignedIdentityResponse(dict):
3082
+ """
3083
+ User assigned identity properties
3084
+ """
3085
+ @staticmethod
3086
+ def __key_warning(key: str):
3087
+ suggest = None
3088
+ if key == "clientId":
3089
+ suggest = "client_id"
3090
+ elif key == "principalId":
3091
+ suggest = "principal_id"
3092
+
3093
+ if suggest:
3094
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
3095
+
3096
+ def __getitem__(self, key: str) -> Any:
3097
+ UserAssignedIdentityResponse.__key_warning(key)
3098
+ return super().__getitem__(key)
3099
+
3100
+ def get(self, key: str, default = None) -> Any:
3101
+ UserAssignedIdentityResponse.__key_warning(key)
3102
+ return super().get(key, default)
3103
+
3104
+ def __init__(__self__, *,
3105
+ client_id: str,
3106
+ principal_id: str):
3107
+ """
3108
+ User assigned identity properties
3109
+ :param str client_id: The client ID of the assigned identity.
3110
+ :param str principal_id: The principal ID of the assigned identity.
3111
+ """
3112
+ pulumi.set(__self__, "client_id", client_id)
3113
+ pulumi.set(__self__, "principal_id", principal_id)
3114
+
3115
+ @property
3116
+ @pulumi.getter(name="clientId")
3117
+ def client_id(self) -> str:
3118
+ """
3119
+ The client ID of the assigned identity.
3120
+ """
3121
+ return pulumi.get(self, "client_id")
3122
+
3123
+ @property
3124
+ @pulumi.getter(name="principalId")
3125
+ def principal_id(self) -> str:
3126
+ """
3127
+ The principal ID of the assigned identity.
3128
+ """
3129
+ return pulumi.get(self, "principal_id")
3130
+
3131
+
3132
+ @pulumi.output_type
3133
+ class WindowsEventLogDataSourceResponse(dict):
3134
+ """
3135
+ Definition of which Windows Event Log events will be collected and how they will be collected.
3136
+ Only collected from Windows machines.
3137
+ """
3138
+ @staticmethod
3139
+ def __key_warning(key: str):
3140
+ suggest = None
3141
+ if key == "transformKql":
3142
+ suggest = "transform_kql"
3143
+ elif key == "xPathQueries":
3144
+ suggest = "x_path_queries"
3145
+
3146
+ if suggest:
3147
+ pulumi.log.warn(f"Key '{key}' not found in WindowsEventLogDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
3148
+
3149
+ def __getitem__(self, key: str) -> Any:
3150
+ WindowsEventLogDataSourceResponse.__key_warning(key)
3151
+ return super().__getitem__(key)
3152
+
3153
+ def get(self, key: str, default = None) -> Any:
3154
+ WindowsEventLogDataSourceResponse.__key_warning(key)
3155
+ return super().get(key, default)
3156
+
3157
+ def __init__(__self__, *,
3158
+ name: Optional[str] = None,
3159
+ streams: Optional[Sequence[str]] = None,
3160
+ transform_kql: Optional[str] = None,
3161
+ x_path_queries: Optional[Sequence[str]] = None):
3162
+ """
3163
+ Definition of which Windows Event Log events will be collected and how they will be collected.
3164
+ Only collected from Windows machines.
3165
+ :param str name: A friendly name for the data source.
3166
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3167
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
3168
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3169
+ :param str transform_kql: The KQL query to transform the data source.
3170
+ :param Sequence[str] x_path_queries: A list of Windows Event Log queries in XPATH format.
3171
+ """
3172
+ if name is not None:
3173
+ pulumi.set(__self__, "name", name)
3174
+ if streams is not None:
3175
+ pulumi.set(__self__, "streams", streams)
3176
+ if transform_kql is not None:
3177
+ pulumi.set(__self__, "transform_kql", transform_kql)
3178
+ if x_path_queries is not None:
3179
+ pulumi.set(__self__, "x_path_queries", x_path_queries)
3180
+
3181
+ @property
3182
+ @pulumi.getter
3183
+ def name(self) -> Optional[str]:
3184
+ """
3185
+ A friendly name for the data source.
3186
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3187
+ """
3188
+ return pulumi.get(self, "name")
3189
+
3190
+ @property
3191
+ @pulumi.getter
3192
+ def streams(self) -> Optional[Sequence[str]]:
3193
+ """
3194
+ List of streams that this data source will be sent to.
3195
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3196
+ """
3197
+ return pulumi.get(self, "streams")
3198
+
3199
+ @property
3200
+ @pulumi.getter(name="transformKql")
3201
+ def transform_kql(self) -> Optional[str]:
3202
+ """
3203
+ The KQL query to transform the data source.
3204
+ """
3205
+ return pulumi.get(self, "transform_kql")
3206
+
3207
+ @property
3208
+ @pulumi.getter(name="xPathQueries")
3209
+ def x_path_queries(self) -> Optional[Sequence[str]]:
3210
+ """
3211
+ A list of Windows Event Log queries in XPATH format.
3212
+ """
3213
+ return pulumi.get(self, "x_path_queries")
3214
+
3215
+
3216
+ @pulumi.output_type
3217
+ class WindowsFirewallLogsDataSourceResponse(dict):
3218
+ """
3219
+ Enables Firewall logs to be collected by this data collection rule.
3220
+ """
3221
+ @staticmethod
3222
+ def __key_warning(key: str):
3223
+ suggest = None
3224
+ if key == "profileFilter":
3225
+ suggest = "profile_filter"
3226
+
3227
+ if suggest:
3228
+ pulumi.log.warn(f"Key '{key}' not found in WindowsFirewallLogsDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
3229
+
3230
+ def __getitem__(self, key: str) -> Any:
3231
+ WindowsFirewallLogsDataSourceResponse.__key_warning(key)
3232
+ return super().__getitem__(key)
3233
+
3234
+ def get(self, key: str, default = None) -> Any:
3235
+ WindowsFirewallLogsDataSourceResponse.__key_warning(key)
3236
+ return super().get(key, default)
3237
+
3238
+ def __init__(__self__, *,
3239
+ streams: Sequence[str],
3240
+ name: Optional[str] = None,
3241
+ profile_filter: Optional[Sequence[str]] = None):
3242
+ """
3243
+ Enables Firewall logs to be collected by this data collection rule.
3244
+ :param Sequence[str] streams: Firewall logs streams
3245
+ :param str name: A friendly name for the data source.
3246
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3247
+ :param Sequence[str] profile_filter: Firewall logs profile filter
3248
+ """
3249
+ pulumi.set(__self__, "streams", streams)
3250
+ if name is not None:
3251
+ pulumi.set(__self__, "name", name)
3252
+ if profile_filter is not None:
3253
+ pulumi.set(__self__, "profile_filter", profile_filter)
3254
+
3255
+ @property
3256
+ @pulumi.getter
3257
+ def streams(self) -> Sequence[str]:
3258
+ """
3259
+ Firewall logs streams
3260
+ """
3261
+ return pulumi.get(self, "streams")
3262
+
3263
+ @property
3264
+ @pulumi.getter
3265
+ def name(self) -> Optional[str]:
3266
+ """
3267
+ A friendly name for the data source.
3268
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3269
+ """
3270
+ return pulumi.get(self, "name")
3271
+
3272
+ @property
3273
+ @pulumi.getter(name="profileFilter")
3274
+ def profile_filter(self) -> Optional[Sequence[str]]:
3275
+ """
3276
+ Firewall logs profile filter
3277
+ """
3278
+ return pulumi.get(self, "profile_filter")
3279
+
3280
+