pulumi-azure-native 2.39.1a1714471729__py3-none-any.whl → 2.40.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 (256) hide show
  1. pulumi_azure_native/__init__.py +59 -1
  2. pulumi_azure_native/cache/__init__.py +3 -0
  3. pulumi_azure_native/cache/database.py +3 -3
  4. pulumi_azure_native/cache/enterprise_private_endpoint_connection.py +3 -3
  5. pulumi_azure_native/cache/get_database.py +2 -2
  6. pulumi_azure_native/cache/get_enterprise_private_endpoint_connection.py +2 -2
  7. pulumi_azure_native/cache/get_redis_enterprise.py +2 -2
  8. pulumi_azure_native/cache/list_database_keys.py +2 -2
  9. pulumi_azure_native/cache/redis_enterprise.py +3 -3
  10. pulumi_azure_native/cache/v20201001preview/redis_enterprise.py +1 -1
  11. pulumi_azure_native/cache/v20230301preview/database.py +1 -1
  12. pulumi_azure_native/cache/v20230301preview/enterprise_private_endpoint_connection.py +1 -1
  13. pulumi_azure_native/cache/v20230301preview/redis_enterprise.py +1 -1
  14. pulumi_azure_native/cache/v20230701/database.py +1 -1
  15. pulumi_azure_native/cache/v20230701/enterprise_private_endpoint_connection.py +1 -1
  16. pulumi_azure_native/cache/v20230701/redis_enterprise.py +1 -1
  17. pulumi_azure_native/cache/v20230801preview/database.py +1 -1
  18. pulumi_azure_native/cache/v20230801preview/enterprise_private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/cache/v20230801preview/redis_enterprise.py +1 -1
  20. pulumi_azure_native/cache/v20231001preview/database.py +1 -1
  21. pulumi_azure_native/cache/v20231001preview/enterprise_private_endpoint_connection.py +1 -1
  22. pulumi_azure_native/cache/v20231001preview/redis_enterprise.py +1 -1
  23. pulumi_azure_native/cache/v20231101/database.py +1 -1
  24. pulumi_azure_native/cache/v20231101/enterprise_private_endpoint_connection.py +1 -1
  25. pulumi_azure_native/cache/v20231101/redis_enterprise.py +1 -1
  26. pulumi_azure_native/cache/v20240201/database.py +1 -1
  27. pulumi_azure_native/cache/v20240201/enterprise_private_endpoint_connection.py +1 -1
  28. pulumi_azure_native/cache/v20240201/redis_enterprise.py +1 -1
  29. pulumi_azure_native/cache/v20240301preview/__init__.py +17 -0
  30. pulumi_azure_native/cache/v20240301preview/_enums.py +124 -0
  31. pulumi_azure_native/cache/v20240301preview/_inputs.py +438 -0
  32. pulumi_azure_native/cache/v20240301preview/database.py +439 -0
  33. pulumi_azure_native/cache/v20240301preview/enterprise_private_endpoint_connection.py +227 -0
  34. pulumi_azure_native/cache/v20240301preview/get_database.py +253 -0
  35. pulumi_azure_native/cache/v20240301preview/get_enterprise_private_endpoint_connection.py +149 -0
  36. pulumi_azure_native/cache/v20240301preview/get_redis_enterprise.py +261 -0
  37. pulumi_azure_native/cache/v20240301preview/list_database_keys.py +96 -0
  38. pulumi_azure_native/cache/v20240301preview/outputs.py +740 -0
  39. pulumi_azure_native/cache/v20240301preview/redis_enterprise.py +410 -0
  40. pulumi_azure_native/containerservice/__init__.py +5 -0
  41. pulumi_azure_native/containerservice/_enums.py +23 -0
  42. pulumi_azure_native/containerservice/_inputs.py +98 -0
  43. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  44. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  45. pulumi_azure_native/containerservice/get_load_balancer.py +203 -0
  46. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  47. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  48. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  49. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  50. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  51. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  52. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  53. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  54. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  55. pulumi_azure_native/containerservice/load_balancer.py +365 -0
  56. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  57. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  58. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  59. pulumi_azure_native/containerservice/outputs.py +103 -0
  60. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  61. pulumi_azure_native/containerservice/snapshot.py +3 -3
  62. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  63. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  64. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  65. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  66. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  67. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  68. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  69. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  70. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  71. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  72. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  73. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  74. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  75. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  76. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  77. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  78. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  79. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  80. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  81. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  82. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  83. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  84. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  85. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  86. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  87. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  88. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  89. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  90. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  91. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  92. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  93. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  94. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  95. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  96. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  97. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  98. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  99. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  100. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  101. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  102. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  104. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  105. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  106. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  107. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  108. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  109. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  110. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  111. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  112. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  113. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  114. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  115. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  116. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  117. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  118. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  119. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  120. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  121. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  122. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  123. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  124. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  125. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  126. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  127. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  128. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  129. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  130. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  131. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  132. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  133. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  134. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  135. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  136. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  137. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  138. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  139. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  140. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  141. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  142. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  143. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  144. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  145. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  146. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  147. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  148. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  149. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  150. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  151. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  152. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  153. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  154. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  155. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  156. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  157. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  158. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  159. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  160. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  161. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  162. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  163. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  164. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  165. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
  166. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  167. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  168. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  169. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  170. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  171. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  172. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  173. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  174. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  175. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  176. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  177. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  178. pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
  179. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  180. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  181. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  182. pulumi_azure_native/containerservice/v20240302preview/__init__.py +29 -0
  183. pulumi_azure_native/containerservice/v20240302preview/_enums.py +840 -0
  184. pulumi_azure_native/containerservice/v20240302preview/_inputs.py +6966 -0
  185. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1686 -0
  186. pulumi_azure_native/containerservice/v20240302preview/get_agent_pool.py +812 -0
  187. pulumi_azure_native/containerservice/v20240302preview/get_load_balancer.py +201 -0
  188. pulumi_azure_native/containerservice/v20240302preview/get_maintenance_configuration.py +162 -0
  189. pulumi_azure_native/containerservice/v20240302preview/get_managed_cluster.py +833 -0
  190. pulumi_azure_native/containerservice/v20240302preview/get_managed_cluster_snapshot.py +183 -0
  191. pulumi_azure_native/containerservice/v20240302preview/get_private_endpoint_connection.py +149 -0
  192. pulumi_azure_native/containerservice/v20240302preview/get_snapshot.py +248 -0
  193. pulumi_azure_native/containerservice/v20240302preview/get_trusted_access_role_binding.py +162 -0
  194. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_admin_credentials.py +84 -0
  195. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
  196. pulumi_azure_native/containerservice/v20240302preview/list_managed_cluster_user_credentials.py +89 -0
  197. pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +363 -0
  198. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +274 -0
  199. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1590 -0
  200. pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +292 -0
  201. pulumi_azure_native/containerservice/v20240302preview/outputs.py +8118 -0
  202. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +246 -0
  203. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +342 -0
  204. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +255 -0
  205. pulumi_azure_native/monitor/__init__.py +7 -0
  206. pulumi_azure_native/monitor/_enums.py +140 -0
  207. pulumi_azure_native/monitor/_inputs.py +1122 -0
  208. pulumi_azure_native/monitor/azure_monitor_workspace.py +5 -1
  209. pulumi_azure_native/monitor/get_azure_monitor_workspace.py +4 -0
  210. pulumi_azure_native/monitor/get_pipeline_group.py +250 -0
  211. pulumi_azure_native/monitor/outputs.py +1338 -182
  212. pulumi_azure_native/monitor/pipeline_group.py +443 -0
  213. pulumi_azure_native/monitor/v20230403/azure_monitor_workspace.py +1 -1
  214. pulumi_azure_native/monitor/v20231001preview/__init__.py +14 -0
  215. pulumi_azure_native/monitor/v20231001preview/_enums.py +140 -0
  216. pulumi_azure_native/monitor/v20231001preview/_inputs.py +1122 -0
  217. pulumi_azure_native/monitor/v20231001preview/azure_monitor_workspace.py +282 -0
  218. pulumi_azure_native/monitor/v20231001preview/get_azure_monitor_workspace.py +222 -0
  219. pulumi_azure_native/monitor/v20231001preview/get_pipeline_group.py +248 -0
  220. pulumi_azure_native/monitor/v20231001preview/outputs.py +1641 -0
  221. pulumi_azure_native/monitor/v20231001preview/pipeline_group.py +441 -0
  222. pulumi_azure_native/portalservices/__init__.py +18 -0
  223. pulumi_azure_native/portalservices/copilot_setting.py +165 -0
  224. pulumi_azure_native/portalservices/get_copilot_setting.py +132 -0
  225. pulumi_azure_native/portalservices/outputs.py +125 -0
  226. pulumi_azure_native/portalservices/v20240401preview/__init__.py +10 -0
  227. pulumi_azure_native/portalservices/v20240401preview/copilot_setting.py +163 -0
  228. pulumi_azure_native/portalservices/v20240401preview/get_copilot_setting.py +130 -0
  229. pulumi_azure_native/portalservices/v20240401preview/outputs.py +125 -0
  230. pulumi_azure_native/resources/_inputs.py +2 -2
  231. pulumi_azure_native/resources/deployment_stack_at_management_group.py +5 -1
  232. pulumi_azure_native/resources/deployment_stack_at_resource_group.py +5 -1
  233. pulumi_azure_native/resources/deployment_stack_at_subscription.py +5 -1
  234. pulumi_azure_native/resources/get_deployment_stack_at_management_group.py +4 -0
  235. pulumi_azure_native/resources/get_deployment_stack_at_resource_group.py +4 -0
  236. pulumi_azure_native/resources/get_deployment_stack_at_subscription.py +4 -0
  237. pulumi_azure_native/resources/outputs.py +2 -2
  238. pulumi_azure_native/resources/v20220801preview/_inputs.py +2 -2
  239. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_management_group.py +1 -1
  240. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_resource_group.py +1 -1
  241. pulumi_azure_native/resources/v20220801preview/deployment_stack_at_subscription.py +1 -1
  242. pulumi_azure_native/resources/v20220801preview/outputs.py +2 -2
  243. pulumi_azure_native/resources/v20240301/__init__.py +6 -0
  244. pulumi_azure_native/resources/v20240301/_enums.py +28 -0
  245. pulumi_azure_native/resources/v20240301/_inputs.py +302 -4
  246. pulumi_azure_native/resources/v20240301/deployment_stack_at_management_group.py +589 -0
  247. pulumi_azure_native/resources/v20240301/deployment_stack_at_resource_group.py +589 -0
  248. pulumi_azure_native/resources/v20240301/deployment_stack_at_subscription.py +568 -0
  249. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_management_group.py +365 -0
  250. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_resource_group.py +365 -0
  251. pulumi_azure_native/resources/v20240301/get_deployment_stack_at_subscription.py +360 -0
  252. pulumi_azure_native/resources/v20240301/outputs.py +677 -4
  253. {pulumi_azure_native-2.39.1a1714471729.dist-info → pulumi_azure_native-2.40.0.dist-info}/METADATA +1 -1
  254. {pulumi_azure_native-2.39.1a1714471729.dist-info → pulumi_azure_native-2.40.0.dist-info}/RECORD +256 -194
  255. {pulumi_azure_native-2.39.1a1714471729.dist-info → pulumi_azure_native-2.40.0.dist-info}/WHEEL +0 -0
  256. {pulumi_azure_native-2.39.1a1714471729.dist-info → pulumi_azure_native-2.40.0.dist-info}/top_level.txt +0 -0
