cribl-control-plane 0.0.41__py3-none-any.whl → 0.0.43__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/_version.py +3 -3
- cribl_control_plane/commits.py +2 -2
- cribl_control_plane/models/__init__.py +378 -0
- cribl_control_plane/models/createroutesappendbyidop.py +2 -2
- cribl_control_plane/models/createversionrevertop.py +2 -2
- cribl_control_plane/models/deletepipelinebyidop.py +2 -2
- cribl_control_plane/models/getpipelinebyidop.py +2 -2
- cribl_control_plane/models/getroutesbyidop.py +2 -2
- cribl_control_plane/models/input.py +2 -2
- cribl_control_plane/models/inputappscope.py +13 -0
- cribl_control_plane/models/inputazureblob.py +13 -0
- cribl_control_plane/models/inputcollection.py +13 -0
- cribl_control_plane/models/inputconfluentcloud.py +13 -0
- cribl_control_plane/models/inputcribl.py +13 -0
- cribl_control_plane/models/inputcriblhttp.py +13 -0
- cribl_control_plane/models/inputcribllakehttp.py +38 -4
- cribl_control_plane/models/inputcriblmetrics.py +13 -0
- cribl_control_plane/models/inputcribltcp.py +13 -0
- cribl_control_plane/models/inputcrowdstrike.py +13 -0
- cribl_control_plane/models/inputdatadogagent.py +13 -0
- cribl_control_plane/models/inputdatagen.py +13 -0
- cribl_control_plane/models/inputedgeprometheus.py +13 -0
- cribl_control_plane/models/inputelastic.py +13 -0
- cribl_control_plane/models/inputeventhub.py +13 -0
- cribl_control_plane/models/inputexec.py +13 -0
- cribl_control_plane/models/inputfile.py +13 -0
- cribl_control_plane/models/inputfirehose.py +13 -0
- cribl_control_plane/models/inputgooglepubsub.py +13 -0
- cribl_control_plane/models/inputgrafana.py +26 -14
- cribl_control_plane/models/inputhttp.py +13 -0
- cribl_control_plane/models/inputhttpraw.py +13 -0
- cribl_control_plane/models/inputjournalfiles.py +13 -0
- cribl_control_plane/models/inputkafka.py +13 -0
- cribl_control_plane/models/inputkinesis.py +13 -0
- cribl_control_plane/models/inputkubeevents.py +13 -0
- cribl_control_plane/models/inputkubelogs.py +13 -0
- cribl_control_plane/models/inputkubemetrics.py +13 -0
- cribl_control_plane/models/inputloki.py +13 -7
- cribl_control_plane/models/inputmetrics.py +13 -0
- cribl_control_plane/models/inputmodeldriventelemetry.py +14 -0
- cribl_control_plane/models/inputmsk.py +13 -0
- cribl_control_plane/models/inputnetflow.py +13 -0
- cribl_control_plane/models/inputoffice365mgmt.py +13 -0
- cribl_control_plane/models/inputoffice365msgtrace.py +13 -0
- cribl_control_plane/models/inputoffice365service.py +13 -0
- cribl_control_plane/models/inputopentelemetry.py +13 -0
- cribl_control_plane/models/inputprometheus.py +13 -0
- cribl_control_plane/models/inputprometheusrw.py +13 -0
- cribl_control_plane/models/inputrawudp.py +13 -0
- cribl_control_plane/models/inputs3.py +13 -0
- cribl_control_plane/models/inputs3inventory.py +13 -0
- cribl_control_plane/models/inputsecuritylake.py +13 -0
- cribl_control_plane/models/inputsnmp.py +13 -0
- cribl_control_plane/models/inputsplunk.py +13 -0
- cribl_control_plane/models/inputsplunkhec.py +13 -0
- cribl_control_plane/models/inputsplunksearch.py +13 -0
- cribl_control_plane/models/inputsqs.py +13 -0
- cribl_control_plane/models/inputsyslog.py +26 -0
- cribl_control_plane/models/inputsystemmetrics.py +13 -0
- cribl_control_plane/models/inputsystemstate.py +13 -0
- cribl_control_plane/models/inputtcp.py +13 -0
- cribl_control_plane/models/inputtcpjson.py +13 -0
- cribl_control_plane/models/inputwef.py +13 -0
- cribl_control_plane/models/inputwindowsmetrics.py +13 -0
- cribl_control_plane/models/inputwineventlogs.py +13 -0
- cribl_control_plane/models/inputwiz.py +13 -0
- cribl_control_plane/models/inputwizwebhook.py +13 -0
- cribl_control_plane/models/inputzscalerhec.py +13 -0
- cribl_control_plane/models/output.py +14 -14
- cribl_control_plane/models/outputgooglechronicle.py +2 -2
- cribl_control_plane/models/outputgrafanacloud.py +0 -14
- cribl_control_plane/models/outputloki.py +0 -7
- cribl_control_plane/models/updatepipelinebyidop.py +6 -6
- cribl_control_plane/models/updateroutesbyidop.py +2 -2
- cribl_control_plane/pipelines.py +18 -18
- cribl_control_plane/routes_sdk.py +22 -22
- {cribl_control_plane-0.0.41.dist-info → cribl_control_plane-0.0.43.dist-info}/METADATA +6 -6
- {cribl_control_plane-0.0.41.dist-info → cribl_control_plane-0.0.43.dist-info}/RECORD +79 -79
- {cribl_control_plane-0.0.41.dist-info → cribl_control_plane-0.0.43.dist-info}/WHEEL +0 -0
|
@@ -37,6 +37,14 @@ class InputModelDrivenTelemetryCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputModelDrivenTelemetryPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputModelDrivenTelemetryPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputModelDrivenTelemetryPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputModelDrivenTelemetryMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputModelDrivenTelemetryPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputModelDrivenTelemetryCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputModelDrivenTelemetryPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputModelDrivenTelemetryPq(BaseModel):
|
|
@@ -84,6 +93,11 @@ class InputModelDrivenTelemetryPq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputModelDrivenTelemetryPqControls],
|
|
98
|
+
pydantic.Field(alias="pqControls"),
|
|
99
|
+
] = None
|
|
100
|
+
|
|
87
101
|
|
|
88
102
|
class InputModelDrivenTelemetryMinimumTLSVersion(str, Enum):
|
|
89
103
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputMskCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputMskPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputMskPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputMskPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputMskMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputMskPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputMskCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputMskPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputMskPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputMskPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputMskCompression] = InputMskCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputMskPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputMskMetadatumTypedDict(TypedDict):
|
|
87
100
|
name: str
|
|
@@ -37,6 +37,14 @@ class InputNetflowCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputNetflowPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputNetflowPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputNetflowPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputNetflowMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputNetflowPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputNetflowCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputNetflowPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputNetflowPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputNetflowPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputNetflowCompression] = InputNetflowCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputNetflowPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputNetflowMetadatumTypedDict(TypedDict):
|
|
87
100
|
name: str
|
|
@@ -37,6 +37,14 @@ class InputOffice365MgmtCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputOffice365MgmtPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputOffice365MgmtPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputOffice365MgmtPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputOffice365MgmtMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputOffice365MgmtPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputOffice365MgmtCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputOffice365MgmtPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputOffice365MgmtPq(BaseModel):
|
|
@@ -84,6 +93,10 @@ class InputOffice365MgmtPq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputOffice365MgmtPqControls], pydantic.Field(alias="pqControls")
|
|
98
|
+
] = None
|
|
99
|
+
|
|
87
100
|
|
|
88
101
|
class InputOffice365MgmtSubscriptionPlan(str, Enum):
|
|
89
102
|
r"""Office 365 subscription plan for your organization, typically Office 365 Enterprise"""
|
|
@@ -37,6 +37,14 @@ class InputOffice365MsgTraceCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputOffice365MsgTracePqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputOffice365MsgTracePqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputOffice365MsgTracePqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputOffice365MsgTraceMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputOffice365MsgTracePqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputOffice365MsgTraceCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputOffice365MsgTracePqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputOffice365MsgTracePq(BaseModel):
|
|
@@ -84,6 +93,10 @@ class InputOffice365MsgTracePq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputOffice365MsgTracePqControls], pydantic.Field(alias="pqControls")
|
|
98
|
+
] = None
|
|
99
|
+
|
|
87
100
|
|
|
88
101
|
class InputOffice365MsgTraceAuthenticationMethod(str, Enum):
|
|
89
102
|
r"""Select authentication method."""
|
|
@@ -37,6 +37,14 @@ class InputOffice365ServiceCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputOffice365ServicePqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputOffice365ServicePqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputOffice365ServicePqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputOffice365ServiceMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputOffice365ServicePqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputOffice365ServiceCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputOffice365ServicePqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputOffice365ServicePq(BaseModel):
|
|
@@ -84,6 +93,10 @@ class InputOffice365ServicePq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputOffice365ServicePqControls], pydantic.Field(alias="pqControls")
|
|
98
|
+
] = None
|
|
99
|
+
|
|
87
100
|
|
|
88
101
|
class InputOffice365ServiceSubscriptionPlan(str, Enum):
|
|
89
102
|
r"""Office 365 subscription plan for your organization, typically Office 365 Enterprise"""
|
|
@@ -37,6 +37,14 @@ class InputOpenTelemetryCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputOpenTelemetryPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputOpenTelemetryPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputOpenTelemetryPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputOpenTelemetryMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputOpenTelemetryPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputOpenTelemetryCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputOpenTelemetryPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputOpenTelemetryPq(BaseModel):
|
|
@@ -84,6 +93,10 @@ class InputOpenTelemetryPq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputOpenTelemetryPqControls], pydantic.Field(alias="pqControls")
|
|
98
|
+
] = None
|
|
99
|
+
|
|
87
100
|
|
|
88
101
|
class InputOpenTelemetryMinimumTLSVersion(str, Enum):
|
|
89
102
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputPrometheusCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputPrometheusPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputPrometheusPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputPrometheusPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputPrometheusMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputPrometheusPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputPrometheusCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputPrometheusPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputPrometheusPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputPrometheusPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputPrometheusCompression] = InputPrometheusCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputPrometheusPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputPrometheusDiscoveryType(str, Enum):
|
|
87
100
|
r"""Target discovery mechanism. Use static to manually enter a list of targets."""
|
|
@@ -37,6 +37,14 @@ class InputPrometheusRwCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputPrometheusRwPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputPrometheusRwPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputPrometheusRwPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputPrometheusRwMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputPrometheusRwPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputPrometheusRwCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputPrometheusRwPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputPrometheusRwPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputPrometheusRwPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputPrometheusRwCompression] = InputPrometheusRwCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputPrometheusRwPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputPrometheusRwMinimumTLSVersion(str, Enum):
|
|
87
100
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputRawUDPCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputRawUDPPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputRawUDPPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputRawUDPPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputRawUDPMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputRawUDPPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputRawUDPCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputRawUDPPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputRawUDPPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputRawUDPPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputRawUDPCompression] = InputRawUDPCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputRawUDPPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputRawUDPMetadatumTypedDict(TypedDict):
|
|
87
100
|
name: str
|
|
@@ -37,6 +37,14 @@ class InputS3Compression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputS3PqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputS3PqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputS3PqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputS3Mode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputS3PqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputS3Compression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputS3PqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputS3Pq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputS3Pq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputS3Compression] = InputS3Compression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputS3PqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputS3AuthenticationMethod(str, Enum):
|
|
87
100
|
r"""AWS authentication method. Choose Auto to use IAM roles."""
|
|
@@ -37,6 +37,14 @@ class InputS3InventoryCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputS3InventoryPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputS3InventoryPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputS3InventoryPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputS3InventoryMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputS3InventoryPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputS3InventoryCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputS3InventoryPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputS3InventoryPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputS3InventoryPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputS3InventoryCompression] = InputS3InventoryCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputS3InventoryPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputS3InventoryAuthenticationMethod(str, Enum):
|
|
87
100
|
r"""AWS authentication method. Choose Auto to use IAM roles."""
|
|
@@ -37,6 +37,14 @@ class InputSecurityLakeCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSecurityLakePqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSecurityLakePqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSecurityLakePqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSecurityLakeMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSecurityLakePqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSecurityLakeCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSecurityLakePqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSecurityLakePq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSecurityLakePq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSecurityLakeCompression] = InputSecurityLakeCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSecurityLakePqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputSecurityLakeAuthenticationMethod(str, Enum):
|
|
87
100
|
r"""AWS authentication method. Choose Auto to use IAM roles."""
|
|
@@ -37,6 +37,14 @@ class InputSnmpCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSnmpPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSnmpPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSnmpPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSnmpMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSnmpPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSnmpCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSnmpPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSnmpPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSnmpPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSnmpCompression] = InputSnmpCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSnmpPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class AuthenticationProtocol(str, Enum):
|
|
87
100
|
NONE = "none"
|
|
@@ -37,6 +37,14 @@ class InputSplunkPqCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSplunkPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSplunkPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSplunkPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSplunkMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSplunkPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSplunkPqCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSplunkPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSplunkPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSplunkPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSplunkPqCompression] = InputSplunkPqCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSplunkPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputSplunkMinimumTLSVersion(str, Enum):
|
|
87
100
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputSplunkHecCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSplunkHecPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSplunkHecPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSplunkHecPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSplunkHecMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSplunkHecPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSplunkHecCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSplunkHecPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSplunkHecPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSplunkHecPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSplunkHecCompression] = InputSplunkHecCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSplunkHecPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputSplunkHecAuthenticationMethod(str, Enum):
|
|
87
100
|
r"""Select Manual to enter an auth token directly, or select Secret to use a text secret to authenticate"""
|
|
@@ -37,6 +37,14 @@ class InputSplunkSearchCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSplunkSearchPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSplunkSearchPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSplunkSearchPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSplunkSearchMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSplunkSearchPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSplunkSearchCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSplunkSearchPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSplunkSearchPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSplunkSearchPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSplunkSearchCompression] = InputSplunkSearchCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSplunkSearchPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class OutputMode(str, Enum):
|
|
87
100
|
r"""Format of the returned output"""
|
|
@@ -37,6 +37,14 @@ class InputSqsCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputSqsPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputSqsPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputSqsPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputSqsMode]
|
|
42
50
|
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."""
|
|
@@ -52,6 +60,7 @@ class InputSqsPqTypedDict(TypedDict):
|
|
|
52
60
|
r"""The location for the persistent queue files. To this field's value, the system will append: /<worker-id>/inputs/<input-id>"""
|
|
53
61
|
compress: NotRequired[InputSqsCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputSqsPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputSqsPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputSqsPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputSqsCompression] = InputSqsCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputSqsPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputSqsQueueType(str, Enum):
|
|
87
100
|
r"""The queue type used (or created)"""
|