pulumi-azure-native 2.40.0a1714482437__py3-none-any.whl → 2.40.0a1714979708__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.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/METADATA +1 -1
  254. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/RECORD +256 -194
  255. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/WHEEL +0 -0
  256. {pulumi_azure_native-2.40.0a1714482437.dist-info → pulumi_azure_native-2.40.0a1714979708.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,443 @@
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
+ from ._inputs import *
14
+
15
+ __all__ = ['PipelineGroupArgs', 'PipelineGroup']
16
+
17
+ @pulumi.input_type
18
+ class PipelineGroupArgs:
19
+ def __init__(__self__, *,
20
+ exporters: pulumi.Input[Sequence[pulumi.Input['ExporterArgs']]],
21
+ processors: pulumi.Input[Sequence[pulumi.Input['ProcessorArgs']]],
22
+ receivers: pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]],
23
+ resource_group_name: pulumi.Input[str],
24
+ service: pulumi.Input['ServiceArgs'],
25
+ extended_location: Optional[pulumi.Input['ExtendedLocationArgs']] = None,
26
+ location: Optional[pulumi.Input[str]] = None,
27
+ networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]]] = None,
28
+ pipeline_group_name: Optional[pulumi.Input[str]] = None,
29
+ replicas: Optional[pulumi.Input[int]] = None,
30
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
31
+ """
32
+ The set of arguments for constructing a PipelineGroup resource.
33
+ :param pulumi.Input[Sequence[pulumi.Input['ExporterArgs']]] exporters: The exporters specified for a pipeline group instance.
34
+ :param pulumi.Input[Sequence[pulumi.Input['ProcessorArgs']]] processors: The processors specified for a pipeline group instance.
35
+ :param pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]] receivers: The receivers specified for a pipeline group instance.
36
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
37
+ :param pulumi.Input['ServiceArgs'] service: The service section for a given pipeline group instance.
38
+ :param pulumi.Input['ExtendedLocationArgs'] extended_location: The extended location for given pipeline group.
39
+ :param pulumi.Input[str] location: The geo-location where the resource lives
40
+ :param pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]] networking_configurations: Networking configurations for the pipeline group instance.
41
+ :param pulumi.Input[str] pipeline_group_name: The name of pipeline group. The name is case insensitive.
42
+ :param pulumi.Input[int] replicas: Defines the amount of replicas of the pipeline group instance.
43
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
44
+ """
45
+ pulumi.set(__self__, "exporters", exporters)
46
+ pulumi.set(__self__, "processors", processors)
47
+ pulumi.set(__self__, "receivers", receivers)
48
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
49
+ pulumi.set(__self__, "service", service)
50
+ if extended_location is not None:
51
+ pulumi.set(__self__, "extended_location", extended_location)
52
+ if location is not None:
53
+ pulumi.set(__self__, "location", location)
54
+ if networking_configurations is not None:
55
+ pulumi.set(__self__, "networking_configurations", networking_configurations)
56
+ if pipeline_group_name is not None:
57
+ pulumi.set(__self__, "pipeline_group_name", pipeline_group_name)
58
+ if replicas is not None:
59
+ pulumi.set(__self__, "replicas", replicas)
60
+ if tags is not None:
61
+ pulumi.set(__self__, "tags", tags)
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def exporters(self) -> pulumi.Input[Sequence[pulumi.Input['ExporterArgs']]]:
66
+ """
67
+ The exporters specified for a pipeline group instance.
68
+ """
69
+ return pulumi.get(self, "exporters")
70
+
71
+ @exporters.setter
72
+ def exporters(self, value: pulumi.Input[Sequence[pulumi.Input['ExporterArgs']]]):
73
+ pulumi.set(self, "exporters", value)
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def processors(self) -> pulumi.Input[Sequence[pulumi.Input['ProcessorArgs']]]:
78
+ """
79
+ The processors specified for a pipeline group instance.
80
+ """
81
+ return pulumi.get(self, "processors")
82
+
83
+ @processors.setter
84
+ def processors(self, value: pulumi.Input[Sequence[pulumi.Input['ProcessorArgs']]]):
85
+ pulumi.set(self, "processors", value)
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def receivers(self) -> pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]]:
90
+ """
91
+ The receivers specified for a pipeline group instance.
92
+ """
93
+ return pulumi.get(self, "receivers")
94
+
95
+ @receivers.setter
96
+ def receivers(self, value: pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]]):
97
+ pulumi.set(self, "receivers", value)
98
+
99
+ @property
100
+ @pulumi.getter(name="resourceGroupName")
101
+ def resource_group_name(self) -> pulumi.Input[str]:
102
+ """
103
+ The name of the resource group. The name is case insensitive.
104
+ """
105
+ return pulumi.get(self, "resource_group_name")
106
+
107
+ @resource_group_name.setter
108
+ def resource_group_name(self, value: pulumi.Input[str]):
109
+ pulumi.set(self, "resource_group_name", value)
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def service(self) -> pulumi.Input['ServiceArgs']:
114
+ """
115
+ The service section for a given pipeline group instance.
116
+ """
117
+ return pulumi.get(self, "service")
118
+
119
+ @service.setter
120
+ def service(self, value: pulumi.Input['ServiceArgs']):
121
+ pulumi.set(self, "service", value)
122
+
123
+ @property
124
+ @pulumi.getter(name="extendedLocation")
125
+ def extended_location(self) -> Optional[pulumi.Input['ExtendedLocationArgs']]:
126
+ """
127
+ The extended location for given pipeline group.
128
+ """
129
+ return pulumi.get(self, "extended_location")
130
+
131
+ @extended_location.setter
132
+ def extended_location(self, value: Optional[pulumi.Input['ExtendedLocationArgs']]):
133
+ pulumi.set(self, "extended_location", value)
134
+
135
+ @property
136
+ @pulumi.getter
137
+ def location(self) -> Optional[pulumi.Input[str]]:
138
+ """
139
+ The geo-location where the resource lives
140
+ """
141
+ return pulumi.get(self, "location")
142
+
143
+ @location.setter
144
+ def location(self, value: Optional[pulumi.Input[str]]):
145
+ pulumi.set(self, "location", value)
146
+
147
+ @property
148
+ @pulumi.getter(name="networkingConfigurations")
149
+ def networking_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]]]:
150
+ """
151
+ Networking configurations for the pipeline group instance.
152
+ """
153
+ return pulumi.get(self, "networking_configurations")
154
+
155
+ @networking_configurations.setter
156
+ def networking_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]]]):
157
+ pulumi.set(self, "networking_configurations", value)
158
+
159
+ @property
160
+ @pulumi.getter(name="pipelineGroupName")
161
+ def pipeline_group_name(self) -> Optional[pulumi.Input[str]]:
162
+ """
163
+ The name of pipeline group. The name is case insensitive.
164
+ """
165
+ return pulumi.get(self, "pipeline_group_name")
166
+
167
+ @pipeline_group_name.setter
168
+ def pipeline_group_name(self, value: Optional[pulumi.Input[str]]):
169
+ pulumi.set(self, "pipeline_group_name", value)
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def replicas(self) -> Optional[pulumi.Input[int]]:
174
+ """
175
+ Defines the amount of replicas of the pipeline group instance.
176
+ """
177
+ return pulumi.get(self, "replicas")
178
+
179
+ @replicas.setter
180
+ def replicas(self, value: Optional[pulumi.Input[int]]):
181
+ pulumi.set(self, "replicas", value)
182
+
183
+ @property
184
+ @pulumi.getter
185
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
186
+ """
187
+ Resource tags.
188
+ """
189
+ return pulumi.get(self, "tags")
190
+
191
+ @tags.setter
192
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
193
+ pulumi.set(self, "tags", value)
194
+
195
+
196
+ class PipelineGroup(pulumi.CustomResource):
197
+ @overload
198
+ def __init__(__self__,
199
+ resource_name: str,
200
+ opts: Optional[pulumi.ResourceOptions] = None,
201
+ exporters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExporterArgs']]]]] = None,
202
+ extended_location: Optional[pulumi.Input[pulumi.InputType['ExtendedLocationArgs']]] = None,
203
+ location: Optional[pulumi.Input[str]] = None,
204
+ networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkingConfigurationArgs']]]]] = None,
205
+ pipeline_group_name: Optional[pulumi.Input[str]] = None,
206
+ processors: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProcessorArgs']]]]] = None,
207
+ receivers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ReceiverArgs']]]]] = None,
208
+ replicas: Optional[pulumi.Input[int]] = None,
209
+ resource_group_name: Optional[pulumi.Input[str]] = None,
210
+ service: Optional[pulumi.Input[pulumi.InputType['ServiceArgs']]] = None,
211
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
212
+ __props__=None):
213
+ """
214
+ A pipeline group definition.
215
+ Azure REST API version: 2023-10-01-preview.
216
+
217
+ :param str resource_name: The name of the resource.
218
+ :param pulumi.ResourceOptions opts: Options for the resource.
219
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExporterArgs']]]] exporters: The exporters specified for a pipeline group instance.
220
+ :param pulumi.Input[pulumi.InputType['ExtendedLocationArgs']] extended_location: The extended location for given pipeline group.
221
+ :param pulumi.Input[str] location: The geo-location where the resource lives
222
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkingConfigurationArgs']]]] networking_configurations: Networking configurations for the pipeline group instance.
223
+ :param pulumi.Input[str] pipeline_group_name: The name of pipeline group. The name is case insensitive.
224
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProcessorArgs']]]] processors: The processors specified for a pipeline group instance.
225
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ReceiverArgs']]]] receivers: The receivers specified for a pipeline group instance.
226
+ :param pulumi.Input[int] replicas: Defines the amount of replicas of the pipeline group instance.
227
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
228
+ :param pulumi.Input[pulumi.InputType['ServiceArgs']] service: The service section for a given pipeline group instance.
229
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
230
+ """
231
+ ...
232
+ @overload
233
+ def __init__(__self__,
234
+ resource_name: str,
235
+ args: PipelineGroupArgs,
236
+ opts: Optional[pulumi.ResourceOptions] = None):
237
+ """
238
+ A pipeline group definition.
239
+ Azure REST API version: 2023-10-01-preview.
240
+
241
+ :param str resource_name: The name of the resource.
242
+ :param PipelineGroupArgs args: The arguments to use to populate this resource's properties.
243
+ :param pulumi.ResourceOptions opts: Options for the resource.
244
+ """
245
+ ...
246
+ def __init__(__self__, resource_name: str, *args, **kwargs):
247
+ resource_args, opts = _utilities.get_resource_args_opts(PipelineGroupArgs, pulumi.ResourceOptions, *args, **kwargs)
248
+ if resource_args is not None:
249
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
250
+ else:
251
+ __self__._internal_init(resource_name, *args, **kwargs)
252
+
253
+ def _internal_init(__self__,
254
+ resource_name: str,
255
+ opts: Optional[pulumi.ResourceOptions] = None,
256
+ exporters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExporterArgs']]]]] = None,
257
+ extended_location: Optional[pulumi.Input[pulumi.InputType['ExtendedLocationArgs']]] = None,
258
+ location: Optional[pulumi.Input[str]] = None,
259
+ networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkingConfigurationArgs']]]]] = None,
260
+ pipeline_group_name: Optional[pulumi.Input[str]] = None,
261
+ processors: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProcessorArgs']]]]] = None,
262
+ receivers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ReceiverArgs']]]]] = None,
263
+ replicas: Optional[pulumi.Input[int]] = None,
264
+ resource_group_name: Optional[pulumi.Input[str]] = None,
265
+ service: Optional[pulumi.Input[pulumi.InputType['ServiceArgs']]] = None,
266
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
267
+ __props__=None):
268
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
269
+ if not isinstance(opts, pulumi.ResourceOptions):
270
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
271
+ if opts.id is None:
272
+ if __props__ is not None:
273
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
274
+ __props__ = PipelineGroupArgs.__new__(PipelineGroupArgs)
275
+
276
+ if exporters is None and not opts.urn:
277
+ raise TypeError("Missing required property 'exporters'")
278
+ __props__.__dict__["exporters"] = exporters
279
+ __props__.__dict__["extended_location"] = extended_location
280
+ __props__.__dict__["location"] = location
281
+ __props__.__dict__["networking_configurations"] = networking_configurations
282
+ __props__.__dict__["pipeline_group_name"] = pipeline_group_name
283
+ if processors is None and not opts.urn:
284
+ raise TypeError("Missing required property 'processors'")
285
+ __props__.__dict__["processors"] = processors
286
+ if receivers is None and not opts.urn:
287
+ raise TypeError("Missing required property 'receivers'")
288
+ __props__.__dict__["receivers"] = receivers
289
+ __props__.__dict__["replicas"] = replicas
290
+ if resource_group_name is None and not opts.urn:
291
+ raise TypeError("Missing required property 'resource_group_name'")
292
+ __props__.__dict__["resource_group_name"] = resource_group_name
293
+ if service is None and not opts.urn:
294
+ raise TypeError("Missing required property 'service'")
295
+ __props__.__dict__["service"] = service
296
+ __props__.__dict__["tags"] = tags
297
+ __props__.__dict__["name"] = None
298
+ __props__.__dict__["provisioning_state"] = None
299
+ __props__.__dict__["system_data"] = None
300
+ __props__.__dict__["type"] = None
301
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:monitor/v20231001preview:PipelineGroup")])
302
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
303
+ super(PipelineGroup, __self__).__init__(
304
+ 'azure-native:monitor:PipelineGroup',
305
+ resource_name,
306
+ __props__,
307
+ opts)
308
+
309
+ @staticmethod
310
+ def get(resource_name: str,
311
+ id: pulumi.Input[str],
312
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'PipelineGroup':
313
+ """
314
+ Get an existing PipelineGroup resource's state with the given name, id, and optional extra
315
+ properties used to qualify the lookup.
316
+
317
+ :param str resource_name: The unique name of the resulting resource.
318
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
319
+ :param pulumi.ResourceOptions opts: Options for the resource.
320
+ """
321
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
322
+
323
+ __props__ = PipelineGroupArgs.__new__(PipelineGroupArgs)
324
+
325
+ __props__.__dict__["exporters"] = None
326
+ __props__.__dict__["extended_location"] = None
327
+ __props__.__dict__["location"] = None
328
+ __props__.__dict__["name"] = None
329
+ __props__.__dict__["networking_configurations"] = None
330
+ __props__.__dict__["processors"] = None
331
+ __props__.__dict__["provisioning_state"] = None
332
+ __props__.__dict__["receivers"] = None
333
+ __props__.__dict__["replicas"] = None
334
+ __props__.__dict__["service"] = None
335
+ __props__.__dict__["system_data"] = None
336
+ __props__.__dict__["tags"] = None
337
+ __props__.__dict__["type"] = None
338
+ return PipelineGroup(resource_name, opts=opts, __props__=__props__)
339
+
340
+ @property
341
+ @pulumi.getter
342
+ def exporters(self) -> pulumi.Output[Sequence['outputs.ExporterResponse']]:
343
+ """
344
+ The exporters specified for a pipeline group instance.
345
+ """
346
+ return pulumi.get(self, "exporters")
347
+
348
+ @property
349
+ @pulumi.getter(name="extendedLocation")
350
+ def extended_location(self) -> pulumi.Output[Optional['outputs.ExtendedLocationResponse']]:
351
+ """
352
+ The extended location for given pipeline group.
353
+ """
354
+ return pulumi.get(self, "extended_location")
355
+
356
+ @property
357
+ @pulumi.getter
358
+ def location(self) -> pulumi.Output[str]:
359
+ """
360
+ The geo-location where the resource lives
361
+ """
362
+ return pulumi.get(self, "location")
363
+
364
+ @property
365
+ @pulumi.getter
366
+ def name(self) -> pulumi.Output[str]:
367
+ """
368
+ The name of the resource
369
+ """
370
+ return pulumi.get(self, "name")
371
+
372
+ @property
373
+ @pulumi.getter(name="networkingConfigurations")
374
+ def networking_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.NetworkingConfigurationResponse']]]:
375
+ """
376
+ Networking configurations for the pipeline group instance.
377
+ """
378
+ return pulumi.get(self, "networking_configurations")
379
+
380
+ @property
381
+ @pulumi.getter
382
+ def processors(self) -> pulumi.Output[Sequence['outputs.ProcessorResponse']]:
383
+ """
384
+ The processors specified for a pipeline group instance.
385
+ """
386
+ return pulumi.get(self, "processors")
387
+
388
+ @property
389
+ @pulumi.getter(name="provisioningState")
390
+ def provisioning_state(self) -> pulumi.Output[str]:
391
+ """
392
+ The provisioning state of a pipeline group instance. Set to Succeeded if everything is healthy.
393
+ """
394
+ return pulumi.get(self, "provisioning_state")
395
+
396
+ @property
397
+ @pulumi.getter
398
+ def receivers(self) -> pulumi.Output[Sequence['outputs.ReceiverResponse']]:
399
+ """
400
+ The receivers specified for a pipeline group instance.
401
+ """
402
+ return pulumi.get(self, "receivers")
403
+
404
+ @property
405
+ @pulumi.getter
406
+ def replicas(self) -> pulumi.Output[Optional[int]]:
407
+ """
408
+ Defines the amount of replicas of the pipeline group instance.
409
+ """
410
+ return pulumi.get(self, "replicas")
411
+
412
+ @property
413
+ @pulumi.getter
414
+ def service(self) -> pulumi.Output['outputs.ServiceResponse']:
415
+ """
416
+ The service section for a given pipeline group instance.
417
+ """
418
+ return pulumi.get(self, "service")
419
+
420
+ @property
421
+ @pulumi.getter(name="systemData")
422
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
423
+ """
424
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
425
+ """
426
+ return pulumi.get(self, "system_data")
427
+
428
+ @property
429
+ @pulumi.getter
430
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
431
+ """
432
+ Resource tags.
433
+ """
434
+ return pulumi.get(self, "tags")
435
+
436
+ @property
437
+ @pulumi.getter
438
+ def type(self) -> pulumi.Output[str]:
439
+ """
440
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
441
+ """
442
+ return pulumi.get(self, "type")
443
+
@@ -156,7 +156,7 @@ class AzureMonitorWorkspace(pulumi.CustomResource):
156
156
  __props__.__dict__["public_network_access"] = None
157
157
  __props__.__dict__["system_data"] = None
158
158
  __props__.__dict__["type"] = None
159
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:monitor:AzureMonitorWorkspace"), pulumi.Alias(type_="azure-native:monitor/v20210603preview:AzureMonitorWorkspace")])
159
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:monitor:AzureMonitorWorkspace"), pulumi.Alias(type_="azure-native:monitor/v20210603preview:AzureMonitorWorkspace"), pulumi.Alias(type_="azure-native:monitor/v20231001preview:AzureMonitorWorkspace")])
160
160
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
161
161
  super(AzureMonitorWorkspace, __self__).__init__(
162
162
  'azure-native:monitor/v20230403:AzureMonitorWorkspace',
@@ -0,0 +1,14 @@
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
+ from ... import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from ._enums import *
9
+ from .azure_monitor_workspace import *
10
+ from .get_azure_monitor_workspace import *
11
+ from .get_pipeline_group import *
12
+ from .pipeline_group import *
13
+ from ._inputs import *
14
+ from . import outputs
@@ -0,0 +1,140 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'ExporterType',
9
+ 'ExtendedLocationType',
10
+ 'ExternalNetworkingMode',
11
+ 'PipelineType',
12
+ 'ProcessorType',
13
+ 'ReceiverType',
14
+ 'StreamEncodingType',
15
+ 'SyslogProtocol',
16
+ ]
17
+
18
+
19
+ class ExporterType(str, Enum):
20
+ """
21
+ The type of exporter.
22
+ """
23
+ AZURE_MONITOR_WORKSPACE_LOGS = "AzureMonitorWorkspaceLogs"
24
+ """
25
+ Export logs to Azure Monitor Workspace.
26
+ """
27
+ PIPELINE_GROUP = "PipelineGroup"
28
+ """
29
+ Export data to another pipeline group instance.
30
+ """
31
+
32
+
33
+ class ExtendedLocationType(str, Enum):
34
+ """
35
+ The type of extended location.
36
+ """
37
+ CUSTOM_LOCATION = "CustomLocation"
38
+ """
39
+ Custom location.
40
+ """
41
+
42
+
43
+ class ExternalNetworkingMode(str, Enum):
44
+ """
45
+ External networking mode.
46
+ """
47
+ LOAD_BALANCER_ONLY = "LoadBalancerOnly"
48
+ """
49
+ Load balancer only.
50
+ """
51
+
52
+
53
+ class PipelineType(str, Enum):
54
+ """
55
+ The type of pipeline
56
+ """
57
+ LOGS = "logs"
58
+ """
59
+ Pipeline for logs telemetry.
60
+ """
61
+
62
+
63
+ class ProcessorType(str, Enum):
64
+ """
65
+ The type of processor.
66
+ """
67
+ BATCH = "Batch"
68
+ """
69
+ Batch processor.
70
+ """
71
+
72
+
73
+ class ReceiverType(str, Enum):
74
+ """
75
+ The type of receiver.
76
+ """
77
+ SYSLOG = "Syslog"
78
+ """
79
+ Linux syslog.
80
+ """
81
+ AMA = "Ama"
82
+ """
83
+ Receives data from azure monitor agent receiver.
84
+ """
85
+ PIPELINE_GROUP = "PipelineGroup"
86
+ """
87
+ Receives data from another pipeline group.
88
+ """
89
+ OTLP = "OTLP"
90
+ """
91
+ Receives data from a OTLP collector.
92
+ """
93
+ UDP = "UDP"
94
+ """
95
+ Receives data from an UDP collector.
96
+ """
97
+
98
+
99
+ class StreamEncodingType(str, Enum):
100
+ """
101
+ The encoding of the stream being received.
102
+ """
103
+ NOP = "nop"
104
+ """
105
+ No encoding validation. Treats the file as a stream of raw bytes.
106
+ """
107
+ UTF_8 = "utf-8"
108
+ """
109
+ UTF-8 encoding.
110
+ """
111
+ UTF_16LE = "utf-16le"
112
+ """
113
+ UTF-16 encoding with little-endian byte order.
114
+ """
115
+ UTF_16BE = "utf-16be"
116
+ """
117
+ UTF-16 encoding with little-endian byte order.
118
+ """
119
+ ASCII = "ascii"
120
+ """
121
+ ASCII encoding.
122
+ """
123
+ BIG5 = "big5"
124
+ """
125
+ The Big5 Chinese character encoding.
126
+ """
127
+
128
+
129
+ class SyslogProtocol(str, Enum):
130
+ """
131
+ Protocol to parse syslog messages. Default rfc3164
132
+ """
133
+ RFC3164 = "rfc3164"
134
+ """
135
+ rfc3164 protocol.
136
+ """
137
+ RFC5424 = "rfc5424"
138
+ """
139
+ rfc5424 protocol.
140
+ """