cribl-control-plane 0.0.28__py3-none-any.whl → 0.0.29__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/branches.py +4 -8
- cribl_control_plane/models/__init__.py +17 -8
- cribl_control_plane/models/currentbranchresult.py +13 -0
- cribl_control_plane/models/gitstatusresult.py +0 -3
- cribl_control_plane/models/input.py +30 -30
- cribl_control_plane/models/inputcribllakehttp.py +63 -0
- cribl_control_plane/models/inputcrowdstrike.py +7 -0
- cribl_control_plane/models/inputs3.py +7 -0
- cribl_control_plane/models/inputs3inventory.py +7 -0
- cribl_control_plane/models/inputsecuritylake.py +7 -0
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.29.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.29.dist-info}/RECORD +14 -14
- cribl_control_plane/models/getversioncurrentbranchop.py +0 -23
- {cribl_control_plane-0.0.28.dist-info → cribl_control_plane-0.0.29.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.29"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755516762461-7e2ae3eb"
|
|
8
8
|
__gen_version__: str = "2.684.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.29 2.684.0 4.14.0-alpha.1755516762461-7e2ae3eb cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/branches.py
CHANGED
|
@@ -177,7 +177,7 @@ class Branches(BaseSDK):
|
|
|
177
177
|
server_url: Optional[str] = None,
|
|
178
178
|
timeout_ms: Optional[int] = None,
|
|
179
179
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
180
|
-
) -> models.
|
|
180
|
+
) -> models.CurrentBranchResult:
|
|
181
181
|
r"""Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
182
182
|
|
|
183
183
|
returns git branch that the config is checked out to, if any
|
|
@@ -237,9 +237,7 @@ class Branches(BaseSDK):
|
|
|
237
237
|
|
|
238
238
|
response_data: Any = None
|
|
239
239
|
if utils.match_response(http_res, "200", "application/json"):
|
|
240
|
-
return unmarshal_json_response(
|
|
241
|
-
models.GetVersionCurrentBranchResponse, http_res
|
|
242
|
-
)
|
|
240
|
+
return unmarshal_json_response(models.CurrentBranchResult, http_res)
|
|
243
241
|
if utils.match_response(http_res, "500", "application/json"):
|
|
244
242
|
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
245
243
|
raise errors.Error(response_data, http_res)
|
|
@@ -259,7 +257,7 @@ class Branches(BaseSDK):
|
|
|
259
257
|
server_url: Optional[str] = None,
|
|
260
258
|
timeout_ms: Optional[int] = None,
|
|
261
259
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
262
|
-
) -> models.
|
|
260
|
+
) -> models.CurrentBranchResult:
|
|
263
261
|
r"""Retrieve the name of the Git branch that the Cribl configuration is checked out to
|
|
264
262
|
|
|
265
263
|
returns git branch that the config is checked out to, if any
|
|
@@ -319,9 +317,7 @@ class Branches(BaseSDK):
|
|
|
319
317
|
|
|
320
318
|
response_data: Any = None
|
|
321
319
|
if utils.match_response(http_res, "200", "application/json"):
|
|
322
|
-
return unmarshal_json_response(
|
|
323
|
-
models.GetVersionCurrentBranchResponse, http_res
|
|
324
|
-
)
|
|
320
|
+
return unmarshal_json_response(models.CurrentBranchResult, http_res)
|
|
325
321
|
if utils.match_response(http_res, "500", "application/json"):
|
|
326
322
|
response_data = unmarshal_json_response(errors.ErrorData, http_res)
|
|
327
323
|
raise errors.Error(response_data, http_res)
|
|
@@ -95,6 +95,7 @@ if TYPE_CHECKING:
|
|
|
95
95
|
CriblLakeDatasetFormat,
|
|
96
96
|
CriblLakeDatasetTypedDict,
|
|
97
97
|
)
|
|
98
|
+
from .currentbranchresult import CurrentBranchResult, CurrentBranchResultTypedDict
|
|
98
99
|
from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
|
|
99
100
|
from .datasetmetadataruninfo import (
|
|
100
101
|
DatasetMetadataRunInfo,
|
|
@@ -268,10 +269,6 @@ if TYPE_CHECKING:
|
|
|
268
269
|
GetVersionCountResponse,
|
|
269
270
|
GetVersionCountResponseTypedDict,
|
|
270
271
|
)
|
|
271
|
-
from .getversioncurrentbranchop import (
|
|
272
|
-
GetVersionCurrentBranchResponse,
|
|
273
|
-
GetVersionCurrentBranchResponseTypedDict,
|
|
274
|
-
)
|
|
275
272
|
from .getversiondiffop import (
|
|
276
273
|
GetVersionDiffRequest,
|
|
277
274
|
GetVersionDiffRequestTypedDict,
|
|
@@ -474,6 +471,10 @@ if TYPE_CHECKING:
|
|
|
474
471
|
)
|
|
475
472
|
from .inputcribllakehttp import (
|
|
476
473
|
InputCriblLakeHTTP,
|
|
474
|
+
InputCriblLakeHTTPAuthTokensExt,
|
|
475
|
+
InputCriblLakeHTTPAuthTokensExtMetadatum,
|
|
476
|
+
InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict,
|
|
477
|
+
InputCriblLakeHTTPAuthTokensExtTypedDict,
|
|
477
478
|
InputCriblLakeHTTPCompression,
|
|
478
479
|
InputCriblLakeHTTPConnection,
|
|
479
480
|
InputCriblLakeHTTPConnectionTypedDict,
|
|
@@ -3115,6 +3116,8 @@ __all__ = [
|
|
|
3115
3116
|
"CriblLakeDataset",
|
|
3116
3117
|
"CriblLakeDatasetFormat",
|
|
3117
3118
|
"CriblLakeDatasetTypedDict",
|
|
3119
|
+
"CurrentBranchResult",
|
|
3120
|
+
"CurrentBranchResultTypedDict",
|
|
3118
3121
|
"CustomLabel",
|
|
3119
3122
|
"CustomLabelTypedDict",
|
|
3120
3123
|
"DNS",
|
|
@@ -3266,8 +3269,6 @@ __all__ = [
|
|
|
3266
3269
|
"GetVersionCountRequestTypedDict",
|
|
3267
3270
|
"GetVersionCountResponse",
|
|
3268
3271
|
"GetVersionCountResponseTypedDict",
|
|
3269
|
-
"GetVersionCurrentBranchResponse",
|
|
3270
|
-
"GetVersionCurrentBranchResponseTypedDict",
|
|
3271
3272
|
"GetVersionDiffRequest",
|
|
3272
3273
|
"GetVersionDiffRequestTypedDict",
|
|
3273
3274
|
"GetVersionDiffResponse",
|
|
@@ -3439,6 +3440,10 @@ __all__ = [
|
|
|
3439
3440
|
"InputCriblHTTPType",
|
|
3440
3441
|
"InputCriblHTTPTypedDict",
|
|
3441
3442
|
"InputCriblLakeHTTP",
|
|
3443
|
+
"InputCriblLakeHTTPAuthTokensExt",
|
|
3444
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum",
|
|
3445
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict",
|
|
3446
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict",
|
|
3442
3447
|
"InputCriblLakeHTTPCompression",
|
|
3443
3448
|
"InputCriblLakeHTTPConnection",
|
|
3444
3449
|
"InputCriblLakeHTTPConnectionTypedDict",
|
|
@@ -5760,6 +5765,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5760
5765
|
"CriblLakeDataset": ".cribllakedataset",
|
|
5761
5766
|
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
5762
5767
|
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
5768
|
+
"CurrentBranchResult": ".currentbranchresult",
|
|
5769
|
+
"CurrentBranchResultTypedDict": ".currentbranchresult",
|
|
5763
5770
|
"DatasetMetadata": ".datasetmetadata",
|
|
5764
5771
|
"DatasetMetadataTypedDict": ".datasetmetadata",
|
|
5765
5772
|
"ScanMode": ".datasetmetadata",
|
|
@@ -5880,8 +5887,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5880
5887
|
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
5881
5888
|
"GetVersionCountResponse": ".getversioncountop",
|
|
5882
5889
|
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
5883
|
-
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
5884
|
-
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
5885
5890
|
"GetVersionDiffRequest": ".getversiondiffop",
|
|
5886
5891
|
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
5887
5892
|
"GetVersionDiffResponse": ".getversiondiffop",
|
|
@@ -6066,6 +6071,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6066
6071
|
"InputCriblHTTPType": ".inputcriblhttp",
|
|
6067
6072
|
"InputCriblHTTPTypedDict": ".inputcriblhttp",
|
|
6068
6073
|
"InputCriblLakeHTTP": ".inputcribllakehttp",
|
|
6074
|
+
"InputCriblLakeHTTPAuthTokensExt": ".inputcribllakehttp",
|
|
6075
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum": ".inputcribllakehttp",
|
|
6076
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict": ".inputcribllakehttp",
|
|
6077
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict": ".inputcribllakehttp",
|
|
6069
6078
|
"InputCriblLakeHTTPCompression": ".inputcribllakehttp",
|
|
6070
6079
|
"InputCriblLakeHTTPConnection": ".inputcribllakehttp",
|
|
6071
6080
|
"InputCriblLakeHTTPConnectionTypedDict": ".inputcribllakehttp",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from cribl_control_plane.types import BaseModel
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CurrentBranchResultTypedDict(TypedDict):
|
|
9
|
+
branch: str
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CurrentBranchResult(BaseModel):
|
|
13
|
+
branch: str
|
|
@@ -44,7 +44,6 @@ class GitStatusResultTypedDict(TypedDict):
|
|
|
44
44
|
not_added: List[str]
|
|
45
45
|
renamed: List[RenamedTypedDict]
|
|
46
46
|
staged: List[str]
|
|
47
|
-
tracking: str
|
|
48
47
|
|
|
49
48
|
|
|
50
49
|
class GitStatusResult(BaseModel):
|
|
@@ -69,5 +68,3 @@ class GitStatusResult(BaseModel):
|
|
|
69
68
|
renamed: List[Renamed]
|
|
70
69
|
|
|
71
70
|
staged: List[str]
|
|
72
|
-
|
|
73
|
-
tracking: str
|
|
@@ -72,16 +72,16 @@ from typing_extensions import TypeAliasType
|
|
|
72
72
|
InputTypedDict = TypeAliasType(
|
|
73
73
|
"InputTypedDict",
|
|
74
74
|
Union[
|
|
75
|
-
InputCriblTypedDict,
|
|
76
|
-
InputKubeEventsTypedDict,
|
|
77
75
|
InputDatagenTypedDict,
|
|
76
|
+
InputKubeEventsTypedDict,
|
|
77
|
+
InputCriblTypedDict,
|
|
78
78
|
InputCriblmetricsTypedDict,
|
|
79
79
|
InputKubeMetricsTypedDict,
|
|
80
|
-
InputSystemStateTypedDict,
|
|
81
80
|
InputCollectionTypedDict,
|
|
82
|
-
|
|
81
|
+
InputSystemStateTypedDict,
|
|
83
82
|
InputModelDrivenTelemetryTypedDict,
|
|
84
83
|
InputWindowsMetricsTypedDict,
|
|
84
|
+
InputSystemMetricsTypedDict,
|
|
85
85
|
InputJournalFilesTypedDict,
|
|
86
86
|
InputRawUDPTypedDict,
|
|
87
87
|
InputWinEventLogsTypedDict,
|
|
@@ -93,40 +93,40 @@ InputTypedDict = TypeAliasType(
|
|
|
93
93
|
InputNetflowTypedDict,
|
|
94
94
|
InputTcpjsonTypedDict,
|
|
95
95
|
InputGooglePubsubTypedDict,
|
|
96
|
-
InputOffice365ServiceTypedDict,
|
|
97
96
|
InputTCPTypedDict,
|
|
98
97
|
InputWizTypedDict,
|
|
98
|
+
InputOffice365ServiceTypedDict,
|
|
99
99
|
InputFirehoseTypedDict,
|
|
100
100
|
InputCriblHTTPTypedDict,
|
|
101
|
-
InputCriblLakeHTTPTypedDict,
|
|
102
|
-
InputDatadogAgentTypedDict,
|
|
103
101
|
InputOffice365MgmtTypedDict,
|
|
102
|
+
InputDatadogAgentTypedDict,
|
|
104
103
|
InputFileTypedDict,
|
|
105
104
|
InputSplunkTypedDict,
|
|
106
|
-
InputWefTypedDict,
|
|
107
105
|
InputAppscopeTypedDict,
|
|
106
|
+
InputWefTypedDict,
|
|
108
107
|
InputHTTPRawTypedDict,
|
|
109
108
|
InputHTTPTypedDict,
|
|
109
|
+
InputCriblLakeHTTPTypedDict,
|
|
110
110
|
InputAzureBlobTypedDict,
|
|
111
|
-
InputZscalerHecTypedDict,
|
|
112
111
|
InputSqsTypedDict,
|
|
113
|
-
|
|
114
|
-
InputKinesisTypedDict,
|
|
112
|
+
InputZscalerHecTypedDict,
|
|
115
113
|
InputEventhubTypedDict,
|
|
114
|
+
InputKinesisTypedDict,
|
|
116
115
|
InputKafkaTypedDict,
|
|
116
|
+
InputConfluentCloudTypedDict,
|
|
117
117
|
InputElasticTypedDict,
|
|
118
|
-
InputSplunkHecTypedDict,
|
|
119
118
|
InputOffice365MsgTraceTypedDict,
|
|
119
|
+
InputSplunkHecTypedDict,
|
|
120
120
|
InputPrometheusRwTypedDict,
|
|
121
121
|
InputLokiTypedDict,
|
|
122
|
-
InputCrowdstrikeTypedDict,
|
|
123
122
|
InputPrometheusTypedDict,
|
|
123
|
+
InputCrowdstrikeTypedDict,
|
|
124
124
|
InputEdgePrometheusTypedDict,
|
|
125
|
+
InputOpenTelemetryTypedDict,
|
|
125
126
|
InputS3TypedDict,
|
|
126
127
|
InputSecurityLakeTypedDict,
|
|
127
|
-
InputOpenTelemetryTypedDict,
|
|
128
|
-
InputS3InventoryTypedDict,
|
|
129
128
|
InputMskTypedDict,
|
|
129
|
+
InputS3InventoryTypedDict,
|
|
130
130
|
InputSplunkSearchTypedDict,
|
|
131
131
|
InputSyslogTypedDict,
|
|
132
132
|
InputGrafanaTypedDict,
|
|
@@ -137,16 +137,16 @@ InputTypedDict = TypeAliasType(
|
|
|
137
137
|
Input = TypeAliasType(
|
|
138
138
|
"Input",
|
|
139
139
|
Union[
|
|
140
|
-
InputCribl,
|
|
141
|
-
InputKubeEvents,
|
|
142
140
|
InputDatagen,
|
|
141
|
+
InputKubeEvents,
|
|
142
|
+
InputCribl,
|
|
143
143
|
InputCriblmetrics,
|
|
144
144
|
InputKubeMetrics,
|
|
145
|
-
InputSystemState,
|
|
146
145
|
InputCollection,
|
|
147
|
-
|
|
146
|
+
InputSystemState,
|
|
148
147
|
InputModelDrivenTelemetry,
|
|
149
148
|
InputWindowsMetrics,
|
|
149
|
+
InputSystemMetrics,
|
|
150
150
|
InputJournalFiles,
|
|
151
151
|
InputRawUDP,
|
|
152
152
|
InputWinEventLogs,
|
|
@@ -158,40 +158,40 @@ Input = TypeAliasType(
|
|
|
158
158
|
InputNetflow,
|
|
159
159
|
InputTcpjson,
|
|
160
160
|
InputGooglePubsub,
|
|
161
|
-
InputOffice365Service,
|
|
162
161
|
InputTCP,
|
|
163
162
|
InputWiz,
|
|
163
|
+
InputOffice365Service,
|
|
164
164
|
InputFirehose,
|
|
165
165
|
InputCriblHTTP,
|
|
166
|
-
InputCriblLakeHTTP,
|
|
167
|
-
InputDatadogAgent,
|
|
168
166
|
InputOffice365Mgmt,
|
|
167
|
+
InputDatadogAgent,
|
|
169
168
|
InputFile,
|
|
170
169
|
InputSplunk,
|
|
171
|
-
InputWef,
|
|
172
170
|
InputAppscope,
|
|
171
|
+
InputWef,
|
|
173
172
|
InputHTTPRaw,
|
|
174
173
|
InputHTTP,
|
|
174
|
+
InputCriblLakeHTTP,
|
|
175
175
|
InputAzureBlob,
|
|
176
|
-
InputZscalerHec,
|
|
177
176
|
InputSqs,
|
|
178
|
-
|
|
179
|
-
InputKinesis,
|
|
177
|
+
InputZscalerHec,
|
|
180
178
|
InputEventhub,
|
|
179
|
+
InputKinesis,
|
|
181
180
|
InputKafka,
|
|
181
|
+
InputConfluentCloud,
|
|
182
182
|
InputElastic,
|
|
183
|
-
InputSplunkHec,
|
|
184
183
|
InputOffice365MsgTrace,
|
|
184
|
+
InputSplunkHec,
|
|
185
185
|
InputPrometheusRw,
|
|
186
186
|
InputLoki,
|
|
187
|
-
InputCrowdstrike,
|
|
188
187
|
InputPrometheus,
|
|
188
|
+
InputCrowdstrike,
|
|
189
189
|
InputEdgePrometheus,
|
|
190
|
+
InputOpenTelemetry,
|
|
190
191
|
InputS3,
|
|
191
192
|
InputSecurityLake,
|
|
192
|
-
InputOpenTelemetry,
|
|
193
|
-
InputS3Inventory,
|
|
194
193
|
InputMsk,
|
|
194
|
+
InputS3Inventory,
|
|
195
195
|
InputSplunkSearch,
|
|
196
196
|
InputSyslog,
|
|
197
197
|
InputGrafana,
|
|
@@ -174,6 +174,37 @@ class InputCriblLakeHTTPMetadatum(BaseModel):
|
|
|
174
174
|
r"""JavaScript expression to compute field's value, enclosed in quotes or backticks. (Can evaluate to a constant.)"""
|
|
175
175
|
|
|
176
176
|
|
|
177
|
+
class InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict(TypedDict):
|
|
178
|
+
name: str
|
|
179
|
+
value: str
|
|
180
|
+
r"""JavaScript expression to compute field's value, enclosed in quotes or backticks. (Can evaluate to a constant.)"""
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
class InputCriblLakeHTTPAuthTokensExtMetadatum(BaseModel):
|
|
184
|
+
name: str
|
|
185
|
+
|
|
186
|
+
value: str
|
|
187
|
+
r"""JavaScript expression to compute field's value, enclosed in quotes or backticks. (Can evaluate to a constant.)"""
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class InputCriblLakeHTTPAuthTokensExtTypedDict(TypedDict):
|
|
191
|
+
token: str
|
|
192
|
+
r"""Shared secret to be provided by any client (Authorization: <token>)"""
|
|
193
|
+
description: NotRequired[str]
|
|
194
|
+
metadata: NotRequired[List[InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict]]
|
|
195
|
+
r"""Fields to add to events referencing this token"""
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
class InputCriblLakeHTTPAuthTokensExt(BaseModel):
|
|
199
|
+
token: str
|
|
200
|
+
r"""Shared secret to be provided by any client (Authorization: <token>)"""
|
|
201
|
+
|
|
202
|
+
description: Optional[str] = None
|
|
203
|
+
|
|
204
|
+
metadata: Optional[List[InputCriblLakeHTTPAuthTokensExtMetadatum]] = None
|
|
205
|
+
r"""Fields to add to events referencing this token"""
|
|
206
|
+
|
|
207
|
+
|
|
177
208
|
class InputCriblLakeHTTPTypedDict(TypedDict):
|
|
178
209
|
type: InputCriblLakeHTTPType
|
|
179
210
|
port: float
|
|
@@ -221,8 +252,17 @@ class InputCriblLakeHTTPTypedDict(TypedDict):
|
|
|
221
252
|
r"""Messages from matched IP addresses will be processed, unless also matched by the denylist"""
|
|
222
253
|
ip_denylist_regex: NotRequired[str]
|
|
223
254
|
r"""Messages from matched IP addresses will be ignored. This takes precedence over the allowlist."""
|
|
255
|
+
cribl_api: NotRequired[str]
|
|
256
|
+
r"""Absolute path on which to listen for the Cribl HTTP API requests. Only _bulk (default /cribl/_bulk) is available. Use empty string to disable."""
|
|
257
|
+
elastic_api: NotRequired[str]
|
|
258
|
+
r"""Absolute path on which to listen for the Elasticsearch API requests. Only _bulk (default /elastic/_bulk) is available. Use empty string to disable."""
|
|
259
|
+
splunk_hec_api: NotRequired[str]
|
|
260
|
+
r"""Absolute path on which listen for the Splunk HTTP Event Collector API requests. Use empty string to disable."""
|
|
261
|
+
splunk_hec_acks: NotRequired[bool]
|
|
224
262
|
metadata: NotRequired[List[InputCriblLakeHTTPMetadatumTypedDict]]
|
|
225
263
|
r"""Fields to add to events from this input"""
|
|
264
|
+
auth_tokens_ext: NotRequired[List[InputCriblLakeHTTPAuthTokensExtTypedDict]]
|
|
265
|
+
r"""Shared secrets to be provided by any client (Authorization: <token>). If empty, unauthorized access is permitted."""
|
|
226
266
|
description: NotRequired[str]
|
|
227
267
|
|
|
228
268
|
|
|
@@ -324,7 +364,30 @@ class InputCriblLakeHTTP(BaseModel):
|
|
|
324
364
|
] = "/^$/"
|
|
325
365
|
r"""Messages from matched IP addresses will be ignored. This takes precedence over the allowlist."""
|
|
326
366
|
|
|
367
|
+
cribl_api: Annotated[Optional[str], pydantic.Field(alias="criblAPI")] = "/cribl"
|
|
368
|
+
r"""Absolute path on which to listen for the Cribl HTTP API requests. Only _bulk (default /cribl/_bulk) is available. Use empty string to disable."""
|
|
369
|
+
|
|
370
|
+
elastic_api: Annotated[Optional[str], pydantic.Field(alias="elasticAPI")] = (
|
|
371
|
+
"/elastic"
|
|
372
|
+
)
|
|
373
|
+
r"""Absolute path on which to listen for the Elasticsearch API requests. Only _bulk (default /elastic/_bulk) is available. Use empty string to disable."""
|
|
374
|
+
|
|
375
|
+
splunk_hec_api: Annotated[Optional[str], pydantic.Field(alias="splunkHecAPI")] = (
|
|
376
|
+
"/services/collector"
|
|
377
|
+
)
|
|
378
|
+
r"""Absolute path on which listen for the Splunk HTTP Event Collector API requests. Use empty string to disable."""
|
|
379
|
+
|
|
380
|
+
splunk_hec_acks: Annotated[
|
|
381
|
+
Optional[bool], pydantic.Field(alias="splunkHecAcks")
|
|
382
|
+
] = False
|
|
383
|
+
|
|
327
384
|
metadata: Optional[List[InputCriblLakeHTTPMetadatum]] = None
|
|
328
385
|
r"""Fields to add to events from this input"""
|
|
329
386
|
|
|
387
|
+
auth_tokens_ext: Annotated[
|
|
388
|
+
Optional[List[InputCriblLakeHTTPAuthTokensExt]],
|
|
389
|
+
pydantic.Field(alias="authTokensExt"),
|
|
390
|
+
] = None
|
|
391
|
+
r"""Shared secrets to be provided by any client (Authorization: <token>). If empty, unauthorized access is permitted."""
|
|
392
|
+
|
|
330
393
|
description: Optional[str] = None
|
|
@@ -200,6 +200,8 @@ class InputCrowdstrikeTypedDict(TypedDict):
|
|
|
200
200
|
r"""Socket inactivity timeout (in seconds). Increase this value if timeouts occur due to backpressure."""
|
|
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
|
+
include_sqs_metadata: NotRequired[bool]
|
|
204
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
203
205
|
enable_assume_role: NotRequired[bool]
|
|
204
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
205
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -333,6 +335,11 @@ class InputCrowdstrike(BaseModel):
|
|
|
333
335
|
)
|
|
334
336
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
335
337
|
|
|
338
|
+
include_sqs_metadata: Annotated[
|
|
339
|
+
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
340
|
+
] = False
|
|
341
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
342
|
+
|
|
336
343
|
enable_assume_role: Annotated[
|
|
337
344
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
338
345
|
] = True
|
|
@@ -195,6 +195,8 @@ class InputS3TypedDict(TypedDict):
|
|
|
195
195
|
r"""Socket inactivity timeout (in seconds). Increase this value if timeouts occur due to backpressure."""
|
|
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
|
+
include_sqs_metadata: NotRequired[bool]
|
|
199
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
198
200
|
enable_assume_role: NotRequired[bool]
|
|
199
201
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
200
202
|
assume_role_arn: NotRequired[str]
|
|
@@ -332,6 +334,11 @@ class InputS3(BaseModel):
|
|
|
332
334
|
)
|
|
333
335
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
334
336
|
|
|
337
|
+
include_sqs_metadata: Annotated[
|
|
338
|
+
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
339
|
+
] = False
|
|
340
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
341
|
+
|
|
335
342
|
enable_assume_role: Annotated[
|
|
336
343
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
337
344
|
] = True
|
|
@@ -200,6 +200,8 @@ class InputS3InventoryTypedDict(TypedDict):
|
|
|
200
200
|
r"""Socket inactivity timeout (in seconds). Increase this value if timeouts occur due to backpressure."""
|
|
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
|
+
include_sqs_metadata: NotRequired[bool]
|
|
204
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
203
205
|
enable_assume_role: NotRequired[bool]
|
|
204
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
205
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -341,6 +343,11 @@ class InputS3Inventory(BaseModel):
|
|
|
341
343
|
)
|
|
342
344
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
343
345
|
|
|
346
|
+
include_sqs_metadata: Annotated[
|
|
347
|
+
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
348
|
+
] = False
|
|
349
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
350
|
+
|
|
344
351
|
enable_assume_role: Annotated[
|
|
345
352
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
346
353
|
] = True
|
|
@@ -200,6 +200,8 @@ class InputSecurityLakeTypedDict(TypedDict):
|
|
|
200
200
|
r"""Socket inactivity timeout (in seconds). Increase this value if timeouts occur due to backpressure."""
|
|
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
|
+
include_sqs_metadata: NotRequired[bool]
|
|
204
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
203
205
|
enable_assume_role: NotRequired[bool]
|
|
204
206
|
r"""Use Assume Role credentials to access Amazon S3"""
|
|
205
207
|
assume_role_arn: NotRequired[str]
|
|
@@ -337,6 +339,11 @@ class InputSecurityLake(BaseModel):
|
|
|
337
339
|
)
|
|
338
340
|
r"""Skip files that trigger a processing error. Disabled by default, which allows retries after processing errors."""
|
|
339
341
|
|
|
342
|
+
include_sqs_metadata: Annotated[
|
|
343
|
+
Optional[bool], pydantic.Field(alias="includeSqsMetadata")
|
|
344
|
+
] = False
|
|
345
|
+
r"""Include metadata from SQS notifications on outgoing events"""
|
|
346
|
+
|
|
340
347
|
enable_assume_role: Annotated[
|
|
341
348
|
Optional[bool], pydantic.Field(alias="enableAssumeRole")
|
|
342
349
|
] = True
|
|
@@ -4,11 +4,11 @@ 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=3098TJ9NkPQ8IXdQ1NOcsSHvS56V2g7O9nUlWOVyaf8,542
|
|
8
8
|
cribl_control_plane/acl.py,sha256=i5VLS1bV59xJtfyumzNXWCOd4TQJ5ULY5fYM4enlw-k,8185
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=FQZpAERAlpw6Xk-mkUdalUDSekftklv_Du4i2TLDilk,496
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=amvvB5iPT7c-L6NLo2Rhu2f7xWaapsa6OfQ37SICXOw,11954
|
|
11
|
-
cribl_control_plane/branches.py,sha256=
|
|
11
|
+
cribl_control_plane/branches.py,sha256=FMiqOKcNKi2H2jnGUZNmE9TDWUOuoEdD03u_q5Xwpkw,13975
|
|
12
12
|
cribl_control_plane/commits.py,sha256=odkE_abcm6_x-18FJq8HMePh-kK-U_6g9CewdtPlDsM,46126
|
|
13
13
|
cribl_control_plane/commits_files.py,sha256=maHYZmmJlz8RzsvFZElpbzukJcMXbxwGRFB8gOQp_js,14795
|
|
14
14
|
cribl_control_plane/configs_versions.py,sha256=hwLr0gKY6eyzbIWijvb_zNzWqF3Kas9nXXaU62Wgz2I,7650
|
|
@@ -27,7 +27,7 @@ cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho
|
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=Oe4_wjPk-UlWOaOmx5wxDteQReTsiCKvrjDopxPnHOM,18845
|
|
28
28
|
cribl_control_plane/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=Y0sEW-RZIbgKuDeAAhf7m4q8iNRJn1hg38sARR3eBfQ,46144
|
|
30
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=eE3BC-AbnPVfSKjsfSxUjCL7FngK-qxt8O0pc_8k2es,353245
|
|
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
|
|
@@ -53,6 +53,7 @@ cribl_control_plane/models/createversionrevertop.py,sha256=C6d8MMyX6Yq5ZnDuKlxAs
|
|
|
53
53
|
cribl_control_plane/models/createversionundoop.py,sha256=e6sdpq275MNVE3r1T4rlvysvp4oNQTysfJNCQR0Hm4U,1044
|
|
54
54
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
55
55
|
cribl_control_plane/models/cribllakedataset.py,sha256=4txRkDEkM-9fLG0my7Sl9IhEW0v6RYdH0FNW5gtUE-g,2303
|
|
56
|
+
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
56
57
|
cribl_control_plane/models/datasetmetadata.py,sha256=NfKeMQnTgrt-xLQ5LfDr-LrtPArJ8fbzUHd2yF_p3fc,1090
|
|
57
58
|
cribl_control_plane/models/datasetmetadataruninfo.py,sha256=4UrKPwg1oCs7uk3s24dsVzyNXE8TpDJE9vCioZyK7t0,937
|
|
58
59
|
cribl_control_plane/models/deletecribllakedatasetbylakeidandidop.py,sha256=japgQTynnoD5EJvCQ0Wme8oAqXJGWvSmOJhDbLiswFw,1511
|
|
@@ -83,7 +84,6 @@ cribl_control_plane/models/getsummaryop.py,sha256=2AK4Cu2PvzIib-2U9JlAxxciUq2aBl
|
|
|
83
84
|
cribl_control_plane/models/getsummaryworkersop.py,sha256=NXTu3nCm6b_nZXcsYtlH3JJw0Rxx1GH0g1Z9Gtz5u5o,1183
|
|
84
85
|
cribl_control_plane/models/getversionbranchop.py,sha256=hn-tWyDwbp6zqJ8Af4-_Urt-wOwU0nRqsLhLoR_33nU,684
|
|
85
86
|
cribl_control_plane/models/getversioncountop.py,sha256=dFWz6GYOPve0UyiWompurzg45zuN-aMe0SfHjekM2UM,1315
|
|
86
|
-
cribl_control_plane/models/getversioncurrentbranchop.py,sha256=ur78ulRqPZcd6hkppUuLaT1v2-0P6SBZu2TovYEqnF4,698
|
|
87
87
|
cribl_control_plane/models/getversiondiffop.py,sha256=rYD0ajq_v_5aPwv3Ov-fLrpHDnn1VNaEw92rEyBSnH4,1854
|
|
88
88
|
cribl_control_plane/models/getversionfilesop.py,sha256=OimJSp88ok-UJ6lbNt91dfPTu_Td78yglOctVr7gVds,1417
|
|
89
89
|
cribl_control_plane/models/getversioninfoop.py,sha256=xgglVQWeQTgA_55hr4FghW24JCi3JtGLHk4wzYgnFeg,719
|
|
@@ -97,22 +97,22 @@ cribl_control_plane/models/gitfilesresponse.py,sha256=rGrEXii7aupzjd0i97GRkA56WH
|
|
|
97
97
|
cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9ZfjN0A-U,515
|
|
98
98
|
cribl_control_plane/models/gitrevertparams.py,sha256=oOi4wQfztxF4BmfFcRh4-t2Ny6ptONar6MpafcqGr5U,448
|
|
99
99
|
cribl_control_plane/models/gitrevertresult.py,sha256=2GiUgUDfYGLoIARdaQIzW62vXPbny7F70QkbLa_dh54,996
|
|
100
|
-
cribl_control_plane/models/gitstatusresult.py,sha256=
|
|
100
|
+
cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
|
|
101
101
|
cribl_control_plane/models/hbcriblinfo.py,sha256=hA2OxTBrrdu2q5XH5UzfEQUQJ6OKEctujlMjFa4IEts,2262
|
|
102
102
|
cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
|
|
103
103
|
cribl_control_plane/models/healthstatus.py,sha256=u4ePDejWSLI7yhfFxKyB5GVkihAG_z9PcHqCA2H9-e0,735
|
|
104
104
|
cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
|
|
105
|
-
cribl_control_plane/models/input.py,sha256=
|
|
105
|
+
cribl_control_plane/models/input.py,sha256=4qlV6EpZXaMEhMZlBQttRorUScSA8xNc-9kv94lgbhQ,7552
|
|
106
106
|
cribl_control_plane/models/inputappscope.py,sha256=112rxjGeZtRPXnUiW6ZdFm3C32vO_BWsRRdH6Ckw3rg,19935
|
|
107
107
|
cribl_control_plane/models/inputazureblob.py,sha256=Uc3rFKDNQfoywHkw9x-3-UxFypWLFBXBglp7ga5UiJA,14822
|
|
108
108
|
cribl_control_plane/models/inputcollection.py,sha256=KzesuvW-qfuPeLygKp1peNx-hrIUeGqsYb2g-Ls8u2A,9267
|
|
109
109
|
cribl_control_plane/models/inputconfluentcloud.py,sha256=No-ub9LOj81_r8tkhYEu_3Zqf9HGVDYOm_3oTExtn2Y,28845
|
|
110
110
|
cribl_control_plane/models/inputcribl.py,sha256=tdt5OpWZN6MgHZiJt36X2gQOSYNcP2JiyySXHGoT-ms,6953
|
|
111
111
|
cribl_control_plane/models/inputcriblhttp.py,sha256=aN0ncENh1-hRgk9F2-DxzxD5fxyqGCEpKV8aVu2iEJ0,15306
|
|
112
|
-
cribl_control_plane/models/inputcribllakehttp.py,sha256=
|
|
112
|
+
cribl_control_plane/models/inputcribllakehttp.py,sha256=FrNAVqueYQ3wDHTwTwTJM2i6OZY72g3ex7yZzTIWlPc,18492
|
|
113
113
|
cribl_control_plane/models/inputcriblmetrics.py,sha256=JL23J9LaC45yqQGPfQJYt9T1YxorsMD1eCu8HEI9rsI,8137
|
|
114
114
|
cribl_control_plane/models/inputcribltcp.py,sha256=Cah0ohHRubWJGuVJpYufwGaTKLTrjMCGhB1QvIO82fE,13124
|
|
115
|
-
cribl_control_plane/models/inputcrowdstrike.py,sha256=
|
|
115
|
+
cribl_control_plane/models/inputcrowdstrike.py,sha256=LU5JWyvLCl8oNRVv7wOkz9LxYelh5VUuj1SViRC4RYs,20213
|
|
116
116
|
cribl_control_plane/models/inputdatadogagent.py,sha256=AoPicjgw6myp1K_G56uAnR-O7ajtmptGwKlsNsPevyk,16892
|
|
117
117
|
cribl_control_plane/models/inputdatagen.py,sha256=bgm6NJZcUje88mFIu6KGmcNGEGmOFGn8JzrUZ7TLepg,7386
|
|
118
118
|
cribl_control_plane/models/inputedgeprometheus.py,sha256=mMbSdxopLC9xeuKoPCje1Xt0HJ4WY23XUKr_QP-GvEk,21730
|
|
@@ -143,9 +143,9 @@ cribl_control_plane/models/inputopentelemetry.py,sha256=lWJ0_ztPq-esioxSbWka1U1e
|
|
|
143
143
|
cribl_control_plane/models/inputprometheus.py,sha256=EVHFBpI7sGABBsrtnM9Rf0Kl56ifUagesSkqrdc6das,19441
|
|
144
144
|
cribl_control_plane/models/inputprometheusrw.py,sha256=BhAljCnyEYN4cLWIUAzU12cUO-EMt1S0u80RK-dNjPY,20864
|
|
145
145
|
cribl_control_plane/models/inputrawudp.py,sha256=rPcPMUL2Wwg84T9Ru3962jmciWzF-wzmqdKgAg_bvFs,9525
|
|
146
|
-
cribl_control_plane/models/inputs3.py,sha256=
|
|
147
|
-
cribl_control_plane/models/inputs3inventory.py,sha256=
|
|
148
|
-
cribl_control_plane/models/inputsecuritylake.py,sha256=
|
|
146
|
+
cribl_control_plane/models/inputs3.py,sha256=2qKrt0cXXPsS0dpE-vi5vSTtSQZrHCDsg1I4oiQyEHE,20643
|
|
147
|
+
cribl_control_plane/models/inputs3inventory.py,sha256=h48zpDJ8Tq5_MLw_lNjadZZoHv-tML9DFudYyTEHbX4,22067
|
|
148
|
+
cribl_control_plane/models/inputsecuritylake.py,sha256=90bFlzf1xYHbgUg52VsyrTnlXMjDlQtXTU1dA3eh7-0,21016
|
|
149
149
|
cribl_control_plane/models/inputsnmp.py,sha256=f4r7_-OC5EQsa__-iuh78F-Qd5fkmEIflN6-giDuHeo,11860
|
|
150
150
|
cribl_control_plane/models/inputsplunk.py,sha256=tBTnIiCGHqCUl7m4dkPdmMIlvadmzQLEJK95ulnUFYU,17278
|
|
151
151
|
cribl_control_plane/models/inputsplunkhec.py,sha256=LDA9Jrn6Fj1oQn72AwcDLXtHM1rwTj2qEh-GQiHCoCU,22440
|
|
@@ -303,6 +303,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
303
303
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
304
304
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
305
305
|
cribl_control_plane/versions_configs.py,sha256=nPgG2iQyehB4MuRSeNbY4KFWZSPW_oNlr2306Oks58k,7178
|
|
306
|
-
cribl_control_plane-0.0.
|
|
307
|
-
cribl_control_plane-0.0.
|
|
308
|
-
cribl_control_plane-0.0.
|
|
306
|
+
cribl_control_plane-0.0.29.dist-info/METADATA,sha256=vCm6XGPvmZeGB2nV2mdPZ1NDXik3ykxjoAMsbqWwkG4,38811
|
|
307
|
+
cribl_control_plane-0.0.29.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
308
|
+
cribl_control_plane-0.0.29.dist-info/RECORD,,
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from cribl_control_plane.types import BaseModel
|
|
5
|
-
from typing import Any, Dict, List, Optional
|
|
6
|
-
from typing_extensions import NotRequired, TypedDict
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class GetVersionCurrentBranchResponseTypedDict(TypedDict):
|
|
10
|
-
r"""a list of any objects"""
|
|
11
|
-
|
|
12
|
-
count: NotRequired[int]
|
|
13
|
-
r"""number of items present in the items array"""
|
|
14
|
-
items: NotRequired[List[Dict[str, Any]]]
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
class GetVersionCurrentBranchResponse(BaseModel):
|
|
18
|
-
r"""a list of any objects"""
|
|
19
|
-
|
|
20
|
-
count: Optional[int] = None
|
|
21
|
-
r"""number of items present in the items array"""
|
|
22
|
-
|
|
23
|
-
items: Optional[List[Dict[str, Any]]] = None
|
|
File without changes
|