cribl-control-plane 0.0.42__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/models/__init__.py +378 -0
- 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/outputgrafanacloud.py +0 -14
- cribl_control_plane/models/outputloki.py +0 -7
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.43.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.43.dist-info}/RECORD +68 -68
- {cribl_control_plane-0.0.42.dist-info → cribl_control_plane-0.0.43.dist-info}/WHEEL +0 -0
|
@@ -37,6 +37,14 @@ class InputTCPCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputTCPPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputTCPPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputTCPPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputTCPMode]
|
|
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 InputTCPPqTypedDict(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[InputTCPCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputTCPPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputTCPPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputTCPPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputTCPCompression] = InputTCPCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputTCPPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputTCPMinimumTLSVersion(str, Enum):
|
|
87
100
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputTcpjsonCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputTcpjsonPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputTcpjsonPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputTcpjsonPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputTcpjsonMode]
|
|
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 InputTcpjsonPqTypedDict(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[InputTcpjsonCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputTcpjsonPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputTcpjsonPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputTcpjsonPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputTcpjsonCompression] = InputTcpjsonCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputTcpjsonPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputTcpjsonMinimumTLSVersion(str, Enum):
|
|
87
100
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputWefCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputWefPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputWefPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputWefPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputWefMode]
|
|
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 InputWefPqTypedDict(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[InputWefCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputWefPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputWefPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputWefPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputWefCompression] = InputWefCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputWefPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputWefAuthenticationMethod(str, Enum):
|
|
87
100
|
r"""How to authenticate incoming client connections"""
|
|
@@ -37,6 +37,14 @@ class InputWindowsMetricsCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputWindowsMetricsPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputWindowsMetricsPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputWindowsMetricsPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputWindowsMetricsPqMode]
|
|
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 InputWindowsMetricsPqTypedDict(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[InputWindowsMetricsCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputWindowsMetricsPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputWindowsMetricsPq(BaseModel):
|
|
@@ -84,6 +93,10 @@ class InputWindowsMetricsPq(BaseModel):
|
|
|
84
93
|
)
|
|
85
94
|
r"""Codec to use to compress the persisted data"""
|
|
86
95
|
|
|
96
|
+
pq_controls: Annotated[
|
|
97
|
+
Optional[InputWindowsMetricsPqControls], pydantic.Field(alias="pqControls")
|
|
98
|
+
] = None
|
|
99
|
+
|
|
87
100
|
|
|
88
101
|
class InputWindowsMetricsHostMode(str, Enum):
|
|
89
102
|
r"""Select level of detail for host metrics"""
|
|
@@ -37,6 +37,14 @@ class InputWinEventLogsCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputWinEventLogsPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputWinEventLogsPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputWinEventLogsPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputWinEventLogsMode]
|
|
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 InputWinEventLogsPqTypedDict(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[InputWinEventLogsCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputWinEventLogsPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputWinEventLogsPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputWinEventLogsPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputWinEventLogsCompression] = InputWinEventLogsCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputWinEventLogsPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class ReadMode(str, Enum):
|
|
87
100
|
r"""Read all stored and future event logs, or only future events"""
|
|
@@ -37,6 +37,14 @@ class InputWizCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputWizPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputWizPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputWizPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputWizMode]
|
|
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 InputWizPqTypedDict(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[InputWizCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputWizPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputWizPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputWizPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputWizCompression] = InputWizCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputWizPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputWizContentConfigTypedDict(TypedDict):
|
|
87
100
|
content_type: str
|
|
@@ -37,6 +37,14 @@ class InputWizWebhookCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputWizWebhookPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputWizWebhookPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputWizWebhookPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputWizWebhookMode]
|
|
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 InputWizWebhookPqTypedDict(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[InputWizWebhookCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputWizWebhookPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputWizWebhookPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputWizWebhookPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputWizWebhookCompression] = InputWizWebhookCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputWizWebhookPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputWizWebhookMinimumTLSVersion(str, Enum):
|
|
87
100
|
TL_SV1 = "TLSv1"
|
|
@@ -37,6 +37,14 @@ class InputZscalerHecCompression(str, Enum):
|
|
|
37
37
|
GZIP = "gzip"
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
class InputZscalerHecPqControlsTypedDict(TypedDict):
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class InputZscalerHecPqControls(BaseModel):
|
|
45
|
+
pass
|
|
46
|
+
|
|
47
|
+
|
|
40
48
|
class InputZscalerHecPqTypedDict(TypedDict):
|
|
41
49
|
mode: NotRequired[InputZscalerHecMode]
|
|
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 InputZscalerHecPqTypedDict(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[InputZscalerHecCompression]
|
|
54
62
|
r"""Codec to use to compress the persisted data"""
|
|
63
|
+
pq_controls: NotRequired[InputZscalerHecPqControlsTypedDict]
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
class InputZscalerHecPq(BaseModel):
|
|
@@ -82,6 +91,10 @@ class InputZscalerHecPq(BaseModel):
|
|
|
82
91
|
compress: Optional[InputZscalerHecCompression] = InputZscalerHecCompression.NONE
|
|
83
92
|
r"""Codec to use to compress the persisted data"""
|
|
84
93
|
|
|
94
|
+
pq_controls: Annotated[
|
|
95
|
+
Optional[InputZscalerHecPqControls], pydantic.Field(alias="pqControls")
|
|
96
|
+
] = None
|
|
97
|
+
|
|
85
98
|
|
|
86
99
|
class InputZscalerHecAuthenticationMethod(str, Enum):
|
|
87
100
|
r"""Select Manual to enter an auth token directly, or select Secret to use a text secret to authenticate"""
|
|
@@ -90,25 +90,25 @@ OutputTypedDict = TypeAliasType(
|
|
|
90
90
|
OutputDevnullTypedDict,
|
|
91
91
|
OutputDefaultTypedDict,
|
|
92
92
|
OutputRouterTypedDict,
|
|
93
|
-
OutputNetflowTypedDict,
|
|
94
93
|
OutputSnmpTypedDict,
|
|
94
|
+
OutputNetflowTypedDict,
|
|
95
95
|
OutputDiskSpoolTypedDict,
|
|
96
96
|
OutputRingTypedDict,
|
|
97
|
-
OutputStatsdExtTypedDict,
|
|
98
97
|
OutputGraphiteTypedDict,
|
|
99
98
|
OutputStatsdTypedDict,
|
|
99
|
+
OutputStatsdExtTypedDict,
|
|
100
100
|
OutputGooglePubsubTypedDict,
|
|
101
101
|
OutputCriblTCPTypedDict,
|
|
102
|
-
OutputSnsTypedDict,
|
|
103
102
|
OutputSplunkTypedDict,
|
|
103
|
+
OutputSnsTypedDict,
|
|
104
104
|
OutputCloudwatchTypedDict,
|
|
105
105
|
OutputSyslogTypedDict,
|
|
106
106
|
OutputAzureEventhubTypedDict,
|
|
107
107
|
OutputWavefrontTypedDict,
|
|
108
108
|
OutputSignalfxTypedDict,
|
|
109
109
|
OutputHoneycombTypedDict,
|
|
110
|
-
OutputSumoLogicTypedDict,
|
|
111
110
|
OutputTcpjsonTypedDict,
|
|
111
|
+
OutputSumoLogicTypedDict,
|
|
112
112
|
OutputHumioHecTypedDict,
|
|
113
113
|
OutputElasticCloudTypedDict,
|
|
114
114
|
OutputCrowdstrikeNextGenSiemTypedDict,
|
|
@@ -125,15 +125,15 @@ OutputTypedDict = TypeAliasType(
|
|
|
125
125
|
OutputXsiamTypedDict,
|
|
126
126
|
OutputFilesystemTypedDict,
|
|
127
127
|
OutputDatasetTypedDict,
|
|
128
|
+
OutputLokiTypedDict,
|
|
128
129
|
OutputSplunkHecTypedDict,
|
|
129
130
|
OutputDynatraceHTTPTypedDict,
|
|
130
131
|
OutputServiceNowTypedDict,
|
|
131
|
-
OutputLokiTypedDict,
|
|
132
132
|
OutputDynatraceOtlpTypedDict,
|
|
133
|
-
OutputGoogleChronicleTypedDict,
|
|
134
133
|
OutputElasticTypedDict,
|
|
135
|
-
|
|
134
|
+
OutputGoogleChronicleTypedDict,
|
|
136
135
|
OutputCriblLakeTypedDict,
|
|
136
|
+
OutputDatadogTypedDict,
|
|
137
137
|
OutputPrometheusTypedDict,
|
|
138
138
|
OutputMskTypedDict,
|
|
139
139
|
OutputSentinelOneAiSiemTypedDict,
|
|
@@ -161,25 +161,25 @@ Output = TypeAliasType(
|
|
|
161
161
|
OutputDevnull,
|
|
162
162
|
OutputDefault,
|
|
163
163
|
OutputRouter,
|
|
164
|
-
OutputNetflow,
|
|
165
164
|
OutputSnmp,
|
|
165
|
+
OutputNetflow,
|
|
166
166
|
OutputDiskSpool,
|
|
167
167
|
OutputRing,
|
|
168
|
-
OutputStatsdExt,
|
|
169
168
|
OutputGraphite,
|
|
170
169
|
OutputStatsd,
|
|
170
|
+
OutputStatsdExt,
|
|
171
171
|
OutputGooglePubsub,
|
|
172
172
|
OutputCriblTCP,
|
|
173
|
-
OutputSns,
|
|
174
173
|
OutputSplunk,
|
|
174
|
+
OutputSns,
|
|
175
175
|
OutputCloudwatch,
|
|
176
176
|
OutputSyslog,
|
|
177
177
|
OutputAzureEventhub,
|
|
178
178
|
OutputWavefront,
|
|
179
179
|
OutputSignalfx,
|
|
180
180
|
OutputHoneycomb,
|
|
181
|
-
OutputSumoLogic,
|
|
182
181
|
OutputTcpjson,
|
|
182
|
+
OutputSumoLogic,
|
|
183
183
|
OutputHumioHec,
|
|
184
184
|
OutputElasticCloud,
|
|
185
185
|
OutputCrowdstrikeNextGenSiem,
|
|
@@ -196,15 +196,15 @@ Output = TypeAliasType(
|
|
|
196
196
|
OutputXsiam,
|
|
197
197
|
OutputFilesystem,
|
|
198
198
|
OutputDataset,
|
|
199
|
+
OutputLoki,
|
|
199
200
|
OutputSplunkHec,
|
|
200
201
|
OutputDynatraceHTTP,
|
|
201
202
|
OutputServiceNow,
|
|
202
|
-
OutputLoki,
|
|
203
203
|
OutputDynatraceOtlp,
|
|
204
|
-
OutputGoogleChronicle,
|
|
205
204
|
OutputElastic,
|
|
206
|
-
|
|
205
|
+
OutputGoogleChronicle,
|
|
207
206
|
OutputCriblLake,
|
|
207
|
+
OutputDatadog,
|
|
208
208
|
OutputPrometheus,
|
|
209
209
|
OutputMsk,
|
|
210
210
|
OutputSentinelOneAiSiem,
|
|
@@ -284,8 +284,6 @@ class OutputGrafanaCloudGrafanaCloud2TypedDict(TypedDict):
|
|
|
284
284
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
285
285
|
safe_headers: NotRequired[List[str]]
|
|
286
286
|
r"""List of headers that are safe to log in plain text"""
|
|
287
|
-
send_structured_metadata: NotRequired[bool]
|
|
288
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
289
287
|
response_retry_settings: NotRequired[
|
|
290
288
|
List[OutputGrafanaCloudResponseRetrySetting2TypedDict]
|
|
291
289
|
]
|
|
@@ -418,11 +416,6 @@ class OutputGrafanaCloudGrafanaCloud2(BaseModel):
|
|
|
418
416
|
] = None
|
|
419
417
|
r"""List of headers that are safe to log in plain text"""
|
|
420
418
|
|
|
421
|
-
send_structured_metadata: Annotated[
|
|
422
|
-
Optional[bool], pydantic.Field(alias="sendStructuredMetadata")
|
|
423
|
-
] = False
|
|
424
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
425
|
-
|
|
426
419
|
response_retry_settings: Annotated[
|
|
427
420
|
Optional[List[OutputGrafanaCloudResponseRetrySetting2]],
|
|
428
421
|
pydantic.Field(alias="responseRetrySettings"),
|
|
@@ -760,8 +753,6 @@ class OutputGrafanaCloudGrafanaCloud1TypedDict(TypedDict):
|
|
|
760
753
|
r"""Data to log when a request fails. All headers are redacted by default, unless listed as safe headers below."""
|
|
761
754
|
safe_headers: NotRequired[List[str]]
|
|
762
755
|
r"""List of headers that are safe to log in plain text"""
|
|
763
|
-
send_structured_metadata: NotRequired[bool]
|
|
764
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
765
756
|
response_retry_settings: NotRequired[
|
|
766
757
|
List[OutputGrafanaCloudResponseRetrySetting1TypedDict]
|
|
767
758
|
]
|
|
@@ -896,11 +887,6 @@ class OutputGrafanaCloudGrafanaCloud1(BaseModel):
|
|
|
896
887
|
] = None
|
|
897
888
|
r"""List of headers that are safe to log in plain text"""
|
|
898
889
|
|
|
899
|
-
send_structured_metadata: Annotated[
|
|
900
|
-
Optional[bool], pydantic.Field(alias="sendStructuredMetadata")
|
|
901
|
-
] = False
|
|
902
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
903
|
-
|
|
904
890
|
response_retry_settings: Annotated[
|
|
905
891
|
Optional[List[OutputGrafanaCloudResponseRetrySetting1]],
|
|
906
892
|
pydantic.Field(alias="responseRetrySettings"),
|
|
@@ -200,8 +200,6 @@ class OutputLokiTypedDict(TypedDict):
|
|
|
200
200
|
r"""Honor any Retry-After header that specifies a delay (in seconds) no longer than 180 seconds after the retry request. @{product} limits the delay to 180 seconds, even if the Retry-After header specifies a longer delay. When enabled, takes precedence over user-configured retry options. When disabled, all Retry-After headers are ignored."""
|
|
201
201
|
enable_dynamic_headers: NotRequired[bool]
|
|
202
202
|
r"""Add per-event HTTP headers from the __headers field to outgoing requests. Events with different headers are batched and sent separately."""
|
|
203
|
-
send_structured_metadata: NotRequired[bool]
|
|
204
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
205
203
|
on_backpressure: NotRequired[OutputLokiBackpressureBehavior]
|
|
206
204
|
r"""How to handle events when all receivers are exerting backpressure"""
|
|
207
205
|
total_memory_limit_kb: NotRequired[float]
|
|
@@ -344,11 +342,6 @@ class OutputLoki(BaseModel):
|
|
|
344
342
|
] = False
|
|
345
343
|
r"""Add per-event HTTP headers from the __headers field to outgoing requests. Events with different headers are batched and sent separately."""
|
|
346
344
|
|
|
347
|
-
send_structured_metadata: Annotated[
|
|
348
|
-
Optional[bool], pydantic.Field(alias="sendStructuredMetadata")
|
|
349
|
-
] = False
|
|
350
|
-
r"""Add structured metadata fields from __structuredMetadata to each log. Key-value pairs must be strings."""
|
|
351
|
-
|
|
352
345
|
on_backpressure: Annotated[
|
|
353
346
|
Optional[OutputLokiBackpressureBehavior], pydantic.Field(alias="onBackpressure")
|
|
354
347
|
] = OutputLokiBackpressureBehavior.BLOCK
|
|
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1
|
|
|
4
4
|
cribl_control_plane/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
5
5
|
cribl_control_plane/_hooks/sdkhooks.py,sha256=ggXjME1_Rdv8CVCg1XHqB83eYtbxzKyhXyfQ36Yc1gA,2816
|
|
6
6
|
cribl_control_plane/_hooks/types.py,sha256=Tw_C4zTZm01rW_89VDEUpvQ8KQr1WxN0Gu_-s_fYSPc,2998
|
|
7
|
-
cribl_control_plane/_version.py,sha256=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=VElA5ZVotJCns5QrpZ59vgb5LZiOMNVpE-QEXJ438Ec,542
|
|
8
8
|
cribl_control_plane/acl.py,sha256=LMsIZTDCRTXVt73MC_QoJexElGNsicYsBBHfVGzUsG8,8923
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
@@ -27,7 +27,7 @@ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho
|
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
28
28
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
|
|
30
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=QbNNiWNPbtj2voHgWyxZpqle6XFcxFHR0LBIWWVmPyE,386370
|
|
31
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
32
32
|
cribl_control_plane/models/appmode.py,sha256=5xRJz9oP5ah4b6dcay4Q1IbQ9irm6k6x2BrTNysIMY4,300
|
|
33
33
|
cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
|
|
@@ -107,66 +107,66 @@ cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEct
|
|
|
107
107
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
108
108
|
cribl_control_plane/models/healthstatus.py,sha256=u4ePDejWSLI7yhfFxKyB5GVkihAG_z9PcHqCA2H9-e0,735
|
|
109
109
|
cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
|
|
110
|
-
cribl_control_plane/models/input.py,sha256=
|
|
111
|
-
cribl_control_plane/models/inputappscope.py,sha256=
|
|
112
|
-
cribl_control_plane/models/inputazureblob.py,sha256=
|
|
113
|
-
cribl_control_plane/models/inputcollection.py,sha256=
|
|
114
|
-
cribl_control_plane/models/inputconfluentcloud.py,sha256=
|
|
115
|
-
cribl_control_plane/models/inputcribl.py,sha256=
|
|
116
|
-
cribl_control_plane/models/inputcriblhttp.py,sha256=
|
|
117
|
-
cribl_control_plane/models/inputcribllakehttp.py,sha256=
|
|
118
|
-
cribl_control_plane/models/inputcriblmetrics.py,sha256=
|
|
119
|
-
cribl_control_plane/models/inputcribltcp.py,sha256=
|
|
120
|
-
cribl_control_plane/models/inputcrowdstrike.py,sha256=
|
|
121
|
-
cribl_control_plane/models/inputdatadogagent.py,sha256=
|
|
122
|
-
cribl_control_plane/models/inputdatagen.py,sha256=
|
|
123
|
-
cribl_control_plane/models/inputedgeprometheus.py,sha256=
|
|
124
|
-
cribl_control_plane/models/inputelastic.py,sha256=
|
|
125
|
-
cribl_control_plane/models/inputeventhub.py,sha256=
|
|
126
|
-
cribl_control_plane/models/inputexec.py,sha256=
|
|
127
|
-
cribl_control_plane/models/inputfile.py,sha256=
|
|
128
|
-
cribl_control_plane/models/inputfirehose.py,sha256=
|
|
129
|
-
cribl_control_plane/models/inputgooglepubsub.py,sha256=
|
|
130
|
-
cribl_control_plane/models/inputgrafana.py,sha256=
|
|
131
|
-
cribl_control_plane/models/inputhttp.py,sha256=
|
|
132
|
-
cribl_control_plane/models/inputhttpraw.py,sha256=
|
|
133
|
-
cribl_control_plane/models/inputjournalfiles.py,sha256=
|
|
134
|
-
cribl_control_plane/models/inputkafka.py,sha256=
|
|
135
|
-
cribl_control_plane/models/inputkinesis.py,sha256=
|
|
136
|
-
cribl_control_plane/models/inputkubeevents.py,sha256=
|
|
137
|
-
cribl_control_plane/models/inputkubelogs.py,sha256=
|
|
138
|
-
cribl_control_plane/models/inputkubemetrics.py,sha256=
|
|
139
|
-
cribl_control_plane/models/inputloki.py,sha256=
|
|
140
|
-
cribl_control_plane/models/inputmetrics.py,sha256
|
|
141
|
-
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=
|
|
142
|
-
cribl_control_plane/models/inputmsk.py,sha256=
|
|
143
|
-
cribl_control_plane/models/inputnetflow.py,sha256=
|
|
144
|
-
cribl_control_plane/models/inputoffice365mgmt.py,sha256=
|
|
145
|
-
cribl_control_plane/models/inputoffice365msgtrace.py,sha256=
|
|
146
|
-
cribl_control_plane/models/inputoffice365service.py,sha256=
|
|
147
|
-
cribl_control_plane/models/inputopentelemetry.py,sha256=
|
|
148
|
-
cribl_control_plane/models/inputprometheus.py,sha256=
|
|
149
|
-
cribl_control_plane/models/inputprometheusrw.py,sha256=
|
|
150
|
-
cribl_control_plane/models/inputrawudp.py,sha256=
|
|
151
|
-
cribl_control_plane/models/inputs3.py,sha256=
|
|
152
|
-
cribl_control_plane/models/inputs3inventory.py,sha256=
|
|
153
|
-
cribl_control_plane/models/inputsecuritylake.py,sha256=
|
|
154
|
-
cribl_control_plane/models/inputsnmp.py,sha256=
|
|
155
|
-
cribl_control_plane/models/inputsplunk.py,sha256=
|
|
156
|
-
cribl_control_plane/models/inputsplunkhec.py,sha256=
|
|
157
|
-
cribl_control_plane/models/inputsplunksearch.py,sha256=
|
|
158
|
-
cribl_control_plane/models/inputsqs.py,sha256=
|
|
159
|
-
cribl_control_plane/models/inputsyslog.py,sha256=
|
|
160
|
-
cribl_control_plane/models/inputsystemmetrics.py,sha256=
|
|
161
|
-
cribl_control_plane/models/inputsystemstate.py,sha256=
|
|
162
|
-
cribl_control_plane/models/inputtcp.py,sha256=
|
|
163
|
-
cribl_control_plane/models/inputtcpjson.py,sha256=
|
|
164
|
-
cribl_control_plane/models/inputwef.py,sha256=
|
|
165
|
-
cribl_control_plane/models/inputwindowsmetrics.py,sha256=
|
|
166
|
-
cribl_control_plane/models/inputwineventlogs.py,sha256=
|
|
167
|
-
cribl_control_plane/models/inputwiz.py,sha256=
|
|
168
|
-
cribl_control_plane/models/inputwizwebhook.py,sha256=
|
|
169
|
-
cribl_control_plane/models/inputzscalerhec.py,sha256=
|
|
110
|
+
cribl_control_plane/models/input.py,sha256=Zd6wdxKwa9pdoT3GmGKnlzwhV8oqIKG2CAnjy2khTxk,7682
|
|
111
|
+
cribl_control_plane/models/inputappscope.py,sha256=DXKjLQXUGBicb8vBbDS_BxBh4jHq7sxgrr1IiDqj4NM,20233
|
|
112
|
+
cribl_control_plane/models/inputazureblob.py,sha256=XKOgRtB0ThQLMWU9rS5yxS3ffXb_gRy9tbCJPUQkJns,15124
|
|
113
|
+
cribl_control_plane/models/inputcollection.py,sha256=PwhhEEsoN2rHraPbNBvGjtaD3-weAh-V1WsHFEl7blk,9573
|
|
114
|
+
cribl_control_plane/models/inputconfluentcloud.py,sha256=POiEfHq2SMK5x8Ia4uLBE5qe9xxzNHbX-gxA-m0UJWA,29167
|
|
115
|
+
cribl_control_plane/models/inputcribl.py,sha256=TS0xr5-ctqOQtqdQh1jYPnN_FXeIp8xiW1GW5m5T1rU,7239
|
|
116
|
+
cribl_control_plane/models/inputcriblhttp.py,sha256=hQk3O9ywlQ-4Dlu9i-qSqiJAYjp2zmSfj7QtJBk8ZcE,15608
|
|
117
|
+
cribl_control_plane/models/inputcribllakehttp.py,sha256=neJQkmPQwOjaAILORr4SQr5SvrNBAuRnRsGtW9erxlg,19118
|
|
118
|
+
cribl_control_plane/models/inputcriblmetrics.py,sha256=wdDuSnmPh-HkH4Mq0KYUHY-whi9ipoiJibHruE0Cdc0,8451
|
|
119
|
+
cribl_control_plane/models/inputcribltcp.py,sha256=EEDy_dvLYLu6n3lOgWwap7LWFEaK7W9g-Nln6LEDHuw,13422
|
|
120
|
+
cribl_control_plane/models/inputcrowdstrike.py,sha256=xsNs-xjrvOQEFQuAFKiguZt1GIUpBbWYKM7Vod7vW3k,20549
|
|
121
|
+
cribl_control_plane/models/inputdatadogagent.py,sha256=fpefkjfEBOFl2GWkWuxYbiJdR9glaMEeVB3xtBBUgHg,17206
|
|
122
|
+
cribl_control_plane/models/inputdatagen.py,sha256=_YQ0LRKS-I6Yl3uNEJUnDodNwZC-oC0QL4AdCAWZYq4,7680
|
|
123
|
+
cribl_control_plane/models/inputedgeprometheus.py,sha256=QbU9S9kqSWjZ4kJngx52JXjw4jH4920Bk5UeAE75Gmw,22052
|
|
124
|
+
cribl_control_plane/models/inputelastic.py,sha256=irkSUK2zaDW9ug8lFEYzXl8UjAALUVnSEzWJtu3viOk,21463
|
|
125
|
+
cribl_control_plane/models/inputeventhub.py,sha256=jfqq5HnRnafeiXnMkQ9a9177z853Y04vr7A_eUBKi0c,19729
|
|
126
|
+
cribl_control_plane/models/inputexec.py,sha256=jKLBUpkpZh-8Px5k8aQY1QP4NRePSvTG8Lz67Vq9pH8,9392
|
|
127
|
+
cribl_control_plane/models/inputfile.py,sha256=qbVk2wt-bjm2x9lgMu7ZCEZoX_F6qBo2oskHXOLTaj0,12267
|
|
128
|
+
cribl_control_plane/models/inputfirehose.py,sha256=uhsh6xLN1hI84Ws2gkzC1mk8BN4cnqgEVTKUSXdICD8,15565
|
|
129
|
+
cribl_control_plane/models/inputgooglepubsub.py,sha256=jvaGTGJQSw9Gc8Z_HGRRjFMP7pqcZEU3sEY5-vrYzI8,12925
|
|
130
|
+
cribl_control_plane/models/inputgrafana.py,sha256=n-SX8dFgmMWbs1coccHrm_UvL-lQwWaz4JRtHcywXuI,56524
|
|
131
|
+
cribl_control_plane/models/inputhttp.py,sha256=kpxmD1Y5qSMuKvKrqnTp898Vh_-nl9135y4TYKvlgqM,18322
|
|
132
|
+
cribl_control_plane/models/inputhttpraw.py,sha256=fhCig9DZTr3s80zZDZMd2sVkmF6v56_rPMg_d9PQ7VY,18709
|
|
133
|
+
cribl_control_plane/models/inputjournalfiles.py,sha256=eAYa9vG4_cap5-NQnTj24o-uVo4wPbhyHE-_gChJaRc,9711
|
|
134
|
+
cribl_control_plane/models/inputkafka.py,sha256=iPS6q46-0TiMbud2nu6CCruR4jl70f0cjIZn0bUT6AQ,28641
|
|
135
|
+
cribl_control_plane/models/inputkinesis.py,sha256=2C35b8nYIA51lSxBQd2bSspmQcWkQgwDVq8tdz9uWZM,15724
|
|
136
|
+
cribl_control_plane/models/inputkubeevents.py,sha256=2UN2j3ITobx2c2hqXYvCnw-r0qwfUZIcdnBkqM8QQXw,8011
|
|
137
|
+
cribl_control_plane/models/inputkubelogs.py,sha256=rrUYucBJNY-Nbf2RCimTrHkaEieccoYmLYcWylb4DnU,12115
|
|
138
|
+
cribl_control_plane/models/inputkubemetrics.py,sha256=WsqVN8zH-ZsQ3RaOeZU0xyrHH1Q30iusPzAJ8nluaKQ,10517
|
|
139
|
+
cribl_control_plane/models/inputloki.py,sha256=fC_kyVwolSZoM9qi9lCrasZUmak6aWjGpnaHqYdRkEk,20809
|
|
140
|
+
cribl_control_plane/models/inputmetrics.py,sha256=-xQuEhzdAxlI9ML8yRv5qXFa-h0-J3CWi4p9u_K_V8o,12828
|
|
141
|
+
cribl_control_plane/models/inputmodeldriventelemetry.py,sha256=Wau4Rzyae_6ajLQ9MVtwUahOezpPhnVK-gmirVezWy0,11653
|
|
142
|
+
cribl_control_plane/models/inputmsk.py,sha256=H40DIUqk6AMXNJUx__7uPSjRZiYG9Buqf_oTsicFD68,31613
|
|
143
|
+
cribl_control_plane/models/inputnetflow.py,sha256=9hXX62Ug09l_nmI2dmxcemh2OHN1qoUIN4O6gXxVlok,11040
|
|
144
|
+
cribl_control_plane/models/inputoffice365mgmt.py,sha256=7000qonpYFPxflMB6aq9dx-ToqtFvduHaPhiD5ShhM4,18002
|
|
145
|
+
cribl_control_plane/models/inputoffice365msgtrace.py,sha256=U5FAiTgFqLaiRrXf7ZdqDbh_vebctI7kidrpkGJxxNM,20521
|
|
146
|
+
cribl_control_plane/models/inputoffice365service.py,sha256=TuePJnIGBrME2zbmlog6uG4NtFUhM0uVof09kqW3JaA,17039
|
|
147
|
+
cribl_control_plane/models/inputopentelemetry.py,sha256=I7V9K3Gc4dZhShtHmM-t9bv192y9IB2rAYM6hiDqtwM,22360
|
|
148
|
+
cribl_control_plane/models/inputprometheus.py,sha256=VpTtOwvREJ-MC8SyFUqkzzZilnz-9CvfMkZmVG5FyAU,19747
|
|
149
|
+
cribl_control_plane/models/inputprometheusrw.py,sha256=UwHqgM08mwrAL6QrBunQQkb9FIFWRIepBYCS4kfwtZk,21178
|
|
150
|
+
cribl_control_plane/models/inputrawudp.py,sha256=2dko7vOVchkVaxXlrG0KcHcmFK4-mtyRDrGgeeSu5i0,9815
|
|
151
|
+
cribl_control_plane/models/inputs3.py,sha256=yYW6ysep32V8YZztdUAqbFBIlzsNYr0uS0f-qh6EwIQ,20943
|
|
152
|
+
cribl_control_plane/models/inputs3inventory.py,sha256=uLin0z_KYYdb10y5u2wU3lGa_sCtTgPgg8y1PBeUhMk,22403
|
|
153
|
+
cribl_control_plane/models/inputsecuritylake.py,sha256=9N7_3HWjbKFtmVQCcYQQYEKYDHiZF7weyp4ug9aRMEw,21356
|
|
154
|
+
cribl_control_plane/models/inputsnmp.py,sha256=AH-m89ioy4N0sSPGv9-Y4Ix6ZpOmQCSoWVJEN3bgd4E,12142
|
|
155
|
+
cribl_control_plane/models/inputsplunk.py,sha256=Rxu8snVq_I51qqK6IB0bgBHs-Rqm6ibtsszPrmMEBTw,17568
|
|
156
|
+
cribl_control_plane/models/inputsplunkhec.py,sha256=Ej1XACzRTt7vCzyvRkw0qZGhY5eLOUP6PrH0ZH0SAHg,22742
|
|
157
|
+
cribl_control_plane/models/inputsplunksearch.py,sha256=cIHuV_zWE4Araa35iHX8oYacFygMaymb6yLewU7khGI,24733
|
|
158
|
+
cribl_control_plane/models/inputsqs.py,sha256=AzFhLPhaRMmh4NxaI7PdXMP2zOlu71WoejxWuoNhCos,15225
|
|
159
|
+
cribl_control_plane/models/inputsyslog.py,sha256=w_e1xjUg6MDziJbSQ112F6c1ZFw8gRmtnSP2S37yEc4,36652
|
|
160
|
+
cribl_control_plane/models/inputsystemmetrics.py,sha256=uT9i_CEHw6A_mKtVOaDU3gOjNLzc5yxNfz08EXtusxY,19955
|
|
161
|
+
cribl_control_plane/models/inputsystemstate.py,sha256=i5x9OZJVS3SNMComdsLA7JGnowQJjBxjW-NVa3wRFbM,15687
|
|
162
|
+
cribl_control_plane/models/inputtcp.py,sha256=QlYeIzbf5FmC-9KSYF8abqYjc4I3KFWuPQTHJqbtjzo,16423
|
|
163
|
+
cribl_control_plane/models/inputtcpjson.py,sha256=ra06OTwUIfaEYy7UP6fWQbdhW7TNwLuQZ_psONrOXZs,14941
|
|
164
|
+
cribl_control_plane/models/inputwef.py,sha256=LIvwg7W9FXjx-3Aco-F9YRT9hxxXsRKYs7eyhd_qAXw,22315
|
|
165
|
+
cribl_control_plane/models/inputwindowsmetrics.py,sha256=aSuwEVYPXIaTsWUdSfeDKD2wUCbrt7soFFcWm4pD91M,17348
|
|
166
|
+
cribl_control_plane/models/inputwineventlogs.py,sha256=cbdg_qUyR6YQ9t1nTOp3os6LoxQrPFU5Gm8Eycsn3-M,10261
|
|
167
|
+
cribl_control_plane/models/inputwiz.py,sha256=u7TWvvkG4KCAnGMIYDoCH4jlSxKAsotV3eLEqUqrXeQ,14786
|
|
168
|
+
cribl_control_plane/models/inputwizwebhook.py,sha256=tvVhBaVZ8Rxv_HrRMfs0xnrMTCW8h_FD1SwOVErBmAk,18875
|
|
169
|
+
cribl_control_plane/models/inputzscalerhec.py,sha256=KRum72ehpgK2qbJBFMauV-YT9P4fhe13DxA5sNy5Tf8,20446
|
|
170
170
|
cribl_control_plane/models/jobinfo.py,sha256=DywkxnfEyU1ACJpVUAvLTRzYrdMiRiM-uIblWlmUnEM,607
|
|
171
171
|
cribl_control_plane/models/jobstatus.py,sha256=XFogf3iW-C1vQJ87QJ7_6B9ecHKnj9R00NezWpvD-AA,454
|
|
172
172
|
cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
|
|
@@ -186,7 +186,7 @@ cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_Q
|
|
|
186
186
|
cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=wJYUEDcCTx6Mrivh_0uEGspLenHKueWE9mVcjTycaL8,226
|
|
187
187
|
cribl_control_plane/models/nodeupgradestate.py,sha256=8zbj0lofMbq89B3lv5gEIS7d1DKHINxQtdqptVE3sSQ,218
|
|
188
188
|
cribl_control_plane/models/nodeupgradestatus.py,sha256=HlNRUmka5xuPdL-2UupJIe5q1_imCKHUWQQBTIpDCHM,966
|
|
189
|
-
cribl_control_plane/models/output.py,sha256=
|
|
189
|
+
cribl_control_plane/models/output.py,sha256=4dz6DHqu2ygAYHLcSwv95lnk9tsoQN99c8_M0kscp6U,8695
|
|
190
190
|
cribl_control_plane/models/outputazureblob.py,sha256=3mOrHtABPHbwPdx36qjAIyyxbplfgSHSkjTdXXiqi9g,21928
|
|
191
191
|
cribl_control_plane/models/outputazuredataexplorer.py,sha256=BXSQBt04zbut9kK0OSrCMHDGONbnBZ9iLrlpBBACskM,30054
|
|
192
192
|
cribl_control_plane/models/outputazureeventhub.py,sha256=2-4l-5D5Q5UgKcAd_ZrlCyUipYboPPWRFMOV3dL9Vg8,14767
|
|
@@ -214,14 +214,14 @@ cribl_control_plane/models/outputgooglechronicle.py,sha256=I_cQCbi1j_L1yEi5Cy-GA
|
|
|
214
214
|
cribl_control_plane/models/outputgooglecloudlogging.py,sha256=8BVEEk4NsXPAIrzK087_DCJWREO6C36KpJs4SimVPWY,33585
|
|
215
215
|
cribl_control_plane/models/outputgooglecloudstorage.py,sha256=yJI9xSgu9XTsDtRBS_dMZdfLpKv2t4cyi4Px8hYuSM4,22385
|
|
216
216
|
cribl_control_plane/models/outputgooglepubsub.py,sha256=Wl7vmLgBz-EZ6SqgFymaqRFhghdEoPWZB9f5jkkGKrc,11649
|
|
217
|
-
cribl_control_plane/models/outputgrafanacloud.py,sha256=
|
|
217
|
+
cribl_control_plane/models/outputgrafanacloud.py,sha256=o_4vU_kfqJUdgj92RYNpidbWakUaJfc5Y_n-Sm4Y4UU,52131
|
|
218
218
|
cribl_control_plane/models/outputgraphite.py,sha256=96YvOtlivN9IxPvVerjj_30RNfnn9tKcvEWsH2nzMc4,9770
|
|
219
219
|
cribl_control_plane/models/outputhoneycomb.py,sha256=-XgAb04SQ5Bg9W2ZeUH0RdMXptYS0fRFtCzhb7bRpvA,17091
|
|
220
220
|
cribl_control_plane/models/outputhumiohec.py,sha256=7A4gV6-6cyfW-PxFI6AmfG7Fu3LWPfpByaBcKLW8Iw0,18300
|
|
221
221
|
cribl_control_plane/models/outputinfluxdb.py,sha256=_UfshiBXt3OE0VsJM8jQrC6IJDQVBGjkFpGEcka3npI,23740
|
|
222
222
|
cribl_control_plane/models/outputkafka.py,sha256=1DqBcya7259tAXaOxuhduvbe03GUNe34At0U3zUB78g,25545
|
|
223
223
|
cribl_control_plane/models/outputkinesis.py,sha256=2B_r1WqTyBzQNutLM0kwBr0FQVzW9jGwpdKbFX7i_20,13156
|
|
224
|
-
cribl_control_plane/models/outputloki.py,sha256=
|
|
224
|
+
cribl_control_plane/models/outputloki.py,sha256=7StzjyZx_3gGA7ixlhsjr2_PvQM_WrAawvFEV2pGmbI,22040
|
|
225
225
|
cribl_control_plane/models/outputminio.py,sha256=k2DCu82KnFRwtnnbAS4js_54jqJTDDrU8kaKFpp114U,22291
|
|
226
226
|
cribl_control_plane/models/outputmsk.py,sha256=tyg-An-de9-OyJWp77qJX2Ah3pcd4KV8cCv2bDl7aXs,28492
|
|
227
227
|
cribl_control_plane/models/outputnetflow.py,sha256=xOBy2Q48SfhNT2ifAQU-bPVQ5nOpUqMJ5B40SlZ3-0o,2790
|
|
@@ -320,6 +320,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
320
320
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
321
321
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
322
322
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
323
|
-
cribl_control_plane-0.0.
|
|
324
|
-
cribl_control_plane-0.0.
|
|
325
|
-
cribl_control_plane-0.0.
|
|
323
|
+
cribl_control_plane-0.0.43.dist-info/METADATA,sha256=hDv0cZ8PxfPHPcjCChgF2lfHPJnt7MQhSSdYRVemlck,38832
|
|
324
|
+
cribl_control_plane-0.0.43.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
325
|
+
cribl_control_plane-0.0.43.dist-info/RECORD,,
|
|
File without changes
|