cribl-control-plane 0.1.0b2__py3-none-any.whl → 0.1.1rc2__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 cribl-control-plane might be problematic. Click here for more details.

Files changed (148) hide show
  1. cribl_control_plane/_hooks/clientcredentials.py +91 -41
  2. cribl_control_plane/_version.py +4 -4
  3. cribl_control_plane/errors/apierror.py +1 -1
  4. cribl_control_plane/errors/criblcontrolplaneerror.py +1 -1
  5. cribl_control_plane/errors/error.py +1 -1
  6. cribl_control_plane/errors/healthstatus_error.py +1 -1
  7. cribl_control_plane/errors/no_response_error.py +1 -1
  8. cribl_control_plane/errors/responsevalidationerror.py +1 -1
  9. cribl_control_plane/httpclient.py +0 -1
  10. cribl_control_plane/lakedatasets.py +12 -12
  11. cribl_control_plane/models/__init__.py +89 -7
  12. cribl_control_plane/models/createversionundoop.py +3 -3
  13. cribl_control_plane/models/cribllakedatasetupdate.py +81 -0
  14. cribl_control_plane/models/distributedsummary.py +6 -0
  15. cribl_control_plane/models/gitinfo.py +14 -3
  16. cribl_control_plane/models/input.py +65 -63
  17. cribl_control_plane/models/inputappscope.py +4 -0
  18. cribl_control_plane/models/inputazureblob.py +4 -0
  19. cribl_control_plane/models/inputcollection.py +4 -0
  20. cribl_control_plane/models/inputconfluentcloud.py +8 -0
  21. cribl_control_plane/models/inputcribl.py +4 -0
  22. cribl_control_plane/models/inputcriblhttp.py +4 -0
  23. cribl_control_plane/models/inputcribllakehttp.py +4 -0
  24. cribl_control_plane/models/inputcriblmetrics.py +4 -0
  25. cribl_control_plane/models/inputcribltcp.py +4 -0
  26. cribl_control_plane/models/inputcrowdstrike.py +7 -0
  27. cribl_control_plane/models/inputdatadogagent.py +4 -0
  28. cribl_control_plane/models/inputdatagen.py +4 -0
  29. cribl_control_plane/models/inputedgeprometheus.py +12 -0
  30. cribl_control_plane/models/inputelastic.py +11 -0
  31. cribl_control_plane/models/inputeventhub.py +6 -0
  32. cribl_control_plane/models/inputexec.py +4 -0
  33. cribl_control_plane/models/inputfile.py +6 -0
  34. cribl_control_plane/models/inputfirehose.py +4 -0
  35. cribl_control_plane/models/inputgooglepubsub.py +7 -0
  36. cribl_control_plane/models/inputgrafana.py +8 -0
  37. cribl_control_plane/models/inputhttp.py +4 -0
  38. cribl_control_plane/models/inputhttpraw.py +4 -0
  39. cribl_control_plane/models/inputjournalfiles.py +4 -0
  40. cribl_control_plane/models/inputkafka.py +8 -0
  41. cribl_control_plane/models/inputkinesis.py +15 -0
  42. cribl_control_plane/models/inputkubeevents.py +4 -0
  43. cribl_control_plane/models/inputkubelogs.py +4 -0
  44. cribl_control_plane/models/inputkubemetrics.py +4 -0
  45. cribl_control_plane/models/inputloki.py +4 -0
  46. cribl_control_plane/models/inputmetrics.py +4 -0
  47. cribl_control_plane/models/inputmodeldriventelemetry.py +4 -0
  48. cribl_control_plane/models/inputmsk.py +7 -0
  49. cribl_control_plane/models/inputnetflow.py +4 -0
  50. cribl_control_plane/models/inputoffice365mgmt.py +11 -0
  51. cribl_control_plane/models/inputoffice365msgtrace.py +11 -0
  52. cribl_control_plane/models/inputoffice365service.py +11 -0
  53. cribl_control_plane/models/inputopentelemetry.py +8 -0
  54. cribl_control_plane/models/inputprometheus.py +10 -0
  55. cribl_control_plane/models/inputprometheusrw.py +4 -0
  56. cribl_control_plane/models/inputrawudp.py +4 -0
  57. cribl_control_plane/models/inputs3.py +7 -0
  58. cribl_control_plane/models/inputs3inventory.py +7 -0
  59. cribl_control_plane/models/inputsecuritylake.py +7 -0
  60. cribl_control_plane/models/inputsnmp.py +11 -0
  61. cribl_control_plane/models/inputsplunk.py +9 -0
  62. cribl_control_plane/models/inputsplunkhec.py +4 -0
  63. cribl_control_plane/models/inputsplunksearch.py +7 -0
  64. cribl_control_plane/models/inputsqs.py +17 -10
  65. cribl_control_plane/models/inputsyslog.py +8 -0
  66. cribl_control_plane/models/inputsystemmetrics.py +32 -0
  67. cribl_control_plane/models/inputsystemstate.py +4 -0
  68. cribl_control_plane/models/inputtcp.py +4 -0
  69. cribl_control_plane/models/inputtcpjson.py +4 -0
  70. cribl_control_plane/models/inputwef.py +6 -0
  71. cribl_control_plane/models/inputwindowsmetrics.py +28 -0
  72. cribl_control_plane/models/inputwineventlogs.py +8 -0
  73. cribl_control_plane/models/inputwiz.py +7 -0
  74. cribl_control_plane/models/inputwizwebhook.py +4 -0
  75. cribl_control_plane/models/inputzscalerhec.py +4 -0
  76. cribl_control_plane/models/jobinfo.py +4 -1
  77. cribl_control_plane/models/nodeprovidedinfo.py +4 -1
  78. cribl_control_plane/models/output.py +74 -69
  79. cribl_control_plane/models/outputazureblob.py +20 -0
  80. cribl_control_plane/models/outputazuredataexplorer.py +28 -0
  81. cribl_control_plane/models/outputazureeventhub.py +17 -0
  82. cribl_control_plane/models/outputazurelogs.py +13 -0
  83. cribl_control_plane/models/outputchronicle.py +444 -0
  84. cribl_control_plane/models/outputclickhouse.py +17 -0
  85. cribl_control_plane/models/outputcloudwatch.py +13 -0
  86. cribl_control_plane/models/outputconfluentcloud.py +24 -0
  87. cribl_control_plane/models/outputcriblhttp.py +15 -0
  88. cribl_control_plane/models/outputcribllake.py +21 -0
  89. cribl_control_plane/models/outputcribltcp.py +12 -0
  90. cribl_control_plane/models/outputcrowdstrikenextgensiem.py +15 -0
  91. cribl_control_plane/models/outputdatabricks.py +9 -0
  92. cribl_control_plane/models/outputdatadog.py +30 -0
  93. cribl_control_plane/models/outputdataset.py +23 -0
  94. cribl_control_plane/models/outputdls3.py +35 -0
  95. cribl_control_plane/models/outputdynatracehttp.py +22 -0
  96. cribl_control_plane/models/outputdynatraceotlp.py +22 -0
  97. cribl_control_plane/models/outputelastic.py +18 -0
  98. cribl_control_plane/models/outputelasticcloud.py +13 -0
  99. cribl_control_plane/models/outputexabeam.py +14 -0
  100. cribl_control_plane/models/outputfilesystem.py +15 -0
  101. cribl_control_plane/models/outputgooglechronicle.py +26 -4
  102. cribl_control_plane/models/outputgooglecloudlogging.py +28 -4
  103. cribl_control_plane/models/outputgooglecloudstorage.py +28 -0
  104. cribl_control_plane/models/outputgooglepubsub.py +13 -0
  105. cribl_control_plane/models/outputgrafanacloud.py +50 -0
  106. cribl_control_plane/models/outputgraphite.py +12 -0
  107. cribl_control_plane/models/outputhoneycomb.py +13 -0
  108. cribl_control_plane/models/outputhumiohec.py +15 -0
  109. cribl_control_plane/models/outputinfluxdb.py +19 -0
  110. cribl_control_plane/models/outputkafka.py +24 -0
  111. cribl_control_plane/models/outputkinesis.py +15 -0
  112. cribl_control_plane/models/outputloki.py +20 -0
  113. cribl_control_plane/models/outputminio.py +28 -0
  114. cribl_control_plane/models/outputmsk.py +23 -0
  115. cribl_control_plane/models/outputnewrelic.py +16 -0
  116. cribl_control_plane/models/outputnewrelicevents.py +16 -0
  117. cribl_control_plane/models/outputopentelemetry.py +22 -0
  118. cribl_control_plane/models/outputprometheus.py +13 -0
  119. cribl_control_plane/models/outputring.py +2 -0
  120. cribl_control_plane/models/outputs3.py +35 -0
  121. cribl_control_plane/models/outputsecuritylake.py +29 -0
  122. cribl_control_plane/models/outputsentinel.py +15 -0
  123. cribl_control_plane/models/outputsentineloneaisiem.py +13 -0
  124. cribl_control_plane/models/outputservicenow.py +21 -0
  125. cribl_control_plane/models/outputsignalfx.py +13 -0
  126. cribl_control_plane/models/outputsns.py +13 -0
  127. cribl_control_plane/models/outputsplunk.py +15 -0
  128. cribl_control_plane/models/outputsplunkhec.py +13 -0
  129. cribl_control_plane/models/outputsplunklb.py +15 -0
  130. cribl_control_plane/models/outputsqs.py +23 -10
  131. cribl_control_plane/models/outputstatsd.py +12 -0
  132. cribl_control_plane/models/outputstatsdext.py +12 -0
  133. cribl_control_plane/models/outputsumologic.py +15 -0
  134. cribl_control_plane/models/outputsyslog.py +24 -0
  135. cribl_control_plane/models/outputtcpjson.py +12 -0
  136. cribl_control_plane/models/outputwavefront.py +13 -0
  137. cribl_control_plane/models/outputwebhook.py +23 -0
  138. cribl_control_plane/models/outputxsiam.py +13 -0
  139. cribl_control_plane/models/packinfo.py +6 -3
  140. cribl_control_plane/models/packinstallinfo.py +6 -3
  141. cribl_control_plane/models/runnablejobcollection.py +4 -0
  142. cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +9 -5
  143. cribl_control_plane/models/updatepacksop.py +27 -0
  144. cribl_control_plane/models/uploadpackresponse.py +13 -0
  145. cribl_control_plane/packs.py +196 -1
  146. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/METADATA +47 -13
  147. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/RECORD +148 -144
  148. {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/WHEEL +0 -0
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from cribl_control_plane.types import BaseModel
5
5
  from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
6
6
  import pydantic
7
- from typing import List, Optional
7
+ from typing import Any, Dict, List, Optional
8
8
  from typing_extensions import Annotated, NotRequired, TypedDict
9
9
 
10
10
 
@@ -27,7 +27,7 @@ class CreateVersionUndoResponseTypedDict(TypedDict):
27
27
 
28
28
  count: NotRequired[int]
29
29
  r"""number of items present in the items array"""
30
- items: NotRequired[List[str]]
30
+ items: NotRequired[List[Dict[str, Any]]]
31
31
 
32
32
 
33
33
  class CreateVersionUndoResponse(BaseModel):
@@ -36,4 +36,4 @@ class CreateVersionUndoResponse(BaseModel):
36
36
  count: Optional[int] = None
37
37
  r"""number of items present in the items array"""
38
38
 
39
- items: Optional[List[str]] = None
39
+ items: Optional[List[Dict[str, Any]]] = None
@@ -0,0 +1,81 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .cacheconnection import CacheConnection, CacheConnectionTypedDict
5
+ from .lakedatasetsearchconfig import (
6
+ LakeDatasetSearchConfig,
7
+ LakeDatasetSearchConfigTypedDict,
8
+ )
9
+ from cribl_control_plane import utils
10
+ from cribl_control_plane.types import BaseModel
11
+ from cribl_control_plane.utils import validate_open_enum
12
+ from enum import Enum
13
+ import pydantic
14
+ from pydantic.functional_validators import PlainValidator
15
+ from typing import List, Optional
16
+ from typing_extensions import Annotated, NotRequired, TypedDict
17
+
18
+
19
+ class CriblLakeDatasetUpdateFormat(str, Enum, metaclass=utils.OpenEnumMeta):
20
+ JSON = "json"
21
+ DDSS = "ddss"
22
+ PARQUET = "parquet"
23
+
24
+
25
+ class CriblLakeDatasetUpdateTypedDict(TypedDict):
26
+ accelerated_fields: NotRequired[List[str]]
27
+ bucket_name: NotRequired[str]
28
+ cache_connection: NotRequired[CacheConnectionTypedDict]
29
+ deletion_started_at: NotRequired[float]
30
+ description: NotRequired[str]
31
+ format_: NotRequired[CriblLakeDatasetUpdateFormat]
32
+ http_da_used: NotRequired[bool]
33
+ id: NotRequired[str]
34
+ retention_period_in_days: NotRequired[float]
35
+ search_config: NotRequired[LakeDatasetSearchConfigTypedDict]
36
+ storage_location_id: NotRequired[str]
37
+ view_name: NotRequired[str]
38
+
39
+
40
+ class CriblLakeDatasetUpdate(BaseModel):
41
+ accelerated_fields: Annotated[
42
+ Optional[List[str]], pydantic.Field(alias="acceleratedFields")
43
+ ] = None
44
+
45
+ bucket_name: Annotated[Optional[str], pydantic.Field(alias="bucketName")] = None
46
+
47
+ cache_connection: Annotated[
48
+ Optional[CacheConnection], pydantic.Field(alias="cacheConnection")
49
+ ] = None
50
+
51
+ deletion_started_at: Annotated[
52
+ Optional[float], pydantic.Field(alias="deletionStartedAt")
53
+ ] = None
54
+
55
+ description: Optional[str] = None
56
+
57
+ format_: Annotated[
58
+ Annotated[
59
+ Optional[CriblLakeDatasetUpdateFormat],
60
+ PlainValidator(validate_open_enum(False)),
61
+ ],
62
+ pydantic.Field(alias="format"),
63
+ ] = None
64
+
65
+ http_da_used: Annotated[Optional[bool], pydantic.Field(alias="httpDAUsed")] = None
66
+
67
+ id: Optional[str] = None
68
+
69
+ retention_period_in_days: Annotated[
70
+ Optional[float], pydantic.Field(alias="retentionPeriodInDays")
71
+ ] = None
72
+
73
+ search_config: Annotated[
74
+ Optional[LakeDatasetSearchConfig], pydantic.Field(alias="searchConfig")
75
+ ] = None
76
+
77
+ storage_location_id: Annotated[
78
+ Optional[str], pydantic.Field(alias="storageLocationId")
79
+ ] = None
80
+
81
+ view_name: Annotated[Optional[str], pydantic.Field(alias="viewName")] = None
@@ -9,7 +9,9 @@ from typing_extensions import Annotated, TypedDict
9
9
  class DistributedSummaryGroupsTypedDict(TypedDict):
10
10
  count: float
11
11
  destinations: float
12
+ packs: float
12
13
  pipelines: float
14
+ quick_connects: float
13
15
  routes: float
14
16
  sources: float
15
17
 
@@ -19,8 +21,12 @@ class DistributedSummaryGroups(BaseModel):
19
21
 
20
22
  destinations: float
21
23
 
24
+ packs: float
25
+
22
26
  pipelines: float
23
27
 
28
+ quick_connects: Annotated[float, pydantic.Field(alias="quickConnects")]
29
+
24
30
  routes: float
25
31
 
26
32
  sources: float
@@ -1,15 +1,26 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from cribl_control_plane import utils
4
5
  from cribl_control_plane.types import BaseModel
6
+ from cribl_control_plane.utils import validate_open_enum
7
+ from enum import Enum
8
+ from pydantic.functional_validators import PlainValidator
5
9
  from typing import Union
6
- from typing_extensions import TypeAliasType, TypedDict
10
+ from typing_extensions import Annotated, TypeAliasType, TypedDict
7
11
 
8
12
 
9
- RemoteTypedDict = TypeAliasType("RemoteTypedDict", Union[str, bool])
13
+ class RemoteEnum(str, Enum, metaclass=utils.OpenEnumMeta):
14
+ FALSE = "false"
10
15
 
11
16
 
12
- Remote = TypeAliasType("Remote", Union[str, bool])
17
+ RemoteTypedDict = TypeAliasType("RemoteTypedDict", Union[str, RemoteEnum])
18
+
19
+
20
+ Remote = TypeAliasType(
21
+ "Remote",
22
+ Union[str, Annotated[RemoteEnum, PlainValidator(validate_open_enum(False))]],
23
+ )
13
24
 
14
25
 
15
26
  class GitInfoTypedDict(TypedDict):
@@ -66,8 +66,10 @@ from .inputwineventlogs import InputWinEventLogs, InputWinEventLogsTypedDict
66
66
  from .inputwiz import InputWiz, InputWizTypedDict
67
67
  from .inputwizwebhook import InputWizWebhook, InputWizWebhookTypedDict
68
68
  from .inputzscalerhec import InputZscalerHec, InputZscalerHecTypedDict
69
+ from cribl_control_plane.utils import get_discriminator
70
+ from pydantic import Discriminator, Tag
69
71
  from typing import Union
70
- from typing_extensions import TypeAliasType
72
+ from typing_extensions import Annotated, TypeAliasType
71
73
 
72
74
 
73
75
  InputTypedDict = TypeAliasType(
@@ -136,67 +138,67 @@ InputTypedDict = TypeAliasType(
136
138
  )
137
139
 
138
140
 
139
- Input = TypeAliasType(
140
- "Input",
141
+ Input = Annotated[
141
142
  Union[
142
- InputDatagen,
143
- InputKubeEvents,
144
- InputCribl,
145
- InputCriblmetrics,
146
- InputKubeMetrics,
147
- InputCollection,
148
- InputSystemState,
149
- InputModelDrivenTelemetry,
150
- InputSystemMetrics,
151
- InputWindowsMetrics,
152
- InputJournalFiles,
153
- InputWinEventLogs,
154
- InputRawUDP,
155
- InputExec,
156
- InputKubeLogs,
157
- InputMetrics,
158
- InputSnmp,
159
- InputCriblTCP,
160
- InputNetflow,
161
- InputTcpjson,
162
- InputGooglePubsub,
163
- InputOffice365Service,
164
- InputWiz,
165
- InputTCP,
166
- InputFirehose,
167
- InputCriblHTTP,
168
- InputDatadogAgent,
169
- InputOffice365Mgmt,
170
- InputFile,
171
- InputSplunk,
172
- InputWef,
173
- InputAppscope,
174
- InputHTTPRaw,
175
- InputWizWebhook,
176
- InputHTTP,
177
- InputCriblLakeHTTP,
178
- InputAzureBlob,
179
- InputSqs,
180
- InputZscalerHec,
181
- InputKinesis,
182
- InputConfluentCloud,
183
- InputEventhub,
184
- InputKafka,
185
- InputElastic,
186
- InputOffice365MsgTrace,
187
- InputSplunkHec,
188
- InputLoki,
189
- InputPrometheusRw,
190
- InputPrometheus,
191
- InputCrowdstrike,
192
- InputEdgePrometheus,
193
- InputOpenTelemetry,
194
- InputS3,
195
- InputSecurityLake,
196
- InputMsk,
197
- InputS3Inventory,
198
- InputSplunkSearch,
199
- InputSyslog,
200
- InputGrafana,
143
+ Annotated[InputCollection, Tag("collection")],
144
+ Annotated[InputKafka, Tag("kafka")],
145
+ Annotated[InputMsk, Tag("msk")],
146
+ Annotated[InputHTTP, Tag("http")],
147
+ Annotated[InputSplunk, Tag("splunk")],
148
+ Annotated[InputSplunkSearch, Tag("splunk_search")],
149
+ Annotated[InputSplunkHec, Tag("splunk_hec")],
150
+ Annotated[InputAzureBlob, Tag("azure_blob")],
151
+ Annotated[InputElastic, Tag("elastic")],
152
+ Annotated[InputConfluentCloud, Tag("confluent_cloud")],
153
+ Annotated[InputGrafana, Tag("grafana")],
154
+ Annotated[InputLoki, Tag("loki")],
155
+ Annotated[InputPrometheusRw, Tag("prometheus_rw")],
156
+ Annotated[InputPrometheus, Tag("prometheus")],
157
+ Annotated[InputEdgePrometheus, Tag("edge_prometheus")],
158
+ Annotated[InputOffice365Mgmt, Tag("office365_mgmt")],
159
+ Annotated[InputOffice365Service, Tag("office365_service")],
160
+ Annotated[InputOffice365MsgTrace, Tag("office365_msg_trace")],
161
+ Annotated[InputEventhub, Tag("eventhub")],
162
+ Annotated[InputExec, Tag("exec")],
163
+ Annotated[InputFirehose, Tag("firehose")],
164
+ Annotated[InputGooglePubsub, Tag("google_pubsub")],
165
+ Annotated[InputCribl, Tag("cribl")],
166
+ Annotated[InputCriblTCP, Tag("cribl_tcp")],
167
+ Annotated[InputCriblHTTP, Tag("cribl_http")],
168
+ Annotated[InputCriblLakeHTTP, Tag("cribl_lake_http")],
169
+ Annotated[InputTcpjson, Tag("tcpjson")],
170
+ Annotated[InputSystemMetrics, Tag("system_metrics")],
171
+ Annotated[InputSystemState, Tag("system_state")],
172
+ Annotated[InputKubeMetrics, Tag("kube_metrics")],
173
+ Annotated[InputKubeLogs, Tag("kube_logs")],
174
+ Annotated[InputKubeEvents, Tag("kube_events")],
175
+ Annotated[InputWindowsMetrics, Tag("windows_metrics")],
176
+ Annotated[InputCrowdstrike, Tag("crowdstrike")],
177
+ Annotated[InputDatadogAgent, Tag("datadog_agent")],
178
+ Annotated[InputDatagen, Tag("datagen")],
179
+ Annotated[InputHTTPRaw, Tag("http_raw")],
180
+ Annotated[InputKinesis, Tag("kinesis")],
181
+ Annotated[InputCriblmetrics, Tag("criblmetrics")],
182
+ Annotated[InputMetrics, Tag("metrics")],
183
+ Annotated[InputS3, Tag("s3")],
184
+ Annotated[InputS3Inventory, Tag("s3_inventory")],
185
+ Annotated[InputSnmp, Tag("snmp")],
186
+ Annotated[InputOpenTelemetry, Tag("open_telemetry")],
187
+ Annotated[InputModelDrivenTelemetry, Tag("model_driven_telemetry")],
188
+ Annotated[InputSqs, Tag("sqs")],
189
+ Annotated[InputSyslog, Tag("syslog")],
190
+ Annotated[InputFile, Tag("file")],
191
+ Annotated[InputTCP, Tag("tcp")],
192
+ Annotated[InputAppscope, Tag("appscope")],
193
+ Annotated[InputWef, Tag("wef")],
194
+ Annotated[InputWinEventLogs, Tag("win_event_logs")],
195
+ Annotated[InputRawUDP, Tag("raw_udp")],
196
+ Annotated[InputJournalFiles, Tag("journal_files")],
197
+ Annotated[InputWiz, Tag("wiz")],
198
+ Annotated[InputWizWebhook, Tag("wiz_webhook")],
199
+ Annotated[InputNetflow, Tag("netflow")],
200
+ Annotated[InputSecurityLake, Tag("security_lake")],
201
+ Annotated[InputZscalerHec, Tag("zscaler_hec")],
201
202
  ],
202
- )
203
+ Discriminator(lambda m: get_discriminator(m, "type", "type")),
204
+ ]
@@ -29,14 +29,18 @@ class InputAppscopeConnection(BaseModel):
29
29
  class InputAppscopeMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputAppscopeCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputAzureBlobConnection(BaseModel):
29
29
  class InputAzureBlobMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputAzureBlobCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCollectionConnection(BaseModel):
29
29
  class InputCollectionMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCollectionCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputConfluentCloudConnection(BaseModel):
29
29
  class InputConfluentCloudMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputConfluentCloudCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -338,9 +342,13 @@ class InputConfluentCloudKafkaSchemaRegistryAuthentication(BaseModel):
338
342
 
339
343
 
340
344
  class InputConfluentCloudSASLMechanism(str, Enum, metaclass=utils.OpenEnumMeta):
345
+ # PLAIN
341
346
  PLAIN = "plain"
347
+ # SCRAM-SHA-256
342
348
  SCRAM_SHA_256 = "scram-sha-256"
349
+ # SCRAM-SHA-512
343
350
  SCRAM_SHA_512 = "scram-sha-512"
351
+ # GSSAPI/Kerberos
344
352
  KERBEROS = "kerberos"
345
353
 
346
354
 
@@ -29,14 +29,18 @@ class InputCriblConnection(BaseModel):
29
29
  class InputCriblMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCriblCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCriblHTTPConnection(BaseModel):
29
29
  class InputCriblHTTPMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCriblHTTPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCriblLakeHTTPConnection(BaseModel):
29
29
  class InputCriblLakeHTTPMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCriblLakeHTTPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCriblmetricsConnection(BaseModel):
29
29
  class InputCriblmetricsMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCriblmetricsCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCriblTCPConnection(BaseModel):
29
29
  class InputCriblTCPMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCriblTCPCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputCrowdstrikeConnection(BaseModel):
29
29
  class InputCrowdstrikeMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputCrowdstrikeCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -106,8 +110,11 @@ class InputCrowdstrikePq(BaseModel):
106
110
  class InputCrowdstrikeAuthenticationMethod(str, Enum, metaclass=utils.OpenEnumMeta):
107
111
  r"""AWS authentication method. Choose Auto to use IAM roles."""
108
112
 
113
+ # Auto
109
114
  AUTO = "auto"
115
+ # Manual
110
116
  MANUAL = "manual"
117
+ # Secret Key pair
111
118
  SECRET = "secret"
112
119
 
113
120
 
@@ -29,14 +29,18 @@ class InputDatadogAgentConnection(BaseModel):
29
29
  class InputDatadogAgentMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputDatadogAgentCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputDatagenConnection(BaseModel):
29
29
  class InputDatagenMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputDatagenCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -29,14 +29,18 @@ class InputEdgePrometheusConnection(BaseModel):
29
29
  class InputEdgePrometheusMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputEdgePrometheusPqCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -107,10 +111,15 @@ class InputEdgePrometheusPq(BaseModel):
107
111
  class InputEdgePrometheusDiscoveryType(str, Enum, metaclass=utils.OpenEnumMeta):
108
112
  r"""Target discovery mechanism. Use static to manually enter a list of targets."""
109
113
 
114
+ # Static
110
115
  STATIC = "static"
116
+ # DNS
111
117
  DNS = "dns"
118
+ # AWS EC2
112
119
  EC2 = "ec2"
120
+ # Kubernetes Node
113
121
  K8S_NODE = "k8s-node"
122
+ # Kubernetes Pods
114
123
  K8S_PODS = "k8s-pods"
115
124
 
116
125
 
@@ -248,8 +257,11 @@ class InputEdgePrometheusAwsAuthenticationMethodAuthenticationMethod(
248
257
  ):
249
258
  r"""AWS authentication method. Choose Auto to use IAM roles."""
250
259
 
260
+ # Auto
251
261
  AUTO = "auto"
262
+ # Manual
252
263
  MANUAL = "manual"
264
+ # Secret Key pair
253
265
  SECRET = "secret"
254
266
 
255
267
 
@@ -29,14 +29,18 @@ class InputElasticConnection(BaseModel):
29
29
  class InputElasticMode(str, Enum, metaclass=utils.OpenEnumMeta):
30
30
  r"""With Smart mode, PQ will write events to the filesystem only when it detects backpressure from the processing engine. With Always On mode, PQ will always write events directly to the queue before forwarding them to the processing engine."""
31
31
 
32
+ # Smart
32
33
  SMART = "smart"
34
+ # Always On
33
35
  ALWAYS = "always"
34
36
 
35
37
 
36
38
  class InputElasticCompression(str, Enum, metaclass=utils.OpenEnumMeta):
37
39
  r"""Codec to use to compress the persisted data"""
38
40
 
41
+ # None
39
42
  NONE = "none"
43
+ # Gzip
40
44
  GZIP = "gzip"
41
45
 
42
46
 
@@ -186,17 +190,24 @@ class InputElasticTLSSettingsServerSide(BaseModel):
186
190
 
187
191
 
188
192
  class InputElasticAuthenticationType(str, Enum, metaclass=utils.OpenEnumMeta):
193
+ # None
189
194
  NONE = "none"
195
+ # Basic
190
196
  BASIC = "basic"
197
+ # Basic (credentials secret)
191
198
  CREDENTIALS_SECRET = "credentialsSecret"
199
+ # Auth Tokens
192
200
  AUTH_TOKENS = "authTokens"
193
201
 
194
202
 
195
203
  class InputElasticAPIVersion(str, Enum, metaclass=utils.OpenEnumMeta):
196
204
  r"""The API version to use for communicating with the server"""
197
205
 
206
+ # 6.8.4
198
207
  SIX_DOT_8_DOT_4 = "6.8.4"
208
+ # 8.3.2
199
209
  EIGHT_DOT_3_DOT_2 = "8.3.2"
210
+ # Custom
200
211
  CUSTOM = "custom"
201
212
 
202
213