@@ -9,329 +9,1396 @@ import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
  from . import outputs
12
+ from ._enums import *
12
13
 
13
14
  __all__ = [
15
+ 'AzureMonitorWorkspaceLogsApiConfigResponse',
16
+ 'AzureMonitorWorkspaceLogsExporterResponse',
14
17
  'AzureMonitorWorkspaceResponseDefaultIngestionSettings',
15
18
  'AzureMonitorWorkspaceResponseMetrics',
19
+ 'BatchProcessorResponse',
20
+ 'CacheConfigurationResponse',
21
+ 'ConcurrencyConfigurationResponse',
22
+ 'ExporterResponse',
23
+ 'ExtendedLocationResponse',
24
+ 'NetworkingConfigurationResponse',
25
+ 'NetworkingRouteResponse',
26
+ 'OtlpReceiverResponse',
27
+ 'PersistenceConfigurationsResponse',
28
+ 'PipelineResponse',
16
29
  'PrivateEndpointConnectionResponse',
17
30
  'PrivateEndpointResponse',
18
31
  'PrivateLinkServiceConnectionStateResponse',
32
+ 'ProcessorResponse',
33
+ 'ReceiverResponse',
34
+ 'RecordMapResponse',
35
+ 'ResourceMapResponse',
36
+ 'SchemaMapResponse',
37
+ 'ScopeMapResponse',
38
+ 'ServiceResponse',
39
+ 'SyslogReceiverResponse',
19
40
  'SystemDataResponse',
41
+ 'TcpExporterResponse',
42
+ 'UdpReceiverResponse',
20
43
  ]
21
44
 
45
+ @pulumi.output_type
46
+ class AzureMonitorWorkspaceLogsApiConfigResponse(dict):
47
+ """
48
+ Azure Monitor Workspace Logs Api configurations.
49
+ """
50
+ @staticmethod
51
+ def __key_warning(key: str):
52
+ suggest = None
53
+ if key == "dataCollectionEndpointUrl":
54
+ suggest = "data_collection_endpoint_url"
55
+ elif key == "dataCollectionRule":
56
+ suggest = "data_collection_rule"
57
+
58
+ if suggest:
59
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceLogsApiConfigResponse. Access the value via the '{suggest}' property getter instead.")
60
+
61
+ def __getitem__(self, key: str) -> Any:
62
+ AzureMonitorWorkspaceLogsApiConfigResponse.__key_warning(key)
63
+ return super().__getitem__(key)
64
+
65
+ def get(self, key: str, default = None) -> Any:
66
+ AzureMonitorWorkspaceLogsApiConfigResponse.__key_warning(key)
67
+ return super().get(key, default)
68
+
69
+ def __init__(__self__, *,
70
+ data_collection_endpoint_url: str,
71
+ data_collection_rule: str,
72
+ schema: 'outputs.SchemaMapResponse',
73
+ stream: str):
74
+ """
75
+ Azure Monitor Workspace Logs Api configurations.
76
+ :param str data_collection_endpoint_url: Data collection endpoint ingestion url.
77
+ :param str data_collection_rule: Data Collection Rule (DCR) immutable id.
78
+ :param 'SchemaMapResponse' schema: The schema mapping for incoming data.
79
+ :param str stream: Stream name in destination. Azure Monitor stream is related to the destination table.
80
+ """
81
+ pulumi.set(__self__, "data_collection_endpoint_url", data_collection_endpoint_url)
82
+ pulumi.set(__self__, "data_collection_rule", data_collection_rule)
83
+ pulumi.set(__self__, "schema", schema)
84
+ pulumi.set(__self__, "stream", stream)
85
+
86
+ @property
87
+ @pulumi.getter(name="dataCollectionEndpointUrl")
88
+ def data_collection_endpoint_url(self) -> str:
89
+ """
90
+ Data collection endpoint ingestion url.
91
+ """
92
+ return pulumi.get(self, "data_collection_endpoint_url")
93
+
94
+ @property
95
+ @pulumi.getter(name="dataCollectionRule")
96
+ def data_collection_rule(self) -> str:
97
+ """
98
+ Data Collection Rule (DCR) immutable id.
99
+ """
100
+ return pulumi.get(self, "data_collection_rule")
101
+
102
+ @property
103
+ @pulumi.getter
104
+ def schema(self) -> 'outputs.SchemaMapResponse':
105
+ """
106
+ The schema mapping for incoming data.
107
+ """
108
+ return pulumi.get(self, "schema")
109
+
110
+ @property
111
+ @pulumi.getter
112
+ def stream(self) -> str:
113
+ """
114
+ Stream name in destination. Azure Monitor stream is related to the destination table.
115
+ """
116
+ return pulumi.get(self, "stream")
117
+
118
+
119
+ @pulumi.output_type
120
+ class AzureMonitorWorkspaceLogsExporterResponse(dict):
121
+ """
122
+ Azure Monitor Workspace Logs specific configurations.
123
+ """
124
+ def __init__(__self__, *,
125
+ api: 'outputs.AzureMonitorWorkspaceLogsApiConfigResponse',
126
+ cache: Optional['outputs.CacheConfigurationResponse'] = None,
127
+ concurrency: Optional['outputs.ConcurrencyConfigurationResponse'] = None):
128
+ """
129
+ Azure Monitor Workspace Logs specific configurations.
130
+ :param 'AzureMonitorWorkspaceLogsApiConfigResponse' api: API configurations for Azure Monitor workspace exporter.
131
+ :param 'CacheConfigurationResponse' cache: Cache configurations.
132
+ :param 'ConcurrencyConfigurationResponse' concurrency: Concurrency configuration for the exporter.
133
+ """
134
+ pulumi.set(__self__, "api", api)
135
+ if cache is not None:
136
+ pulumi.set(__self__, "cache", cache)
137
+ if concurrency is not None:
138
+ pulumi.set(__self__, "concurrency", concurrency)
139
+
140
+ @property
141
+ @pulumi.getter
142
+ def api(self) -> 'outputs.AzureMonitorWorkspaceLogsApiConfigResponse':
143
+ """
144
+ API configurations for Azure Monitor workspace exporter.
145
+ """
146
+ return pulumi.get(self, "api")
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def cache(self) -> Optional['outputs.CacheConfigurationResponse']:
151
+ """
152
+ Cache configurations.
153
+ """
154
+ return pulumi.get(self, "cache")
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def concurrency(self) -> Optional['outputs.ConcurrencyConfigurationResponse']:
159
+ """
160
+ Concurrency configuration for the exporter.
161
+ """
162
+ return pulumi.get(self, "concurrency")
163
+
164
+
22
165
  @pulumi.output_type
23
166
  class AzureMonitorWorkspaceResponseDefaultIngestionSettings(dict):
