cribl-control-plane 0.2.0b7__py3-none-any.whl → 0.2.0b8__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/groups_sdk.py +12 -12
- cribl_control_plane/models/__init__.py +3 -3
- cribl_control_plane/models/configgroup.py +6 -4
- cribl_control_plane/models/updatepacksop.py +0 -2
- cribl_control_plane/packs.py +2 -2
- {cribl_control_plane-0.2.0b7.dist-info → cribl_control_plane-0.2.0b8.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.2.0b7.dist-info → cribl_control_plane-0.2.0b8.dist-info}/RECORD +9 -9
- {cribl_control_plane-0.2.0b7.dist-info → cribl_control_plane-0.2.0b8.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.2.
|
|
7
|
-
__openapi_doc_version__: str = "4.15.0-alpha.
|
|
6
|
+
__version__: str = "0.2.0b8"
|
|
7
|
+
__openapi_doc_version__: str = "4.15.0-alpha.1761174335818-8b3b1a8b"
|
|
8
8
|
__gen_version__: str = "2.723.11"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.2.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.2.0b8 2.723.11 4.15.0-alpha.1761174335818-8b3b1a8b cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -224,7 +224,7 @@ class GroupsSDK(BaseSDK):
|
|
|
224
224
|
config_version: Optional[str] = None,
|
|
225
225
|
deploying_worker_count: Optional[float] = None,
|
|
226
226
|
description: Optional[str] = None,
|
|
227
|
-
|
|
227
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
228
228
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
229
229
|
incompatible_worker_count: Optional[float] = None,
|
|
230
230
|
inherits: Optional[str] = None,
|
|
@@ -261,7 +261,7 @@ class GroupsSDK(BaseSDK):
|
|
|
261
261
|
:param config_version:
|
|
262
262
|
:param deploying_worker_count:
|
|
263
263
|
:param description:
|
|
264
|
-
:param
|
|
264
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
265
265
|
:param git:
|
|
266
266
|
:param incompatible_worker_count:
|
|
267
267
|
:param inherits:
|
|
@@ -302,7 +302,7 @@ class GroupsSDK(BaseSDK):
|
|
|
302
302
|
config_version=config_version,
|
|
303
303
|
deploying_worker_count=deploying_worker_count,
|
|
304
304
|
description=description,
|
|
305
|
-
|
|
305
|
+
estimated_ingest_rate=estimated_ingest_rate,
|
|
306
306
|
git=utils.get_pydantic_model(git, Optional[models.Git]),
|
|
307
307
|
id=id,
|
|
308
308
|
incompatible_worker_count=incompatible_worker_count,
|
|
@@ -395,7 +395,7 @@ class GroupsSDK(BaseSDK):
|
|
|
395
395
|
config_version: Optional[str] = None,
|
|
396
396
|
deploying_worker_count: Optional[float] = None,
|
|
397
397
|
description: Optional[str] = None,
|
|
398
|
-
|
|
398
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
399
399
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
400
400
|
incompatible_worker_count: Optional[float] = None,
|
|
401
401
|
inherits: Optional[str] = None,
|
|
@@ -432,7 +432,7 @@ class GroupsSDK(BaseSDK):
|
|
|
432
432
|
:param config_version:
|
|
433
433
|
:param deploying_worker_count:
|
|
434
434
|
:param description:
|
|
435
|
-
:param
|
|
435
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
436
436
|
:param git:
|
|
437
437
|
:param incompatible_worker_count:
|
|
438
438
|
:param inherits:
|
|
@@ -473,7 +473,7 @@ class GroupsSDK(BaseSDK):
|
|
|
473
473
|
config_version=config_version,
|
|
474
474
|
deploying_worker_count=deploying_worker_count,
|
|
475
475
|
description=description,
|
|
476
|
-
|
|
476
|
+
estimated_ingest_rate=estimated_ingest_rate,
|
|
477
477
|
git=utils.get_pydantic_model(git, Optional[models.Git]),
|
|
478
478
|
id=id,
|
|
479
479
|
incompatible_worker_count=incompatible_worker_count,
|
|
@@ -757,7 +757,7 @@ class GroupsSDK(BaseSDK):
|
|
|
757
757
|
config_version: Optional[str] = None,
|
|
758
758
|
deploying_worker_count: Optional[float] = None,
|
|
759
759
|
description: Optional[str] = None,
|
|
760
|
-
|
|
760
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
761
761
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
762
762
|
incompatible_worker_count: Optional[float] = None,
|
|
763
763
|
inherits: Optional[str] = None,
|
|
@@ -795,7 +795,7 @@ class GroupsSDK(BaseSDK):
|
|
|
795
795
|
:param config_version:
|
|
796
796
|
:param deploying_worker_count:
|
|
797
797
|
:param description:
|
|
798
|
-
:param
|
|
798
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
799
799
|
:param git:
|
|
800
800
|
:param incompatible_worker_count:
|
|
801
801
|
:param inherits:
|
|
@@ -837,7 +837,7 @@ class GroupsSDK(BaseSDK):
|
|
|
837
837
|
config_version=config_version,
|
|
838
838
|
deploying_worker_count=deploying_worker_count,
|
|
839
839
|
description=description,
|
|
840
|
-
|
|
840
|
+
estimated_ingest_rate=estimated_ingest_rate,
|
|
841
841
|
git=utils.get_pydantic_model(git, Optional[models.Git]),
|
|
842
842
|
id=id,
|
|
843
843
|
incompatible_worker_count=incompatible_worker_count,
|
|
@@ -931,7 +931,7 @@ class GroupsSDK(BaseSDK):
|
|
|
931
931
|
config_version: Optional[str] = None,
|
|
932
932
|
deploying_worker_count: Optional[float] = None,
|
|
933
933
|
description: Optional[str] = None,
|
|
934
|
-
|
|
934
|
+
estimated_ingest_rate: Optional[models.EstimatedIngestRate] = None,
|
|
935
935
|
git: Optional[Union[models.Git, models.GitTypedDict]] = None,
|
|
936
936
|
incompatible_worker_count: Optional[float] = None,
|
|
937
937
|
inherits: Optional[str] = None,
|
|
@@ -969,7 +969,7 @@ class GroupsSDK(BaseSDK):
|
|
|
969
969
|
:param config_version:
|
|
970
970
|
:param deploying_worker_count:
|
|
971
971
|
:param description:
|
|
972
|
-
:param
|
|
972
|
+
:param estimated_ingest_rate: Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)
|
|
973
973
|
:param git:
|
|
974
974
|
:param incompatible_worker_count:
|
|
975
975
|
:param inherits:
|
|
@@ -1011,7 +1011,7 @@ class GroupsSDK(BaseSDK):
|
|
|
1011
1011
|
config_version=config_version,
|
|
1012
1012
|
deploying_worker_count=deploying_worker_count,
|
|
1013
1013
|
description=description,
|
|
1014
|
-
|
|
1014
|
+
estimated_ingest_rate=estimated_ingest_rate,
|
|
1015
1015
|
git=utils.get_pydantic_model(git, Optional[models.Git]),
|
|
1016
1016
|
id=id,
|
|
1017
1017
|
incompatible_worker_count=incompatible_worker_count,
|
|
@@ -22,7 +22,7 @@ if TYPE_CHECKING:
|
|
|
22
22
|
ConfigGroup,
|
|
23
23
|
ConfigGroupType,
|
|
24
24
|
ConfigGroupTypedDict,
|
|
25
|
-
|
|
25
|
+
EstimatedIngestRate,
|
|
26
26
|
Git,
|
|
27
27
|
GitTypedDict,
|
|
28
28
|
)
|
|
@@ -3494,7 +3494,7 @@ __all__ = [
|
|
|
3494
3494
|
"EndpointType",
|
|
3495
3495
|
"Error",
|
|
3496
3496
|
"ErrorTypedDict",
|
|
3497
|
-
"
|
|
3497
|
+
"EstimatedIngestRate",
|
|
3498
3498
|
"EventFormat",
|
|
3499
3499
|
"Executor",
|
|
3500
3500
|
"ExecutorSpecificSettings",
|
|
@@ -6291,7 +6291,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
6291
6291
|
"ConfigGroup": ".configgroup",
|
|
6292
6292
|
"ConfigGroupType": ".configgroup",
|
|
6293
6293
|
"ConfigGroupTypedDict": ".configgroup",
|
|
6294
|
-
"
|
|
6294
|
+
"EstimatedIngestRate": ".configgroup",
|
|
6295
6295
|
"Git": ".configgroup",
|
|
6296
6296
|
"GitTypedDict": ".configgroup",
|
|
6297
6297
|
"ConfigGroupCloud": ".configgroupcloud",
|
|
@@ -14,7 +14,7 @@ from typing import List, Optional
|
|
|
14
14
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
class
|
|
17
|
+
class EstimatedIngestRate(int, Enum, metaclass=utils.OpenEnumMeta):
|
|
18
18
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
19
19
|
|
|
20
20
|
# 12 MB/sec
|
|
@@ -63,7 +63,7 @@ class ConfigGroupTypedDict(TypedDict):
|
|
|
63
63
|
config_version: NotRequired[str]
|
|
64
64
|
deploying_worker_count: NotRequired[float]
|
|
65
65
|
description: NotRequired[str]
|
|
66
|
-
|
|
66
|
+
estimated_ingest_rate: NotRequired[EstimatedIngestRate]
|
|
67
67
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
68
68
|
git: NotRequired[GitTypedDict]
|
|
69
69
|
incompatible_worker_count: NotRequired[float]
|
|
@@ -98,8 +98,10 @@ class ConfigGroup(BaseModel):
|
|
|
98
98
|
|
|
99
99
|
description: Optional[str] = None
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
Annotated[
|
|
101
|
+
estimated_ingest_rate: Annotated[
|
|
102
|
+
Annotated[
|
|
103
|
+
Optional[EstimatedIngestRate], PlainValidator(validate_open_enum(True))
|
|
104
|
+
],
|
|
103
105
|
pydantic.Field(alias="estimatedIngestRate"),
|
|
104
106
|
] = None
|
|
105
107
|
r"""Maximum expected volume of data ingested by the @{group}. (This setting is available only on @{group}s consisting of Cribl-managed Cribl.Cloud @{node}s.)"""
|
|
@@ -12,7 +12,6 @@ class UpdatePacksRequestTypedDict(TypedDict):
|
|
|
12
12
|
filename: str
|
|
13
13
|
r"""Filename of the Pack file to upload."""
|
|
14
14
|
request_body: Union[bytes, IO[bytes], io.BufferedReader]
|
|
15
|
-
r"""Binary file content"""
|
|
16
15
|
|
|
17
16
|
|
|
18
17
|
class UpdatePacksRequest(BaseModel):
|
|
@@ -24,4 +23,3 @@ class UpdatePacksRequest(BaseModel):
|
|
|
24
23
|
request_body: Annotated[
|
|
25
24
|
Union[bytes, IO[bytes], io.BufferedReader], FieldMetadata(request=True)
|
|
26
25
|
]
|
|
27
|
-
r"""Binary file content"""
|
cribl_control_plane/packs.py
CHANGED
|
@@ -386,7 +386,7 @@ class Packs(BaseSDK):
|
|
|
386
386
|
Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs source</code>, which you must call separately.
|
|
387
387
|
|
|
388
388
|
:param filename: Filename of the Pack file to upload.
|
|
389
|
-
:param request_body:
|
|
389
|
+
:param request_body:
|
|
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
|
|
392
392
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -483,7 +483,7 @@ class Packs(BaseSDK):
|
|
|
483
483
|
Upload a Pack file. Returns the <code>source</code> ID needed to install the Pack with <code>POST /packs source</code>, which you must call separately.
|
|
484
484
|
|
|
485
485
|
:param filename: Filename of the Pack file to upload.
|
|
486
|
-
:param request_body:
|
|
486
|
+
:param request_body:
|
|
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
|
|
489
489
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -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=8OTMapRkZK7wrTdJzWe3PoQ7eh2YPiHQajP_04FUyhs,546
|
|
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
|
|
@@ -22,12 +22,12 @@ cribl_control_plane/errors/healthstatus_error.py,sha256=Psoup4s1La6jZU8Z7kXQxO6w
|
|
|
22
22
|
cribl_control_plane/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
23
23
|
cribl_control_plane/errors/responsevalidationerror.py,sha256=l8CMARNT46VW1u2GuWlH7Ki_rF8Ulky4J_2fQ7rMwnU,783
|
|
24
24
|
cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
|
|
25
|
-
cribl_control_plane/groups_sdk.py,sha256=
|
|
25
|
+
cribl_control_plane/groups_sdk.py,sha256=V2yLvhAqRw1rjP16F4L4WnhkvOadHZaGkalTT-xxP0E,62535
|
|
26
26
|
cribl_control_plane/health.py,sha256=N8pX8RHkJVtLFd4nZ8ypJPrzT_JezciEVry9s9qvCRc,7019
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
28
28
|
cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=VaacfDeQDMJKibABnkZibVMfOYxeh9ITcHKjM9QDqw8,46676
|
|
30
|
-
cribl_control_plane/models/__init__.py,sha256=
|
|
30
|
+
cribl_control_plane/models/__init__.py,sha256=xztoMdonWnLoDZM0HsRCpHLUZZxdQ37cNOhOYtkGqFQ,391644
|
|
31
31
|
cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
|
|
32
32
|
cribl_control_plane/models/authtoken.py,sha256=gtO4VNC8-vr6spO6HCtL_yFPm30sUdtn-_qajc_mLmI,528
|
|
33
33
|
cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
|
|
@@ -35,7 +35,7 @@ cribl_control_plane/models/cacheconnection.py,sha256=IaqcKQhOxuY_SYdMpD2FqBGMbra
|
|
|
35
35
|
cribl_control_plane/models/cacheconnectionbackfillstatus.py,sha256=EFJtxJ8EULR0JI4SjDoIsYSxx7uGHk-ULOeSxSzTCSc,380
|
|
36
36
|
cribl_control_plane/models/cloudprovider.py,sha256=OwlC4oXKrv5AjIgotkcSSTGgods-2QWeR0N5UgJ20Yw,268
|
|
37
37
|
cribl_control_plane/models/commit.py,sha256=wXQkjOYsffxWURHTrfU9kJ4HF2H65QfD1R9-vH0clvQ,641
|
|
38
|
-
cribl_control_plane/models/configgroup.py,sha256=
|
|
38
|
+
cribl_control_plane/models/configgroup.py,sha256=6ocFXnV75jxY9Z8O0ls94vOKnvtVJSeeFFO4IfRHptQ,4793
|
|
39
39
|
cribl_control_plane/models/configgroupcloud.py,sha256=xme7fTZesBGwpma0huL-EXyPNaDYhP2CeYnvxBRxwU8,1589
|
|
40
40
|
cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
|
|
41
41
|
cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=OZtUSrA4Lf81IhqH-PnO5nqbcWJ_plFLJJbe-vIBsSI,1728
|
|
@@ -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=2hkaEm6nKQe8wm0Pf79xiAHNz-aY7k9lfdKCxLqJ32c,808
|
|
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=svZrwbLNPfqPlRC0oh0w5IwQl2DWUHI89N3aTw27AiQ,47651
|
|
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.2.
|
|
330
|
-
cribl_control_plane-0.2.
|
|
331
|
-
cribl_control_plane-0.2.
|
|
329
|
+
cribl_control_plane-0.2.0b8.dist-info/METADATA,sha256=Qtk3JSbPyxbiqX4k68B_lq_6uesZ78bfSnw9HKyXsUc,39955
|
|
330
|
+
cribl_control_plane-0.2.0b8.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
331
|
+
cribl_control_plane-0.2.0b8.dist-info/RECORD,,
|
|
File without changes
|