cribl-control-plane 0.0.37a1__py3-none-any.whl → 0.0.38__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 +56 -46
- cribl_control_plane/commits_files.py +12 -12
- cribl_control_plane/models/__init__.py +533 -215
- cribl_control_plane/models/createversioncommitop.py +26 -1
- cribl_control_plane/models/createversionrevertop.py +4 -2
- cribl_control_plane/models/createversionundoop.py +4 -2
- cribl_control_plane/models/getpacksbyidop.py +37 -0
- cribl_control_plane/models/getversioncountop.py +3 -2
- cribl_control_plane/models/getversiondiffop.py +3 -2
- cribl_control_plane/models/getversionfilesop.py +3 -2
- cribl_control_plane/models/getversionop.py +4 -2
- cribl_control_plane/models/getversionshowop.py +3 -2
- cribl_control_plane/models/getversionstatusop.py +4 -2
- cribl_control_plane/models/gitrevertparams.py +3 -3
- cribl_control_plane/models/input.py +77 -76
- cribl_control_plane/models/inputcrowdstrike.py +2 -2
- cribl_control_plane/models/inputgrafana.py +678 -67
- 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/inputsyslog.py +406 -37
- cribl_control_plane/models/inputwizwebhook.py +393 -0
- cribl_control_plane/models/output.py +75 -77
- cribl_control_plane/models/outputcrowdstrikenextgensiem.py +1 -1
- cribl_control_plane/models/outputgooglepubsub.py +7 -28
- cribl_control_plane/models/outputgrafanacloud.py +565 -69
- cribl_control_plane/models/packinfo.py +5 -5
- cribl_control_plane/models/packinstallinfo.py +5 -5
- cribl_control_plane/models/packrequestbody_union.py +140 -0
- cribl_control_plane/models/packupgraderequest.py +26 -0
- cribl_control_plane/models/updatepacksbyidop.py +9 -28
- cribl_control_plane/packs.py +236 -116
- cribl_control_plane/statuses.py +6 -6
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38.dist-info}/METADATA +4 -3
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38.dist-info}/RECORD +37 -34
- cribl_control_plane/models/packrequestbody.py +0 -75
- {cribl_control_plane-0.0.37a1.dist-info → cribl_control_plane-0.0.38.dist-info}/WHEEL +0 -0
|
@@ -1,10 +1,35 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .gitcommitparams import GitCommitParams, GitCommitParamsTypedDict
|
|
4
5
|
from .gitcommitsummary import GitCommitSummary, GitCommitSummaryTypedDict
|
|
5
6
|
from cribl_control_plane.types import BaseModel
|
|
7
|
+
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata, RequestMetadata
|
|
8
|
+
import pydantic
|
|
6
9
|
from typing import List, Optional
|
|
7
|
-
from typing_extensions import NotRequired, TypedDict
|
|
10
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class CreateVersionCommitRequestTypedDict(TypedDict):
|
|
14
|
+
git_commit_params: GitCommitParamsTypedDict
|
|
15
|
+
r"""GitCommitParams object"""
|
|
16
|
+
group_id: NotRequired[str]
|
|
17
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to create a new commit for."""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class CreateVersionCommitRequest(BaseModel):
|
|
21
|
+
git_commit_params: Annotated[
|
|
22
|
+
GitCommitParams,
|
|
23
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
|
24
|
+
]
|
|
25
|
+
r"""GitCommitParams object"""
|
|
26
|
+
|
|
27
|
+
group_id: Annotated[
|
|
28
|
+
Optional[str],
|
|
29
|
+
pydantic.Field(alias="groupId"),
|
|
30
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
31
|
+
] = None
|
|
32
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to create a new commit for."""
|
|
8
33
|
|
|
9
34
|
|
|
10
35
|
class CreateVersionCommitResponseTypedDict(TypedDict):
|
|
@@ -5,6 +5,7 @@ from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
|
|
|
5
5
|
from .gitrevertresult import GitRevertResult, GitRevertResultTypedDict
|
|
6
6
|
from cribl_control_plane.types import BaseModel
|
|
7
7
|
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata, RequestMetadata
|
|
8
|
+
import pydantic
|
|
8
9
|
from typing import List, Optional
|
|
9
10
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
11
|
|
|
@@ -12,7 +13,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
12
13
|
class CreateVersionRevertRequestTypedDict(TypedDict):
|
|
13
14
|
git_revert_params: GitRevertParamsTypedDict
|
|
14
15
|
r"""GitRevertParams object"""
|
|
15
|
-
|
|
16
|
+
group_id: NotRequired[str]
|
|
16
17
|
r"""Group ID"""
|
|
17
18
|
|
|
18
19
|
|
|
@@ -23,8 +24,9 @@ class CreateVersionRevertRequest(BaseModel):
|
|
|
23
24
|
]
|
|
24
25
|
r"""GitRevertParams object"""
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
group_id: Annotated[
|
|
27
28
|
Optional[str],
|
|
29
|
+
pydantic.Field(alias="groupId"),
|
|
28
30
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
29
31
|
] = None
|
|
30
32
|
r"""Group ID"""
|
|
@@ -3,18 +3,20 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from cribl_control_plane.types import BaseModel
|
|
5
5
|
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
6
|
+
import pydantic
|
|
6
7
|
from typing import List, Optional
|
|
7
8
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
class CreateVersionUndoRequestTypedDict(TypedDict):
|
|
11
|
-
|
|
12
|
+
group_id: NotRequired[str]
|
|
12
13
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to undo the uncommited changes for."""
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
class CreateVersionUndoRequest(BaseModel):
|
|
16
|
-
|
|
17
|
+
group_id: Annotated[
|
|
17
18
|
Optional[str],
|
|
19
|
+
pydantic.Field(alias="groupId"),
|
|
18
20
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
19
21
|
] = None
|
|
20
22
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to undo the uncommited changes for."""
|
|
@@ -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
|
|
@@ -9,15 +9,16 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class GetVersionCountRequestTypedDict(TypedDict):
|
|
12
|
-
|
|
12
|
+
group_id: NotRequired[str]
|
|
13
13
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the count for."""
|
|
14
14
|
id: NotRequired[str]
|
|
15
15
|
r"""The Git commit hash to use as the starting point for the count."""
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class GetVersionCountRequest(BaseModel):
|
|
19
|
-
|
|
19
|
+
group_id: Annotated[
|
|
20
20
|
Optional[str],
|
|
21
|
+
pydantic.Field(alias="groupId"),
|
|
21
22
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
23
|
] = None
|
|
23
24
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the count for."""
|
|
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
class GetVersionDiffRequestTypedDict(TypedDict):
|
|
12
12
|
commit: NotRequired[str]
|
|
13
13
|
r"""The Git commit hash to get the diff for."""
|
|
14
|
-
|
|
14
|
+
group_id: NotRequired[str]
|
|
15
15
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff for."""
|
|
16
16
|
filename: NotRequired[str]
|
|
17
17
|
r"""The relative path of the file to get the diff for."""
|
|
@@ -26,8 +26,9 @@ class GetVersionDiffRequest(BaseModel):
|
|
|
26
26
|
] = None
|
|
27
27
|
r"""The Git commit hash to get the diff for."""
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
group_id: Annotated[
|
|
30
30
|
Optional[str],
|
|
31
|
+
pydantic.Field(alias="groupId"),
|
|
31
32
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
32
33
|
] = None
|
|
33
34
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff for."""
|
|
@@ -10,15 +10,16 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class GetVersionFilesRequestTypedDict(TypedDict):
|
|
13
|
-
|
|
13
|
+
group_id: NotRequired[str]
|
|
14
14
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get file names and status for."""
|
|
15
15
|
id: NotRequired[str]
|
|
16
16
|
r"""The Git commit hash to use as the starting point for the request."""
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class GetVersionFilesRequest(BaseModel):
|
|
20
|
-
|
|
20
|
+
group_id: Annotated[
|
|
21
21
|
Optional[str],
|
|
22
|
+
pydantic.Field(alias="groupId"),
|
|
22
23
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
23
24
|
] = None
|
|
24
25
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get file names and status for."""
|
|
@@ -4,20 +4,22 @@ from __future__ import annotations
|
|
|
4
4
|
from .gitlogresult import GitLogResult, GitLogResultTypedDict
|
|
5
5
|
from cribl_control_plane.types import BaseModel
|
|
6
6
|
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
7
|
+
import pydantic
|
|
7
8
|
from typing import List, Optional
|
|
8
9
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class GetVersionRequestTypedDict(TypedDict):
|
|
12
|
-
|
|
13
|
+
group_id: NotRequired[str]
|
|
13
14
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
14
15
|
count: NotRequired[float]
|
|
15
16
|
r"""Maximum number of commits to return in the response for this request."""
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
class GetVersionRequest(BaseModel):
|
|
19
|
-
|
|
20
|
+
group_id: Annotated[
|
|
20
21
|
Optional[str],
|
|
22
|
+
pydantic.Field(alias="groupId"),
|
|
21
23
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
24
|
] = None
|
|
23
25
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
@@ -11,7 +11,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
11
11
|
class GetVersionShowRequestTypedDict(TypedDict):
|
|
12
12
|
commit: NotRequired[str]
|
|
13
13
|
r"""The Git commit hash to retrieve the diff and log message for."""
|
|
14
|
-
|
|
14
|
+
group_id: NotRequired[str]
|
|
15
15
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff and log message for."""
|
|
16
16
|
filename: NotRequired[str]
|
|
17
17
|
r"""The relative path of the file to get the diff and log message for."""
|
|
@@ -26,8 +26,9 @@ class GetVersionShowRequest(BaseModel):
|
|
|
26
26
|
] = None
|
|
27
27
|
r"""The Git commit hash to retrieve the diff and log message for."""
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
group_id: Annotated[
|
|
30
30
|
Optional[str],
|
|
31
|
+
pydantic.Field(alias="groupId"),
|
|
31
32
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
32
33
|
] = None
|
|
33
34
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the diff and log message for."""
|
|
@@ -4,18 +4,20 @@ from __future__ import annotations
|
|
|
4
4
|
from .gitstatusresult import GitStatusResult, GitStatusResultTypedDict
|
|
5
5
|
from cribl_control_plane.types import BaseModel
|
|
6
6
|
from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
|
|
7
|
+
import pydantic
|
|
7
8
|
from typing import List, Optional
|
|
8
9
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class GetVersionStatusRequestTypedDict(TypedDict):
|
|
12
|
-
|
|
13
|
+
group_id: NotRequired[str]
|
|
13
14
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the status for."""
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
class GetVersionStatusRequest(BaseModel):
|
|
17
|
-
|
|
18
|
+
group_id: Annotated[
|
|
18
19
|
Optional[str],
|
|
20
|
+
pydantic.Field(alias="groupId"),
|
|
19
21
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
20
22
|
] = None
|
|
21
23
|
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the status for."""
|
|
@@ -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,31 +64,30 @@ 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
|
-
from cribl_control_plane.utils import get_discriminator
|
|
69
|
-
from pydantic import Discriminator, Tag
|
|
70
69
|
from typing import Union
|
|
71
|
-
from typing_extensions import
|
|
70
|
+
from typing_extensions import TypeAliasType
|
|
72
71
|
|
|
73
72
|
|
|
74
73
|
InputTypedDict = TypeAliasType(
|
|
75
74
|
"InputTypedDict",
|
|
76
75
|
Union[
|
|
77
|
-
InputKubeEventsTypedDict,
|
|
78
76
|
InputDatagenTypedDict,
|
|
77
|
+
InputKubeEventsTypedDict,
|
|
79
78
|
InputCriblTypedDict,
|
|
80
79
|
InputCriblmetricsTypedDict,
|
|
81
80
|
InputKubeMetricsTypedDict,
|
|
82
81
|
InputCollectionTypedDict,
|
|
83
82
|
InputSystemStateTypedDict,
|
|
84
|
-
InputWindowsMetricsTypedDict,
|
|
85
83
|
InputModelDrivenTelemetryTypedDict,
|
|
86
84
|
InputSystemMetricsTypedDict,
|
|
85
|
+
InputWindowsMetricsTypedDict,
|
|
87
86
|
InputJournalFilesTypedDict,
|
|
88
|
-
InputKubeLogsTypedDict,
|
|
89
|
-
InputRawUDPTypedDict,
|
|
90
87
|
InputWinEventLogsTypedDict,
|
|
88
|
+
InputRawUDPTypedDict,
|
|
91
89
|
InputExecTypedDict,
|
|
90
|
+
InputKubeLogsTypedDict,
|
|
92
91
|
InputMetricsTypedDict,
|
|
93
92
|
InputSnmpTypedDict,
|
|
94
93
|
InputCriblTCPTypedDict,
|
|
@@ -104,23 +103,22 @@ InputTypedDict = TypeAliasType(
|
|
|
104
103
|
InputOffice365MgmtTypedDict,
|
|
105
104
|
InputFileTypedDict,
|
|
106
105
|
InputSplunkTypedDict,
|
|
107
|
-
InputAppscopeTypedDict,
|
|
108
|
-
InputGrafanaTypedDict,
|
|
109
106
|
InputWefTypedDict,
|
|
107
|
+
InputAppscopeTypedDict,
|
|
110
108
|
InputHTTPRawTypedDict,
|
|
111
|
-
|
|
109
|
+
InputWizWebhookTypedDict,
|
|
112
110
|
InputHTTPTypedDict,
|
|
113
|
-
|
|
114
|
-
InputSyslogTypedDict,
|
|
115
|
-
InputSqsTypedDict,
|
|
111
|
+
InputCriblLakeHTTPTypedDict,
|
|
116
112
|
InputAzureBlobTypedDict,
|
|
117
|
-
|
|
113
|
+
InputSqsTypedDict,
|
|
114
|
+
InputZscalerHecTypedDict,
|
|
118
115
|
InputKinesisTypedDict,
|
|
116
|
+
InputConfluentCloudTypedDict,
|
|
119
117
|
InputEventhubTypedDict,
|
|
120
118
|
InputKafkaTypedDict,
|
|
121
119
|
InputElasticTypedDict,
|
|
122
|
-
InputSplunkHecTypedDict,
|
|
123
120
|
InputOffice365MsgTraceTypedDict,
|
|
121
|
+
InputSplunkHecTypedDict,
|
|
124
122
|
InputPrometheusRwTypedDict,
|
|
125
123
|
InputLokiTypedDict,
|
|
126
124
|
InputPrometheusTypedDict,
|
|
@@ -132,70 +130,73 @@ InputTypedDict = TypeAliasType(
|
|
|
132
130
|
InputMskTypedDict,
|
|
133
131
|
InputS3InventoryTypedDict,
|
|
134
132
|
InputSplunkSearchTypedDict,
|
|
133
|
+
InputSyslogTypedDict,
|
|
134
|
+
InputGrafanaTypedDict,
|
|
135
135
|
],
|
|
136
136
|
)
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
Input =
|
|
139
|
+
Input = TypeAliasType(
|
|
140
|
+
"Input",
|
|
140
141
|
Union[
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
142
|
+
InputDatagen,
|
|
143
|
+
InputKubeEvents,
|
|
144
|
+
InputCribl,
|
|
145
|
+
InputCriblmetrics,
|
|
146
|
+
InputKubeMetrics,
|
|
147
|
+
InputCollection,
|
|
148
|
+
InputSystemState,
|
|
149
|
+
InputModelDrivenTelemetry,
|
|
150
|
+
InputSystemMetrics,
|
|
151
|
+
InputWindowsMetrics,
|
|
152
|
+
InputJournalFiles,
|
|
153
|
+
InputWinEventLogs,
|
|
154
|
+
InputRawUDP,
|
|
155
|
+
InputExec,
|
|
156
|
+
InputKubeLogs,
|
|
157
|
+
InputMetrics,
|
|
158
|
+
InputSnmp,
|
|
159
|
+
InputCriblTCP,
|
|
160
|
+
InputNetflow,
|
|
161
|
+
InputTcpjson,
|
|
162
|
+
InputGooglePubsub,
|
|
163
|
+
InputOffice365Service,
|
|
164
|
+
InputWiz,
|
|
165
|
+
InputTCP,
|
|
166
|
+
InputFirehose,
|
|
167
|
+
InputCriblHTTP,
|
|
168
|
+
InputDatadogAgent,
|
|
169
|
+
InputOffice365Mgmt,
|
|
170
|
+
InputFile,
|
|
171
|
+
InputSplunk,
|
|
172
|
+
InputWef,
|
|
173
|
+
InputAppscope,
|
|
174
|
+
InputHTTPRaw,
|
|
175
|
+
InputWizWebhook,
|
|
176
|
+
InputHTTP,
|
|
177
|
+
InputCriblLakeHTTP,
|
|
178
|
+
InputAzureBlob,
|
|
179
|
+
InputSqs,
|
|
180
|
+
InputZscalerHec,
|
|
181
|
+
InputKinesis,
|
|
182
|
+
InputConfluentCloud,
|
|
183
|
+
InputEventhub,
|
|
184
|
+
InputKafka,
|
|
185
|
+
InputElastic,
|
|
186
|
+
InputOffice365MsgTrace,
|
|
187
|
+
InputSplunkHec,
|
|
188
|
+
InputPrometheusRw,
|
|
189
|
+
InputLoki,
|
|
190
|
+
InputPrometheus,
|
|
191
|
+
InputCrowdstrike,
|
|
192
|
+
InputEdgePrometheus,
|
|
193
|
+
InputOpenTelemetry,
|
|
194
|
+
InputS3,
|
|
195
|
+
InputSecurityLake,
|
|
196
|
+
InputMsk,
|
|
197
|
+
InputS3Inventory,
|
|
198
|
+
InputSplunkSearch,
|
|
199
|
+
InputSyslog,
|
|
200
|
+
InputGrafana,
|
|
199
201
|
],
|
|
200
|
-
|
|
201
|
-
]
|
|
202
|
+
)
|
|
@@ -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")
|