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.
- cribl_control_plane/_hooks/clientcredentials.py +91 -41
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/errors/apierror.py +1 -1
- cribl_control_plane/errors/criblcontrolplaneerror.py +1 -1
- cribl_control_plane/errors/error.py +1 -1
- cribl_control_plane/errors/healthstatus_error.py +1 -1
- cribl_control_plane/errors/no_response_error.py +1 -1
- cribl_control_plane/errors/responsevalidationerror.py +1 -1
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/lakedatasets.py +12 -12
- cribl_control_plane/models/__init__.py +89 -7
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/cribllakedatasetupdate.py +81 -0
- cribl_control_plane/models/distributedsummary.py +6 -0
- cribl_control_plane/models/gitinfo.py +14 -3
- cribl_control_plane/models/input.py +65 -63
- cribl_control_plane/models/inputappscope.py +4 -0
- cribl_control_plane/models/inputazureblob.py +4 -0
- cribl_control_plane/models/inputcollection.py +4 -0
- cribl_control_plane/models/inputconfluentcloud.py +8 -0
- cribl_control_plane/models/inputcribl.py +4 -0
- cribl_control_plane/models/inputcriblhttp.py +4 -0
- cribl_control_plane/models/inputcribllakehttp.py +4 -0
- cribl_control_plane/models/inputcriblmetrics.py +4 -0
- cribl_control_plane/models/inputcribltcp.py +4 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputdatadogagent.py +4 -0
- cribl_control_plane/models/inputdatagen.py +4 -0
- cribl_control_plane/models/inputedgeprometheus.py +12 -0
- cribl_control_plane/models/inputelastic.py +11 -0
- cribl_control_plane/models/inputeventhub.py +6 -0
- cribl_control_plane/models/inputexec.py +4 -0
- cribl_control_plane/models/inputfile.py +6 -0
- cribl_control_plane/models/inputfirehose.py +4 -0
- cribl_control_plane/models/inputgooglepubsub.py +7 -0
- cribl_control_plane/models/inputgrafana.py +8 -0
- cribl_control_plane/models/inputhttp.py +4 -0
- cribl_control_plane/models/inputhttpraw.py +4 -0
- cribl_control_plane/models/inputjournalfiles.py +4 -0
- cribl_control_plane/models/inputkafka.py +8 -0
- cribl_control_plane/models/inputkinesis.py +15 -0
- cribl_control_plane/models/inputkubeevents.py +4 -0
- cribl_control_plane/models/inputkubelogs.py +4 -0
- cribl_control_plane/models/inputkubemetrics.py +4 -0
- cribl_control_plane/models/inputloki.py +4 -0
- cribl_control_plane/models/inputmetrics.py +4 -0
- cribl_control_plane/models/inputmodeldriventelemetry.py +4 -0
- cribl_control_plane/models/inputmsk.py +7 -0
- cribl_control_plane/models/inputnetflow.py +4 -0
- cribl_control_plane/models/inputoffice365mgmt.py +11 -0
- cribl_control_plane/models/inputoffice365msgtrace.py +11 -0
- cribl_control_plane/models/inputoffice365service.py +11 -0
- cribl_control_plane/models/inputopentelemetry.py +8 -0
- cribl_control_plane/models/inputprometheus.py +10 -0
- cribl_control_plane/models/inputprometheusrw.py +4 -0
- cribl_control_plane/models/inputrawudp.py +4 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- cribl_control_plane/models/inputsnmp.py +11 -0
- cribl_control_plane/models/inputsplunk.py +9 -0
- cribl_control_plane/models/inputsplunkhec.py +4 -0
- cribl_control_plane/models/inputsplunksearch.py +7 -0
- cribl_control_plane/models/inputsqs.py +17 -10
- cribl_control_plane/models/inputsyslog.py +8 -0
- cribl_control_plane/models/inputsystemmetrics.py +32 -0
- cribl_control_plane/models/inputsystemstate.py +4 -0
- cribl_control_plane/models/inputtcp.py +4 -0
- cribl_control_plane/models/inputtcpjson.py +4 -0
- cribl_control_plane/models/inputwef.py +6 -0
- cribl_control_plane/models/inputwindowsmetrics.py +28 -0
- cribl_control_plane/models/inputwineventlogs.py +8 -0
- cribl_control_plane/models/inputwiz.py +7 -0
- cribl_control_plane/models/inputwizwebhook.py +4 -0
- cribl_control_plane/models/inputzscalerhec.py +4 -0
- cribl_control_plane/models/jobinfo.py +4 -1
- cribl_control_plane/models/nodeprovidedinfo.py +4 -1
- cribl_control_plane/models/output.py +74 -69
- cribl_control_plane/models/outputazureblob.py +20 -0
- cribl_control_plane/models/outputazuredataexplorer.py +28 -0
- cribl_control_plane/models/outputazureeventhub.py +17 -0
- cribl_control_plane/models/outputazurelogs.py +13 -0
- cribl_control_plane/models/outputchronicle.py +444 -0
- cribl_control_plane/models/outputclickhouse.py +17 -0
- cribl_control_plane/models/outputcloudwatch.py +13 -0
- cribl_control_plane/models/outputconfluentcloud.py +24 -0
- cribl_control_plane/models/outputcriblhttp.py +15 -0
- cribl_control_plane/models/outputcribllake.py +21 -0
- cribl_control_plane/models/outputcribltcp.py +12 -0
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +15 -0
- cribl_control_plane/models/outputdatabricks.py +9 -0
- cribl_control_plane/models/outputdatadog.py +30 -0
- cribl_control_plane/models/outputdataset.py +23 -0
- cribl_control_plane/models/outputdls3.py +35 -0
- cribl_control_plane/models/outputdynatracehttp.py +22 -0
- cribl_control_plane/models/outputdynatraceotlp.py +22 -0
- cribl_control_plane/models/outputelastic.py +18 -0
- cribl_control_plane/models/outputelasticcloud.py +13 -0
- cribl_control_plane/models/outputexabeam.py +14 -0
- cribl_control_plane/models/outputfilesystem.py +15 -0
- cribl_control_plane/models/outputgooglechronicle.py +26 -4
- cribl_control_plane/models/outputgooglecloudlogging.py +28 -4
- cribl_control_plane/models/outputgooglecloudstorage.py +28 -0
- cribl_control_plane/models/outputgooglepubsub.py +13 -0
- cribl_control_plane/models/outputgrafanacloud.py +50 -0
- cribl_control_plane/models/outputgraphite.py +12 -0
- cribl_control_plane/models/outputhoneycomb.py +13 -0
- cribl_control_plane/models/outputhumiohec.py +15 -0
- cribl_control_plane/models/outputinfluxdb.py +19 -0
- cribl_control_plane/models/outputkafka.py +24 -0
- cribl_control_plane/models/outputkinesis.py +15 -0
- cribl_control_plane/models/outputloki.py +20 -0
- cribl_control_plane/models/outputminio.py +28 -0
- cribl_control_plane/models/outputmsk.py +23 -0
- cribl_control_plane/models/outputnewrelic.py +16 -0
- cribl_control_plane/models/outputnewrelicevents.py +16 -0
- cribl_control_plane/models/outputopentelemetry.py +22 -0
- cribl_control_plane/models/outputprometheus.py +13 -0
- cribl_control_plane/models/outputring.py +2 -0
- cribl_control_plane/models/outputs3.py +35 -0
- cribl_control_plane/models/outputsecuritylake.py +29 -0
- cribl_control_plane/models/outputsentinel.py +15 -0
- cribl_control_plane/models/outputsentineloneaisiem.py +13 -0
- cribl_control_plane/models/outputservicenow.py +21 -0
- cribl_control_plane/models/outputsignalfx.py +13 -0
- cribl_control_plane/models/outputsns.py +13 -0
- cribl_control_plane/models/outputsplunk.py +15 -0
- cribl_control_plane/models/outputsplunkhec.py +13 -0
- cribl_control_plane/models/outputsplunklb.py +15 -0
- cribl_control_plane/models/outputsqs.py +23 -10
- cribl_control_plane/models/outputstatsd.py +12 -0
- cribl_control_plane/models/outputstatsdext.py +12 -0
- cribl_control_plane/models/outputsumologic.py +15 -0
- cribl_control_plane/models/outputsyslog.py +24 -0
- cribl_control_plane/models/outputtcpjson.py +12 -0
- cribl_control_plane/models/outputwavefront.py +13 -0
- cribl_control_plane/models/outputwebhook.py +23 -0
- cribl_control_plane/models/outputxsiam.py +13 -0
- cribl_control_plane/models/packinfo.py +6 -3
- cribl_control_plane/models/packinstallinfo.py +6 -3
- cribl_control_plane/models/runnablejobcollection.py +4 -0
- cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py +9 -5
- cribl_control_plane/models/updatepacksop.py +27 -0
- cribl_control_plane/models/uploadpackresponse.py +13 -0
- cribl_control_plane/packs.py +196 -1
- {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/METADATA +47 -13
- {cribl_control_plane-0.1.0b2.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/RECORD +148 -144
- {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
|
-
|
|
13
|
+
class RemoteEnum(str, Enum, metaclass=utils.OpenEnumMeta):
|
|
14
|
+
FALSE = "false"
|
|
10
15
|
|
|
11
16
|
|
|
12
|
-
|
|
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 =
|
|
140
|
-
"Input",
|
|
141
|
+
Input = Annotated[
|
|
141
142
|
Union[
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
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
|
|