cribl-control-plane 0.0.32__py3-none-any.whl → 0.0.34__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 +4 -4
- cribl_control_plane/commits.py +8 -8
- cribl_control_plane/models/getversionop.py +4 -4
- {cribl_control_plane-0.0.32.dist-info → cribl_control_plane-0.0.34.dist-info}/METADATA +2 -2
- {cribl_control_plane-0.0.32.dist-info → cribl_control_plane-0.0.34.dist-info}/RECORD +6 -6
- {cribl_control_plane-0.0.32.dist-info → cribl_control_plane-0.0.34.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.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.0.
|
|
6
|
+
__version__: str = "0.0.34"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.0-alpha.1755708210976-a566b731"
|
|
8
|
+
__gen_version__: str = "2.686.7"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.0.34 2.686.7 4.14.0-alpha.1755708210976-a566b731 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
cribl_control_plane/commits.py
CHANGED
|
@@ -422,12 +422,12 @@ class Commits(BaseSDK):
|
|
|
422
422
|
timeout_ms: Optional[int] = None,
|
|
423
423
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
424
424
|
) -> models.GetVersionResponse:
|
|
425
|
-
r"""
|
|
425
|
+
r"""List the commit history
|
|
426
426
|
|
|
427
|
-
|
|
427
|
+
List the commit history.</br></br>Analogous to <code>git log</code> for the Cribl configuration, allowing you to audit and review changes over time.
|
|
428
428
|
|
|
429
|
-
:param group: Group
|
|
430
|
-
:param count: Maximum number of commits to return
|
|
429
|
+
:param group: The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for.
|
|
430
|
+
:param count: Maximum number of commits to return in the response for this request.
|
|
431
431
|
:param retries: Override the default retry configuration for this method
|
|
432
432
|
:param server_url: Override the default server URL for this method
|
|
433
433
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -512,12 +512,12 @@ class Commits(BaseSDK):
|
|
|
512
512
|
timeout_ms: Optional[int] = None,
|
|
513
513
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
514
514
|
) -> models.GetVersionResponse:
|
|
515
|
-
r"""
|
|
515
|
+
r"""List the commit history
|
|
516
516
|
|
|
517
|
-
|
|
517
|
+
List the commit history.</br></br>Analogous to <code>git log</code> for the Cribl configuration, allowing you to audit and review changes over time.
|
|
518
518
|
|
|
519
|
-
:param group: Group
|
|
520
|
-
:param count: Maximum number of commits to return
|
|
519
|
+
:param group: The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for.
|
|
520
|
+
:param count: Maximum number of commits to return in the response for this request.
|
|
521
521
|
:param retries: Override the default retry configuration for this method
|
|
522
522
|
:param server_url: Override the default server URL for this method
|
|
523
523
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -10,9 +10,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
class GetVersionRequestTypedDict(TypedDict):
|
|
12
12
|
group: NotRequired[str]
|
|
13
|
-
r"""Group
|
|
13
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
14
14
|
count: NotRequired[float]
|
|
15
|
-
r"""Maximum number of commits to return"""
|
|
15
|
+
r"""Maximum number of commits to return in the response for this request."""
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class GetVersionRequest(BaseModel):
|
|
@@ -20,13 +20,13 @@ class GetVersionRequest(BaseModel):
|
|
|
20
20
|
Optional[str],
|
|
21
21
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
22
22
|
] = None
|
|
23
|
-
r"""Group
|
|
23
|
+
r"""The <code>id</code> of the Worker Group or Edge Fleet to get the commit history for."""
|
|
24
24
|
|
|
25
25
|
count: Annotated[
|
|
26
26
|
Optional[float],
|
|
27
27
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
28
28
|
] = None
|
|
29
|
-
r"""Maximum number of commits to return"""
|
|
29
|
+
r"""Maximum number of commits to return in the response for this request."""
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class GetVersionResponseTypedDict(TypedDict):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cribl-control-plane
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.34
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -419,7 +419,7 @@ with CriblControlPlane(
|
|
|
419
419
|
|
|
420
420
|
* [create](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#create) - Create a new commit for pending changes to the Cribl configuration
|
|
421
421
|
* [diff](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#diff) - Get the diff for a commit
|
|
422
|
-
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#list) -
|
|
422
|
+
* [list](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#list) - List the commit history
|
|
423
423
|
* [push](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#push) - Push local commits to the remote repository
|
|
424
424
|
* [revert](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#revert) - Revert a commit in the local repository
|
|
425
425
|
* [get](https://github.com/criblio/cribl_control_plane_sdk_python/blob/master/docs/sdks/commits/README.md#get) - Get the diff and log message for a commit
|
|
@@ -4,12 +4,12 @@ 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=AjWT1Z_ewuD1UWi0kHsMqRxkbAR4U5cqJ88VrsFZu08,542
|
|
8
8
|
cribl_control_plane/acl.py,sha256=l4YkY0UMRCevAWohHMSL2jZ40jfG5SBSeWO4meBE8Wg,9021
|
|
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
11
|
cribl_control_plane/branches.py,sha256=Uz2F25RVW5hDr92Dm7yo7I9NdEN1zh9eDF20h4mD7Tg,14217
|
|
12
|
-
cribl_control_plane/commits.py,sha256=
|
|
12
|
+
cribl_control_plane/commits.py,sha256=mhUAPiu9Bx-eIPCxw4FMOwxdXkaxFwGyyZ56VOm0zqE,55522
|
|
13
13
|
cribl_control_plane/commits_files.py,sha256=XRqVF2UA_c2Ous3wFOehyUgYE_NiuE-dwzPglF4DEG4,15561
|
|
14
14
|
cribl_control_plane/configs_versions.py,sha256=2XXHXM0wSLUAa4aDo8N_soIHp5xdhRj37P3-aTzbow0,8408
|
|
15
15
|
cribl_control_plane/destinations.py,sha256=ttEDfTKW-DlNBc_q5-EuqdNFMyh1cx_GI3ipN86pcpY,37389
|
|
@@ -86,7 +86,7 @@ cribl_control_plane/models/getversioncountop.py,sha256=ayg9xdQGvSBzgCq8E1XqCRJOf
|
|
|
86
86
|
cribl_control_plane/models/getversiondiffop.py,sha256=108FjGC-lfklVKUAR9SQiEJ98Ie8NpVQblniCkchvtY,2304
|
|
87
87
|
cribl_control_plane/models/getversionfilesop.py,sha256=rzJaSELsEqU9V96whObAirkMkmZqJV8CEX8BtSfHuXI,1687
|
|
88
88
|
cribl_control_plane/models/getversioninfoop.py,sha256=xgglVQWeQTgA_55hr4FghW24JCi3JtGLHk4wzYgnFeg,719
|
|
89
|
-
cribl_control_plane/models/getversionop.py,sha256=
|
|
89
|
+
cribl_control_plane/models/getversionop.py,sha256=m7zV1Jo591Gp051X285Rlq7_UhyfNvsj4xd2s0jueuU,1599
|
|
90
90
|
cribl_control_plane/models/getversionshowop.py,sha256=UbXsfT-pmruUapeY5MBJDLuN3XwJMtFlh3cqYuqEr4s,2410
|
|
91
91
|
cribl_control_plane/models/getversionstatusop.py,sha256=wZy3DooWs_dhvcrIblV9cckLFM88MF7qIOU9KS0E4_A,1298
|
|
92
92
|
cribl_control_plane/models/gitcommitparams.py,sha256=4RwyddK0-QDb2Ax_tP2CVOy1rHsq-KEn5lELI402B6I,563
|
|
@@ -305,6 +305,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
305
305
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
306
306
|
cribl_control_plane/versions.py,sha256=Wdaxc2wZeEeD12wAh7SQ0RGG9KgwKaWQ7bc8qOQ8oAo,920
|
|
307
307
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
308
|
-
cribl_control_plane-0.0.
|
|
309
|
-
cribl_control_plane-0.0.
|
|
310
|
-
cribl_control_plane-0.0.
|
|
308
|
+
cribl_control_plane-0.0.34.dist-info/METADATA,sha256=5A5rZmb_wWxBauxqx1OdG2L66miRh1xGn8RyShgVGfs,38713
|
|
309
|
+
cribl_control_plane-0.0.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
310
|
+
cribl_control_plane-0.0.34.dist-info/RECORD,,
|
|
File without changes
|