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