cribl-control-plane 0.1.1rc1__py3-none-any.whl → 0.1.1rc2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cribl-control-plane might be problematic. Click here for more details.
- cribl_control_plane/_version.py +3 -3
- cribl_control_plane/models/packinfo.py +3 -3
- cribl_control_plane/models/packinstallinfo.py +3 -3
- cribl_control_plane/packs.py +2 -2
- {cribl_control_plane-0.1.1rc1.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.1.1rc1.dist-info → cribl_control_plane-0.1.1rc2.dist-info}/RECORD +7 -7
- {cribl_control_plane-0.1.1rc1.dist-info → cribl_control_plane-0.1.1rc2.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.1.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.0-alpha.
|
|
6
|
+
__version__: str = "0.1.1rc2"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1760451417353-c4fefd9b"
|
|
8
8
|
__gen_version__: str = "2.723.11"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.1.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.1.1rc2 2.723.11 4.15.0-alpha.1760451417353-c4fefd9b cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -9,20 +9,20 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
9
9
|
|
|
10
10
|
class PackInfoTagsTypedDict(TypedDict):
|
|
11
11
|
data_type: List[str]
|
|
12
|
-
technology: List[str]
|
|
13
12
|
domain: NotRequired[List[str]]
|
|
14
13
|
streamtags: NotRequired[List[str]]
|
|
14
|
+
technology: NotRequired[List[str]]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class PackInfoTags(BaseModel):
|
|
18
18
|
data_type: Annotated[List[str], pydantic.Field(alias="dataType")]
|
|
19
19
|
|
|
20
|
-
technology: List[str]
|
|
21
|
-
|
|
22
20
|
domain: Optional[List[str]] = None
|
|
23
21
|
|
|
24
22
|
streamtags: Optional[List[str]] = None
|
|
25
23
|
|
|
24
|
+
technology: Optional[List[str]] = None
|
|
25
|
+
|
|
26
26
|
|
|
27
27
|
class PackInfoTypedDict(TypedDict):
|
|
28
28
|
id: str
|
|
@@ -9,20 +9,20 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
9
9
|
|
|
10
10
|
class PackInstallInfoTagsTypedDict(TypedDict):
|
|
11
11
|
data_type: List[str]
|
|
12
|
-
technology: List[str]
|
|
13
12
|
domain: NotRequired[List[str]]
|
|
14
13
|
streamtags: NotRequired[List[str]]
|
|
14
|
+
technology: NotRequired[List[str]]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class PackInstallInfoTags(BaseModel):
|
|
18
18
|
data_type: Annotated[List[str], pydantic.Field(alias="dataType")]
|
|
19
19
|
|
|
20
|
-
technology: List[str]
|
|
21
|
-
|
|
22
20
|
domain: Optional[List[str]] = None
|
|
23
21
|
|
|
24
22
|
streamtags: Optional[List[str]] = None
|
|
25
23
|
|
|
24
|
+
technology: Optional[List[str]] = None
|
|
25
|
+
|
|
26
26
|
|
|
27
27
|
class PackInstallInfoTypedDict(TypedDict):
|
|
28
28
|
id: str
|
cribl_control_plane/packs.py
CHANGED
|
@@ -383,7 +383,7 @@ class Packs(BaseSDK):
|
|
|
383
383
|
) -> models.UploadPackResponse:
|
|
384
384
|
r"""Upload a Pack file
|
|
385
385
|
|
|
386
|
-
Upload a Pack file
|
|
386
|
+
Upload a Pack file. Returns a source identifier that can be used to install the pack via the install a Pack endpoint.
|
|
387
387
|
|
|
388
388
|
:param filename: Filename of the pack file to upload
|
|
389
389
|
:param request_body: Binary file content
|
|
@@ -480,7 +480,7 @@ class Packs(BaseSDK):
|
|
|
480
480
|
) -> models.UploadPackResponse:
|
|
481
481
|
r"""Upload a Pack file
|
|
482
482
|
|
|
483
|
-
Upload a Pack file
|
|
483
|
+
Upload a Pack file. Returns a source identifier that can be used to install the pack via the install a Pack endpoint.
|
|
484
484
|
|
|
485
485
|
:param filename: Filename of the pack file to upload
|
|
486
486
|
:param request_body: Binary file content
|
|
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=CeI19FzRb2V6kiNPgSFGn0CgI
|
|
|
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=sXo6Xr84PIkYz7-xb9B66zfkDk35Mt7OecLmQfloRtg,548
|
|
8
8
|
cribl_control_plane/acl.py,sha256=8lvYOKAli4PzsQhOVaCU6YCwblPMh9jQo04L0r4HJuQ,9025
|
|
9
9
|
cribl_control_plane/auth_sdk.py,sha256=3sjf1VoyWwfhSyuMDQLixgWISSf03BOZwmkiT8g5Ruw,626
|
|
10
10
|
cribl_control_plane/basesdk.py,sha256=y4yIXSNVXLMd0sLS2htBFdTCI3gkPQbIWd-C671kg1I,12249
|
|
@@ -259,8 +259,8 @@ cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-p
|
|
|
259
259
|
cribl_control_plane/models/outputwavefront.py,sha256=rCVu_8EAuGRLyMKQpc9HvUA45cWflG3mHlyJnmM8yNM,18479
|
|
260
260
|
cribl_control_plane/models/outputwebhook.py,sha256=qtBTIm9fravXicq79NJkhsiB-B3eLQrij5KD3-dnFzc,34566
|
|
261
261
|
cribl_control_plane/models/outputxsiam.py,sha256=qDcLcnuLqPxaxc-ijTuoZiVKnY1jN2vuGSnAwwMbR2M,20601
|
|
262
|
-
cribl_control_plane/models/packinfo.py,sha256=
|
|
263
|
-
cribl_control_plane/models/packinstallinfo.py,sha256=
|
|
262
|
+
cribl_control_plane/models/packinfo.py,sha256=C6RVH3rzIuTp7gO368U2yT5Ok6_YBaMcyAjl6aIKHT8,1971
|
|
263
|
+
cribl_control_plane/models/packinstallinfo.py,sha256=Lxc9MFcA5d6ziJtwvrWg7MUGu8RgvNqRyssJFwBU4_o,2092
|
|
264
264
|
cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
|
|
265
265
|
cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
|
|
266
266
|
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
@@ -293,7 +293,7 @@ cribl_control_plane/models/uploadpackresponse.py,sha256=-B2ye6T8fc4WKBxVnufwryRs
|
|
|
293
293
|
cribl_control_plane/models/useraccesscontrollist.py,sha256=UNM3mdqFByd9GAovAi26z9y-5H15hrKDzw0M-f-Pn2o,483
|
|
294
294
|
cribl_control_plane/models/workertypes.py,sha256=1AaTkG_g67Vtoh0vYYrYVgRo41PvcK3cRm_G_r-JSgA,286
|
|
295
295
|
cribl_control_plane/nodes.py,sha256=I4AnHbDlX3zNbvDfwgIZ6sv1yQTlkAGaQRoSzwkl0KM,17531
|
|
296
|
-
cribl_control_plane/packs.py,sha256=
|
|
296
|
+
cribl_control_plane/packs.py,sha256=lCH8OBm6gP4-qA95e-teTK3ZqX5ZsJg4a0VvayXkf3E,46417
|
|
297
297
|
cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iNK0s,36946
|
|
298
298
|
cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
299
299
|
cribl_control_plane/routes_sdk.py,sha256=aqJkB-EbLzA2NSFtu9N7ERta5BvIbpDRg7OZcO_ndkA,33197
|
|
@@ -326,6 +326,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
326
326
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
327
327
|
cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
|
|
328
328
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
329
|
-
cribl_control_plane-0.1.
|
|
330
|
-
cribl_control_plane-0.1.
|
|
331
|
-
cribl_control_plane-0.1.
|
|
329
|
+
cribl_control_plane-0.1.1rc2.dist-info/METADATA,sha256=iBNOEeE_fBfMMZJGyhtR6T0QgvcDh3vNIekG8jtE4R0,40609
|
|
330
|
+
cribl_control_plane-0.1.1rc2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
331
|
+
cribl_control_plane-0.1.1rc2.dist-info/RECORD,,
|
|
File without changes
|