24
167
  """
25
- The Data Collection Rule and Endpoint used for ingestion by default.
168
+ The Data Collection Rule and Endpoint used for ingestion by default.
169
+ """
170
+ @staticmethod
171
+ def __key_warning(key: str):
172
+ suggest = None
173
+ if key == "dataCollectionEndpointResourceId":
174
+ suggest = "data_collection_endpoint_resource_id"
175
+ elif key == "dataCollectionRuleResourceId":
176
+ suggest = "data_collection_rule_resource_id"
177
+
178
+ if suggest:
179
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseDefaultIngestionSettings. Access the value via the '{suggest}' property getter instead.")
180
+
181
+ def __getitem__(self, key: str) -> Any:
182
+ AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
183
+ return super().__getitem__(key)
184
+
185
+ def get(self, key: str, default = None) -> Any:
186
+ AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
187
+ return super().get(key, default)
188
+
189
+ def __init__(__self__, *,
190
+ data_collection_endpoint_resource_id: str,
191
+ data_collection_rule_resource_id: str):
192
+ """
193
+ The Data Collection Rule and Endpoint used for ingestion by default.
194
+ :param str data_collection_endpoint_resource_id: The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
195
+ :param str data_collection_rule_resource_id: The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
196
+ """
197
+ pulumi.set(__self__, "data_collection_endpoint_resource_id", data_collection_endpoint_resource_id)
198
+ pulumi.set(__self__, "data_collection_rule_resource_id", data_collection_rule_resource_id)
199
+
200
+ @property
201
+ @pulumi.getter(name="dataCollectionEndpointResourceId")
202
+ def data_collection_endpoint_resource_id(self) -> str:
203
+ """
204
+ The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
205
+ """
206
+ return pulumi.get(self, "data_collection_endpoint_resource_id")
207
+
208
+ @property
209
+ @pulumi.getter(name="dataCollectionRuleResourceId")
210
+ def data_collection_rule_resource_id(self) -> str:
211
+ """
212
+ The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
213
+ """
214
+ return pulumi.get(self, "data_collection_rule_resource_id")
215
+
216
+
217
+ @pulumi.output_type
218
+ class AzureMonitorWorkspaceResponseMetrics(dict):
219
+ """
220
+ Properties related to the metrics container in the Azure Monitor Workspace
221
+ """
222
+ @staticmethod
223
+ def __key_warning(key: str):
224
+ suggest = None
225
+ if key == "internalId":
226
+ suggest = "internal_id"
227
+ elif key == "prometheusQueryEndpoint":
228
+ suggest = "prometheus_query_endpoint"
229
+
230
+ if suggest:
231
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseMetrics. Access the value via the '{suggest}' property getter instead.")
232
+
233
+ def __getitem__(self, key: str) -> Any:
234
+ AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
235
+ return super().__getitem__(key)
236
+
237
+ def get(self, key: str, default = None) -> Any:
238
+ AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
239
+ return super().get(key, default)
240
+
241
+ def __init__(__self__, *,
242
+ internal_id: str,
243
+ prometheus_query_endpoint: str):
244
+ """
245
+ Properties related to the metrics container in the Azure Monitor Workspace
246
+ :param str internal_id: An internal identifier for the metrics container. Only to be used by the system
247
+ :param str prometheus_query_endpoint: The Prometheus query endpoint for the Azure Monitor Workspace
248
+ """
249
+ pulumi.set(__self__, "internal_id", internal_id)
250
+ pulumi.set(__self__, "prometheus_query_endpoint", prometheus_query_endpoint)
251
+
252
+ @property
253
+ @pulumi.getter(name="internalId")
254
+ def internal_id(self) -> str:
255
+ """
256
+ An internal identifier for the metrics container. Only to be used by the system
257
+ """
258
+ return pulumi.get(self, "internal_id")
259
+
260
+ @property
261
+ @pulumi.getter(name="prometheusQueryEndpoint")
262
+ def prometheus_query_endpoint(self) -> str:
263
+ """
264
+ The Prometheus query endpoint for the Azure Monitor Workspace
265
+ """
266
+ return pulumi.get(self, "prometheus_query_endpoint")
267
+
268
+
269
+ @pulumi.output_type
270
+ class BatchProcessorResponse(dict):
271
+ """
272
+ Batch processor.
273
+ """
274
+ @staticmethod
275
+ def __key_warning(key: str):
276
+ suggest = None
277
+ if key == "batchSize":
278
+ suggest = "batch_size"
279
+
280
+ if suggest:
281
+ pulumi.log.warn(f"Key '{key}' not found in BatchProcessorResponse. Access the value via the '{suggest}' property getter instead.")
282
+
283
+ def __getitem__(self, key: str) -> Any:
284
+ BatchProcessorResponse.__key_warning(key)
285
+ return super().__getitem__(key)
286
+
287
+ def get(self, key: str, default = None) -> Any:
288
+ BatchProcessorResponse.__key_warning(key)
289
+ return super().get(key, default)
290
+
291
+ def __init__(__self__, *,
292
+ batch_size: Optional[int] = None,
293
+ timeout: Optional[int] = None):
294
+ """
295
+ Batch processor.
296
+ :param int batch_size: Size of the batch.
297
+ :param int timeout: Timeout in milliseconds.
298
+ """
299
+ if batch_size is None:
300
+ batch_size = 8192
301
+ if batch_size is not None:
302
+ pulumi.set(__self__, "batch_size", batch_size)
303
+ if timeout is None:
304
+ timeout = 200
305
+ if timeout is not None:
306
+ pulumi.set(__self__, "timeout", timeout)
307
+
308
+ @property
309
+ @pulumi.getter(name="batchSize")
310
+ def batch_size(self) -> Optional[int]:
311
+ """
312
+ Size of the batch.
313
+ """
314
+ return pulumi.get(self, "batch_size")
315
+
316
+ @property
317
+ @pulumi.getter
318
+ def timeout(self) -> Optional[int]:
319
+ """
320
+ Timeout in milliseconds.
321
+ """
322
+ return pulumi.get(self, "timeout")
323
+
324
+
325
+ @pulumi.output_type
326
+ class CacheConfigurationResponse(dict):
327
+ """
328
+ Cache configurations.
329
+ """
330
+ @staticmethod
331
+ def __key_warning(key: str):
332
+ suggest = None
333
+ if key == "maxStorageUsage":
334
+ suggest = "max_storage_usage"
335
+ elif key == "retentionPeriod":
336
+ suggest = "retention_period"
337
+
338
+ if suggest:
339
+ pulumi.log.warn(f"Key '{key}' not found in CacheConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
340
+
341
+ def __getitem__(self, key: str) -> Any:
342
+ CacheConfigurationResponse.__key_warning(key)
343
+ return super().__getitem__(key)
344
+
345
+ def get(self, key: str, default = None) -> Any:
346
+ CacheConfigurationResponse.__key_warning(key)
347
+ return super().get(key, default)
348
+
349
+ def __init__(__self__, *,
350
+ max_storage_usage: Optional[int] = None,
351
+ retention_period: Optional[int] = None):
352
+ """
353
+ Cache configurations.
354
+ :param int max_storage_usage: Max storage usage in megabytes.
355
+ :param int retention_period: Retention period in minutes.
356
+ """
357
+ if max_storage_usage is not None:
358
+ pulumi.set(__self__, "max_storage_usage", max_storage_usage)
359
+ if retention_period is not None:
360
+ pulumi.set(__self__, "retention_period", retention_period)
361
+
362
+ @property
363
+ @pulumi.getter(name="maxStorageUsage")
364
+ def max_storage_usage(self) -> Optional[int]:
365
+ """
366
+ Max storage usage in megabytes.
367
+ """
368
+ return pulumi.get(self, "max_storage_usage")
369
+
370
+ @property
371
+ @pulumi.getter(name="retentionPeriod")
372
+ def retention_period(self) -> Optional[int]:
373
+ """
374
+ Retention period in minutes.
375
+ """
376
+ return pulumi.get(self, "retention_period")
377
+
378
+
379
+ @pulumi.output_type
380
+ class ConcurrencyConfigurationResponse(dict):
381
+ """
382
+ Concurrent publishing configuration.
383
+ """
384
+ @staticmethod
385
+ def __key_warning(key: str):
386
+ suggest = None
387
+ if key == "batchQueueSize":
388
+ suggest = "batch_queue_size"
389
+ elif key == "workerCount":
390
+ suggest = "worker_count"
391
+
392
+ if suggest:
393
+ pulumi.log.warn(f"Key '{key}' not found in ConcurrencyConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
394
+
395
+ def __getitem__(self, key: str) -> Any:
396
+ ConcurrencyConfigurationResponse.__key_warning(key)
397
+ return super().__getitem__(key)
398
+
399
+ def get(self, key: str, default = None) -> Any:
400
+ ConcurrencyConfigurationResponse.__key_warning(key)
401
+ return super().get(key, default)
402
+
403
+ def __init__(__self__, *,
404
+ batch_queue_size: Optional[int] = None,
405
+ worker_count: Optional[int] = None):
406
+ """
407
+ Concurrent publishing configuration.
408
+ :param int batch_queue_size: Size of the queue for log batches.
409
+ :param int worker_count: Number of parallel workers processing the log queues.
410
+ """
411
+ if batch_queue_size is None:
412
+ batch_queue_size = 100
413
+ if batch_queue_size is not None:
414
+ pulumi.set(__self__, "batch_queue_size", batch_queue_size)
415
+ if worker_count is None:
416
+ worker_count = 4
417
+ if worker_count is not None:
418
+ pulumi.set(__self__, "worker_count", worker_count)
419
+
420
+ @property
421
+ @pulumi.getter(name="batchQueueSize")
422
+ def batch_queue_size(self) -> Optional[int]:
423
+ """
424
+ Size of the queue for log batches.
425
+ """
426
+ return pulumi.get(self, "batch_queue_size")
427
+
428
+ @property
429
+ @pulumi.getter(name="workerCount")
430
+ def worker_count(self) -> Optional[int]:
431
+ """
432
+ Number of parallel workers processing the log queues.
433
+ """
434
+ return pulumi.get(self, "worker_count")
435
+
436
+
437
+ @pulumi.output_type
438
+ class ExporterResponse(dict):
439
+ """
440
+ Exporter Info.
441
+ """
442
+ @staticmethod
443
+ def __key_warning(key: str):
444
+ suggest = None
445
+ if key == "azureMonitorWorkspaceLogs":
446
+ suggest = "azure_monitor_workspace_logs"
447
+
448
+ if suggest:
449
+ pulumi.log.warn(f"Key '{key}' not found in ExporterResponse. Access the value via the '{suggest}' property getter instead.")
450
+
451
+ def __getitem__(self, key: str) -> Any:
452
+ ExporterResponse.__key_warning(key)
453
+ return super().__getitem__(key)
454
+
455
+ def get(self, key: str, default = None) -> Any:
456
+ ExporterResponse.__key_warning(key)
457
+ return super().get(key, default)
458
+
459
+ def __init__(__self__, *,
460
+ name: str,
461
+ type: str,
462
+ azure_monitor_workspace_logs: Optional['outputs.AzureMonitorWorkspaceLogsExporterResponse'] = None,
463
+ tcp: Optional['outputs.TcpExporterResponse'] = None):
464
+ """
465
+ Exporter Info.
466
+ :param str name: The name of exporter.
467
+ :param str type: The type of exporter.
468
+ :param 'AzureMonitorWorkspaceLogsExporterResponse' azure_monitor_workspace_logs: Azure Monitor Workspace Logs specific configurations.
469
+ :param 'TcpExporterResponse' tcp: TCP based exporter. Used for pipelineGroup exporter.
470
+ """
471
+ pulumi.set(__self__, "name", name)
472
+ pulumi.set(__self__, "type", type)
473
+ if azure_monitor_workspace_logs is not None:
474
+ pulumi.set(__self__, "azure_monitor_workspace_logs", azure_monitor_workspace_logs)
475
+ if tcp is not None:
476
+ pulumi.set(__self__, "tcp", tcp)
477
+
478
+ @property
479
+ @pulumi.getter
480
+ def name(self) -> str:
481
+ """
482
+ The name of exporter.
483
+ """
484
+ return pulumi.get(self, "name")
485
+
486
+ @property
487
+ @pulumi.getter
488
+ def type(self) -> str:
489
+ """
490
+ The type of exporter.
491
+ """
492
+ return pulumi.get(self, "type")
493
+
494
+ @property
495
+ @pulumi.getter(name="azureMonitorWorkspaceLogs")
496
+ def azure_monitor_workspace_logs(self) -> Optional['outputs.AzureMonitorWorkspaceLogsExporterResponse']:
497
+ """
498
+ Azure Monitor Workspace Logs specific configurations.
499
+ """
500
+ return pulumi.get(self, "azure_monitor_workspace_logs")
501
+
502
+ @property
503
+ @pulumi.getter
504
+ def tcp(self) -> Optional['outputs.TcpExporterResponse']:
505
+ """
506
+ TCP based exporter. Used for pipelineGroup exporter.
507
+ """
508
+ return pulumi.get(self, "tcp")
509
+
510
+
511
+ @pulumi.output_type
512
+ class ExtendedLocationResponse(dict):
513
+ """
514
+ The extended location info.
515
+ """
516
+ def __init__(__self__, *,
517
+ name: str,
518
+ type: str):
519
+ """
520
+ The extended location info.
521
+ :param str name: The name of extended location.
522
+ :param str type: The type of extended location.
523
+ """
524
+ pulumi.set(__self__, "name", name)
525
+ pulumi.set(__self__, "type", type)
526
+
527
+ @property
528
+ @pulumi.getter
529
+ def name(self) -> str:
530
+ """
531
+ The name of extended location.
532
+ """
533
+ return pulumi.get(self, "name")
534
+
535
+ @property
536
+ @pulumi.getter
537
+ def type(self) -> str:
538
+ """
539
+ The type of extended location.
540
+ """
541
+ return pulumi.get(self, "type")
542
+
543
+
544
+ @pulumi.output_type
545
+ class NetworkingConfigurationResponse(dict):
546
+ """
547
+ Networking configuration for the pipeline group instance.
548
+ """
549
+ @staticmethod
550
+ def __key_warning(key: str):
551
+ suggest = None
552
+ if key == "externalNetworkingMode":
553
+ suggest = "external_networking_mode"
554
+
555
+ if suggest:
556
+ pulumi.log.warn(f"Key '{key}' not found in NetworkingConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
557
+
558
+ def __getitem__(self, key: str) -> Any:
559
+ NetworkingConfigurationResponse.__key_warning(key)
560
+ return super().__getitem__(key)
561
+
562
+ def get(self, key: str, default = None) -> Any:
563
+ NetworkingConfigurationResponse.__key_warning(key)
564
+ return super().get(key, default)
565
+
566
+ def __init__(__self__, *,
567
+ external_networking_mode: str,
568
+ routes: Sequence['outputs.NetworkingRouteResponse'],
569
+ host: Optional[str] = None):
570
+ """
571
+ Networking configuration for the pipeline group instance.
572
+ :param str external_networking_mode: External networking mode.
573
+ :param Sequence['NetworkingRouteResponse'] routes: Networking routes configuration.
574
+ :param str host: The address exposed on the cluster. Example: azuremonitorpipeline.contoso.com.
575
+ """
576
+ pulumi.set(__self__, "external_networking_mode", external_networking_mode)
577
+ pulumi.set(__self__, "routes", routes)
578
+ if host is not None:
579
+ pulumi.set(__self__, "host", host)
580
+
581
+ @property
582
+ @pulumi.getter(name="externalNetworkingMode")
583
+ def external_networking_mode(self) -> str:
584
+ """
585
+ External networking mode.
586
+ """
587
+ return pulumi.get(self, "external_networking_mode")
588
+
589
+ @property
590
+ @pulumi.getter
591
+ def routes(self) -> Sequence['outputs.NetworkingRouteResponse']:
592
+ """
593
+ Networking routes configuration.
594
+ """
595
+ return pulumi.get(self, "routes")
596
+
597
+ @property
598
+ @pulumi.getter
599
+ def host(self) -> Optional[str]:
600
+ """
601
+ The address exposed on the cluster. Example: azuremonitorpipeline.contoso.com.
602
+ """
603
+ return pulumi.get(self, "host")
604
+
605
+
606
+ @pulumi.output_type
607
+ class NetworkingRouteResponse(dict):
608
+ """
609
+ Networking route configuration.
610
+ """
611
+ def __init__(__self__, *,
612
+ receiver: str,
613
+ path: Optional[str] = None,
614
+ port: Optional[int] = None,
615
+ subdomain: Optional[str] = None):
616
+ """
617
+ Networking route configuration.
618
+ :param str receiver: The name of the previously defined receiver.
619
+ :param str path: Route path.
620
+ :param int port: The port that will be configured externally. If not specified, it will use the port from the receiver definition.
621
+ :param str subdomain: Route subdomain.
622
+ """
623
+ pulumi.set(__self__, "receiver", receiver)
624
+ if path is not None:
625
+ pulumi.set(__self__, "path", path)
626
+ if port is not None:
627
+ pulumi.set(__self__, "port", port)
628
+ if subdomain is not None:
629
+ pulumi.set(__self__, "subdomain", subdomain)
630
+
631
+ @property
632
+ @pulumi.getter
633
+ def receiver(self) -> str:
634
+ """
635
+ The name of the previously defined receiver.
636
+ """
637
+ return pulumi.get(self, "receiver")
638
+
639
+ @property
640
+ @pulumi.getter
641
+ def path(self) -> Optional[str]:
642
+ """
643
+ Route path.
644
+ """
645
+ return pulumi.get(self, "path")
646
+
647
+ @property
648
+ @pulumi.getter
649
+ def port(self) -> Optional[int]:
650
+ """
651
+ The port that will be configured externally. If not specified, it will use the port from the receiver definition.
652
+ """
653
+ return pulumi.get(self, "port")
654
+
655
+ @property
656
+ @pulumi.getter
657
+ def subdomain(self) -> Optional[str]:
658
+ """
659
+ Route subdomain.
660
+ """
661
+ return pulumi.get(self, "subdomain")
662
+
663
+
664
+ @pulumi.output_type
665
+ class OtlpReceiverResponse(dict):
666
+ """
667
+ OTLP Receiver.
668
+ """
669
+ def __init__(__self__, *,
670
+ endpoint: str):
671
+ """
672
+ OTLP Receiver.
673
+ :param str endpoint: OTLP GRPC endpoint definition. Example: 0.0.0.0:<port>.
674
+ """
675
+ pulumi.set(__self__, "endpoint", endpoint)
676
+
677
+ @property
678
+ @pulumi.getter
679
+ def endpoint(self) -> str:
680
+ """
681
+ OTLP GRPC endpoint definition. Example: 0.0.0.0:<port>.
682
+ """
683
+ return pulumi.get(self, "endpoint")
684
+
685
+
686
+ @pulumi.output_type
687
+ class PersistenceConfigurationsResponse(dict):
688
+ """
689
+ Persistence options to all pipelines in the instance.
690
+ """
691
+ @staticmethod
692
+ def __key_warning(key: str):
693
+ suggest = None
694
+ if key == "persistentVolumeName":
695
+ suggest = "persistent_volume_name"
696
+
697
+ if suggest:
698
+ pulumi.log.warn(f"Key '{key}' not found in PersistenceConfigurationsResponse. Access the value via the '{suggest}' property getter instead.")
699
+
700
+ def __getitem__(self, key: str) -> Any:
701
+ PersistenceConfigurationsResponse.__key_warning(key)
702
+ return super().__getitem__(key)
703
+
704
+ def get(self, key: str, default = None) -> Any:
705
+ PersistenceConfigurationsResponse.__key_warning(key)
706
+ return super().get(key, default)
707
+
708
+ def __init__(__self__, *,
709
+ persistent_volume_name: str):
710
+ """
711
+ Persistence options to all pipelines in the instance.
712
+ :param str persistent_volume_name: The name of the mounted persistent volume.
713
+ """
714
+ pulumi.set(__self__, "persistent_volume_name", persistent_volume_name)
715
+
716
+ @property
717
+ @pulumi.getter(name="persistentVolumeName")
718
+ def persistent_volume_name(self) -> str:
719
+ """
720
+ The name of the mounted persistent volume.
721
+ """
722
+ return pulumi.get(self, "persistent_volume_name")
723
+
724
+
725
+ @pulumi.output_type
726
+ class PipelineResponse(dict):
727
+ """
728
+ Pipeline Info.
729
+ """
730
+ def __init__(__self__, *,
731
+ exporters: Sequence[str],
732
+ name: str,
733
+ receivers: Sequence[str],
734
+ type: str,
735
+ processors: Optional[Sequence[str]] = None):
736
+ """
737
+ Pipeline Info.
738
+ :param Sequence[str] exporters: Reference to exporters configured for the pipeline.
739
+ :param str name: Name of the pipeline.
740
+ :param Sequence[str] receivers: Reference to receivers configured for the pipeline.
741
+ :param str type: The type of pipeline
742
+ :param Sequence[str] processors: Reference to processors configured for the pipeline.
743
+ """
744
+ pulumi.set(__self__, "exporters", exporters)
745
+ pulumi.set(__self__, "name", name)
746
+ pulumi.set(__self__, "receivers", receivers)
747
+ pulumi.set(__self__, "type", type)
748
+ if processors is not None:
749
+ pulumi.set(__self__, "processors", processors)
750
+
751
+ @property
752
+ @pulumi.getter
753
+ def exporters(self) -> Sequence[str]:
754
+ """
755
+ Reference to exporters configured for the pipeline.
756
+ """
757
+ return pulumi.get(self, "exporters")
758
+
759
+ @property
760
+ @pulumi.getter
761
+ def name(self) -> str:
762
+ """
763
+ Name of the pipeline.
764
+ """
765
+ return pulumi.get(self, "name")
766
+
767
+ @property
768
+ @pulumi.getter
769
+ def receivers(self) -> Sequence[str]:
770
+ """
771
+ Reference to receivers configured for the pipeline.
772
+ """
773
+ return pulumi.get(self, "receivers")
774
+
775
+ @property
776
+ @pulumi.getter
777
+ def type(self) -> str:
778
+ """
779
+ The type of pipeline
780
+ """
781
+ return pulumi.get(self, "type")
782
+
783
+ @property
784
+ @pulumi.getter
785
+ def processors(self) -> Optional[Sequence[str]]:
786
+ """
787
+ Reference to processors configured for the pipeline.
788
+ """
789
+ return pulumi.get(self, "processors")
790
+
791
+
792
+ @pulumi.output_type
793
+ class PrivateEndpointConnectionResponse(dict):
794
+ """
795
+ The private endpoint connection resource.
796
+ """
797
+ @staticmethod
798
+ def __key_warning(key: str):
799
+ suggest = None
800
+ if key == "groupIds":
801
+ suggest = "group_ids"
802
+ elif key == "privateLinkServiceConnectionState":
803
+ suggest = "private_link_service_connection_state"
804
+ elif key == "provisioningState":
805
+ suggest = "provisioning_state"
806
+ elif key == "systemData":
807
+ suggest = "system_data"
808
+ elif key == "privateEndpoint":
809
+ suggest = "private_endpoint"
810
+
811
+ if suggest:
812
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
813
+
814
+ def __getitem__(self, key: str) -> Any:
815
+ PrivateEndpointConnectionResponse.__key_warning(key)
816
+ return super().__getitem__(key)
817
+
818
+ def get(self, key: str, default = None) -> Any:
819
+ PrivateEndpointConnectionResponse.__key_warning(key)
820
+ return super().get(key, default)
821
+
822
+ def __init__(__self__, *,
823
+ group_ids: Sequence[str],
824
+ id: str,
825
+ name: str,
826
+ private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
827
+ provisioning_state: str,
828
+ system_data: 'outputs.SystemDataResponse',
829
+ type: str,
830
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
831
+ """
832
+ The private endpoint connection resource.
833
+ :param Sequence[str] group_ids: The group ids for the private endpoint resource.
834
+ :param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
835
+ :param str name: The name of the resource
836
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
837
+ :param str provisioning_state: The provisioning state of the private endpoint connection resource.
838
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
839
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
840
+ :param 'PrivateEndpointResponse' private_endpoint: The private endpoint resource.
841
+ """
842
+ pulumi.set(__self__, "group_ids", group_ids)
843
+ pulumi.set(__self__, "id", id)
844
+ pulumi.set(__self__, "name", name)
845
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
846
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
847
+ pulumi.set(__self__, "system_data", system_data)
848
+ pulumi.set(__self__, "type", type)
849
+ if private_endpoint is not None:
850
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
851
+
852
+ @property
853
+ @pulumi.getter(name="groupIds")
854
+ def group_ids(self) -> Sequence[str]:
855
+ """
856
+ The group ids for the private endpoint resource.
857
+ """
858
+ return pulumi.get(self, "group_ids")
859
+
860
+ @property
861
+ @pulumi.getter
862
+ def id(self) -> str:
863
+ """
864
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
865
+ """
866
+ return pulumi.get(self, "id")
867
+
868
+ @property
869
+ @pulumi.getter
870
+ def name(self) -> str:
871
+ """
872
+ The name of the resource
873
+ """
874
+ return pulumi.get(self, "name")
875
+
876
+ @property
877
+ @pulumi.getter(name="privateLinkServiceConnectionState")
878
+ def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
879
+ """
880
+ A collection of information about the state of the connection between service consumer and provider.
881
+ """
882
+ return pulumi.get(self, "private_link_service_connection_state")
883
+
884
+ @property
885
+ @pulumi.getter(name="provisioningState")
886
+ def provisioning_state(self) -> str:
887
+ """
888
+ The provisioning state of the private endpoint connection resource.
889
+ """
890
+ return pulumi.get(self, "provisioning_state")
891
+
892
+ @property
893
+ @pulumi.getter(name="systemData")
894
+ def system_data(self) -> 'outputs.SystemDataResponse':
895
+ """
896
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
897
+ """
898
+ return pulumi.get(self, "system_data")
899
+
900
+ @property
901
+ @pulumi.getter
902
+ def type(self) -> str:
903
+ """
904
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
905
+ """
906
+ return pulumi.get(self, "type")
907
+
908
+ @property
909
+ @pulumi.getter(name="privateEndpoint")
910
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
911
+ """
912
+ The private endpoint resource.
913
+ """
914
+ return pulumi.get(self, "private_endpoint")
915
+
916
+
917
+ @pulumi.output_type
918
+ class PrivateEndpointResponse(dict):
919
+ """
920
+ The private endpoint resource.
921
+ """
922
+ def __init__(__self__, *,
923
+ id: str):
924
+ """
925
+ The private endpoint resource.
926
+ :param str id: The ARM identifier for private endpoint.
927
+ """
928
+ pulumi.set(__self__, "id", id)
929
+
930
+ @property
931
+ @pulumi.getter
932
+ def id(self) -> str:
933
+ """
934
+ The ARM identifier for private endpoint.
935
+ """
936
+ return pulumi.get(self, "id")
937
+
938
+
939
+ @pulumi.output_type
940
+ class PrivateLinkServiceConnectionStateResponse(dict):
941
+ """
942
+ A collection of information about the state of the connection between service consumer and provider.
943
+ """
944
+ @staticmethod
945
+ def __key_warning(key: str):
946
+ suggest = None
947
+ if key == "actionsRequired":
948
+ suggest = "actions_required"
949
+
950
+ if suggest:
951
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
952
+
953
+ def __getitem__(self, key: str) -> Any:
954
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
955
+ return super().__getitem__(key)
956
+
957
+ def get(self, key: str, default = None) -> Any:
958
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
959
+ return super().get(key, default)
960
+
961
+ def __init__(__self__, *,
962
+ actions_required: Optional[str] = None,
963
+ description: Optional[str] = None,
964
+ status: Optional[str] = None):
965
+ """
966
+ A collection of information about the state of the connection between service consumer and provider.
967
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
968
+ :param str description: The reason for approval/rejection of the connection.
969
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
970
+ """
971
+ if actions_required is not None:
972
+ pulumi.set(__self__, "actions_required", actions_required)
973
+ if description is not None:
974
+ pulumi.set(__self__, "description", description)
975
+ if status is not None:
976
+ pulumi.set(__self__, "status", status)
977
+
978
+ @property
979
+ @pulumi.getter(name="actionsRequired")
980
+ def actions_required(self) -> Optional[str]:
981
+ """
982
+ A message indicating if changes on the service provider require any updates on the consumer.
983
+ """
984
+ return pulumi.get(self, "actions_required")
985
+
986
+ @property
987
+ @pulumi.getter
988
+ def description(self) -> Optional[str]:
989
+ """
990
+ The reason for approval/rejection of the connection.
991
+ """
992
+ return pulumi.get(self, "description")
993
+
994
+ @property
995
+ @pulumi.getter
996
+ def status(self) -> Optional[str]:
997
+ """
998
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
999
+ """
1000
+ return pulumi.get(self, "status")
1001
+
1002
+
1003
+ @pulumi.output_type
1004
+ class ProcessorResponse(dict):
1005
+ """
1006
+ Processor Info.
1007
+ """
1008
+ def __init__(__self__, *,
1009
+ name: str,
1010
+ type: str,
1011
+ batch: Optional['outputs.BatchProcessorResponse'] = None):
1012
+ """
1013
+ Processor Info.
1014
+ :param str name: The name of processor.
1015
+ :param str type: The type of processor.
1016
+ :param 'BatchProcessorResponse' batch: Batch processor configurations.
1017
+ """
1018
+ pulumi.set(__self__, "name", name)
1019
+ pulumi.set(__self__, "type", type)
1020
+ if batch is not None:
1021
+ pulumi.set(__self__, "batch", batch)
1022
+
1023
+ @property
1024
+ @pulumi.getter
1025
+ def name(self) -> str:
1026
+ """
1027
+ The name of processor.
1028
+ """
1029
+ return pulumi.get(self, "name")
1030
+
1031
+ @property
1032
+ @pulumi.getter
1033
+ def type(self) -> str:
1034
+ """
1035
+ The type of processor.
1036
+ """
1037
+ return pulumi.get(self, "type")
1038
+
1039
+ @property
1040
+ @pulumi.getter
1041
+ def batch(self) -> Optional['outputs.BatchProcessorResponse']:
1042
+ """
1043
+ Batch processor configurations.
1044
+ """
1045
+ return pulumi.get(self, "batch")
1046
+
1047
+
1048
+ @pulumi.output_type
1049
+ class ReceiverResponse(dict):
1050
+ """
1051
+ Receiver Info.
1052
+ """
1053
+ def __init__(__self__, *,
1054
+ name: str,
1055
+ type: str,
1056
+ otlp: Optional['outputs.OtlpReceiverResponse'] = None,
1057
+ syslog: Optional['outputs.SyslogReceiverResponse'] = None,
1058
+ udp: Optional['outputs.UdpReceiverResponse'] = None):
1059
+ """
1060
+ Receiver Info.
1061
+ :param str name: The name of receiver.
1062
+ :param str type: The type of receiver.
1063
+ :param 'OtlpReceiverResponse' otlp: OTLP receiver configurations. This field is mandatory for OTLP and pipelineGroup receivers.
1064
+ :param 'SyslogReceiverResponse' syslog: Syslog configurations. This field is mandatory for syslog type receivers.
1065
+ :param 'UdpReceiverResponse' udp: UDP receiver configurations. This field is mandatory for UDP receivers.
1066
+ """
1067
+ pulumi.set(__self__, "name", name)
1068
+ pulumi.set(__self__, "type", type)
1069
+ if otlp is not None:
1070
+ pulumi.set(__self__, "otlp", otlp)
1071
+ if syslog is not None:
1072
+ pulumi.set(__self__, "syslog", syslog)
1073
+ if udp is not None:
1074
+ pulumi.set(__self__, "udp", udp)
1075
+
1076
+ @property
1077
+ @pulumi.getter
1078
+ def name(self) -> str:
1079
+ """
1080
+ The name of receiver.
1081
+ """
1082
+ return pulumi.get(self, "name")
1083
+
1084
+ @property
1085
+ @pulumi.getter
1086
+ def type(self) -> str:
1087
+ """
1088
+ The type of receiver.
1089
+ """
1090
+ return pulumi.get(self, "type")
1091
+
1092
+ @property
1093
+ @pulumi.getter
1094
+ def otlp(self) -> Optional['outputs.OtlpReceiverResponse']:
1095
+ """
1096
+ OTLP receiver configurations. This field is mandatory for OTLP and pipelineGroup receivers.
1097
+ """
1098
+ return pulumi.get(self, "otlp")
1099
+
1100
+ @property
1101
+ @pulumi.getter
1102
+ def syslog(self) -> Optional['outputs.SyslogReceiverResponse']:
1103
+ """
1104
+ Syslog configurations. This field is mandatory for syslog type receivers.
1105
+ """
1106
+ return pulumi.get(self, "syslog")
1107
+
1108
+ @property
1109
+ @pulumi.getter
1110
+ def udp(self) -> Optional['outputs.UdpReceiverResponse']:
1111
+ """
1112
+ UDP receiver configurations. This field is mandatory for UDP receivers.
1113
+ """
1114
+ return pulumi.get(self, "udp")
1115
+
1116
+
1117
+ @pulumi.output_type
1118
+ class RecordMapResponse(dict):
1119
+ """
1120
+ Record map for schema in azure monitor.
26
1121
  """
27
1122
  @staticmethod
28
1123
  def __key_warning(key: str):
29
1124
  suggest = None
30
- if key == "dataCollectionEndpointResourceId":
31
- suggest = "data_collection_endpoint_resource_id"
32
- elif key == "dataCollectionRuleResourceId":
33
- suggest = "data_collection_rule_resource_id"
1125
+ if key == "from":
1126
+ suggest = "from_"
34
1127
 
35
1128
  if suggest:
36
- pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseDefaultIngestionSettings. Access the value via the '{suggest}' property getter instead.")
1129
+ pulumi.log.warn(f"Key '{key}' not found in RecordMapResponse. Access the value via the '{suggest}' property getter instead.")
37
1130
 
38
1131
  def __getitem__(self, key: str) -> Any:
39
- AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
1132
+ RecordMapResponse.__key_warning(key)
40
1133
  return super().__getitem__(key)
41
1134
 
42
1135
  def get(self, key: str, default = None) -> Any:
43
- AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
1136
+ RecordMapResponse.__key_warning(key)
44
1137
  return super().get(key, default)
45
1138
 
46
1139
  def __init__(__self__, *,
47
- data_collection_endpoint_resource_id: str,
48
- data_collection_rule_resource_id: str):
1140
+ from_: str,
1141
+ to: str):
49
1142
  """
50
- The Data Collection Rule and Endpoint used for ingestion by default.
51
- :param str data_collection_endpoint_resource_id: The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
52
- :param str data_collection_rule_resource_id: The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
1143
+ Record map for schema in azure monitor.
1144
+ :param str from_: Record Map Key.
1145
+ :param str to: Record Map Value.
53
1146
  """
54
- pulumi.set(__self__, "data_collection_endpoint_resource_id", data_collection_endpoint_resource_id)
55
- pulumi.set(__self__, "data_collection_rule_resource_id", data_collection_rule_resource_id)
1147
+ pulumi.set(__self__, "from_", from_)
1148
+ pulumi.set(__self__, "to", to)
56
1149
 
57
1150
  @property
58
- @pulumi.getter(name="dataCollectionEndpointResourceId")
59
- def data_collection_endpoint_resource_id(self) -> str:
1151
+ @pulumi.getter(name="from")
1152
+ def from_(self) -> str:
60
1153
  """
61
- The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
1154
+ Record Map Key.
62
1155
  """
63
- return pulumi.get(self, "data_collection_endpoint_resource_id")
1156
+ return pulumi.get(self, "from_")
64
1157
 
65
1158
  @property
66
- @pulumi.getter(name="dataCollectionRuleResourceId")
67
- def data_collection_rule_resource_id(self) -> str:
1159
+ @pulumi.getter
1160
+ def to(self) -> str:
68
1161
  """
69
- The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
1162
+ Record Map Value.
70
1163
  """
71
- return pulumi.get(self, "data_collection_rule_resource_id")
1164
+ return pulumi.get(self, "to")
72
1165
 
73
1166
 
74
1167
  @pulumi.output_type
75
- class AzureMonitorWorkspaceResponseMetrics(dict):
1168
+ class ResourceMapResponse(dict):
76
1169
  """
77
- Properties related to the metrics container in the Azure Monitor Workspace
1170
+ Resource map for schema in azure monitor.
78
1171
  """
79
1172
  @staticmethod
80
1173
  def __key_warning(key: str):
81
1174
  suggest = None
82
- if key == "internalId":
83
- suggest = "internal_id"
84
- elif key == "prometheusQueryEndpoint":
85
- suggest = "prometheus_query_endpoint"
1175
+ if key == "from":
1176
+ suggest = "from_"
86
1177
 
87
1178
  if suggest:
88
- pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseMetrics. Access the value via the '{suggest}' property getter instead.")
1179
+ pulumi.log.warn(f"Key '{key}' not found in ResourceMapResponse. Access the value via the '{suggest}' property getter instead.")
89
1180
 
90
1181
  def __getitem__(self, key: str) -> Any:
91
- AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
1182
+ ResourceMapResponse.__key_warning(key)
92
1183
  return super().__getitem__(key)
93
1184
 
94
1185
  def get(self, key: str, default = None) -> Any:
95
- AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
1186
+ ResourceMapResponse.__key_warning(key)
96
1187
  return super().get(key, default)
97
1188
 
98
1189
  def __init__(__self__, *,
99
- internal_id: str,
100
- prometheus_query_endpoint: str):
1190
+ from_: str,
1191
+ to: str):
101
1192
  """
102
- Properties related to the metrics container in the Azure Monitor Workspace
103
- :param str internal_id: An internal identifier for the metrics container. Only to be used by the system
104
- :param str prometheus_query_endpoint: The Prometheus query endpoint for the Azure Monitor Workspace
1193
+ Resource map for schema in azure monitor.
1194
+ :param str from_: Resource Map Key.
1195
+ :param str to: Resource Map Value.
105
1196
  """
106
- pulumi.set(__self__, "internal_id", internal_id)
107
- pulumi.set(__self__, "prometheus_query_endpoint", prometheus_query_endpoint)
1197
+ pulumi.set(__self__, "from_", from_)
1198
+ pulumi.set(__self__, "to", to)
108
1199
 
109
1200
  @property
110
- @pulumi.getter(name="internalId")
111
- def internal_id(self) -> str:
1201
+ @pulumi.getter(name="from")
1202
+ def from_(self) -> str:
112
1203
  """
113
- An internal identifier for the metrics container. Only to be used by the system
1204
+ Resource Map Key.
114
1205
  """
115
- return pulumi.get(self, "internal_id")
1206
+ return pulumi.get(self, "from_")
116
1207
 
117
1208
  @property
118
- @pulumi.getter(name="prometheusQueryEndpoint")
119
- def prometheus_query_endpoint(self) -> str:
1209
+ @pulumi.getter
1210
+ def to(self) -> str:
120
1211
  """
121
- The Prometheus query endpoint for the Azure Monitor Workspace
1212
+ Resource Map Value.
122
1213
  """
123
- return pulumi.get(self, "prometheus_query_endpoint")
1214
+ return pulumi.get(self, "to")
124
1215
 
125
1216
 
126
1217
  @pulumi.output_type
127
- class PrivateEndpointConnectionResponse(dict):
1218
+ class SchemaMapResponse(dict):
128
1219
  """
129
- The private endpoint connection resource.
1220
+ Schema map for azure monitor for logs.
130
1221
  """
131
1222
  @staticmethod
132
1223
  def __key_warning(key: str):
133
1224
  suggest = None
134
- if key == "groupIds":
135
- suggest = "group_ids"
136
- elif key == "privateLinkServiceConnectionState":
137
- suggest = "private_link_service_connection_state"
138
- elif key == "provisioningState":
139
- suggest = "provisioning_state"
140
- elif key == "systemData":
141
- suggest = "system_data"
142
- elif key == "privateEndpoint":
143
- suggest = "private_endpoint"
1225
+ if key == "recordMap":
1226
+ suggest = "record_map"
1227
+ elif key == "resourceMap":
1228
+ suggest = "resource_map"
1229
+ elif key == "scopeMap":
1230
+ suggest = "scope_map"
144
1231
 
145
1232
  if suggest:
146
- pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
1233
+ pulumi.log.warn(f"Key '{key}' not found in SchemaMapResponse. Access the value via the '{suggest}' property getter instead.")
147
1234
 
148
1235
  def __getitem__(self, key: str) -> Any:
149
- PrivateEndpointConnectionResponse.__key_warning(key)
1236
+ SchemaMapResponse.__key_warning(key)
150
1237
  return super().__getitem__(key)
151
1238
 
152
1239
  def get(self, key: str, default = None) -> Any:
153
- PrivateEndpointConnectionResponse.__key_warning(key)
1240
+ SchemaMapResponse.__key_warning(key)
154
1241
  return super().get(key, default)
155
1242
 
156
1243
  def __init__(__self__, *,
157
- group_ids: Sequence[str],
158
- id: str,
159
- name: str,
160
- private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
161
- provisioning_state: str,
162
- system_data: 'outputs.SystemDataResponse',
163
- type: str,
164
- private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
1244
+ record_map: Sequence['outputs.RecordMapResponse'],
1245
+ resource_map: Optional[Sequence['outputs.ResourceMapResponse']] = None,
1246
+ scope_map: Optional[Sequence['outputs.ScopeMapResponse']] = None):
165
1247
  """
166
- The private endpoint connection resource.
167
- :param Sequence[str] group_ids: The group ids for the private endpoint resource.
168
- :param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
169
- :param str name: The name of the resource
170
- :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
171
- :param str provisioning_state: The provisioning state of the private endpoint connection resource.
172
- :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
173
- :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
174
- :param 'PrivateEndpointResponse' private_endpoint: The private endpoint resource.
1248
+ Schema map for azure monitor for logs.
1249
+ :param Sequence['RecordMapResponse'] record_map: Record Map.
1250
+ :param Sequence['ResourceMapResponse'] resource_map: Resource Map captures information about the entity for which telemetry is recorded. For example, metrics exposed by a Kubernetes container can be linked to a resource that specifies the cluster, namespace, pod, and container name.Resource may capture an entire hierarchy of entity identification. It may describe the host in the cloud and specific container or an application running in the process.
1251
+ :param Sequence['ScopeMapResponse'] scope_map: A scope map is a logical unit of the application code with which the emitted telemetry can be associated.
175
1252
  """
176
- pulumi.set(__self__, "group_ids", group_ids)
177
- pulumi.set(__self__, "id", id)
178
- pulumi.set(__self__, "name", name)
179
- pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
180
- pulumi.set(__self__, "provisioning_state", provisioning_state)
181
- pulumi.set(__self__, "system_data", system_data)
182
- pulumi.set(__self__, "type", type)
183
- if private_endpoint is not None:
184
- pulumi.set(__self__, "private_endpoint", private_endpoint)
1253
+ pulumi.set(__self__, "record_map", record_map)
1254
+ if resource_map is not None:
1255
+ pulumi.set(__self__, "resource_map", resource_map)
1256
+ if scope_map is not None:
1257
+ pulumi.set(__self__, "scope_map", scope_map)
185
1258
 
186
1259
  @property
187
- @pulumi.getter(name="groupIds")
188
- def group_ids(self) -> Sequence[str]:
1260
+ @pulumi.getter(name="recordMap")
1261
+ def record_map(self) -> Sequence['outputs.RecordMapResponse']:
189
1262
  """
190
- The group ids for the private endpoint resource.
1263
+ Record Map.
191
1264
  """
192
- return pulumi.get(self, "group_ids")
1265
+ return pulumi.get(self, "record_map")
193
1266
 
194
1267
  @property
195
- @pulumi.getter
196
- def id(self) -> str:
1268
+ @pulumi.getter(name="resourceMap")
1269
+ def resource_map(self) -> Optional[Sequence['outputs.ResourceMapResponse']]:
197
1270
  """
198
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
1271
+ Resource Map captures information about the entity for which telemetry is recorded. For example, metrics exposed by a Kubernetes container can be linked to a resource that specifies the cluster, namespace, pod, and container name.Resource may capture an entire hierarchy of entity identification. It may describe the host in the cloud and specific container or an application running in the process.
199
1272
  """
200
- return pulumi.get(self, "id")
1273
+ return pulumi.get(self, "resource_map")
201
1274
 
202
1275
  @property
203
- @pulumi.getter
204
- def name(self) -> str:
1276
+ @pulumi.getter(name="scopeMap")
1277
+ def scope_map(self) -> Optional[Sequence['outputs.ScopeMapResponse']]:
205
1278
  """
206
- The name of the resource
1279
+ A scope map is a logical unit of the application code with which the emitted telemetry can be associated.
207
1280
  """
208
- return pulumi.get(self, "name")
1281
+ return pulumi.get(self, "scope_map")
209
1282
 
210
- @property
211
- @pulumi.getter(name="privateLinkServiceConnectionState")
212
- def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
213
- """
214
- A collection of information about the state of the connection between service consumer and provider.
215
- """
216
- return pulumi.get(self, "private_link_service_connection_state")
217
1283
 
218
- @property
219
- @pulumi.getter(name="provisioningState")
220
- def provisioning_state(self) -> str:
221
- """
222
- The provisioning state of the private endpoint connection resource.
223
- """
224
- return pulumi.get(self, "provisioning_state")
1284
+ @pulumi.output_type
1285
+ class ScopeMapResponse(dict):
1286
+ """
1287
+ Scope map for schema in azure monitor.
1288
+ """
1289
+ @staticmethod
1290
+ def __key_warning(key: str):
1291
+ suggest = None
1292
+ if key == "from":
1293
+ suggest = "from_"
225
1294
 
226
- @property
227
- @pulumi.getter(name="systemData")
228
- def system_data(self) -> 'outputs.SystemDataResponse':
1295
+ if suggest:
1296
+ pulumi.log.warn(f"Key '{key}' not found in ScopeMapResponse. Access the value via the '{suggest}' property getter instead.")
1297
+
1298
+ def __getitem__(self, key: str) -> Any:
1299
+ ScopeMapResponse.__key_warning(key)
1300
+ return super().__getitem__(key)
1301
+
1302
+ def get(self, key: str, default = None) -> Any:
1303
+ ScopeMapResponse.__key_warning(key)
1304
+ return super().get(key, default)
1305
+
1306
+ def __init__(__self__, *,
1307
+ from_: str,
1308
+ to: str):
229
1309
  """
230
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
1310
+ Scope map for schema in azure monitor.
1311
+ :param str from_: Scope Map Key.
1312
+ :param str to: Scope Map Value.
231
1313
  """
232
- return pulumi.get(self, "system_data")
1314
+ pulumi.set(__self__, "from_", from_)
1315
+ pulumi.set(__self__, "to", to)
233
1316
 
234
1317
  @property
235
- @pulumi.getter
236
- def type(self) -> str:
1318
+ @pulumi.getter(name="from")
1319
+ def from_(self) -> str:
237
1320
  """
238
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1321
+ Scope Map Key.
239
1322
  """
240
- return pulumi.get(self, "type")
1323
+ return pulumi.get(self, "from_")
241
1324
 
242
1325
  @property
243
- @pulumi.getter(name="privateEndpoint")
244
- def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
1326
+ @pulumi.getter
1327
+ def to(self) -> str:
245
1328
  """
246
- The private endpoint resource.
1329
+ Scope Map Value.
247
1330
  """
248
- return pulumi.get(self, "private_endpoint")
1331
+ return pulumi.get(self, "to")
249
1332
 
250
1333
 
251
1334
  @pulumi.output_type
252
- class PrivateEndpointResponse(dict):
1335
+ class ServiceResponse(dict):
253
1336
  """
254
- The private endpoint resource.
1337
+ Service Info.
255
1338
  """
256
1339
  def __init__(__self__, *,
257
- id: str):
1340
+ pipelines: Sequence['outputs.PipelineResponse'],
1341
+ persistence: Optional['outputs.PersistenceConfigurationsResponse'] = None):
258
1342
  """
259
- The private endpoint resource.
260
- :param str id: The ARM identifier for private endpoint.
1343
+ Service Info.
1344
+ :param Sequence['PipelineResponse'] pipelines: Pipelines belonging to a given pipeline group.
1345
+ :param 'PersistenceConfigurationsResponse' persistence: Persistence options to all pipelines in the instance.
261
1346
  """
262
- pulumi.set(__self__, "id", id)
1347
+ pulumi.set(__self__, "pipelines", pipelines)
1348
+ if persistence is not None:
1349
+ pulumi.set(__self__, "persistence", persistence)
263
1350
 
264
1351
  @property
265
1352
  @pulumi.getter
266
- def id(self) -> str:
1353
+ def pipelines(self) -> Sequence['outputs.PipelineResponse']:
267
1354
  """
268
- The ARM identifier for private endpoint.
1355
+ Pipelines belonging to a given pipeline group.
269
1356
  """
270
- return pulumi.get(self, "id")
1357
+ return pulumi.get(self, "pipelines")
1358
+
1359
+ @property
1360
+ @pulumi.getter
1361
+ def persistence(self) -> Optional['outputs.PersistenceConfigurationsResponse']:
1362
+ """
1363
+ Persistence options to all pipelines in the instance.
1364
+ """
1365
+ return pulumi.get(self, "persistence")
271
1366
 
272
1367
 
273
1368
  @pulumi.output_type
274
- class PrivateLinkServiceConnectionStateResponse(dict):
1369
+ class SyslogReceiverResponse(dict):
275
1370
  """
276
- A collection of information about the state of the connection between service consumer and provider.
1371
+ Base receiver using TCP as transport protocol.
277
1372
  """
278
- @staticmethod
279
- def __key_warning(key: str):
280
- suggest = None
281
- if key == "actionsRequired":
282
- suggest = "actions_required"
283
-
284
- if suggest:
285
- pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
286
-
287
- def __getitem__(self, key: str) -> Any:
288
- PrivateLinkServiceConnectionStateResponse.__key_warning(key)
289
- return super().__getitem__(key)
290
-
291
- def get(self, key: str, default = None) -> Any:
292
- PrivateLinkServiceConnectionStateResponse.__key_warning(key)
293
- return super().get(key, default)
294
-
295
1373
  def __init__(__self__, *,
296
- actions_required: Optional[str] = None,
297
- description: Optional[str] = None,
298
- status: Optional[str] = None):
299
- """
300
- A collection of information about the state of the connection between service consumer and provider.
301
- :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
302
- :param str description: The reason for approval/rejection of the connection.
303
- :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
304
- """
305
- if actions_required is not None:
306
- pulumi.set(__self__, "actions_required", actions_required)
307
- if description is not None:
308
- pulumi.set(__self__, "description", description)
309
- if status is not None:
310
- pulumi.set(__self__, "status", status)
311
-
312
- @property
313
- @pulumi.getter(name="actionsRequired")
314
- def actions_required(self) -> Optional[str]:
1374
+ endpoint: str,
1375
+ protocol: Optional[str] = None):
315
1376
  """
316
- A message indicating if changes on the service provider require any updates on the consumer.
1377
+ Base receiver using TCP as transport protocol.
1378
+ :param str endpoint: Syslog receiver endpoint definition. Example: 0.0.0.0:<port>.
1379
+ :param str protocol: Protocol to parse syslog messages. Default rfc3164
317
1380
  """
