cribl-control-plane 0.0.35__py3-none-any.whl → 0.0.37__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 +4 -4
- cribl_control_plane/models/__init__.py +104 -13
- cribl_control_plane/models/getpacksbyidop.py +37 -0
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/input.py +19 -16
- cribl_control_plane/models/inputcrowdstrike.py +2 -2
- cribl_control_plane/models/inputs3.py +2 -2
- cribl_control_plane/models/inputs3inventory.py +2 -2
- cribl_control_plane/models/inputsecuritylake.py +2 -2
- cribl_control_plane/models/inputwizwebhook.py +393 -0
- cribl_control_plane/models/packrequestbody_union.py +140 -0
- cribl_control_plane/packs.py +200 -104
- {cribl_control_plane-0.0.35.dist-info → cribl_control_plane-0.0.37.dist-info}/METADATA +4 -3
- {cribl_control_plane-0.0.35.dist-info → cribl_control_plane-0.0.37.dist-info}/RECORD +16 -14
- cribl_control_plane/models/packrequestbody.py +0 -75
- {cribl_control_plane-0.0.35.dist-info → cribl_control_plane-0.0.37.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.0-alpha.
|
|
6
|
+
__version__: str = "0.0.37"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1756133891055-db064179"
|
|
8
8
|
__gen_version__: str = "2.686.7"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.37 2.686.7 4.14.0-alpha.1756133891055-db064179 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/commits.py
CHANGED
|
@@ -756,9 +756,9 @@ class Commits(BaseSDK):
|
|
|
756
756
|
self,
|
|
757
757
|
*,
|
|
758
758
|
commit: str,
|
|
759
|
-
message: str,
|
|
760
759
|
group: Optional[str] = None,
|
|
761
760
|
force: Optional[bool] = None,
|
|
761
|
+
message: Optional[str] = None,
|
|
762
762
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
763
763
|
server_url: Optional[str] = None,
|
|
764
764
|
timeout_ms: Optional[int] = None,
|
|
@@ -769,9 +769,9 @@ class Commits(BaseSDK):
|
|
|
769
769
|
Revert a commit in the local repository.
|
|
770
770
|
|
|
771
771
|
:param commit:
|
|
772
|
-
:param message:
|
|
773
772
|
:param group: Group ID
|
|
774
773
|
:param force:
|
|
774
|
+
:param message:
|
|
775
775
|
:param retries: Override the default retry configuration for this method
|
|
776
776
|
:param server_url: Override the default server URL for this method
|
|
777
777
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -857,9 +857,9 @@ class Commits(BaseSDK):
|
|
|
857
857
|
self,
|
|
858
858
|
*,
|
|
859
859
|
commit: str,
|
|
860
|
-
message: str,
|
|
861
860
|
group: Optional[str] = None,
|
|
862
861
|
force: Optional[bool] = None,
|
|
862
|
+
message: Optional[str] = None,
|
|
863
863
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
864
864
|
server_url: Optional[str] = None,
|
|
865
865
|
timeout_ms: Optional[int] = None,
|
|
@@ -870,9 +870,9 @@ class Commits(BaseSDK):
|
|
|
870
870
|
Revert a commit in the local repository.
|
|
871
871
|
|
|
872
872
|
:param commit:
|
|
873
|
-
:param message:
|
|
874
873
|
:param group: Group ID
|
|
875
874
|
:param force:
|
|
875
|
+
:param message:
|
|
876
876
|
:param retries: Override the default retry configuration for this method
|
|
877
877
|
:param server_url: Override the default server URL for this method
|
|
878
878
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -223,6 +223,12 @@ if TYPE_CHECKING:
|
|
|
223
223
|
GetOutputSamplesByIDResponse,
|
|
224
224
|
GetOutputSamplesByIDResponseTypedDict,
|
|
225
225
|
)
|
|
226
|
+
from .getpacksbyidop import (
|
|
227
|
+
GetPacksByIDRequest,
|
|
228
|
+
GetPacksByIDRequestTypedDict,
|
|
229
|
+
GetPacksByIDResponse,
|
|
230
|
+
GetPacksByIDResponseTypedDict,
|
|
231
|
+
)
|
|
226
232
|
from .getpacksop import (
|
|
227
233
|
GetPacksRequest,
|
|
228
234
|
GetPacksRequestTypedDict,
|
|
@@ -1569,6 +1575,27 @@ if TYPE_CHECKING:
|
|
|
1569
1575
|
InputWizType,
|
|
1570
1576
|
InputWizTypedDict,
|
|
1571
1577
|
)
|
|
1578
|
+
from .inputwizwebhook import (
|
|
1579
|
+
InputWizWebhook,
|
|
1580
|
+
InputWizWebhookAuthTokensExt,
|
|
1581
|
+
InputWizWebhookAuthTokensExtMetadatum,
|
|
1582
|
+
InputWizWebhookAuthTokensExtMetadatumTypedDict,
|
|
1583
|
+
InputWizWebhookAuthTokensExtTypedDict,
|
|
1584
|
+
InputWizWebhookCompression,
|
|
1585
|
+
InputWizWebhookConnection,
|
|
1586
|
+
InputWizWebhookConnectionTypedDict,
|
|
1587
|
+
InputWizWebhookMaximumTLSVersion,
|
|
1588
|
+
InputWizWebhookMetadatum,
|
|
1589
|
+
InputWizWebhookMetadatumTypedDict,
|
|
1590
|
+
InputWizWebhookMinimumTLSVersion,
|
|
1591
|
+
InputWizWebhookMode,
|
|
1592
|
+
InputWizWebhookPq,
|
|
1593
|
+
InputWizWebhookPqTypedDict,
|
|
1594
|
+
InputWizWebhookTLSSettingsServerSide,
|
|
1595
|
+
InputWizWebhookTLSSettingsServerSideTypedDict,
|
|
1596
|
+
InputWizWebhookType,
|
|
1597
|
+
InputWizWebhookTypedDict,
|
|
1598
|
+
)
|
|
1572
1599
|
from .inputzscalerhec import (
|
|
1573
1600
|
InputZscalerHec,
|
|
1574
1601
|
InputZscalerHecAuthToken,
|
|
@@ -2916,11 +2943,17 @@ if TYPE_CHECKING:
|
|
|
2916
2943
|
PackInstallInfoTagsTypedDict,
|
|
2917
2944
|
PackInstallInfoTypedDict,
|
|
2918
2945
|
)
|
|
2919
|
-
from .
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2946
|
+
from .packrequestbody_union import (
|
|
2947
|
+
PackRequestBody1,
|
|
2948
|
+
PackRequestBody1TypedDict,
|
|
2949
|
+
PackRequestBody2,
|
|
2950
|
+
PackRequestBody2TypedDict,
|
|
2951
|
+
PackRequestBodyTags1,
|
|
2952
|
+
PackRequestBodyTags1TypedDict,
|
|
2953
|
+
PackRequestBodyTags2,
|
|
2954
|
+
PackRequestBodyTags2TypedDict,
|
|
2955
|
+
PackRequestBodyUnion,
|
|
2956
|
+
PackRequestBodyUnionTypedDict,
|
|
2924
2957
|
)
|
|
2925
2958
|
from .pipeline import (
|
|
2926
2959
|
Conf,
|
|
@@ -3240,6 +3273,10 @@ __all__ = [
|
|
|
3240
3273
|
"GetOutputSamplesByIDRequestTypedDict",
|
|
3241
3274
|
"GetOutputSamplesByIDResponse",
|
|
3242
3275
|
"GetOutputSamplesByIDResponseTypedDict",
|
|
3276
|
+
"GetPacksByIDRequest",
|
|
3277
|
+
"GetPacksByIDRequestTypedDict",
|
|
3278
|
+
"GetPacksByIDResponse",
|
|
3279
|
+
"GetPacksByIDResponseTypedDict",
|
|
3243
3280
|
"GetPacksRequest",
|
|
3244
3281
|
"GetPacksRequestTypedDict",
|
|
3245
3282
|
"GetPacksResponse",
|
|
@@ -4377,6 +4414,25 @@ __all__ = [
|
|
|
4377
4414
|
"InputWizRetryType",
|
|
4378
4415
|
"InputWizType",
|
|
4379
4416
|
"InputWizTypedDict",
|
|
4417
|
+
"InputWizWebhook",
|
|
4418
|
+
"InputWizWebhookAuthTokensExt",
|
|
4419
|
+
"InputWizWebhookAuthTokensExtMetadatum",
|
|
4420
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict",
|
|
4421
|
+
"InputWizWebhookAuthTokensExtTypedDict",
|
|
4422
|
+
"InputWizWebhookCompression",
|
|
4423
|
+
"InputWizWebhookConnection",
|
|
4424
|
+
"InputWizWebhookConnectionTypedDict",
|
|
4425
|
+
"InputWizWebhookMaximumTLSVersion",
|
|
4426
|
+
"InputWizWebhookMetadatum",
|
|
4427
|
+
"InputWizWebhookMetadatumTypedDict",
|
|
4428
|
+
"InputWizWebhookMinimumTLSVersion",
|
|
4429
|
+
"InputWizWebhookMode",
|
|
4430
|
+
"InputWizWebhookPq",
|
|
4431
|
+
"InputWizWebhookPqTypedDict",
|
|
4432
|
+
"InputWizWebhookTLSSettingsServerSide",
|
|
4433
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict",
|
|
4434
|
+
"InputWizWebhookType",
|
|
4435
|
+
"InputWizWebhookTypedDict",
|
|
4380
4436
|
"InputZscalerHec",
|
|
4381
4437
|
"InputZscalerHecAuthToken",
|
|
4382
4438
|
"InputZscalerHecAuthTokenMetadatum",
|
|
@@ -5569,10 +5625,16 @@ __all__ = [
|
|
|
5569
5625
|
"PackInstallInfoTags",
|
|
5570
5626
|
"PackInstallInfoTagsTypedDict",
|
|
5571
5627
|
"PackInstallInfoTypedDict",
|
|
5572
|
-
"
|
|
5573
|
-
"
|
|
5574
|
-
"
|
|
5575
|
-
"
|
|
5628
|
+
"PackRequestBody1",
|
|
5629
|
+
"PackRequestBody1TypedDict",
|
|
5630
|
+
"PackRequestBody2",
|
|
5631
|
+
"PackRequestBody2TypedDict",
|
|
5632
|
+
"PackRequestBodyTags1",
|
|
5633
|
+
"PackRequestBodyTags1TypedDict",
|
|
5634
|
+
"PackRequestBodyTags2",
|
|
5635
|
+
"PackRequestBodyTags2TypedDict",
|
|
5636
|
+
"PackRequestBodyUnion",
|
|
5637
|
+
"PackRequestBodyUnionTypedDict",
|
|
5576
5638
|
"PayloadFormat",
|
|
5577
5639
|
"Pipeline",
|
|
5578
5640
|
"PipelineFunctionConf",
|
|
@@ -5860,6 +5922,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5860
5922
|
"GetOutputSamplesByIDRequestTypedDict": ".getoutputsamplesbyidop",
|
|
5861
5923
|
"GetOutputSamplesByIDResponse": ".getoutputsamplesbyidop",
|
|
5862
5924
|
"GetOutputSamplesByIDResponseTypedDict": ".getoutputsamplesbyidop",
|
|
5925
|
+
"GetPacksByIDRequest": ".getpacksbyidop",
|
|
5926
|
+
"GetPacksByIDRequestTypedDict": ".getpacksbyidop",
|
|
5927
|
+
"GetPacksByIDResponse": ".getpacksbyidop",
|
|
5928
|
+
"GetPacksByIDResponseTypedDict": ".getpacksbyidop",
|
|
5863
5929
|
"GetPacksRequest": ".getpacksop",
|
|
5864
5930
|
"GetPacksRequestTypedDict": ".getpacksop",
|
|
5865
5931
|
"GetPacksResponse": ".getpacksop",
|
|
@@ -7076,6 +7142,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
7076
7142
|
"InputWizRetryType": ".inputwiz",
|
|
7077
7143
|
"InputWizType": ".inputwiz",
|
|
7078
7144
|
"InputWizTypedDict": ".inputwiz",
|
|
7145
|
+
"InputWizWebhook": ".inputwizwebhook",
|
|
7146
|
+
"InputWizWebhookAuthTokensExt": ".inputwizwebhook",
|
|
7147
|
+
"InputWizWebhookAuthTokensExtMetadatum": ".inputwizwebhook",
|
|
7148
|
+
"InputWizWebhookAuthTokensExtMetadatumTypedDict": ".inputwizwebhook",
|
|
7149
|
+
"InputWizWebhookAuthTokensExtTypedDict": ".inputwizwebhook",
|
|
7150
|
+
"InputWizWebhookCompression": ".inputwizwebhook",
|
|
7151
|
+
"InputWizWebhookConnection": ".inputwizwebhook",
|
|
7152
|
+
"InputWizWebhookConnectionTypedDict": ".inputwizwebhook",
|
|
7153
|
+
"InputWizWebhookMaximumTLSVersion": ".inputwizwebhook",
|
|
7154
|
+
"InputWizWebhookMetadatum": ".inputwizwebhook",
|
|
7155
|
+
"InputWizWebhookMetadatumTypedDict": ".inputwizwebhook",
|
|
7156
|
+
"InputWizWebhookMinimumTLSVersion": ".inputwizwebhook",
|
|
7157
|
+
"InputWizWebhookMode": ".inputwizwebhook",
|
|
7158
|
+
"InputWizWebhookPq": ".inputwizwebhook",
|
|
7159
|
+
"InputWizWebhookPqTypedDict": ".inputwizwebhook",
|
|
7160
|
+
"InputWizWebhookTLSSettingsServerSide": ".inputwizwebhook",
|
|
7161
|
+
"InputWizWebhookTLSSettingsServerSideTypedDict": ".inputwizwebhook",
|
|
7162
|
+
"InputWizWebhookType": ".inputwizwebhook",
|
|
7163
|
+
"InputWizWebhookTypedDict": ".inputwizwebhook",
|
|
7079
7164
|
"InputZscalerHec": ".inputzscalerhec",
|
|
7080
7165
|
"InputZscalerHecAuthToken": ".inputzscalerhec",
|
|
7081
7166
|
"InputZscalerHecAuthTokenMetadatum": ".inputzscalerhec",
|
|
@@ -8295,10 +8380,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
8295
8380
|
"PackInstallInfoTags": ".packinstallinfo",
|
|
8296
8381
|
"PackInstallInfoTagsTypedDict": ".packinstallinfo",
|
|
8297
8382
|
"PackInstallInfoTypedDict": ".packinstallinfo",
|
|
8298
|
-
"
|
|
8299
|
-
"
|
|
8300
|
-
"
|
|
8301
|
-
"
|
|
8383
|
+
"PackRequestBody1": ".packrequestbody_union",
|
|
8384
|
+
"PackRequestBody1TypedDict": ".packrequestbody_union",
|
|
8385
|
+
"PackRequestBody2": ".packrequestbody_union",
|
|
8386
|
+
"PackRequestBody2TypedDict": ".packrequestbody_union",
|
|
8387
|
+
"PackRequestBodyTags1": ".packrequestbody_union",
|
|
8388
|
+
"PackRequestBodyTags1TypedDict": ".packrequestbody_union",
|
|
8389
|
+
"PackRequestBodyTags2": ".packrequestbody_union",
|
|
8390
|
+
"PackRequestBodyTags2TypedDict": ".packrequestbody_union",
|
|
8391
|
+
"PackRequestBodyUnion": ".packrequestbody_union",
|
|
8392
|
+
"PackRequestBodyUnionTypedDict": ".packrequestbody_union",
|
|
8302
8393
|
"Conf": ".pipeline",
|
|
8303
8394
|
"ConfTypedDict": ".pipeline",
|
|
8304
8395
|
"Pipeline": ".pipeline",
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .packinfo import PackInfo, PackInfoTypedDict
|
|
5
|
+
from cribl_control_plane.types import BaseModel
|
|
6
|
+
from cribl_control_plane.utils import FieldMetadata, PathParamMetadata
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GetPacksByIDRequestTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
r"""The <code>id</code> of the Pack to get."""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetPacksByIDRequest(BaseModel):
|
|
17
|
+
id: Annotated[
|
|
18
|
+
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
|
19
|
+
]
|
|
20
|
+
r"""The <code>id</code> of the Pack to get."""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class GetPacksByIDResponseTypedDict(TypedDict):
|
|
24
|
+
r"""a list of PackInfo objects"""
|
|
25
|
+
|
|
26
|
+
count: NotRequired[int]
|
|
27
|
+
r"""number of items present in the items array"""
|
|
28
|
+
items: NotRequired[List[PackInfoTypedDict]]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class GetPacksByIDResponse(BaseModel):
|
|
32
|
+
r"""a list of PackInfo objects"""
|
|
33
|
+
|
|
34
|
+
count: Optional[int] = None
|
|
35
|
+
r"""number of items present in the items array"""
|
|
36
|
+
|
|
37
|
+
items: Optional[List[PackInfo]] = None
|
|
@@ -8,13 +8,13 @@ from typing_extensions import NotRequired, TypedDict
|
|
|
8
8
|
|
|
9
9
|
class GitRevertParamsTypedDict(TypedDict):
|
|
10
10
|
commit: str
|
|
11
|
-
message: str
|
|
12
11
|
force: NotRequired[bool]
|
|
12
|
+
message: NotRequired[str]
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
class GitRevertParams(BaseModel):
|
|
16
16
|
commit: str
|
|
17
17
|
|
|
18
|
-
message: str
|
|
19
|
-
|
|
20
18
|
force: Optional[bool] = None
|
|
19
|
+
|
|
20
|
+
message: Optional[str] = None
|
|
@@ -64,6 +64,7 @@ from .inputwef import InputWef, InputWefTypedDict
|
|
|
64
64
|
from .inputwindowsmetrics import InputWindowsMetrics, InputWindowsMetricsTypedDict
|
|
65
65
|
from .inputwineventlogs import InputWinEventLogs, InputWinEventLogsTypedDict
|
|
66
66
|
from .inputwiz import InputWiz, InputWizTypedDict
|
|
67
|
+
from .inputwizwebhook import InputWizWebhook, InputWizWebhookTypedDict
|
|
67
68
|
from .inputzscalerhec import InputZscalerHec, InputZscalerHecTypedDict
|
|
68
69
|
from typing import Union
|
|
69
70
|
from typing_extensions import TypeAliasType
|
|
@@ -80,11 +81,11 @@ InputTypedDict = TypeAliasType(
|
|
|
80
81
|
InputCollectionTypedDict,
|
|
81
82
|
InputSystemStateTypedDict,
|
|
82
83
|
InputModelDrivenTelemetryTypedDict,
|
|
83
|
-
InputWindowsMetricsTypedDict,
|
|
84
84
|
InputSystemMetricsTypedDict,
|
|
85
|
+
InputWindowsMetricsTypedDict,
|
|
85
86
|
InputJournalFilesTypedDict,
|
|
86
|
-
InputRawUDPTypedDict,
|
|
87
87
|
InputWinEventLogsTypedDict,
|
|
88
|
+
InputRawUDPTypedDict,
|
|
88
89
|
InputExecTypedDict,
|
|
89
90
|
InputKubeLogsTypedDict,
|
|
90
91
|
InputMetricsTypedDict,
|
|
@@ -93,27 +94,28 @@ InputTypedDict = TypeAliasType(
|
|
|
93
94
|
InputNetflowTypedDict,
|
|
94
95
|
InputTcpjsonTypedDict,
|
|
95
96
|
InputGooglePubsubTypedDict,
|
|
96
|
-
InputTCPTypedDict,
|
|
97
|
-
InputWizTypedDict,
|
|
98
97
|
InputOffice365ServiceTypedDict,
|
|
98
|
+
InputWizTypedDict,
|
|
99
|
+
InputTCPTypedDict,
|
|
99
100
|
InputFirehoseTypedDict,
|
|
100
101
|
InputCriblHTTPTypedDict,
|
|
101
|
-
InputOffice365MgmtTypedDict,
|
|
102
102
|
InputDatadogAgentTypedDict,
|
|
103
|
+
InputOffice365MgmtTypedDict,
|
|
103
104
|
InputFileTypedDict,
|
|
104
105
|
InputSplunkTypedDict,
|
|
105
|
-
InputAppscopeTypedDict,
|
|
106
106
|
InputWefTypedDict,
|
|
107
|
+
InputAppscopeTypedDict,
|
|
107
108
|
InputHTTPRawTypedDict,
|
|
109
|
+
InputWizWebhookTypedDict,
|
|
108
110
|
InputHTTPTypedDict,
|
|
109
111
|
InputCriblLakeHTTPTypedDict,
|
|
110
112
|
InputAzureBlobTypedDict,
|
|
111
113
|
InputSqsTypedDict,
|
|
112
114
|
InputZscalerHecTypedDict,
|
|
113
|
-
InputEventhubTypedDict,
|
|
114
115
|
InputKinesisTypedDict,
|
|
115
|
-
InputKafkaTypedDict,
|
|
116
116
|
InputConfluentCloudTypedDict,
|
|
117
|
+
InputEventhubTypedDict,
|
|
118
|
+
InputKafkaTypedDict,
|
|
117
119
|
InputElasticTypedDict,
|
|
118
120
|
InputOffice365MsgTraceTypedDict,
|
|
119
121
|
InputSplunkHecTypedDict,
|
|
@@ -145,11 +147,11 @@ Input = TypeAliasType(
|
|
|
145
147
|
InputCollection,
|
|
146
148
|
InputSystemState,
|
|
147
149
|
InputModelDrivenTelemetry,
|
|
148
|
-
InputWindowsMetrics,
|
|
149
150
|
InputSystemMetrics,
|
|
151
|
+
InputWindowsMetrics,
|
|
150
152
|
InputJournalFiles,
|
|
151
|
-
InputRawUDP,
|
|
152
153
|
InputWinEventLogs,
|
|
154
|
+
InputRawUDP,
|
|
153
155
|
InputExec,
|
|
154
156
|
InputKubeLogs,
|
|
155
157
|
InputMetrics,
|
|
@@ -158,27 +160,28 @@ Input = TypeAliasType(
|
|
|
158
160
|
InputNetflow,
|
|
159
161
|
InputTcpjson,
|
|
160
162
|
InputGooglePubsub,
|
|
161
|
-
InputTCP,
|
|
162
|
-
InputWiz,
|
|
163
163
|
InputOffice365Service,
|
|
164
|
+
InputWiz,
|
|
165
|
+
InputTCP,
|
|
164
166
|
InputFirehose,
|
|
165
167
|
InputCriblHTTP,
|
|
166
|
-
InputOffice365Mgmt,
|
|
167
168
|
InputDatadogAgent,
|
|
169
|
+
InputOffice365Mgmt,
|
|
168
170
|
InputFile,
|
|
169
171
|
InputSplunk,
|
|
170
|
-
InputAppscope,
|
|
171
172
|
InputWef,
|
|
173
|
+
InputAppscope,
|
|
172
174
|
InputHTTPRaw,
|
|
175
|
+
InputWizWebhook,
|
|
173
176
|
InputHTTP,
|
|
174
177
|
InputCriblLakeHTTP,
|
|
175
178
|
InputAzureBlob,
|
|
176
179
|
InputSqs,
|
|
177
180
|
InputZscalerHec,
|
|
178
|
-
InputEventhub,
|
|
179
181
|
InputKinesis,
|
|
180
|
-
InputKafka,
|
|
181
182
|
InputConfluentCloud,
|
|
183
|
+
InputEventhub,
|
|
184
|
+
InputKafka,
|
|
182
185
|
InputElastic,
|
|
183
186
|
InputOffice365MsgTrace,
|
|
184
187
|
InputSplunkHec,
|
|
@@ -201,7 +201,7 @@ class InputCrowdstrikeTypedDict(TypedDict):
|
|
|
201
201
|
skip_on_error: NotRequired[bool]
|
|
202
202
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
203
203
|
include_sqs_metadata: NotRequired[bool]
|
|
204
|
-
r"""
|
|
204
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
205
205
|
enable_assume_role: NotRequired[bool]
|
|
206
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
207
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -338,7 +338,7 @@ class InputCrowdstrike(BaseModel):
|
|
|
338
338
|
include_sqs_metadata: Annotated[
|
|
339
339
|
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
340
340
|
] = False
|
|
341
|
-
r"""
|
|
341
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
342
342
|
|
|
343
343
|
enable_assume_role: Annotated[
|
|
344
344
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
@@ -196,7 +196,7 @@ class InputS3TypedDict(TypedDict):
|
|
|
196
196
|
skip_on_error: NotRequired[bool]
|
|
197
197
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
198
198
|
include_sqs_metadata: NotRequired[bool]
|
|
199
|
-
r"""
|
|
199
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
200
200
|
enable_assume_role: NotRequired[bool]
|
|
201
201
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
202
202
|
assume_role_arn: NotRequired[str]
|
|
@@ -337,7 +337,7 @@ class InputS3(BaseModel):
|
|
|
337
337
|
include_sqs_metadata: Annotated[
|
|
338
338
|
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
339
339
|
] = False
|
|
340
|
-
r"""
|
|
340
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
341
341
|
|
|
342
342
|
enable_assume_role: Annotated[
|
|
343
343
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
@@ -201,7 +201,7 @@ class InputS3InventoryTypedDict(TypedDict):
|
|
|
201
201
|
skip_on_error: NotRequired[bool]
|
|
202
202
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
203
203
|
include_sqs_metadata: NotRequired[bool]
|
|
204
|
-
r"""
|
|
204
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
205
205
|
enable_assume_role: NotRequired[bool]
|
|
206
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
207
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -346,7 +346,7 @@ class InputS3Inventory(BaseModel):
|
|
|
346
346
|
include_sqs_metadata: Annotated[
|
|
347
347
|
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
348
348
|
] = False
|
|
349
|
-
r"""
|
|
349
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
350
350
|
|
|
351
351
|
enable_assume_role: Annotated[
|
|
352
352
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
@@ -201,7 +201,7 @@ class InputSecurityLakeTypedDict(TypedDict):
|
|
|
201
201
|
skip_on_error: NotRequired[bool]
|
|
202
202
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
203
203
|
include_sqs_metadata: NotRequired[bool]
|
|
204
|
-
r"""
|
|
204
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
205
205
|
enable_assume_role: NotRequired[bool]
|
|
206
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
207
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -342,7 +342,7 @@ class InputSecurityLake(BaseModel):
|
|
|
342
342
|
include_sqs_metadata: Annotated[
|
|
343
343
|
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
344
344
|
] = False
|
|
345
|
-
r"""
|
|
345
|
+
r"""Attach SQS notification metadata to a __sqsMetadata field on each event"""
|
|
346
346
|
|
|
347
347
|
enable_assume_role: Annotated[
|
|
348
348
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|