cribl-control-plane 0.4.0b23__py3-none-any.whl → 0.5.0b3__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.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/collectors_sdk.py +993 -0
- cribl_control_plane/models/__init__.py +2161 -734
- cribl_control_plane/models/configgroup.py +3 -0
- cribl_control_plane/models/countedsavedjob.py +20 -0
- cribl_control_plane/models/createsavedjobop.py +30 -0
- cribl_control_plane/models/deletesavedjobbyidop.py +42 -0
- cribl_control_plane/models/functionaggregatemetrics.py +7 -144
- cribl_control_plane/models/functionaggregation.py +7 -110
- cribl_control_plane/models/functionautotimestamp.py +7 -111
- cribl_control_plane/models/functioncef.py +6 -51
- cribl_control_plane/models/functionchain.py +6 -12
- cribl_control_plane/models/functionclone.py +7 -13
- cribl_control_plane/models/functioncode.py +8 -35
- cribl_control_plane/models/functioncomment.py +6 -12
- cribl_control_plane/models/functionconfschemaaggregatemetrics.py +153 -0
- cribl_control_plane/models/functionconfschemaaggregation.py +114 -0
- cribl_control_plane/models/functionconfschemaautotimestamp.py +116 -0
- cribl_control_plane/models/functionconfschemacef.py +83 -0
- cribl_control_plane/models/functionconfschemachain.py +16 -0
- cribl_control_plane/models/functionconfschemaclone.py +16 -0
- cribl_control_plane/models/functionconfschemacode.py +38 -0
- cribl_control_plane/models/functionconfschemacomment.py +16 -0
- cribl_control_plane/models/functionconfschemadistinct.py +41 -0
- cribl_control_plane/models/functionconfschemadnslookup.py +193 -0
- cribl_control_plane/models/functionconfschemadrop.py +13 -0
- cribl_control_plane/models/functionconfschemadropdimensions.py +31 -0
- cribl_control_plane/models/functionconfschemadynamicsampling.py +67 -0
- cribl_control_plane/models/functionconfschemaeval.py +44 -0
- cribl_control_plane/models/functionconfschemaeventbreaker.py +51 -0
- cribl_control_plane/models/functionconfschemaeventstats.py +34 -0
- cribl_control_plane/models/functionconfschemaexternaldata.py +13 -0
- cribl_control_plane/models/functionconfschemaflatten.py +31 -0
- cribl_control_plane/models/functionconfschemafoldkeys.py +31 -0
- cribl_control_plane/models/functionconfschemagenstats.py +14 -0
- cribl_control_plane/models/functionconfschemageoip.py +66 -0
- cribl_control_plane/models/functionconfschemagrok.py +38 -0
- cribl_control_plane/models/functionconfschemahandlebar.py +56 -0
- cribl_control_plane/models/functionconfschemajoin.py +55 -0
- cribl_control_plane/models/functionconfschemajsonunroll.py +21 -0
- cribl_control_plane/models/functionconfschemalakeexport.py +44 -0
- cribl_control_plane/models/functionconfschemalimit.py +16 -0
- cribl_control_plane/models/functionconfschemalocalsearchdatatypeparser.py +17 -0
- cribl_control_plane/models/functionconfschemalocalsearchrulesetrunner.py +40 -0
- cribl_control_plane/models/functionconfschemalookup.py +92 -0
- cribl_control_plane/models/functionconfschemamask.py +63 -0
- cribl_control_plane/models/functionconfschemamvexpand.py +76 -0
- cribl_control_plane/models/functionconfschemamvpull.py +45 -0
- cribl_control_plane/models/functionconfschemanotificationpolicies.py +129 -0
- cribl_control_plane/models/functionconfschemanotifications.py +26 -0
- cribl_control_plane/models/functionconfschemanotify.py +149 -0
- cribl_control_plane/models/functionconfschemanumerify.py +63 -0
- cribl_control_plane/models/functionconfschemaotlplogs.py +24 -0
- cribl_control_plane/models/functionconfschemaotlpmetrics.py +61 -0
- cribl_control_plane/models/functionconfschemaotlptraces.py +54 -0
- cribl_control_plane/models/functionconfschemapack.py +24 -0
- cribl_control_plane/models/functionconfschemapivot.py +31 -0
- cribl_control_plane/models/functionconfschemapublishmetrics.py +98 -0
- cribl_control_plane/models/functionconfschemaredis.py +121 -0
- cribl_control_plane/models/functionconfschemaregexextract.py +55 -0
- cribl_control_plane/models/functionconfschemaregexfilter.py +38 -0
- cribl_control_plane/models/functionconfschemarename.py +49 -0
- cribl_control_plane/models/functionconfschemarollupmetrics.py +57 -0
- cribl_control_plane/models/functionconfschemasampling.py +32 -0
- cribl_control_plane/models/functionconfschemasend.py +84 -0
- cribl_control_plane/models/functionconfschemasensitivedatascanner.py +75 -0
- cribl_control_plane/models/functionconfschemaserde.py +105 -0
- cribl_control_plane/models/functionconfschemaserialize.py +78 -0
- cribl_control_plane/models/functionconfschemasidlookup.py +34 -0
- cribl_control_plane/models/functionconfschemasnmptrapserialize.py +92 -0
- cribl_control_plane/models/functionconfschemasort.py +41 -0
- cribl_control_plane/models/functionconfschemastore.py +75 -0
- cribl_control_plane/models/functionconfschemasuppress.py +57 -0
- cribl_control_plane/models/functionconfschematee.py +32 -0
- cribl_control_plane/models/functionconfschematrimtimestamp.py +16 -0
- cribl_control_plane/models/functionconfschemaunion.py +22 -0
- cribl_control_plane/models/functionconfschemaunroll.py +22 -0
- cribl_control_plane/models/functionconfschemawindow.py +40 -0
- cribl_control_plane/models/functionconfschemaxmlunroll.py +34 -0
- cribl_control_plane/models/functiondistinct.py +7 -37
- cribl_control_plane/models/functiondnslookup.py +7 -188
- cribl_control_plane/models/functiondrop.py +8 -12
- cribl_control_plane/models/functiondropdimensions.py +7 -25
- cribl_control_plane/models/functiondynamicsampling.py +6 -58
- cribl_control_plane/models/functioneval.py +9 -43
- cribl_control_plane/models/functioneventbreaker.py +6 -40
- cribl_control_plane/models/functioneventstats.py +7 -30
- cribl_control_plane/models/functionexternaldata.py +6 -10
- cribl_control_plane/models/functionflatten.py +7 -28
- cribl_control_plane/models/functionfoldkeys.py +6 -26
- cribl_control_plane/models/functiongenstats.py +7 -11
- cribl_control_plane/models/functiongeoip.py +7 -58
- cribl_control_plane/models/functiongrok.py +9 -35
- cribl_control_plane/models/functionhandlebar.py +6 -49
- cribl_control_plane/models/functionjoin.py +9 -52
- cribl_control_plane/models/functionjsonunroll.py +6 -17
- cribl_control_plane/models/functionlakeexport.py +6 -39
- cribl_control_plane/models/functionlimit.py +6 -12
- cribl_control_plane/models/functionlocalsearchdatatypeparser.py +6 -12
- cribl_control_plane/models/functionlocalsearchrulesetrunner.py +7 -34
- cribl_control_plane/models/functionlookup.py +7 -86
- cribl_control_plane/models/functionmask.py +9 -61
- cribl_control_plane/models/functionmvexpand.py +7 -66
- cribl_control_plane/models/functionmvpull.py +6 -36
- cribl_control_plane/models/functionnotificationpolicies.py +8 -125
- cribl_control_plane/models/functionnotifications.py +6 -22
- cribl_control_plane/models/functionnotify.py +6 -133
- cribl_control_plane/models/functionnumerify.py +7 -57
- cribl_control_plane/models/functionotlplogs.py +6 -19
- cribl_control_plane/models/functionotlpmetrics.py +7 -56
- cribl_control_plane/models/functionotlptraces.py +6 -48
- cribl_control_plane/models/functionpack.py +9 -20
- cribl_control_plane/models/functionpivot.py +7 -23
- cribl_control_plane/models/functionpublishmetrics.py +7 -91
- cribl_control_plane/models/functionredis.py +7 -111
- cribl_control_plane/models/functionregexextract.py +7 -50
- cribl_control_plane/models/functionregexfilter.py +7 -33
- cribl_control_plane/models/functionrename.py +7 -45
- cribl_control_plane/models/functionrollupmetrics.py +7 -52
- cribl_control_plane/models/functionsampling.py +7 -28
- cribl_control_plane/models/functionsend.py +8 -80
- cribl_control_plane/models/functionsensitivedatascanner.py +7 -66
- cribl_control_plane/models/functionserde.py +6 -98
- cribl_control_plane/models/functionserialize.py +7 -72
- cribl_control_plane/models/functionsidlookup.py +7 -31
- cribl_control_plane/models/functionsnmptrapserialize.py +6 -81
- cribl_control_plane/models/functionsort.py +8 -36
- cribl_control_plane/models/functionstore.py +6 -69
- cribl_control_plane/models/functionsuppress.py +6 -52
- cribl_control_plane/models/functiontee.py +6 -30
- cribl_control_plane/models/functiontrimtimestamp.py +6 -12
- cribl_control_plane/models/functionunion.py +9 -20
- cribl_control_plane/models/functionunroll.py +6 -17
- cribl_control_plane/models/functionwindow.py +7 -34
- cribl_control_plane/models/functionxmlunroll.py +6 -29
- cribl_control_plane/models/getsavedjobbyidop.py +33 -0
- cribl_control_plane/models/getsavedjobop.py +40 -0
- cribl_control_plane/models/groupcreaterequest.py +3 -0
- cribl_control_plane/models/heartbeatmetadata.py +42 -0
- cribl_control_plane/models/input.py +1 -1
- cribl_control_plane/models/inputedgeprometheus.py +11 -11
- cribl_control_plane/models/inputprometheus.py +23 -18
- cribl_control_plane/models/nodeprovidedinfo.py +42 -0
- cribl_control_plane/models/output.py +15 -9
- cribl_control_plane/models/outputclickhouse.py +31 -0
- cribl_control_plane/models/outputcriblhttp.py +7 -0
- cribl_control_plane/models/outputcriblsearchengine.py +655 -0
- cribl_control_plane/models/outputnetflow.py +16 -2
- cribl_control_plane/models/pipeline.py +52 -4
- cribl_control_plane/models/pipelinefunctionaggregatemetrics.py +195 -0
- cribl_control_plane/models/pipelinefunctionaggregation.py +159 -0
- cribl_control_plane/models/pipelinefunctionautotimestamp.py +56 -0
- cribl_control_plane/models/pipelinefunctioncef.py +96 -0
- cribl_control_plane/models/pipelinefunctionchain.py +62 -0
- cribl_control_plane/models/pipelinefunctionclone.py +56 -0
- cribl_control_plane/models/pipelinefunctioncode.py +56 -0
- cribl_control_plane/models/pipelinefunctioncomment.py +56 -0
- cribl_control_plane/models/pipelinefunctionconf.py +343 -46
- cribl_control_plane/models/pipelinefunctionconf_input.py +353 -0
- cribl_control_plane/models/pipelinefunctiondistinct.py +86 -0
- cribl_control_plane/models/pipelinefunctiondnslookup.py +56 -0
- cribl_control_plane/models/pipelinefunctiondrop.py +56 -0
- cribl_control_plane/models/pipelinefunctiondropdimensions.py +74 -0
- cribl_control_plane/models/pipelinefunctiondynamicsampling.py +111 -0
- cribl_control_plane/models/pipelinefunctioneval.py +56 -0
- cribl_control_plane/models/pipelinefunctioneventbreaker.py +95 -0
- cribl_control_plane/models/pipelinefunctioneventstats.py +79 -0
- cribl_control_plane/models/pipelinefunctionexternaldata.py +56 -0
- cribl_control_plane/models/pipelinefunctionflatten.py +56 -0
- cribl_control_plane/models/pipelinefunctionfoldkeys.py +56 -0
- cribl_control_plane/models/pipelinefunctiongenstats.py +56 -0
- cribl_control_plane/models/pipelinefunctiongeoip.py +109 -0
- cribl_control_plane/models/pipelinefunctiongrok.py +83 -0
- cribl_control_plane/models/pipelinefunctionhandlebar.py +99 -0
- cribl_control_plane/models/pipelinefunctionjoin.py +100 -0
- cribl_control_plane/models/pipelinefunctionjsonunroll.py +67 -0
- cribl_control_plane/models/pipelinefunctionlakeexport.py +89 -0
- cribl_control_plane/models/pipelinefunctionlimit.py +56 -0
- cribl_control_plane/models/pipelinefunctionlocalsearchdatatypeparser.py +62 -0
- cribl_control_plane/models/pipelinefunctionlocalsearchrulesetrunner.py +56 -0
- cribl_control_plane/models/pipelinefunctionlookup.py +136 -0
- cribl_control_plane/models/pipelinefunctionmask.py +108 -0
- cribl_control_plane/models/pipelinefunctionmvexpand.py +116 -0
- cribl_control_plane/models/pipelinefunctionmvpull.py +86 -0
- cribl_control_plane/models/pipelinefunctionnotificationpolicies.py +56 -0
- cribl_control_plane/models/pipelinefunctionnotifications.py +72 -0
- cribl_control_plane/models/pipelinefunctionnotify.py +189 -0
- cribl_control_plane/models/pipelinefunctionnumerify.py +56 -0
- cribl_control_plane/models/pipelinefunctionotlplogs.py +56 -0
- cribl_control_plane/models/pipelinefunctionotlpmetrics.py +56 -0
- cribl_control_plane/models/pipelinefunctionotlptraces.py +56 -0
- cribl_control_plane/models/pipelinefunctionpack.py +67 -0
- cribl_control_plane/models/pipelinefunctionpivot.py +72 -0
- cribl_control_plane/models/pipelinefunctionpublishmetrics.py +56 -0
- cribl_control_plane/models/pipelinefunctionredis.py +165 -0
- cribl_control_plane/models/pipelinefunctionregexextract.py +100 -0
- cribl_control_plane/models/pipelinefunctionregexfilter.py +56 -0
- cribl_control_plane/models/pipelinefunctionrename.py +56 -0
- cribl_control_plane/models/pipelinefunctionrollupmetrics.py +56 -0
- cribl_control_plane/models/pipelinefunctionsampling.py +56 -0
- cribl_control_plane/models/pipelinefunctionsend.py +128 -0
- cribl_control_plane/models/pipelinefunctionsensitivedatascanner.py +120 -0
- cribl_control_plane/models/pipelinefunctionserde.py +149 -0
- cribl_control_plane/models/pipelinefunctionserialize.py +122 -0
- cribl_control_plane/models/pipelinefunctionsidlookup.py +56 -0
- cribl_control_plane/models/pipelinefunctionsnmptrapserialize.py +56 -0
- cribl_control_plane/models/pipelinefunctionsort.py +84 -0
- cribl_control_plane/models/pipelinefunctionstore.py +120 -0
- cribl_control_plane/models/pipelinefunctionsuppress.py +102 -0
- cribl_control_plane/models/pipelinefunctiontee.py +77 -0
- cribl_control_plane/models/pipelinefunctiontrimtimestamp.py +56 -0
- cribl_control_plane/models/pipelinefunctionunion.py +67 -0
- cribl_control_plane/models/pipelinefunctionunroll.py +67 -0
- cribl_control_plane/models/pipelinefunctionwindow.py +83 -0
- cribl_control_plane/models/pipelinefunctionxmlunroll.py +79 -0
- cribl_control_plane/models/runnablejobcollection.py +11 -10
- cribl_control_plane/models/runnablejobexecutor.py +8 -8
- cribl_control_plane/models/savedjob.py +26 -0
- cribl_control_plane/models/savedjobcollection.py +411 -0
- cribl_control_plane/models/savedjobexecutor.py +301 -0
- cribl_control_plane/models/savedjobscheduledsearch.py +278 -0
- cribl_control_plane/models/updatepipelinebyidop.py +4 -3
- cribl_control_plane/models/updatesavedjobbyidop.py +42 -0
- cribl_control_plane/pipelines.py +16 -16
- cribl_control_plane/sdk.py +4 -0
- {cribl_control_plane-0.4.0b23.dist-info → cribl_control_plane-0.5.0b3.dist-info}/METADATA +10 -2
- {cribl_control_plane-0.4.0b23.dist-info → cribl_control_plane-0.5.0b3.dist-info}/RECORD +229 -88
- {cribl_control_plane-0.4.0b23.dist-info → cribl_control_plane-0.5.0b3.dist-info}/WHEEL +0 -0
- {cribl_control_plane-0.4.0b23.dist-info → cribl_control_plane-0.5.0b3.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from enum import Enum
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class PipelineFunctionChainID(str, Enum):
|
|
12
|
+
r"""Function ID"""
|
|
13
|
+
|
|
14
|
+
CHAIN = "chain"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class PipelineFunctionChainConfTypedDict(TypedDict):
|
|
18
|
+
processor: str
|
|
19
|
+
r"""The data processor (Pack/Pipeline) to send events through"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class PipelineFunctionChainConf(BaseModel):
|
|
23
|
+
processor: str
|
|
24
|
+
r"""The data processor (Pack/Pipeline) to send events through"""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class PipelineFunctionChainTypedDict(TypedDict):
|
|
28
|
+
id: PipelineFunctionChainID
|
|
29
|
+
r"""Function ID"""
|
|
30
|
+
conf: PipelineFunctionChainConfTypedDict
|
|
31
|
+
filter_: NotRequired[str]
|
|
32
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
33
|
+
description: NotRequired[str]
|
|
34
|
+
r"""Simple description of this step"""
|
|
35
|
+
disabled: NotRequired[bool]
|
|
36
|
+
r"""If true, data will not be pushed through this function"""
|
|
37
|
+
final: NotRequired[bool]
|
|
38
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
39
|
+
group_id: NotRequired[str]
|
|
40
|
+
r"""Group ID"""
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class PipelineFunctionChain(BaseModel):
|
|
44
|
+
id: PipelineFunctionChainID
|
|
45
|
+
r"""Function ID"""
|
|
46
|
+
|
|
47
|
+
conf: PipelineFunctionChainConf
|
|
48
|
+
|
|
49
|
+
filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
|
|
50
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
51
|
+
|
|
52
|
+
description: Optional[str] = None
|
|
53
|
+
r"""Simple description of this step"""
|
|
54
|
+
|
|
55
|
+
disabled: Optional[bool] = None
|
|
56
|
+
r"""If true, data will not be pushed through this function"""
|
|
57
|
+
|
|
58
|
+
final: Optional[bool] = None
|
|
59
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
60
|
+
|
|
61
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupId")] = None
|
|
62
|
+
r"""Group ID"""
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .functionconfschemaclone import (
|
|
5
|
+
FunctionConfSchemaClone,
|
|
6
|
+
FunctionConfSchemaCloneTypedDict,
|
|
7
|
+
)
|
|
8
|
+
from cribl_control_plane.types import BaseModel
|
|
9
|
+
from enum import Enum
|
|
10
|
+
import pydantic
|
|
11
|
+
from typing import Optional
|
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class PipelineFunctionCloneID(str, Enum):
|
|
16
|
+
r"""Function ID"""
|
|
17
|
+
|
|
18
|
+
CLONE = "clone"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class PipelineFunctionCloneTypedDict(TypedDict):
|
|
22
|
+
id: PipelineFunctionCloneID
|
|
23
|
+
r"""Function ID"""
|
|
24
|
+
conf: FunctionConfSchemaCloneTypedDict
|
|
25
|
+
filter_: NotRequired[str]
|
|
26
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
27
|
+
description: NotRequired[str]
|
|
28
|
+
r"""Simple description of this step"""
|
|
29
|
+
disabled: NotRequired[bool]
|
|
30
|
+
r"""If true, data will not be pushed through this function"""
|
|
31
|
+
final: NotRequired[bool]
|
|
32
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
33
|
+
group_id: NotRequired[str]
|
|
34
|
+
r"""Group ID"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class PipelineFunctionClone(BaseModel):
|
|
38
|
+
id: PipelineFunctionCloneID
|
|
39
|
+
r"""Function ID"""
|
|
40
|
+
|
|
41
|
+
conf: FunctionConfSchemaClone
|
|
42
|
+
|
|
43
|
+
filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
|
|
44
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
45
|
+
|
|
46
|
+
description: Optional[str] = None
|
|
47
|
+
r"""Simple description of this step"""
|
|
48
|
+
|
|
49
|
+
disabled: Optional[bool] = None
|
|
50
|
+
r"""If true, data will not be pushed through this function"""
|
|
51
|
+
|
|
52
|
+
final: Optional[bool] = None
|
|
53
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
54
|
+
|
|
55
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupId")] = None
|
|
56
|
+
r"""Group ID"""
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .functionconfschemacode import (
|
|
5
|
+
FunctionConfSchemaCode,
|
|
6
|
+
FunctionConfSchemaCodeTypedDict,
|
|
7
|
+
)
|
|
8
|
+
from cribl_control_plane.types import BaseModel
|
|
9
|
+
from enum import Enum
|
|
10
|
+
import pydantic
|
|
11
|
+
from typing import Optional
|
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class PipelineFunctionCodeID(str, Enum):
|
|
16
|
+
r"""Function ID"""
|
|
17
|
+
|
|
18
|
+
CODE = "code"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class PipelineFunctionCodeTypedDict(TypedDict):
|
|
22
|
+
id: PipelineFunctionCodeID
|
|
23
|
+
r"""Function ID"""
|
|
24
|
+
conf: FunctionConfSchemaCodeTypedDict
|
|
25
|
+
filter_: NotRequired[str]
|
|
26
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
27
|
+
description: NotRequired[str]
|
|
28
|
+
r"""Simple description of this step"""
|
|
29
|
+
disabled: NotRequired[bool]
|
|
30
|
+
r"""If true, data will not be pushed through this function"""
|
|
31
|
+
final: NotRequired[bool]
|
|
32
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
33
|
+
group_id: NotRequired[str]
|
|
34
|
+
r"""Group ID"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class PipelineFunctionCode(BaseModel):
|
|
38
|
+
id: PipelineFunctionCodeID
|
|
39
|
+
r"""Function ID"""
|
|
40
|
+
|
|
41
|
+
conf: FunctionConfSchemaCode
|
|
42
|
+
|
|
43
|
+
filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
|
|
44
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
45
|
+
|
|
46
|
+
description: Optional[str] = None
|
|
47
|
+
r"""Simple description of this step"""
|
|
48
|
+
|
|
49
|
+
disabled: Optional[bool] = None
|
|
50
|
+
r"""If true, data will not be pushed through this function"""
|
|
51
|
+
|
|
52
|
+
final: Optional[bool] = None
|
|
53
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
54
|
+
|
|
55
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupId")] = None
|
|
56
|
+
r"""Group ID"""
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .functionconfschemacomment import (
|
|
5
|
+
FunctionConfSchemaComment,
|
|
6
|
+
FunctionConfSchemaCommentTypedDict,
|
|
7
|
+
)
|
|
8
|
+
from cribl_control_plane.types import BaseModel
|
|
9
|
+
from enum import Enum
|
|
10
|
+
import pydantic
|
|
11
|
+
from typing import Optional
|
|
12
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class PipelineFunctionCommentID(str, Enum):
|
|
16
|
+
r"""Function ID"""
|
|
17
|
+
|
|
18
|
+
COMMENT = "comment"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class PipelineFunctionCommentTypedDict(TypedDict):
|
|
22
|
+
id: PipelineFunctionCommentID
|
|
23
|
+
r"""Function ID"""
|
|
24
|
+
conf: FunctionConfSchemaCommentTypedDict
|
|
25
|
+
filter_: NotRequired[str]
|
|
26
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
27
|
+
description: NotRequired[str]
|
|
28
|
+
r"""Simple description of this step"""
|
|
29
|
+
disabled: NotRequired[bool]
|
|
30
|
+
r"""If true, data will not be pushed through this function"""
|
|
31
|
+
final: NotRequired[bool]
|
|
32
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
33
|
+
group_id: NotRequired[str]
|
|
34
|
+
r"""Group ID"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class PipelineFunctionComment(BaseModel):
|
|
38
|
+
id: PipelineFunctionCommentID
|
|
39
|
+
r"""Function ID"""
|
|
40
|
+
|
|
41
|
+
conf: FunctionConfSchemaComment
|
|
42
|
+
|
|
43
|
+
filter_: Annotated[Optional[str], pydantic.Field(alias="filter")] = "true"
|
|
44
|
+
r"""Filter that selects data to be fed through this Function"""
|
|
45
|
+
|
|
46
|
+
description: Optional[str] = None
|
|
47
|
+
r"""Simple description of this step"""
|
|
48
|
+
|
|
49
|
+
disabled: Optional[bool] = None
|
|
50
|
+
r"""If true, data will not be pushed through this function"""
|
|
51
|
+
|
|
52
|
+
final: Optional[bool] = None
|
|
53
|
+
r"""If enabled, stops the results of this Function from being passed to the downstream Functions"""
|
|
54
|
+
|
|
55
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupId")] = None
|
|
56
|
+
r"""Group ID"""
|
|
@@ -1,53 +1,350 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
-
from
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
from .pipelinefunctionaggregatemetrics import (
|
|
5
|
+
PipelineFunctionAggregateMetrics,
|
|
6
|
+
PipelineFunctionAggregateMetricsTypedDict,
|
|
7
|
+
)
|
|
8
|
+
from .pipelinefunctionaggregation import (
|
|
9
|
+
PipelineFunctionAggregation,
|
|
10
|
+
PipelineFunctionAggregationTypedDict,
|
|
11
|
+
)
|
|
12
|
+
from .pipelinefunctionautotimestamp import (
|
|
13
|
+
PipelineFunctionAutoTimestamp,
|
|
14
|
+
PipelineFunctionAutoTimestampTypedDict,
|
|
15
|
+
)
|
|
16
|
+
from .pipelinefunctioncef import PipelineFunctionCef, PipelineFunctionCefTypedDict
|
|
17
|
+
from .pipelinefunctionchain import PipelineFunctionChain, PipelineFunctionChainTypedDict
|
|
18
|
+
from .pipelinefunctionclone import PipelineFunctionClone, PipelineFunctionCloneTypedDict
|
|
19
|
+
from .pipelinefunctioncode import PipelineFunctionCode, PipelineFunctionCodeTypedDict
|
|
20
|
+
from .pipelinefunctioncomment import (
|
|
21
|
+
PipelineFunctionComment,
|
|
22
|
+
PipelineFunctionCommentTypedDict,
|
|
23
|
+
)
|
|
24
|
+
from .pipelinefunctiondistinct import (
|
|
25
|
+
PipelineFunctionDistinct,
|
|
26
|
+
PipelineFunctionDistinctTypedDict,
|
|
27
|
+
)
|
|
28
|
+
from .pipelinefunctiondnslookup import (
|
|
29
|
+
PipelineFunctionDNSLookup,
|
|
30
|
+
PipelineFunctionDNSLookupTypedDict,
|
|
31
|
+
)
|
|
32
|
+
from .pipelinefunctiondrop import PipelineFunctionDrop, PipelineFunctionDropTypedDict
|
|
33
|
+
from .pipelinefunctiondropdimensions import (
|
|
34
|
+
PipelineFunctionDropDimensions,
|
|
35
|
+
PipelineFunctionDropDimensionsTypedDict,
|
|
36
|
+
)
|
|
37
|
+
from .pipelinefunctiondynamicsampling import (
|
|
38
|
+
PipelineFunctionDynamicSampling,
|
|
39
|
+
PipelineFunctionDynamicSamplingTypedDict,
|
|
40
|
+
)
|
|
41
|
+
from .pipelinefunctioneval import PipelineFunctionEval, PipelineFunctionEvalTypedDict
|
|
42
|
+
from .pipelinefunctioneventbreaker import (
|
|
43
|
+
PipelineFunctionEventBreaker,
|
|
44
|
+
PipelineFunctionEventBreakerTypedDict,
|
|
45
|
+
)
|
|
46
|
+
from .pipelinefunctioneventstats import (
|
|
47
|
+
PipelineFunctionEventstats,
|
|
48
|
+
PipelineFunctionEventstatsTypedDict,
|
|
49
|
+
)
|
|
50
|
+
from .pipelinefunctionexternaldata import (
|
|
51
|
+
PipelineFunctionExternaldata,
|
|
52
|
+
PipelineFunctionExternaldataTypedDict,
|
|
53
|
+
)
|
|
54
|
+
from .pipelinefunctionflatten import (
|
|
55
|
+
PipelineFunctionFlatten,
|
|
56
|
+
PipelineFunctionFlattenTypedDict,
|
|
57
|
+
)
|
|
58
|
+
from .pipelinefunctionfoldkeys import (
|
|
59
|
+
PipelineFunctionFoldkeys,
|
|
60
|
+
PipelineFunctionFoldkeysTypedDict,
|
|
61
|
+
)
|
|
62
|
+
from .pipelinefunctiongenstats import (
|
|
63
|
+
PipelineFunctionGenStats,
|
|
64
|
+
PipelineFunctionGenStatsTypedDict,
|
|
65
|
+
)
|
|
66
|
+
from .pipelinefunctiongeoip import PipelineFunctionGeoip, PipelineFunctionGeoipTypedDict
|
|
67
|
+
from .pipelinefunctiongrok import PipelineFunctionGrok, PipelineFunctionGrokTypedDict
|
|
68
|
+
from .pipelinefunctionhandlebar import (
|
|
69
|
+
PipelineFunctionHandlebar,
|
|
70
|
+
PipelineFunctionHandlebarTypedDict,
|
|
71
|
+
)
|
|
72
|
+
from .pipelinefunctionjoin import PipelineFunctionJoin, PipelineFunctionJoinTypedDict
|
|
73
|
+
from .pipelinefunctionjsonunroll import (
|
|
74
|
+
PipelineFunctionJSONUnroll,
|
|
75
|
+
PipelineFunctionJSONUnrollTypedDict,
|
|
76
|
+
)
|
|
77
|
+
from .pipelinefunctionlakeexport import (
|
|
78
|
+
PipelineFunctionLakeExport,
|
|
79
|
+
PipelineFunctionLakeExportTypedDict,
|
|
80
|
+
)
|
|
81
|
+
from .pipelinefunctionlimit import PipelineFunctionLimit, PipelineFunctionLimitTypedDict
|
|
82
|
+
from .pipelinefunctionlocalsearchdatatypeparser import (
|
|
83
|
+
PipelineFunctionLocalSearchDatatypeParser,
|
|
84
|
+
PipelineFunctionLocalSearchDatatypeParserTypedDict,
|
|
85
|
+
)
|
|
86
|
+
from .pipelinefunctionlocalsearchrulesetrunner import (
|
|
87
|
+
PipelineFunctionLocalSearchRulesetRunner,
|
|
88
|
+
PipelineFunctionLocalSearchRulesetRunnerTypedDict,
|
|
89
|
+
)
|
|
90
|
+
from .pipelinefunctionlookup import (
|
|
91
|
+
PipelineFunctionLookup,
|
|
92
|
+
PipelineFunctionLookupTypedDict,
|
|
93
|
+
)
|
|
94
|
+
from .pipelinefunctionmask import PipelineFunctionMask, PipelineFunctionMaskTypedDict
|
|
95
|
+
from .pipelinefunctionmvexpand import (
|
|
96
|
+
PipelineFunctionMvExpand,
|
|
97
|
+
PipelineFunctionMvExpandTypedDict,
|
|
98
|
+
)
|
|
99
|
+
from .pipelinefunctionmvpull import (
|
|
100
|
+
PipelineFunctionMvPull,
|
|
101
|
+
PipelineFunctionMvPullTypedDict,
|
|
102
|
+
)
|
|
103
|
+
from .pipelinefunctionnotificationpolicies import (
|
|
104
|
+
PipelineFunctionNotificationPolicies,
|
|
105
|
+
PipelineFunctionNotificationPoliciesTypedDict,
|
|
106
|
+
)
|
|
107
|
+
from .pipelinefunctionnotifications import (
|
|
108
|
+
PipelineFunctionNotifications,
|
|
109
|
+
PipelineFunctionNotificationsTypedDict,
|
|
110
|
+
)
|
|
111
|
+
from .pipelinefunctionnotify import (
|
|
112
|
+
PipelineFunctionNotify,
|
|
113
|
+
PipelineFunctionNotifyTypedDict,
|
|
114
|
+
)
|
|
115
|
+
from .pipelinefunctionnumerify import (
|
|
116
|
+
PipelineFunctionNumerify,
|
|
117
|
+
PipelineFunctionNumerifyTypedDict,
|
|
118
|
+
)
|
|
119
|
+
from .pipelinefunctionotlplogs import (
|
|
120
|
+
PipelineFunctionOtlpLogs,
|
|
121
|
+
PipelineFunctionOtlpLogsTypedDict,
|
|
122
|
+
)
|
|
123
|
+
from .pipelinefunctionotlpmetrics import (
|
|
124
|
+
PipelineFunctionOtlpMetrics,
|
|
125
|
+
PipelineFunctionOtlpMetricsTypedDict,
|
|
126
|
+
)
|
|
127
|
+
from .pipelinefunctionotlptraces import (
|
|
128
|
+
PipelineFunctionOtlpTraces,
|
|
129
|
+
PipelineFunctionOtlpTracesTypedDict,
|
|
130
|
+
)
|
|
131
|
+
from .pipelinefunctionpack import PipelineFunctionPack, PipelineFunctionPackTypedDict
|
|
132
|
+
from .pipelinefunctionpivot import PipelineFunctionPivot, PipelineFunctionPivotTypedDict
|
|
133
|
+
from .pipelinefunctionpublishmetrics import (
|
|
134
|
+
PipelineFunctionPublishMetrics,
|
|
135
|
+
PipelineFunctionPublishMetricsTypedDict,
|
|
136
|
+
)
|
|
137
|
+
from .pipelinefunctionredis import PipelineFunctionRedis, PipelineFunctionRedisTypedDict
|
|
138
|
+
from .pipelinefunctionregexextract import (
|
|
139
|
+
PipelineFunctionRegexExtract,
|
|
140
|
+
PipelineFunctionRegexExtractTypedDict,
|
|
141
|
+
)
|
|
142
|
+
from .pipelinefunctionregexfilter import (
|
|
143
|
+
PipelineFunctionRegexFilter,
|
|
144
|
+
PipelineFunctionRegexFilterTypedDict,
|
|
145
|
+
)
|
|
146
|
+
from .pipelinefunctionrename import (
|
|
147
|
+
PipelineFunctionRename,
|
|
148
|
+
PipelineFunctionRenameTypedDict,
|
|
149
|
+
)
|
|
150
|
+
from .pipelinefunctionrollupmetrics import (
|
|
151
|
+
PipelineFunctionRollupMetrics,
|
|
152
|
+
PipelineFunctionRollupMetricsTypedDict,
|
|
153
|
+
)
|
|
154
|
+
from .pipelinefunctionsampling import (
|
|
155
|
+
PipelineFunctionSampling,
|
|
156
|
+
PipelineFunctionSamplingTypedDict,
|
|
157
|
+
)
|
|
158
|
+
from .pipelinefunctionsend import PipelineFunctionSend, PipelineFunctionSendTypedDict
|
|
159
|
+
from .pipelinefunctionsensitivedatascanner import (
|
|
160
|
+
PipelineFunctionSensitiveDataScanner,
|
|
161
|
+
PipelineFunctionSensitiveDataScannerTypedDict,
|
|
162
|
+
)
|
|
163
|
+
from .pipelinefunctionserde import PipelineFunctionSerde, PipelineFunctionSerdeTypedDict
|
|
164
|
+
from .pipelinefunctionserialize import (
|
|
165
|
+
PipelineFunctionSerialize,
|
|
166
|
+
PipelineFunctionSerializeTypedDict,
|
|
167
|
+
)
|
|
168
|
+
from .pipelinefunctionsidlookup import (
|
|
169
|
+
PipelineFunctionSidlookup,
|
|
170
|
+
PipelineFunctionSidlookupTypedDict,
|
|
171
|
+
)
|
|
172
|
+
from .pipelinefunctionsnmptrapserialize import (
|
|
173
|
+
PipelineFunctionSnmpTrapSerialize,
|
|
174
|
+
PipelineFunctionSnmpTrapSerializeTypedDict,
|
|
175
|
+
)
|
|
176
|
+
from .pipelinefunctionsort import PipelineFunctionSort, PipelineFunctionSortTypedDict
|
|
177
|
+
from .pipelinefunctionstore import PipelineFunctionStore, PipelineFunctionStoreTypedDict
|
|
178
|
+
from .pipelinefunctionsuppress import (
|
|
179
|
+
PipelineFunctionSuppress,
|
|
180
|
+
PipelineFunctionSuppressTypedDict,
|
|
181
|
+
)
|
|
182
|
+
from .pipelinefunctiontee import PipelineFunctionTee, PipelineFunctionTeeTypedDict
|
|
183
|
+
from .pipelinefunctiontrimtimestamp import (
|
|
184
|
+
PipelineFunctionTrimTimestamp,
|
|
185
|
+
PipelineFunctionTrimTimestampTypedDict,
|
|
186
|
+
)
|
|
187
|
+
from .pipelinefunctionunion import PipelineFunctionUnion, PipelineFunctionUnionTypedDict
|
|
188
|
+
from .pipelinefunctionunroll import (
|
|
189
|
+
PipelineFunctionUnroll,
|
|
190
|
+
PipelineFunctionUnrollTypedDict,
|
|
191
|
+
)
|
|
192
|
+
from .pipelinefunctionwindow import (
|
|
193
|
+
PipelineFunctionWindow,
|
|
194
|
+
PipelineFunctionWindowTypedDict,
|
|
195
|
+
)
|
|
196
|
+
from .pipelinefunctionxmlunroll import (
|
|
197
|
+
PipelineFunctionXMLUnroll,
|
|
198
|
+
PipelineFunctionXMLUnrollTypedDict,
|
|
199
|
+
)
|
|
200
|
+
from cribl_control_plane.utils import get_discriminator
|
|
201
|
+
from pydantic import Discriminator, Tag
|
|
202
|
+
from typing import Union
|
|
203
|
+
from typing_extensions import Annotated, TypeAliasType
|
|
8
204
|
|
|
9
205
|
|
|
10
|
-
|
|
11
|
-
|
|
206
|
+
PipelineFunctionConfTypedDict = TypeAliasType(
|
|
207
|
+
"PipelineFunctionConfTypedDict",
|
|
208
|
+
Union[
|
|
209
|
+
PipelineFunctionAggregateMetricsTypedDict,
|
|
210
|
+
PipelineFunctionAggregationTypedDict,
|
|
211
|
+
PipelineFunctionAutoTimestampTypedDict,
|
|
212
|
+
PipelineFunctionCefTypedDict,
|
|
213
|
+
PipelineFunctionChainTypedDict,
|
|
214
|
+
PipelineFunctionCloneTypedDict,
|
|
215
|
+
PipelineFunctionCodeTypedDict,
|
|
216
|
+
PipelineFunctionCommentTypedDict,
|
|
217
|
+
PipelineFunctionDistinctTypedDict,
|
|
218
|
+
PipelineFunctionDNSLookupTypedDict,
|
|
219
|
+
PipelineFunctionDropTypedDict,
|
|
220
|
+
PipelineFunctionDropDimensionsTypedDict,
|
|
221
|
+
PipelineFunctionDynamicSamplingTypedDict,
|
|
222
|
+
PipelineFunctionEvalTypedDict,
|
|
223
|
+
PipelineFunctionEventBreakerTypedDict,
|
|
224
|
+
PipelineFunctionEventstatsTypedDict,
|
|
225
|
+
PipelineFunctionExternaldataTypedDict,
|
|
226
|
+
PipelineFunctionFlattenTypedDict,
|
|
227
|
+
PipelineFunctionFoldkeysTypedDict,
|
|
228
|
+
PipelineFunctionGenStatsTypedDict,
|
|
229
|
+
PipelineFunctionGeoipTypedDict,
|
|
230
|
+
PipelineFunctionGrokTypedDict,
|
|
231
|
+
PipelineFunctionHandlebarTypedDict,
|
|
232
|
+
PipelineFunctionJoinTypedDict,
|
|
233
|
+
PipelineFunctionJSONUnrollTypedDict,
|
|
234
|
+
PipelineFunctionLakeExportTypedDict,
|
|
235
|
+
PipelineFunctionLimitTypedDict,
|
|
236
|
+
PipelineFunctionLocalSearchDatatypeParserTypedDict,
|
|
237
|
+
PipelineFunctionLocalSearchRulesetRunnerTypedDict,
|
|
238
|
+
PipelineFunctionLookupTypedDict,
|
|
239
|
+
PipelineFunctionMaskTypedDict,
|
|
240
|
+
PipelineFunctionMvExpandTypedDict,
|
|
241
|
+
PipelineFunctionMvPullTypedDict,
|
|
242
|
+
PipelineFunctionNotificationPoliciesTypedDict,
|
|
243
|
+
PipelineFunctionNotificationsTypedDict,
|
|
244
|
+
PipelineFunctionNotifyTypedDict,
|
|
245
|
+
PipelineFunctionNumerifyTypedDict,
|
|
246
|
+
PipelineFunctionOtlpLogsTypedDict,
|
|
247
|
+
PipelineFunctionOtlpMetricsTypedDict,
|
|
248
|
+
PipelineFunctionOtlpTracesTypedDict,
|
|
249
|
+
PipelineFunctionPackTypedDict,
|
|
250
|
+
PipelineFunctionPivotTypedDict,
|
|
251
|
+
PipelineFunctionPublishMetricsTypedDict,
|
|
252
|
+
PipelineFunctionRedisTypedDict,
|
|
253
|
+
PipelineFunctionRegexExtractTypedDict,
|
|
254
|
+
PipelineFunctionRegexFilterTypedDict,
|
|
255
|
+
PipelineFunctionRenameTypedDict,
|
|
256
|
+
PipelineFunctionRollupMetricsTypedDict,
|
|
257
|
+
PipelineFunctionSamplingTypedDict,
|
|
258
|
+
PipelineFunctionSendTypedDict,
|
|
259
|
+
PipelineFunctionSensitiveDataScannerTypedDict,
|
|
260
|
+
PipelineFunctionSerdeTypedDict,
|
|
261
|
+
PipelineFunctionSerializeTypedDict,
|
|
262
|
+
PipelineFunctionSidlookupTypedDict,
|
|
263
|
+
PipelineFunctionSnmpTrapSerializeTypedDict,
|
|
264
|
+
PipelineFunctionSortTypedDict,
|
|
265
|
+
PipelineFunctionStoreTypedDict,
|
|
266
|
+
PipelineFunctionSuppressTypedDict,
|
|
267
|
+
PipelineFunctionTeeTypedDict,
|
|
268
|
+
PipelineFunctionTrimTimestampTypedDict,
|
|
269
|
+
PipelineFunctionUnionTypedDict,
|
|
270
|
+
PipelineFunctionUnrollTypedDict,
|
|
271
|
+
PipelineFunctionWindowTypedDict,
|
|
272
|
+
PipelineFunctionXMLUnrollTypedDict,
|
|
273
|
+
],
|
|
274
|
+
)
|
|
12
275
|
|
|
13
276
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
277
|
+
PipelineFunctionConf = Annotated[
|
|
278
|
+
Union[
|
|
279
|
+
Annotated[PipelineFunctionAggregateMetrics, Tag("aggregate_metrics")],
|
|
280
|
+
Annotated[PipelineFunctionAggregation, Tag("aggregation")],
|
|
281
|
+
Annotated[PipelineFunctionAutoTimestamp, Tag("auto_timestamp")],
|
|
282
|
+
Annotated[PipelineFunctionCef, Tag("cef")],
|
|
283
|
+
Annotated[PipelineFunctionChain, Tag("chain")],
|
|
284
|
+
Annotated[PipelineFunctionClone, Tag("clone")],
|
|
285
|
+
Annotated[PipelineFunctionCode, Tag("code")],
|
|
286
|
+
Annotated[PipelineFunctionComment, Tag("comment")],
|
|
287
|
+
Annotated[PipelineFunctionDistinct, Tag("distinct")],
|
|
288
|
+
Annotated[PipelineFunctionDNSLookup, Tag("dns_lookup")],
|
|
289
|
+
Annotated[PipelineFunctionDrop, Tag("drop")],
|
|
290
|
+
Annotated[PipelineFunctionDropDimensions, Tag("drop_dimensions")],
|
|
291
|
+
Annotated[PipelineFunctionDynamicSampling, Tag("dynamic_sampling")],
|
|
292
|
+
Annotated[PipelineFunctionEval, Tag("eval")],
|
|
293
|
+
Annotated[PipelineFunctionEventBreaker, Tag("event_breaker")],
|
|
294
|
+
Annotated[PipelineFunctionEventstats, Tag("eventstats")],
|
|
295
|
+
Annotated[PipelineFunctionExternaldata, Tag("externaldata")],
|
|
296
|
+
Annotated[PipelineFunctionFlatten, Tag("flatten")],
|
|
297
|
+
Annotated[PipelineFunctionFoldkeys, Tag("foldkeys")],
|
|
298
|
+
Annotated[PipelineFunctionGenStats, Tag("gen_stats")],
|
|
299
|
+
Annotated[PipelineFunctionGeoip, Tag("geoip")],
|
|
300
|
+
Annotated[PipelineFunctionGrok, Tag("grok")],
|
|
301
|
+
Annotated[PipelineFunctionHandlebar, Tag("handlebar")],
|
|
302
|
+
Annotated[PipelineFunctionJoin, Tag("join")],
|
|
303
|
+
Annotated[PipelineFunctionJSONUnroll, Tag("json_unroll")],
|
|
304
|
+
Annotated[PipelineFunctionLakeExport, Tag("lake_export")],
|
|
305
|
+
Annotated[PipelineFunctionLimit, Tag("limit")],
|
|
306
|
+
Annotated[
|
|
307
|
+
PipelineFunctionLocalSearchDatatypeParser,
|
|
308
|
+
Tag("local_search_datatype_parser"),
|
|
309
|
+
],
|
|
310
|
+
Annotated[
|
|
311
|
+
PipelineFunctionLocalSearchRulesetRunner, Tag("local_search_ruleset_runner")
|
|
312
|
+
],
|
|
313
|
+
Annotated[PipelineFunctionLookup, Tag("lookup")],
|
|
314
|
+
Annotated[PipelineFunctionMask, Tag("mask")],
|
|
315
|
+
Annotated[PipelineFunctionMvExpand, Tag("mv_expand")],
|
|
316
|
+
Annotated[PipelineFunctionMvPull, Tag("mv_pull")],
|
|
317
|
+
Annotated[PipelineFunctionNotificationPolicies, Tag("notification_policies")],
|
|
318
|
+
Annotated[PipelineFunctionNotifications, Tag("notifications")],
|
|
319
|
+
Annotated[PipelineFunctionNotify, Tag("notify")],
|
|
320
|
+
Annotated[PipelineFunctionNumerify, Tag("numerify")],
|
|
321
|
+
Annotated[PipelineFunctionOtlpLogs, Tag("otlp_logs")],
|
|
322
|
+
Annotated[PipelineFunctionOtlpMetrics, Tag("otlp_metrics")],
|
|
323
|
+
Annotated[PipelineFunctionOtlpTraces, Tag("otlp_traces")],
|
|
324
|
+
Annotated[PipelineFunctionPack, Tag("pack")],
|
|
325
|
+
Annotated[PipelineFunctionPivot, Tag("pivot")],
|
|
326
|
+
Annotated[PipelineFunctionPublishMetrics, Tag("publish_metrics")],
|
|
327
|
+
Annotated[PipelineFunctionRedis, Tag("redis")],
|
|
328
|
+
Annotated[PipelineFunctionRegexExtract, Tag("regex_extract")],
|
|
329
|
+
Annotated[PipelineFunctionRegexFilter, Tag("regex_filter")],
|
|
330
|
+
Annotated[PipelineFunctionRename, Tag("rename")],
|
|
331
|
+
Annotated[PipelineFunctionRollupMetrics, Tag("rollup_metrics")],
|
|
332
|
+
Annotated[PipelineFunctionSampling, Tag("sampling")],
|
|
333
|
+
Annotated[PipelineFunctionSend, Tag("send")],
|
|
334
|
+
Annotated[PipelineFunctionSensitiveDataScanner, Tag("sensitive_data_scanner")],
|
|
335
|
+
Annotated[PipelineFunctionSerde, Tag("serde")],
|
|
336
|
+
Annotated[PipelineFunctionSerialize, Tag("serialize")],
|
|
337
|
+
Annotated[PipelineFunctionSidlookup, Tag("sidlookup")],
|
|
338
|
+
Annotated[PipelineFunctionSnmpTrapSerialize, Tag("snmp_trap_serialize")],
|
|
339
|
+
Annotated[PipelineFunctionSort, Tag("sort")],
|
|
340
|
+
Annotated[PipelineFunctionStore, Tag("store")],
|
|
341
|
+
Annotated[PipelineFunctionSuppress, Tag("suppress")],
|
|
342
|
+
Annotated[PipelineFunctionTee, Tag("tee")],
|
|
343
|
+
Annotated[PipelineFunctionTrimTimestamp, Tag("trim_timestamp")],
|
|
344
|
+
Annotated[PipelineFunctionUnion, Tag("union")],
|
|
345
|
+
Annotated[PipelineFunctionUnroll, Tag("unroll")],
|
|
346
|
+
Annotated[PipelineFunctionWindow, Tag("window")],
|
|
347
|
+
Annotated[PipelineFunctionXMLUnroll, Tag("xml_unroll")],
|
|
348
|
+
],
|
|
349
|
+
Discriminator(lambda m: get_discriminator(m, "id", "id")),
|
|
350
|
+
]
|