318
- return pulumi.get(self, "actions_required")
1381
+ pulumi.set(__self__, "endpoint", endpoint)
1382
+ if protocol is None:
1383
+ protocol = 'rfc3164'
1384
+ if protocol is not None:
1385
+ pulumi.set(__self__, "protocol", protocol)
319
1386
 
320
1387
  @property
321
1388
  @pulumi.getter
322
- def description(self) -> Optional[str]:
1389
+ def endpoint(self) -> str:
323
1390
  """
324
- The reason for approval/rejection of the connection.
1391
+ Syslog receiver endpoint definition. Example: 0.0.0.0:<port>.
325
1392
  """
326
- return pulumi.get(self, "description")
1393
+ return pulumi.get(self, "endpoint")
327
1394
 
328
1395
  @property
329
1396
  @pulumi.getter
330
- def status(self) -> Optional[str]:
1397
+ def protocol(self) -> Optional[str]:
331
1398
  """
332
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1399
+ Protocol to parse syslog messages. Default rfc3164
333
1400
  """
334
- return pulumi.get(self, "status")
1401
+ return pulumi.get(self, "protocol")
335
1402
 
336
1403
 
337
1404
  @pulumi.output_type
@@ -444,3 +1511,92 @@ class SystemDataResponse(dict):
444
1511
  return pulumi.get(self, "last_modified_by_type")
