cribl-control-plane 0.0.27__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/_hooks/clientcredentials.py +22 -7
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/branches.py +4 -8
- cribl_control_plane/errors/__init__.py +3 -2
- cribl_control_plane/models/__init__.py +20 -10
- 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/models/schemeclientoauth.py +5 -0
- cribl_control_plane/utils/__init__.py +3 -2
- cribl_control_plane/utils/security.py +5 -0
- {cribl_control_plane-0.0.27.dist-info → cribl_control_plane-0.0.29.dist-info}/METADATA +11 -3
- {cribl_control_plane-0.0.27.dist-info → cribl_control_plane-0.0.29.dist-info}/RECORD +19 -19
- cribl_control_plane/models/getversioncurrentbranchop.py +0 -23
- {cribl_control_plane-0.0.27.dist-info → cribl_control_plane-0.0.29.dist-info}/WHEEL +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
1
3
|
import hashlib
|
|
2
|
-
import os
|
|
3
4
|
import httpx
|
|
4
5
|
import time
|
|
5
6
|
from .types import (
|
|
@@ -20,13 +21,19 @@ class Credentials:
|
|
|
20
21
|
client_id: str
|
|
21
22
|
client_secret: str
|
|
22
23
|
token_url: str
|
|
23
|
-
|
|
24
|
+
additional_properties: Dict[str, str]
|
|
24
25
|
|
|
25
|
-
def __init__(
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
client_id: str,
|
|
29
|
+
client_secret: str,
|
|
30
|
+
token_url: str,
|
|
31
|
+
additional_properties: Optional[Dict[str, str]] = None,
|
|
32
|
+
):
|
|
26
33
|
self.client_id = client_id
|
|
27
34
|
self.client_secret = client_secret
|
|
28
35
|
self.token_url = token_url
|
|
29
|
-
self.
|
|
36
|
+
self.additional_properties = additional_properties or {}
|
|
30
37
|
|
|
31
38
|
|
|
32
39
|
class Session:
|
|
@@ -135,10 +142,17 @@ class ClientCredentialsHook(SDKInitHook, BeforeRequestHook, AfterErrorHook):
|
|
|
135
142
|
if security is None or security.client_oauth is None:
|
|
136
143
|
return None
|
|
137
144
|
|
|
145
|
+
# Extract additional properties from security object
|
|
146
|
+
additional_properties = {}
|
|
147
|
+
for key, value in dict(security.client_oauth).items():
|
|
148
|
+
if key not in ["client_id", "client_secret", "token_url"]:
|
|
149
|
+
additional_properties[key] = value
|
|
150
|
+
|
|
138
151
|
return Credentials(
|
|
139
152
|
client_id=security.client_oauth.client_id,
|
|
140
153
|
client_secret=security.client_oauth.client_secret,
|
|
141
154
|
token_url=security.client_oauth.token_url,
|
|
155
|
+
additional_properties=additional_properties,
|
|
142
156
|
)
|
|
143
157
|
|
|
144
158
|
def do_token_request(
|
|
@@ -153,12 +167,13 @@ class ClientCredentialsHook(SDKInitHook, BeforeRequestHook, AfterErrorHook):
|
|
|
153
167
|
"client_secret": credentials.client_secret,
|
|
154
168
|
}
|
|
155
169
|
|
|
156
|
-
if credentials.audience is not None:
|
|
157
|
-
payload["audience"] = credentials.audience
|
|
158
|
-
|
|
159
170
|
if scopes is not None and len(scopes) > 0:
|
|
160
171
|
payload["scope"] = " ".join(scopes)
|
|
161
172
|
|
|
173
|
+
# Add additional properties to payload
|
|
174
|
+
for key, value in credentials.additional_properties.items():
|
|
175
|
+
payload[key] = value
|
|
176
|
+
|
|
162
177
|
token_url = credentials.token_url
|
|
163
178
|
if not bool(urlparse(credentials.token_url).netloc):
|
|
164
179
|
token_url = urljoin(hook_ctx.base_url, credentials.token_url)
|
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.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
6
|
+
__version__: str = "0.0.29"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755516762461-7e2ae3eb"
|
|
8
|
+
__gen_version__: str = "2.684.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)
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import TYPE_CHECKING
|
|
4
4
|
from importlib import import_module
|
|
5
|
+
import builtins
|
|
5
6
|
|
|
6
7
|
if TYPE_CHECKING:
|
|
7
8
|
from .apierror import APIError
|
|
@@ -56,5 +57,5 @@ def __getattr__(attr_name: str) -> object:
|
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
def __dir__():
|
|
59
|
-
lazy_attrs = list(_dynamic_imports.keys())
|
|
60
|
-
return sorted(lazy_attrs)
|
|
60
|
+
lazy_attrs = builtins.list(_dynamic_imports.keys())
|
|
61
|
+
return builtins.sorted(lazy_attrs)
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import TYPE_CHECKING
|
|
4
4
|
from importlib import import_module
|
|
5
|
+
import builtins
|
|
5
6
|
|
|
6
7
|
if TYPE_CHECKING:
|
|
7
8
|
from .addhectokenrequest import (
|
|
@@ -94,6 +95,7 @@ if TYPE_CHECKING:
|
|
|
94
95
|
CriblLakeDatasetFormat,
|
|
95
96
|
CriblLakeDatasetTypedDict,
|
|
96
97
|
)
|
|
98
|
+
from .currentbranchresult import CurrentBranchResult, CurrentBranchResultTypedDict
|
|
97
99
|
from .datasetmetadata import DatasetMetadata, DatasetMetadataTypedDict, ScanMode
|
|
98
100
|
from .datasetmetadataruninfo import (
|
|
99
101
|
DatasetMetadataRunInfo,
|
|
@@ -267,10 +269,6 @@ if TYPE_CHECKING:
|
|
|
267
269
|
GetVersionCountResponse,
|
|
268
270
|
GetVersionCountResponseTypedDict,
|
|
269
271
|
)
|
|
270
|
-
from .getversioncurrentbranchop import (
|
|
271
|
-
GetVersionCurrentBranchResponse,
|
|
272
|
-
GetVersionCurrentBranchResponseTypedDict,
|
|
273
|
-
)
|
|
274
272
|
from .getversiondiffop import (
|
|
275
273
|
GetVersionDiffRequest,
|
|
276
274
|
GetVersionDiffRequestTypedDict,
|
|
@@ -473,6 +471,10 @@ if TYPE_CHECKING:
|
|
|
473
471
|
)
|
|
474
472
|
from .inputcribllakehttp import (
|
|
475
473
|
InputCriblLakeHTTP,
|
|
474
|
+
InputCriblLakeHTTPAuthTokensExt,
|
|
475
|
+
InputCriblLakeHTTPAuthTokensExtMetadatum,
|
|
476
|
+
InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict,
|
|
477
|
+
InputCriblLakeHTTPAuthTokensExtTypedDict,
|
|
476
478
|
InputCriblLakeHTTPCompression,
|
|
477
479
|
InputCriblLakeHTTPConnection,
|
|
478
480
|
InputCriblLakeHTTPConnectionTypedDict,
|
|
@@ -3114,6 +3116,8 @@ __all__ = [
|
|
|
3114
3116
|
"CriblLakeDataset",
|
|
3115
3117
|
"CriblLakeDatasetFormat",
|
|
3116
3118
|
"CriblLakeDatasetTypedDict",
|
|
3119
|
+
"CurrentBranchResult",
|
|
3120
|
+
"CurrentBranchResultTypedDict",
|
|
3117
3121
|
"CustomLabel",
|
|
3118
3122
|
"CustomLabelTypedDict",
|
|
3119
3123
|
"DNS",
|
|
@@ -3265,8 +3269,6 @@ __all__ = [
|
|
|
3265
3269
|
"GetVersionCountRequestTypedDict",
|
|
3266
3270
|
"GetVersionCountResponse",
|
|
3267
3271
|
"GetVersionCountResponseTypedDict",
|
|
3268
|
-
"GetVersionCurrentBranchResponse",
|
|
3269
|
-
"GetVersionCurrentBranchResponseTypedDict",
|
|
3270
3272
|
"GetVersionDiffRequest",
|
|
3271
3273
|
"GetVersionDiffRequestTypedDict",
|
|
3272
3274
|
"GetVersionDiffResponse",
|
|
@@ -3438,6 +3440,10 @@ __all__ = [
|
|
|
3438
3440
|
"InputCriblHTTPType",
|
|
3439
3441
|
"InputCriblHTTPTypedDict",
|
|
3440
3442
|
"InputCriblLakeHTTP",
|
|
3443
|
+
"InputCriblLakeHTTPAuthTokensExt",
|
|
3444
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum",
|
|
3445
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict",
|
|
3446
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict",
|
|
3441
3447
|
"InputCriblLakeHTTPCompression",
|
|
3442
3448
|
"InputCriblLakeHTTPConnection",
|
|
3443
3449
|
"InputCriblLakeHTTPConnectionTypedDict",
|
|
@@ -5759,6 +5765,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5759
5765
|
"CriblLakeDataset": ".cribllakedataset",
|
|
5760
5766
|
"CriblLakeDatasetFormat": ".cribllakedataset",
|
|
5761
5767
|
"CriblLakeDatasetTypedDict": ".cribllakedataset",
|
|
5768
|
+
"CurrentBranchResult": ".currentbranchresult",
|
|
5769
|
+
"CurrentBranchResultTypedDict": ".currentbranchresult",
|
|
5762
5770
|
"DatasetMetadata": ".datasetmetadata",
|
|
5763
5771
|
"DatasetMetadataTypedDict": ".datasetmetadata",
|
|
5764
5772
|
"ScanMode": ".datasetmetadata",
|
|
@@ -5879,8 +5887,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
5879
5887
|
"GetVersionCountRequestTypedDict": ".getversioncountop",
|
|
5880
5888
|
"GetVersionCountResponse": ".getversioncountop",
|
|
5881
5889
|
"GetVersionCountResponseTypedDict": ".getversioncountop",
|
|
5882
|
-
"GetVersionCurrentBranchResponse": ".getversioncurrentbranchop",
|
|
5883
|
-
"GetVersionCurrentBranchResponseTypedDict": ".getversioncurrentbranchop",
|
|
5884
5890
|
"GetVersionDiffRequest": ".getversiondiffop",
|
|
5885
5891
|
"GetVersionDiffRequestTypedDict": ".getversiondiffop",
|
|
5886
5892
|
"GetVersionDiffResponse": ".getversiondiffop",
|
|
@@ -6065,6 +6071,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6065
6071
|
"InputCriblHTTPType": ".inputcriblhttp",
|
|
6066
6072
|
"InputCriblHTTPTypedDict": ".inputcriblhttp",
|
|
6067
6073
|
"InputCriblLakeHTTP": ".inputcribllakehttp",
|
|
6074
|
+
"InputCriblLakeHTTPAuthTokensExt": ".inputcribllakehttp",
|
|
6075
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatum": ".inputcribllakehttp",
|
|
6076
|
+
"InputCriblLakeHTTPAuthTokensExtMetadatumTypedDict": ".inputcribllakehttp",
|
|
6077
|
+
"InputCriblLakeHTTPAuthTokensExtTypedDict": ".inputcribllakehttp",
|
|
6068
6078
|
"InputCriblLakeHTTPCompression": ".inputcribllakehttp",
|
|
6069
6079
|
"InputCriblLakeHTTPConnection": ".inputcribllakehttp",
|
|
6070
6080
|
"InputCriblLakeHTTPConnectionTypedDict": ".inputcribllakehttp",
|
|
@@ -8382,5 +8392,5 @@ def __getattr__(attr_name: str) -> object:
|
|
|
8382
8392
|
|
|
8383
8393
|
|
|
8384
8394
|
def __dir__():
|
|
8385
|
-
lazy_attrs = list(_dynamic_imports.keys())
|
|
8386
|
-
return sorted(lazy_attrs)
|
|
8395
|
+
lazy_attrs = builtins.list(_dynamic_imports.keys())
|
|
8396
|
+
return builtins.sorted(lazy_attrs)
|
|
@@ -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
|
|
@@ -9,6 +9,7 @@ from typing_extensions import Annotated, TypedDict
|
|
|
9
9
|
class SchemeClientOauthTypedDict(TypedDict):
|
|
10
10
|
client_id: str
|
|
11
11
|
client_secret: str
|
|
12
|
+
audience: str
|
|
12
13
|
token_url: str
|
|
13
14
|
|
|
14
15
|
|
|
@@ -21,4 +22,8 @@ class SchemeClientOauth(BaseModel):
|
|
|
21
22
|
str, FieldMetadata(security=SecurityMetadata(field_name="clientSecret"))
|
|
22
23
|
]
|
|
23
24
|
|
|
25
|
+
audience: Annotated[
|
|
26
|
+
str, FieldMetadata(security=SecurityMetadata(field_name="audience"))
|
|
27
|
+
]
|
|
28
|
+
|
|
24
29
|
token_url: str = "https://login.cribl.cloud/oauth/token"
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import TYPE_CHECKING
|
|
4
4
|
from importlib import import_module
|
|
5
|
+
import builtins
|
|
5
6
|
|
|
6
7
|
if TYPE_CHECKING:
|
|
7
8
|
from .annotations import get_discriminator
|
|
@@ -183,5 +184,5 @@ def __getattr__(attr_name: str) -> object:
|
|
|
183
184
|
|
|
184
185
|
|
|
185
186
|
def __dir__():
|
|
186
|
-
lazy_attrs = list(_dynamic_imports.keys())
|
|
187
|
-
return sorted(lazy_attrs)
|
|
187
|
+
lazy_attrs = builtins.list(_dynamic_imports.keys())
|
|
188
|
+
return builtins.sorted(lazy_attrs)
|
|
@@ -82,6 +82,11 @@ def get_security_from_env(security: Any, security_class: Any) -> Optional[BaseMo
|
|
|
82
82
|
"CRIBLCONTROLPLANE_TOKEN_URL"
|
|
83
83
|
)
|
|
84
84
|
|
|
85
|
+
if os.getenv("CRIBLCONTROLPLANE_AUDIENCE"):
|
|
86
|
+
security_dict.setdefault("client_oauth", {})["audience"] = os.getenv(
|
|
87
|
+
"CRIBLCONTROLPLANE_AUDIENCE"
|
|
88
|
+
)
|
|
89
|
+
|
|
85
90
|
return security_class(**security_dict) if security_dict else None
|
|
86
91
|
|
|
87
92
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.29
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -47,7 +47,15 @@ Cribl API Reference: This API Reference lists available REST endpoints, along wi
|
|
|
47
47
|
>
|
|
48
48
|
> Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
|
|
49
49
|
|
|
50
|
-
The SDK can be installed with
|
|
50
|
+
The SDK can be installed with *uv*, *pip*, or *poetry* package managers.
|
|
51
|
+
|
|
52
|
+
### uv
|
|
53
|
+
|
|
54
|
+
*uv* is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities.
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
uv add cribl-control-plane
|
|
58
|
+
```
|
|
51
59
|
|
|
52
60
|
### PIP
|
|
53
61
|
|
|
@@ -166,7 +174,7 @@ with CriblControlPlane(
|
|
|
166
174
|
|
|
167
175
|
</br>
|
|
168
176
|
|
|
169
|
-
The same SDK client can also be used to make
|
|
177
|
+
The same SDK client can also be used to make asynchronous requests by importing asyncio.
|
|
170
178
|
```python
|
|
171
179
|
# Asynchronous Example
|
|
172
180
|
import asyncio
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
cribl_control_plane/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
|
|
2
2
|
cribl_control_plane/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
3
|
-
cribl_control_plane/_hooks/clientcredentials.py,sha256=
|
|
3
|
+
cribl_control_plane/_hooks/clientcredentials.py,sha256=_scvqxVT_8CDEMWblZ02IQ9A1bMEI1B9Wq1L-UDkaZw,7237
|
|
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
|
|
15
15
|
cribl_control_plane/destinations.py,sha256=vb-omjGCOLJqdZKU-0TbDU6fdtOmj4RNngHXGMkn4ew,36309
|
|
16
16
|
cribl_control_plane/destinations_pq.py,sha256=XTEevuMoc0BXOej4j_eMI1mwiqDWWyJnHTL9WhIaQw8,14537
|
|
17
|
-
cribl_control_plane/errors/__init__.py,sha256=
|
|
17
|
+
cribl_control_plane/errors/__init__.py,sha256=6d9IGiw8Z6n2sTijw-e11PthRPi-YUkLgzE6zV4MfFQ,1867
|
|
18
18
|
cribl_control_plane/errors/apierror.py,sha256=Z3b3zk672zHljcdijGLJeJ2LiP1f3VpVDEqUuF7LDAA,1253
|
|
19
19
|
cribl_control_plane/errors/criblcontrolplaneerror.py,sha256=P9SU33LkmvyURdJbndHJxXu2KW_3u059peZJ8C80LfM,724
|
|
20
20
|
cribl_control_plane/errors/error.py,sha256=fZ72R_qeZ0-xd514dVqKKiqh7zzLmnkpPJfckpHOCj4,693
|
|
@@ -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
|
|
@@ -255,7 +255,7 @@ cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88J
|
|
|
255
255
|
cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
|
|
256
256
|
cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
|
|
257
257
|
cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
|
|
258
|
-
cribl_control_plane/models/schemeclientoauth.py,sha256=
|
|
258
|
+
cribl_control_plane/models/schemeclientoauth.py,sha256=cjePTTFIlKoYg8JZOOuvacOb1Zb5RqmgiqyQA9P3kvU,839
|
|
259
259
|
cribl_control_plane/models/security.py,sha256=l8rMit25V2MUVLptnexODsL6wP-3l50g8D4kwRsAQvY,1097
|
|
260
260
|
cribl_control_plane/models/teamaccesscontrollist.py,sha256=HLMck-wyuJYiKD-adSS5ti4yLbHE2snZaOAI0GwgfOI,483
|
|
261
261
|
cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=q_bOMXSkfqyNSNFN-qsseimaFl9xfRsbvjdMfAPAERI,1852
|
|
@@ -284,7 +284,7 @@ cribl_control_plane/teams.py,sha256=uEUfjr56W7_lzFVYdWfG7QVXr_sALvmlWoVBE1Yv1sc,
|
|
|
284
284
|
cribl_control_plane/tokens.py,sha256=iP_0_Pl8LFgs_ektBTU-bvRjJq6JQ3q7qMWIeIIuXmc,7220
|
|
285
285
|
cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
286
286
|
cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
287
|
-
cribl_control_plane/utils/__init__.py,sha256=
|
|
287
|
+
cribl_control_plane/utils/__init__.py,sha256=f0z1dsfJtiN5V5w4AE1dZb6W0_hDyMzVaDVq18RCbiQ,5470
|
|
288
288
|
cribl_control_plane/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
289
289
|
cribl_control_plane/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
290
290
|
cribl_control_plane/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
|
@@ -296,13 +296,13 @@ cribl_control_plane/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0n
|
|
|
296
296
|
cribl_control_plane/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
|
|
297
297
|
cribl_control_plane/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
298
298
|
cribl_control_plane/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
299
|
-
cribl_control_plane/utils/security.py,sha256=
|
|
299
|
+
cribl_control_plane/utils/security.py,sha256=Pkd-6ntMV3j5YYzJ0mA2RKN-8Ajk2w2NATLtqPdIYS0,6773
|
|
300
300
|
cribl_control_plane/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
|
|
301
301
|
cribl_control_plane/utils/unmarshal_json_response.py,sha256=yxi3F_O3SCU0SrexiR3BvQS-E81pW2siLgpTXYegAyg,595
|
|
302
302
|
cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
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
|