cribl-control-plane 0.1.1rc2__py3-none-any.whl → 0.1.1rc4__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 +2 -2
- cribl_control_plane/models/packinstallinfo.py +2 -2
- cribl_control_plane/models/updatepacksop.py +2 -2
- cribl_control_plane/packs.py +10 -10
- {cribl_control_plane-0.1.1rc2.dist-info → cribl_control_plane-0.1.1rc4.dist-info}/METADATA +2 -2
- {cribl_control_plane-0.1.1rc2.dist-info → cribl_control_plane-0.1.1rc4.dist-info}/RECORD +8 -8
- {cribl_control_plane-0.1.1rc2.dist-info → cribl_control_plane-0.1.1rc4.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.1rc4"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1760543593986-a05c0ad4"
|
|
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.1rc4 2.723.11 4.15.0-alpha.1760543593986-a05c0ad4 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -8,14 +8,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class PackInfoTagsTypedDict(TypedDict):
|
|
11
|
-
data_type: List[str]
|
|
11
|
+
data_type: NotRequired[List[str]]
|
|
12
12
|
domain: NotRequired[List[str]]
|
|
13
13
|
streamtags: NotRequired[List[str]]
|
|
14
14
|
technology: NotRequired[List[str]]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class PackInfoTags(BaseModel):
|
|
18
|
-
data_type: Annotated[List[str], pydantic.Field(alias="dataType")]
|
|
18
|
+
data_type: Annotated[Optional[List[str]], pydantic.Field(alias="dataType")] = None
|
|
19
19
|
|
|
20
20
|
domain: Optional[List[str]] = None
|
|
21
21
|
|
|
@@ -8,14 +8,14 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class PackInstallInfoTagsTypedDict(TypedDict):
|
|
11
|
-
data_type: List[str]
|
|
11
|
+
data_type: NotRequired[List[str]]
|
|
12
12
|
domain: NotRequired[List[str]]
|
|
13
13
|
streamtags: NotRequired[List[str]]
|
|
14
14
|
technology: NotRequired[List[str]]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class PackInstallInfoTags(BaseModel):
|
|
18
|
-
data_type: Annotated[List[str], pydantic.Field(alias="dataType")]
|
|
18
|
+
data_type: Annotated[Optional[List[str]], pydantic.Field(alias="dataType")] = None
|
|
19
19
|
|
|
20
20
|
domain: Optional[List[str]] = None
|
|
21
21
|
|
|
@@ -10,7 +10,7 @@ from typing_extensions import Annotated, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class UpdatePacksRequestTypedDict(TypedDict):
|
|
12
12
|
filename: str
|
|
13
|
-
r"""Filename of the
|
|
13
|
+
r"""Filename of the Pack file to upload."""
|
|
14
14
|
request_body: Union[bytes, IO[bytes], io.BufferedReader]
|
|
15
15
|
r"""Binary file content"""
|
|
16
16
|
|
|
@@ -19,7 +19,7 @@ class UpdatePacksRequest(BaseModel):
|
|
|
19
19
|
filename: Annotated[
|
|
20
20
|
str, FieldMetadata(query=QueryParamMetadata(style="form", explode=True))
|
|
21
21
|
]
|
|
22
|
-
r"""Filename of the
|
|
22
|
+
r"""Filename of the Pack file to upload."""
|
|
23
23
|
|
|
24
24
|
request_body: Annotated[
|
|
25
25
|
Union[bytes, IO[bytes], io.BufferedReader], FieldMetadata(request=True)
|
cribl_control_plane/packs.py
CHANGED
|
@@ -24,9 +24,9 @@ class Packs(BaseSDK):
|
|
|
24
24
|
timeout_ms: Optional[int] = None,
|
|
25
25
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
26
26
|
) -> models.CreatePacksResponse:
|
|
27
|
-
r"""
|
|
27
|
+
r"""Install a Pack
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Install a Pack.<br><br>To install an uploaded Pack, provide the <code>source</code> value from the <code>PUT /packs</code> response as the <code>source</code> parameter in the request body.<br><br>To install a Pack by importing from a URL, provide the direct URL location of the <code>.crbl</code> file for the Pack as the <code>source</code> parameter in the request body.<br><br>To install a Pack by importing from a Git repository, provide <code>git+<repo-url></code> as the <code>source</code> parameter in the request body.<br><br>If you do not include the <code>source</code> parameter in the request body, an empty Pack is created.
|
|
30
30
|
|
|
31
31
|
:param request: The request object to send.
|
|
32
32
|
:param retries: Override the default retry configuration for this method
|
|
@@ -116,9 +116,9 @@ class Packs(BaseSDK):
|
|
|
116
116
|
timeout_ms: Optional[int] = None,
|
|
117
117
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
118
118
|
) -> models.CreatePacksResponse:
|
|
119
|
-
r"""
|
|
119
|
+
r"""Install a Pack
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
Install a Pack.<br><br>To install an uploaded Pack, provide the <code>source</code> value from the <code>PUT /packs</code> response as the <code>source</code> parameter in the request body.<br><br>To install a Pack by importing from a URL, provide the direct URL location of the <code>.crbl</code> file for the Pack as the <code>source</code> parameter in the request body.<br><br>To install a Pack by importing from a Git repository, provide <code>git+<repo-url></code> as the <code>source</code> parameter in the request body.<br><br>If you do not include the <code>source</code> parameter in the request body, an empty Pack is created.
|
|
122
122
|
|
|
123
123
|
:param request: The request object to send.
|
|
124
124
|
:param retries: Override the default retry configuration for this method
|
|
@@ -383,9 +383,9 @@ class Packs(BaseSDK):
|
|
|
383
383
|
) -> models.UploadPackResponse:
|
|
384
384
|
r"""Upload a Pack file
|
|
385
385
|
|
|
386
|
-
Upload a Pack file. Returns
|
|
386
|
+
Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs</source>, which you must call separately.
|
|
387
387
|
|
|
388
|
-
:param filename: Filename of the
|
|
388
|
+
:param filename: Filename of the Pack file to upload.
|
|
389
389
|
:param request_body: Binary file content
|
|
390
390
|
:param retries: Override the default retry configuration for this method
|
|
391
391
|
:param server_url: Override the default server URL for this method
|
|
@@ -480,9 +480,9 @@ class Packs(BaseSDK):
|
|
|
480
480
|
) -> models.UploadPackResponse:
|
|
481
481
|
r"""Upload a Pack file
|
|
482
482
|
|
|
483
|
-
Upload a Pack file. Returns
|
|
483
|
+
Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs</source>, which you must call separately.
|
|
484
484
|
|
|
485
|
-
:param filename: Filename of the
|
|
485
|
+
:param filename: Filename of the Pack file to upload.
|
|
486
486
|
:param request_body: Binary file content
|
|
487
487
|
:param retries: Override the default retry configuration for this method
|
|
488
488
|
:param server_url: Override the default server URL for this method
|
|
@@ -928,7 +928,7 @@ class Packs(BaseSDK):
|
|
|
928
928
|
) -> models.UpdatePacksByIDResponse:
|
|
929
929
|
r"""Upgrade a Pack
|
|
930
930
|
|
|
931
|
-
Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack.
|
|
931
|
+
Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack.Copy the modified files back to the upgraded Pack after you install it with <code>POST /packs</code> to overwrite the default versions in the Pack.</br></br>After you upgrade the Pack, update any Routes, Pipelines, Sources, and Destinations that use the previous Pack version so that they reference the upgraded Pack.
|
|
932
932
|
|
|
933
933
|
:param id: The <code>id</code> of the Pack to upgrade.
|
|
934
934
|
:param source:
|
|
@@ -1036,7 +1036,7 @@ class Packs(BaseSDK):
|
|
|
1036
1036
|
) -> models.UpdatePacksByIDResponse:
|
|
1037
1037
|
r"""Upgrade a Pack
|
|
1038
1038
|
|
|
1039
|
-
Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack.
|
|
1039
|
+
Upgrade the specified Pack.</br></br>If the Pack includes any user–modified versions of default Cribl Knowledge resources such as lookups, copy the modified files locally for safekeeping before upgrading the Pack.Copy the modified files back to the upgraded Pack after you install it with <code>POST /packs</code> to overwrite the default versions in the Pack.</br></br>After you upgrade the Pack, update any Routes, Pipelines, Sources, and Destinations that use the previous Pack version so that they reference the upgraded Pack.
|
|
1040
1040
|
|
|
1041
1041
|
:param id: The <code>id</code> of the Pack to upgrade.
|
|
1042
1042
|
:param source:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1rc4
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -382,7 +382,7 @@ with CriblControlPlane(
|
|
|
382
382
|
|
|
383
383
|
### [packs](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md)
|
|
384
384
|
|
|
385
|
-
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) -
|
|
385
|
+
* [install](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#install) - Install a Pack
|
|
386
386
|
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#list) - List all Packs
|
|
387
387
|
* [upload](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#upload) - Upload a Pack file
|
|
388
388
|
* [delete](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/packs/README.md#delete) - Uninstall a Pack
|
|
@@ -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=JJeSxLvveudpAeqXiloz_r2u2LmAZVOUSO3EirYHBQw,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=4erAi8M_omyQ87v-5xXHAAn7VS3yXmKeMDPnSyvqH5c,2001
|
|
263
|
+
cribl_control_plane/models/packinstallinfo.py,sha256=vXLqvzbSixAilJL-qMxZm9mWX4xiBl5e3SuRS1i0Z2c,2122
|
|
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
|
|
@@ -286,14 +286,14 @@ cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vD
|
|
|
286
286
|
cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=di6CX6521rBdx1h5pcUrtC-glnRFeDNehcx2U3px5_U,1893
|
|
287
287
|
cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egDVUxAlL-A8zazS7YOsrU,1357
|
|
288
288
|
cribl_control_plane/models/updatepacksbyidop.py,sha256=QYjDGco3xBD0P7MXGzj0NE2qjQosmOWKQ7S0PoedugI,1510
|
|
289
|
-
cribl_control_plane/models/updatepacksop.py,sha256=
|
|
289
|
+
cribl_control_plane/models/updatepacksop.py,sha256=a11FUaKKT2pa8vN5sNEYCm7bat0kUEP6Sk_1dv4lNxo,870
|
|
290
290
|
cribl_control_plane/models/updatepipelinebyidop.py,sha256=Cn_FBckmK1NyUkfOpWmc84K94W0nYCKuzppWwk0g4yY,1448
|
|
291
291
|
cribl_control_plane/models/updateroutesbyidop.py,sha256=KEoryZP8OqtJCXp0f5P4c2KKs1k1jY9-LsxGSBLDFMA,1562
|
|
292
292
|
cribl_control_plane/models/uploadpackresponse.py,sha256=-B2ye6T8fc4WKBxVnufwryRsVAHhqentutQVuN7PA3s,315
|
|
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=1MpYnN5iUEXxHW6lIgnDN71Trc42xY_cxVS5_-TEwSQ,47681
|
|
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.1rc4.dist-info/METADATA,sha256=IuGoA2wiQaeYAOs19GOMORm5k9Lgvl25JPpBpWx_TwY,40599
|
|
330
|
+
cribl_control_plane-0.1.1rc4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
331
|
+
cribl_control_plane-0.1.1rc4.dist-info/RECORD,,
|
|
File without changes
|