445
1512
 
446
1513
 
1514
+ @pulumi.output_type
1515
+ class TcpExporterResponse(dict):
1516
+ """
1517
+ Base exporter using TCP as transport protocol.
1518
+ """
1519
+ def __init__(__self__, *,
1520
+ url: str):
1521
+ """
1522
+ Base exporter using TCP as transport protocol.
1523
+ :param str url: TCP url to export.
1524
+ """
1525
+ pulumi.set(__self__, "url", url)
1526
+
1527
+ @property
1528
+ @pulumi.getter
1529
+ def url(self) -> str:
1530
+ """
1531
+ TCP url to export.
1532
+ """
1533
+ return pulumi.get(self, "url")
1534
+
1535
+
1536
+ @pulumi.output_type
1537
+ class UdpReceiverResponse(dict):
1538
+ """
1539
+ Receiver using UDP as transport protocol.
1540
+ """
1541
+ @staticmethod
1542
+ def __key_warning(key: str):
1543
+ suggest = None
1544
+ if key == "readQueueLength":
1545
+ suggest = "read_queue_length"
1546
+
1547
+ if suggest:
1548
+ pulumi.log.warn(f"Key '{key}' not found in UdpReceiverResponse. Access the value via the '{suggest}' property getter instead.")
1549
+
1550
+ def __getitem__(self, key: str) -> Any:
1551
+ UdpReceiverResponse.__key_warning(key)
1552
+ return super().__getitem__(key)
1553
+
1554
+ def get(self, key: str, default = None) -> Any:
1555
+ UdpReceiverResponse.__key_warning(key)
1556
+ return super().get(key, default)
1557
+
1558
+ def __init__(__self__, *,
1559
+ endpoint: str,
1560
+ encoding: Optional[str] = None,
1561
+ read_queue_length: Optional[int] = None):
1562
+ """
1563
+ Receiver using UDP as transport protocol.
1564
+ :param str endpoint: TCP endpoint definition. Example: 0.0.0.0:<port>.
1565
+ :param str encoding: The encoding of the stream being received.
1566
+ :param int read_queue_length: Max read queue length.
1567
+ """
1568
+ pulumi.set(__self__, "endpoint", endpoint)
1569
+ if encoding is None:
1570
+ encoding = 'nop'
1571
+ if encoding is not None:
1572
+ pulumi.set(__self__, "encoding", encoding)
1573
+ if read_queue_length is None:
1574
+ read_queue_length = 1000
1575
+ if read_queue_length is not None:
1576
+ pulumi.set(__self__, "read_queue_length", read_queue_length)
1577
+
1578
+ @property
1579
+ @pulumi.getter
1580
+ def endpoint(self) -> str:
1581
+ """
1582
+ TCP endpoint definition. Example: 0.0.0.0:<port>.
1583
+ """
1584
+ return pulumi.get(self, "endpoint")
1585
+
1586
+ @property
1587
+ @pulumi.getter
1588
+ def encoding(self) -> Optional[str]:
1589
+ """
1590
+ The encoding of the stream being received.
1591
+ """
1592
+ return pulumi.get(self, "encoding")
1593
+
1594
+ @property
1595
+ @pulumi.getter(name="readQueueLength")
1596
+ def read_queue_length(self) -> Optional[int]:
1597
+ """
1598
+ Max read queue length.
1599
+ """
1600
+ return pulumi.get(self, "read_queue_length")
1601
+
1602
+