cribl-control-plane 0.0.48a1__py3-none-any.whl → 0.0.50rc1__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.

Files changed (27) hide show
  1. cribl_control_plane/_version.py +4 -4
  2. cribl_control_plane/health.py +6 -2
  3. cribl_control_plane/models/__init__.py +27 -10
  4. cribl_control_plane/models/appmode.py +14 -0
  5. cribl_control_plane/models/createinputhectokenbyidop.py +6 -5
  6. cribl_control_plane/models/createversionpushop.py +5 -5
  7. cribl_control_plane/models/createversionundoop.py +3 -3
  8. cribl_control_plane/models/error.py +16 -0
  9. cribl_control_plane/models/gethealthinfoop.py +17 -0
  10. cribl_control_plane/models/getversionshowop.py +6 -5
  11. cribl_control_plane/models/gitinfo.py +14 -3
  12. cribl_control_plane/models/gitshowresult.py +19 -0
  13. cribl_control_plane/models/hbcriblinfo.py +8 -14
  14. cribl_control_plane/models/heartbeatmetadata.py +0 -3
  15. cribl_control_plane/models/jobinfo.py +4 -1
  16. cribl_control_plane/models/nodeprovidedinfo.py +4 -4
  17. cribl_control_plane/models/outputgooglecloudlogging.py +9 -4
  18. cribl_control_plane/models/packinfo.py +3 -0
  19. cribl_control_plane/models/packinstallinfo.py +3 -0
  20. cribl_control_plane/models/routecloneconf.py +13 -0
  21. cribl_control_plane/models/routeconf.py +4 -3
  22. cribl_control_plane/models/updateinputhectokenbyidandtokenop.py +6 -5
  23. cribl_control_plane/sdk.py +2 -2
  24. cribl_control_plane/utils/annotations.py +32 -8
  25. {cribl_control_plane-0.0.48a1.dist-info → cribl_control_plane-0.0.50rc1.dist-info}/METADATA +2 -1
  26. {cribl_control_plane-0.0.48a1.dist-info → cribl_control_plane-0.0.50rc1.dist-info}/RECORD +27 -22
  27. {cribl_control_plane-0.0.48a1.dist-info → cribl_control_plane-0.0.50rc1.dist-info}/WHEEL +0 -0
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "cribl-control-plane"
6
- __version__: str = "0.0.48a1"
7
- __openapi_doc_version__: str = "4.15.0-alpha.1758566860656-1c3a24b3"
8
- __gen_version__: str = "2.707.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.0.48a1 2.707.0 4.15.0-alpha.1758566860656-1c3a24b3 cribl-control-plane"
6
+ __version__: str = "0.0.50rc1"
7
+ __openapi_doc_version__: str = "4.14.1-alpha.1759328534491-00ee21bd"
8
+ __gen_version__: str = "2.716.16"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.0.50rc1 2.716.16 4.14.1-alpha.1759328534491-00ee21bd cribl-control-plane"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -18,7 +18,7 @@ class Health(BaseSDK):
18
18
  server_url: Optional[str] = None,
19
19
  timeout_ms: Optional[int] = None,
20
20
  http_headers: Optional[Mapping[str, str]] = None,
21
- ) -> models.HealthStatus:
21
+ ) -> models.GetHealthInfoResponse:
22
22
  r"""Retrieve health status of the server
23
23
 
24
24
  :param retries: Override the default retry configuration for this method
@@ -85,6 +85,8 @@ class Health(BaseSDK):
85
85
  if utils.match_response(http_res, "5XX", "*"):
86
86
  http_res_text = utils.stream_to_text(http_res)
87
87
  raise errors.APIError("API error occurred", http_res, http_res_text)
88
+ if utils.match_response(http_res, "default", "application/json"):
89
+ return unmarshal_json_response(models.Error, http_res)
88
90
 
89
91
  raise errors.APIError("Unexpected response received", http_res)
90
92
 
@@ -95,7 +97,7 @@ class Health(BaseSDK):
95
97
  server_url: Optional[str] = None,
96
98
  timeout_ms: Optional[int] = None,
97
99
  http_headers: Optional[Mapping[str, str]] = None,
98
- ) -> models.HealthStatus:
100
+ ) -> models.GetHealthInfoResponse:
99
101
  r"""Retrieve health status of the server
100
102
 
101
103
  :param retries: Override the default retry configuration for this method
@@ -162,5 +164,7 @@ class Health(BaseSDK):
162
164
  if utils.match_response(http_res, "5XX", "*"):
163
165
  http_res_text = await utils.stream_to_text_async(http_res)
164
166
  raise errors.APIError("API error occurred", http_res, http_res_text)
167
+ if utils.match_response(http_res, "default", "application/json"):
168
+ return unmarshal_json_response(models.Error, http_res)
165
169
 
166
170
  raise errors.APIError("Unexpected response received", http_res)
@@ -12,6 +12,7 @@ if TYPE_CHECKING:
12
12
  AddHecTokenRequestMetadatumTypedDict,
13
13
  AddHecTokenRequestTypedDict,
14
14
  )
15
+ from .appmode import AppMode
15
16
  from .authtoken import AuthToken, AuthTokenTypedDict
16
17
  from .branchinfo import BranchInfo, BranchInfoTypedDict
17
18
  from .cacheconnection import CacheConnection, CacheConnectionTypedDict
@@ -178,6 +179,7 @@ if TYPE_CHECKING:
178
179
  DistributedSummaryWorkers,
179
180
  DistributedSummaryWorkersTypedDict,
180
181
  )
182
+ from .error import Error, ErrorTypedDict
181
183
  from .getconfiggroupaclbyproductandidop import (
182
184
  GetConfigGroupACLByProductAndIDRequest,
183
185
  GetConfigGroupACLByProductAndIDRequestTypedDict,
@@ -214,6 +216,7 @@ if TYPE_CHECKING:
214
216
  GetCriblLakeDatasetByLakeIDResponse,
215
217
  GetCriblLakeDatasetByLakeIDResponseTypedDict,
216
218
  )
219
+ from .gethealthinfoop import GetHealthInfoResponse, GetHealthInfoResponseTypedDict
217
220
  from .getinputbyidop import (
218
221
  GetInputByIDRequest,
219
222
  GetInputByIDRequestTypedDict,
@@ -333,7 +336,7 @@ if TYPE_CHECKING:
333
336
  from .gitdiffresult import GitDiffResult, GitDiffResultTypedDict
334
337
  from .gitfile import GitFile, GitFileTypedDict
335
338
  from .gitfilesresponse import GitFilesResponse, GitFilesResponseTypedDict
336
- from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteTypedDict
339
+ from .gitinfo import GitInfo, GitInfoTypedDict, Remote, RemoteEnum, RemoteTypedDict
337
340
  from .gitlogresult import GitLogResult, GitLogResultTypedDict
338
341
  from .gitrevertparams import GitRevertParams, GitRevertParamsTypedDict
339
342
  from .gitrevertresult import (
@@ -344,6 +347,7 @@ if TYPE_CHECKING:
344
347
  GitRevertResultFilesTypedDict,
345
348
  GitRevertResultTypedDict,
346
349
  )
350
+ from .gitshowresult import GitShowResult, GitShowResultTypedDict
347
351
  from .gitstatusresult import (
348
352
  File,
349
353
  FileTypedDict,
@@ -352,13 +356,7 @@ if TYPE_CHECKING:
352
356
  Renamed,
353
357
  RenamedTypedDict,
354
358
  )
355
- from .hbcriblinfo import (
356
- Config,
357
- ConfigTypedDict,
358
- DistMode,
359
- HBCriblInfo,
360
- HBCriblInfoTypedDict,
361
- )
359
+ from .hbcriblinfo import Config, ConfigTypedDict, HBCriblInfo, HBCriblInfoTypedDict
362
360
  from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
363
361
  from .healthstatus import HealthStatus, HealthStatusTypedDict, Role, Status
364
362
  from .heartbeatmetadata import (
@@ -3130,6 +3128,7 @@ if TYPE_CHECKING:
3130
3128
  from .productscore import ProductsCore
3131
3129
  from .rbacresource import RbacResource
3132
3130
  from .resourcepolicy import ResourcePolicy, ResourcePolicyTypedDict
3131
+ from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
3133
3132
  from .routeconf import RouteConf, RouteConfTypedDict
3134
3133
  from .routes import (
3135
3134
  Comment,
@@ -3290,6 +3289,7 @@ __all__ = [
3290
3289
  "AdditionalPropertyTypedDict",
3291
3290
  "Allow",
3292
3291
  "AllowTypedDict",
3292
+ "AppMode",
3293
3293
  "Audit",
3294
3294
  "AuditTypedDict",
3295
3295
  "AuthToken",
@@ -3439,7 +3439,6 @@ __all__ = [
3439
3439
  "DiffFilesTypedDict",
3440
3440
  "DisksAndFileSystems",
3441
3441
  "DisksAndFileSystemsTypedDict",
3442
- "DistMode",
3443
3442
  "DistributedSummary",
3444
3443
  "DistributedSummaryGroups",
3445
3444
  "DistributedSummaryGroupsTypedDict",
@@ -3456,6 +3455,8 @@ __all__ = [
3456
3455
  "EndpointParam",
3457
3456
  "EndpointParamTypedDict",
3458
3457
  "EndpointType",
3458
+ "Error",
3459
+ "ErrorTypedDict",
3459
3460
  "EventFormat",
3460
3461
  "Executor",
3461
3462
  "ExecutorSpecificSettings",
@@ -3497,6 +3498,8 @@ __all__ = [
3497
3498
  "GetCriblLakeDatasetByLakeIDRequestTypedDict",
3498
3499
  "GetCriblLakeDatasetByLakeIDResponse",
3499
3500
  "GetCriblLakeDatasetByLakeIDResponseTypedDict",
3501
+ "GetHealthInfoResponse",
3502
+ "GetHealthInfoResponseTypedDict",
3500
3503
  "GetInputByIDRequest",
3501
3504
  "GetInputByIDRequestTypedDict",
3502
3505
  "GetInputByIDResponse",
@@ -3590,6 +3593,8 @@ __all__ = [
3590
3593
  "GitRevertResultFiles",
3591
3594
  "GitRevertResultFilesTypedDict",
3592
3595
  "GitRevertResultTypedDict",
3596
+ "GitShowResult",
3597
+ "GitShowResultTypedDict",
3593
3598
  "GitStatusResult",
3594
3599
  "GitStatusResultTypedDict",
3595
3600
  "GitTypedDict",
@@ -6048,6 +6053,7 @@ __all__ = [
6048
6053
  "RbacResource",
6049
6054
  "ReadMode",
6050
6055
  "Remote",
6056
+ "RemoteEnum",
6051
6057
  "RemoteTypedDict",
6052
6058
  "Renamed",
6053
6059
  "RenamedTypedDict",
@@ -6058,6 +6064,8 @@ __all__ = [
6058
6064
  "ResourceTypeLabel",
6059
6065
  "ResourceTypeLabelTypedDict",
6060
6066
  "Role",
6067
+ "RouteCloneConf",
6068
+ "RouteCloneConfTypedDict",
6061
6069
  "RouteConf",
6062
6070
  "RouteConfTypedDict",
6063
6071
  "Routes",
@@ -6208,6 +6216,7 @@ _dynamic_imports: dict[str, str] = {
6208
6216
  "AddHecTokenRequestMetadatum": ".addhectokenrequest",
6209
6217
  "AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
6210
6218
  "AddHecTokenRequestTypedDict": ".addhectokenrequest",
6219
+ "AppMode": ".appmode",
6211
6220
  "AuthToken": ".authtoken",
6212
6221
  "AuthTokenTypedDict": ".authtoken",
6213
6222
  "BranchInfo": ".branchinfo",
@@ -6339,6 +6348,8 @@ _dynamic_imports: dict[str, str] = {
6339
6348
  "DistributedSummaryTypedDict": ".distributedsummary",
6340
6349
  "DistributedSummaryWorkers": ".distributedsummary",
6341
6350
  "DistributedSummaryWorkersTypedDict": ".distributedsummary",
6351
+ "Error": ".error",
6352
+ "ErrorTypedDict": ".error",
6342
6353
  "GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
6343
6354
  "GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
6344
6355
  "GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
@@ -6363,6 +6374,8 @@ _dynamic_imports: dict[str, str] = {
6363
6374
  "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
6364
6375
  "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
6365
6376
  "GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
6377
+ "GetHealthInfoResponse": ".gethealthinfoop",
6378
+ "GetHealthInfoResponseTypedDict": ".gethealthinfoop",
6366
6379
  "GetInputByIDRequest": ".getinputbyidop",
6367
6380
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
6368
6381
  "GetInputByIDResponse": ".getinputbyidop",
@@ -6452,6 +6465,7 @@ _dynamic_imports: dict[str, str] = {
6452
6465
  "GitInfo": ".gitinfo",
6453
6466
  "GitInfoTypedDict": ".gitinfo",
6454
6467
  "Remote": ".gitinfo",
6468
+ "RemoteEnum": ".gitinfo",
6455
6469
  "RemoteTypedDict": ".gitinfo",
6456
6470
  "GitLogResult": ".gitlogresult",
6457
6471
  "GitLogResultTypedDict": ".gitlogresult",
@@ -6463,6 +6477,8 @@ _dynamic_imports: dict[str, str] = {
6463
6477
  "GitRevertResultFiles": ".gitrevertresult",
6464
6478
  "GitRevertResultFilesTypedDict": ".gitrevertresult",
6465
6479
  "GitRevertResultTypedDict": ".gitrevertresult",
6480
+ "GitShowResult": ".gitshowresult",
6481
+ "GitShowResultTypedDict": ".gitshowresult",
6466
6482
  "File": ".gitstatusresult",
6467
6483
  "FileTypedDict": ".gitstatusresult",
6468
6484
  "GitStatusResult": ".gitstatusresult",
@@ -6471,7 +6487,6 @@ _dynamic_imports: dict[str, str] = {
6471
6487
  "RenamedTypedDict": ".gitstatusresult",
6472
6488
  "Config": ".hbcriblinfo",
6473
6489
  "ConfigTypedDict": ".hbcriblinfo",
6474
- "DistMode": ".hbcriblinfo",
6475
6490
  "HBCriblInfo": ".hbcriblinfo",
6476
6491
  "HBCriblInfoTypedDict": ".hbcriblinfo",
6477
6492
  "HBLeaderInfo": ".hbleaderinfo",
@@ -9002,6 +9017,8 @@ _dynamic_imports: dict[str, str] = {
9002
9017
  "RbacResource": ".rbacresource",
9003
9018
  "ResourcePolicy": ".resourcepolicy",
9004
9019
  "ResourcePolicyTypedDict": ".resourcepolicy",
9020
+ "RouteCloneConf": ".routecloneconf",
9021
+ "RouteCloneConfTypedDict": ".routecloneconf",
9005
9022
  "RouteConf": ".routeconf",
9006
9023
  "RouteConfTypedDict": ".routeconf",
9007
9024
  "Comment": ".routes",
@@ -0,0 +1,14 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from cribl_control_plane import utils
5
+ from enum import Enum
6
+
7
+
8
+ class AppMode(str, Enum, metaclass=utils.OpenEnumMeta):
9
+ SINGLE = "single"
10
+ MASTER = "master"
11
+ WORKER = "worker"
12
+ EDGE = "edge"
13
+ MANAGED_EDGE = "managed-edge"
14
+ OUTPOST = "outpost"
@@ -2,9 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .addhectokenrequest import AddHecTokenRequest, AddHecTokenRequestTypedDict
5
+ from .inputsplunkhec import InputSplunkHec, InputSplunkHecTypedDict
5
6
  from cribl_control_plane.types import BaseModel
6
7
  from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
7
- from typing import Any, Dict, List, Optional
8
+ from typing import List, Optional
8
9
  from typing_extensions import Annotated, NotRequired, TypedDict
9
10
 
10
11
 
@@ -29,17 +30,17 @@ class CreateInputHecTokenByIDRequest(BaseModel):
29
30
 
30
31
 
31
32
  class CreateInputHecTokenByIDResponseTypedDict(TypedDict):
32
- r"""a list of any objects"""
33
+ r"""a list of InputSplunkHec objects"""
33
34
 
34
35
  count: NotRequired[int]
35
36
  r"""number of items present in the items array"""
36
- items: NotRequired[List[Dict[str, Any]]]
37
+ items: NotRequired[List[InputSplunkHecTypedDict]]
37
38
 
38
39
 
39
40
  class CreateInputHecTokenByIDResponse(BaseModel):
40
- r"""a list of any objects"""
41
+ r"""a list of InputSplunkHec objects"""
41
42
 
42
43
  count: Optional[int] = None
43
44
  r"""number of items present in the items array"""
44
45
 
45
- items: Optional[List[Dict[str, Any]]] = None
46
+ items: Optional[List[InputSplunkHec]] = None
@@ -2,22 +2,22 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from cribl_control_plane.types import BaseModel
5
- from typing import Any, Dict, List, Optional
5
+ from typing import List, Optional
6
6
  from typing_extensions import NotRequired, TypedDict
7
7
 
8
8
 
9
9
  class CreateVersionPushResponseTypedDict(TypedDict):
10
- r"""a list of any objects"""
10
+ r"""a list of string objects"""
11
11
 
12
12
  count: NotRequired[int]
13
13
  r"""number of items present in the items array"""
14
- items: NotRequired[List[Dict[str, Any]]]
14
+ items: NotRequired[List[str]]
15
15
 
16
16
 
17
17
  class CreateVersionPushResponse(BaseModel):
18
- r"""a list of any objects"""
18
+ r"""a list of string objects"""
19
19
 
20
20
  count: Optional[int] = None
21
21
  r"""number of items present in the items array"""
22
22
 
23
- items: Optional[List[Dict[str, Any]]] = None
23
+ items: Optional[List[str]] = None
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from cribl_control_plane.types import BaseModel
5
5
  from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
6
6
  import pydantic
7
- from typing import List, Optional
7
+ from typing import Any, Dict, List, Optional
8
8
  from typing_extensions import Annotated, NotRequired, TypedDict
9
9
 
10
10
 
@@ -27,7 +27,7 @@ class CreateVersionUndoResponseTypedDict(TypedDict):
27
27
 
28
28
  count: NotRequired[int]
29
29
  r"""number of items present in the items array"""
30
- items: NotRequired[List[str]]
30
+ items: NotRequired[List[Dict[str, Any]]]
31
31
 
32
32
 
33
33
  class CreateVersionUndoResponse(BaseModel):
@@ -36,4 +36,4 @@ class CreateVersionUndoResponse(BaseModel):
36
36
  count: Optional[int] = None
37
37
  r"""number of items present in the items array"""
38
38
 
39
- items: Optional[List[str]] = None
39
+ items: Optional[List[Dict[str, Any]]] = None
@@ -0,0 +1,16 @@
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 Optional
6
+ from typing_extensions import NotRequired, TypedDict
7
+
8
+
9
+ class ErrorTypedDict(TypedDict):
10
+ message: NotRequired[str]
11
+ r"""Error message"""
12
+
13
+
14
+ class Error(BaseModel):
15
+ message: Optional[str] = None
16
+ r"""Error message"""
@@ -0,0 +1,17 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .error import Error, ErrorTypedDict
5
+ from .healthstatus import HealthStatus, HealthStatusTypedDict
6
+ from typing import Union
7
+ from typing_extensions import TypeAliasType
8
+
9
+
10
+ GetHealthInfoResponseTypedDict = TypeAliasType(
11
+ "GetHealthInfoResponseTypedDict", Union[ErrorTypedDict, HealthStatusTypedDict]
12
+ )
13
+
14
+
15
+ GetHealthInfoResponse = TypeAliasType(
16
+ "GetHealthInfoResponse", Union[Error, HealthStatus]
17
+ )
@@ -1,10 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .gitshowresult import GitShowResult, GitShowResultTypedDict
4
5
  from cribl_control_plane.types import BaseModel
5
6
  from cribl_control_plane.utils import FieldMetadata, QueryParamMetadata
6
7
  import pydantic
7
- from typing import Any, Dict, List, Optional
8
+ from typing import List, Optional
8
9
  from typing_extensions import Annotated, NotRequired, TypedDict
9
10
 
10
11
 
@@ -48,17 +49,17 @@ class GetVersionShowRequest(BaseModel):
48
49
 
49
50
 
50
51
  class GetVersionShowResponseTypedDict(TypedDict):
51
- r"""a list of any objects"""
52
+ r"""a list of GitShowResult objects"""
52
53
 
53
54
  count: NotRequired[int]
54
55
  r"""number of items present in the items array"""
55
- items: NotRequired[List[Dict[str, Any]]]
56
+ items: NotRequired[List[GitShowResultTypedDict]]
56
57
 
57
58
 
58
59
  class GetVersionShowResponse(BaseModel):
59
- r"""a list of any objects"""
60
+ r"""a list of GitShowResult objects"""
60
61
 
61
62
  count: Optional[int] = None
62
63
  r"""number of items present in the items array"""
63
64
 
64
- items: Optional[List[Dict[str, Any]]] = None
65
+ items: Optional[List[GitShowResult]] = None
@@ -1,15 +1,26 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from cribl_control_plane import utils
4
5
  from cribl_control_plane.types import BaseModel
6
+ from cribl_control_plane.utils import validate_open_enum
7
+ from enum import Enum
8
+ from pydantic.functional_validators import PlainValidator
5
9
  from typing import Union
6
- from typing_extensions import TypeAliasType, TypedDict
10
+ from typing_extensions import Annotated, TypeAliasType, TypedDict
7
11
 
8
12
 
9
- RemoteTypedDict = TypeAliasType("RemoteTypedDict", Union[str, bool])
13
+ class RemoteEnum(str, Enum, metaclass=utils.OpenEnumMeta):
14
+ FALSE = "false"
10
15
 
11
16
 
12
- Remote = TypeAliasType("Remote", Union[str, bool])
17
+ RemoteTypedDict = TypeAliasType("RemoteTypedDict", Union[str, RemoteEnum])
18
+
19
+
20
+ Remote = TypeAliasType(
21
+ "Remote",
22
+ Union[str, Annotated[RemoteEnum, PlainValidator(validate_open_enum(False))]],
23
+ )
13
24
 
14
25
 
15
26
  class GitInfoTypedDict(TypedDict):
@@ -0,0 +1,19 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .difffiles import DiffFiles, DiffFilesTypedDict
5
+ from cribl_control_plane.types import BaseModel
6
+ import pydantic
7
+ from typing import List
8
+ from typing_extensions import Annotated, TypedDict
9
+
10
+
11
+ class GitShowResultTypedDict(TypedDict):
12
+ commit_message: str
13
+ diff_json: List[DiffFilesTypedDict]
14
+
15
+
16
+ class GitShowResult(BaseModel):
17
+ commit_message: Annotated[str, pydantic.Field(alias="commitMessage")]
18
+
19
+ diff_json: Annotated[List[DiffFiles], pydantic.Field(alias="diffJson")]
@@ -1,12 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .appmode import AppMode
4
5
  from .hbleaderinfo import HBLeaderInfo, HBLeaderInfoTypedDict
5
6
  from .lookupversions import LookupVersions, LookupVersionsTypedDict
6
- from cribl_control_plane import utils
7
7
  from cribl_control_plane.types import BaseModel
8
8
  from cribl_control_plane.utils import validate_open_enum
9
- from enum import Enum
10
9
  import pydantic
11
10
  from pydantic.functional_validators import PlainValidator
12
11
  from typing import List, Optional
@@ -37,19 +36,9 @@ class Config(BaseModel):
37
36
  version: Optional[str] = None
38
37
 
39
38
 
40
- class DistMode(str, Enum, metaclass=utils.OpenEnumMeta):
41
- EDGE = "edge"
42
- WORKER = "worker"
43
- SINGLE = "single"
44
- MASTER = "master"
45
- MANAGED_EDGE = "managed-edge"
46
- OUTPOST = "outpost"
47
- SEARCH_SUPERVISOR = "search-supervisor"
48
-
49
-
50
39
  class HBCriblInfoTypedDict(TypedDict):
51
40
  config: ConfigTypedDict
52
- dist_mode: DistMode
41
+ dist_mode: AppMode
53
42
  group: str
54
43
  guid: str
55
44
  start_time: float
@@ -61,6 +50,7 @@ class HBCriblInfoTypedDict(TypedDict):
61
50
  lookup_versions: NotRequired[LookupVersionsTypedDict]
62
51
  master: NotRequired[HBLeaderInfoTypedDict]
63
52
  pid: NotRequired[float]
53
+ socks_enabled: NotRequired[bool]
64
54
  version: NotRequired[str]
65
55
 
66
56
 
@@ -68,7 +58,7 @@ class HBCriblInfo(BaseModel):
68
58
  config: Config
69
59
 
70
60
  dist_mode: Annotated[
71
- Annotated[DistMode, PlainValidator(validate_open_enum(False))],
61
+ Annotated[AppMode, PlainValidator(validate_open_enum(False))],
72
62
  pydantic.Field(alias="distMode"),
73
63
  ]
74
64
 
@@ -98,4 +88,8 @@ class HBCriblInfo(BaseModel):
98
88
 
99
89
  pid: Optional[float] = None
100
90
 
91
+ socks_enabled: Annotated[Optional[bool], pydantic.Field(alias="socksEnabled")] = (
92
+ None
93
+ )
94
+
101
95
  version: Optional[str] = None
@@ -17,7 +17,6 @@ class HeartbeatMetadataTags(BaseModel):
17
17
 
18
18
  class HeartbeatMetadataAwsTypedDict(TypedDict):
19
19
  enabled: bool
20
- instance_id: str
21
20
  region: str
22
21
  type: str
23
22
  zone: str
@@ -27,8 +26,6 @@ class HeartbeatMetadataAwsTypedDict(TypedDict):
27
26
  class HeartbeatMetadataAws(BaseModel):
28
27
  enabled: bool
29
28
 
30
- instance_id: Annotated[str, pydantic.Field(alias="instanceId")]
31
-
32
29
  region: str
33
30
 
34
31
  type: str
@@ -4,13 +4,14 @@ from __future__ import annotations
4
4
  from .jobstatus import JobStatus, JobStatusTypedDict
5
5
  from .runnablejob import RunnableJob, RunnableJobTypedDict
6
6
  from cribl_control_plane.types import BaseModel
7
- from typing import Optional
7
+ from typing import Dict, Optional
8
8
  from typing_extensions import NotRequired, TypedDict
9
9
 
10
10
 
11
11
  class JobInfoTypedDict(TypedDict):
12
12
  args: RunnableJobTypedDict
13
13
  id: str
14
+ stats: Dict[str, float]
14
15
  status: JobStatusTypedDict
15
16
  keep: NotRequired[bool]
16
17
 
@@ -20,6 +21,8 @@ class JobInfo(BaseModel):
20
21
 
21
22
  id: str
22
23
 
24
+ stats: Dict[str, float]
25
+
23
26
  status: JobStatus
24
27
 
25
28
  keep: Optional[bool] = None
@@ -5,7 +5,7 @@ from .hbcriblinfo import HBCriblInfo, HBCriblInfoTypedDict
5
5
  from .heartbeatmetadata import HeartbeatMetadata, HeartbeatMetadataTypedDict
6
6
  from cribl_control_plane.types import BaseModel
7
7
  import pydantic
8
- from typing import List, Optional, Union
8
+ from typing import Dict, List, Optional, Union
9
9
  from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
10
10
 
11
11
 
@@ -19,7 +19,6 @@ class NodeProvidedInfoTags(BaseModel):
19
19
 
20
20
  class NodeProvidedInfoAwsTypedDict(TypedDict):
21
21
  enabled: bool
22
- instance_id: str
23
22
  region: str
24
23
  type: str
25
24
  zone: str
@@ -29,8 +28,6 @@ class NodeProvidedInfoAwsTypedDict(TypedDict):
29
28
  class NodeProvidedInfoAws(BaseModel):
30
29
  enabled: bool
31
30
 
32
- instance_id: Annotated[str, pydantic.Field(alias="instanceId")]
33
-
34
31
  region: str
35
32
 
36
33
  type: str
@@ -128,6 +125,7 @@ class NodeProvidedInfoTypedDict(TypedDict):
128
125
  architecture: str
129
126
  cpus: float
130
127
  cribl: HBCriblInfoTypedDict
128
+ env: Dict[str, str]
131
129
  free_disk_space: float
132
130
  hostname: str
133
131
  node: str
@@ -152,6 +150,8 @@ class NodeProvidedInfo(BaseModel):
152
150
 
153
151
  cribl: HBCriblInfo
154
152
 
153
+ env: Dict[str, str]
154
+
155
155
  free_disk_space: Annotated[float, pydantic.Field(alias="freeDiskSpace")]
156
156
 
157
157
  hostname: str
@@ -115,9 +115,9 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
115
115
  type: OutputGoogleCloudLoggingType
116
116
  log_location_type: LogLocationType
117
117
  log_name_expression: str
118
- r"""JavaScript expression to compute the value of the log name."""
118
+ r"""JavaScript expression to compute the value of the log name. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
119
119
  log_location_expression: str
120
- r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated."""
120
+ r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
121
121
  id: NotRequired[str]
122
122
  r"""Unique ID for this output"""
123
123
  pipeline: NotRequired[str]
@@ -128,6 +128,7 @@ class OutputGoogleCloudLoggingTypedDict(TypedDict):
128
128
  r"""Optionally, enable this config only on a specified Git branch. If empty, will be enabled everywhere."""
129
129
  streamtags: NotRequired[List[str]]
130
130
  r"""Tags for filtering and grouping in @{product}"""
131
+ sanitize_log_names: NotRequired[bool]
131
132
  payload_format: NotRequired[PayloadFormat]
132
133
  r"""Format to use when sending payload. Defaults to Text."""
133
134
  log_labels: NotRequired[List[LogLabelTypedDict]]
@@ -247,12 +248,12 @@ class OutputGoogleCloudLogging(BaseModel):
247
248
  ]
248
249
 
249
250
  log_name_expression: Annotated[str, pydantic.Field(alias="logNameExpression")]
250
- r"""JavaScript expression to compute the value of the log name."""
251
+ r"""JavaScript expression to compute the value of the log name. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
251
252
 
252
253
  log_location_expression: Annotated[
253
254
  str, pydantic.Field(alias="logLocationExpression")
254
255
  ]
255
- r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated."""
256
+ r"""JavaScript expression to compute the value of the folder ID with which log entries should be associated. If Validate and correct log name is enabled, invalid characters (characters other than alphanumerics, forward-slashes, underscores, hyphens, and periods) will be replaced with an underscore."""
256
257
 
257
258
  id: Optional[str] = None
258
259
  r"""Unique ID for this output"""
@@ -271,6 +272,10 @@ class OutputGoogleCloudLogging(BaseModel):
271
272
  streamtags: Optional[List[str]] = None
272
273
  r"""Tags for filtering and grouping in @{product}"""
273
274
 
275
+ sanitize_log_names: Annotated[
276
+ Optional[bool], pydantic.Field(alias="sanitizeLogNames")
277
+ ] = False
278
+
274
279
  payload_format: Annotated[
275
280
  Annotated[Optional[PayloadFormat], PlainValidator(validate_open_enum(False))],
276
281
  pydantic.Field(alias="payloadFormat"),
@@ -28,6 +28,7 @@ class PackInfoTypedDict(TypedDict):
28
28
  id: str
29
29
  source: str
30
30
  author: NotRequired[str]
31
+ dependencies: NotRequired[Dict[str, str]]
31
32
  description: NotRequired[str]
32
33
  display_name: NotRequired[str]
33
34
  exports: NotRequired[List[str]]
@@ -48,6 +49,8 @@ class PackInfo(BaseModel):
48
49
 
49
50
  author: Optional[str] = None
50
51
 
52
+ dependencies: Optional[Dict[str, str]] = None
53
+
51
54
  description: Optional[str] = None
52
55
 
53
56
  display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
@@ -28,6 +28,7 @@ class PackInstallInfoTypedDict(TypedDict):
28
28
  id: str
29
29
  source: str
30
30
  author: NotRequired[str]
31
+ dependencies: NotRequired[Dict[str, str]]
31
32
  description: NotRequired[str]
32
33
  display_name: NotRequired[str]
33
34
  exports: NotRequired[List[str]]
@@ -49,6 +50,8 @@ class PackInstallInfo(BaseModel):
49
50
 
50
51
  author: Optional[str] = None
51
52
 
53
+ dependencies: Optional[Dict[str, str]] = None
54
+
52
55
  description: Optional[str] = None
53
56
 
54
57
  display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
@@ -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 RouteCloneConfTypedDict(TypedDict):
9
+ pass
10
+
11
+
12
+ class RouteCloneConf(BaseModel):
13
+ pass
@@ -1,9 +1,10 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .routecloneconf import RouteCloneConf, RouteCloneConfTypedDict
4
5
  from cribl_control_plane.types import BaseModel
5
6
  import pydantic
6
- from typing import Dict, List, Optional
7
+ from typing import List, Optional
7
8
  from typing_extensions import Annotated, NotRequired, TypedDict
8
9
 
9
10
 
@@ -12,7 +13,7 @@ class RouteConfTypedDict(TypedDict):
12
13
  id: str
13
14
  name: str
14
15
  pipeline: str
15
- clones: NotRequired[List[Dict[str, str]]]
16
+ clones: NotRequired[List[RouteCloneConfTypedDict]]
16
17
  context: NotRequired[str]
17
18
  description: NotRequired[str]
18
19
  disabled: NotRequired[bool]
@@ -32,7 +33,7 @@ class RouteConf(BaseModel):
32
33
 
33
34
  pipeline: str
34
35
 
35
- clones: Optional[List[Dict[str, str]]] = None
36
+ clones: Optional[List[RouteCloneConf]] = None
36
37
 
37
38
  context: Optional[str] = None
38
39
 
@@ -1,10 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .inputsplunkhec import InputSplunkHec, InputSplunkHecTypedDict
4
5
  from .updatehectokenrequest import UpdateHecTokenRequest, UpdateHecTokenRequestTypedDict
5
6
  from cribl_control_plane.types import BaseModel
6
7
  from cribl_control_plane.utils import FieldMetadata, PathParamMetadata, RequestMetadata
7
- from typing import Any, Dict, List, Optional
8
+ from typing import List, Optional
8
9
  from typing_extensions import Annotated, NotRequired, TypedDict
9
10
 
10
11
 
@@ -36,17 +37,17 @@ class UpdateInputHecTokenByIDAndTokenRequest(BaseModel):
36
37
 
37
38
 
38
39
  class UpdateInputHecTokenByIDAndTokenResponseTypedDict(TypedDict):
39
- r"""a list of any objects"""
40
+ r"""a list of InputSplunkHec objects"""
40
41
 
41
42
  count: NotRequired[int]
42
43
  r"""number of items present in the items array"""
43
- items: NotRequired[List[Dict[str, Any]]]
44
+ items: NotRequired[List[InputSplunkHecTypedDict]]
44
45
 
45
46
 
46
47
  class UpdateInputHecTokenByIDAndTokenResponse(BaseModel):
47
- r"""a list of any objects"""
48
+ r"""a list of InputSplunkHec objects"""
48
49
 
49
50
  count: Optional[int] = None
50
51
  r"""number of items present in the items array"""
51
52
 
52
- items: Optional[List[Dict[str, Any]]] = None
53
+ items: Optional[List[InputSplunkHec]] = None
@@ -88,7 +88,7 @@ class CriblControlPlane(BaseSDK):
88
88
  """
89
89
  client_supplied = True
90
90
  if client is None:
91
- client = httpx.Client()
91
+ client = httpx.Client(follow_redirects=True)
92
92
  client_supplied = False
93
93
 
94
94
  assert issubclass(
@@ -97,7 +97,7 @@ class CriblControlPlane(BaseSDK):
97
97
 
98
98
  async_client_supplied = True
99
99
  if async_client is None:
100
- async_client = httpx.AsyncClient()
100
+ async_client = httpx.AsyncClient(follow_redirects=True)
101
101
  async_client_supplied = False
102
102
 
103
103
  if debug_logger is None:
@@ -3,6 +3,7 @@
3
3
  from enum import Enum
4
4
  from typing import Any, Optional
5
5
 
6
+
6
7
  def get_discriminator(model: Any, fieldname: str, key: str) -> str:
7
8
  """
8
9
  Recursively search for the discriminator attribute in a model.
@@ -25,31 +26,54 @@ def get_discriminator(model: Any, fieldname: str, key: str) -> str:
25
26
 
26
27
  if isinstance(field, dict):
27
28
  if key in field:
28
- return f'{field[key]}'
29
+ return f"{field[key]}"
29
30
 
30
31
  if hasattr(field, fieldname):
31
32
  attr = getattr(field, fieldname)
32
33
  if isinstance(attr, Enum):
33
- return f'{attr.value}'
34
- return f'{attr}'
34
+ return f"{attr.value}"
35
+ return f"{attr}"
35
36
 
36
37
  if hasattr(field, upper_fieldname):
37
38
  attr = getattr(field, upper_fieldname)
38
39
  if isinstance(attr, Enum):
39
- return f'{attr.value}'
40
- return f'{attr}'
40
+ return f"{attr.value}"
41
+ return f"{attr}"
41
42
 
42
43
  return None
43
44
 
45
+ def search_nested_discriminator(obj: Any) -> Optional[str]:
46
+ """Recursively search for discriminator in nested structures."""
47
+ # First try direct field lookup
48
+ discriminator = get_field_discriminator(obj)
49
+ if discriminator is not None:
50
+ return discriminator
51
+
52
+ # If it's a dict, search in nested values
53
+ if isinstance(obj, dict):
54
+ for value in obj.values():
55
+ if isinstance(value, list):
56
+ # Search in list items
57
+ for item in value:
58
+ nested_discriminator = search_nested_discriminator(item)
59
+ if nested_discriminator is not None:
60
+ return nested_discriminator
61
+ elif isinstance(value, dict):
62
+ # Search in nested dict
63
+ nested_discriminator = search_nested_discriminator(value)
64
+ if nested_discriminator is not None:
65
+ return nested_discriminator
66
+
67
+ return None
44
68
 
45
69
  if isinstance(model, list):
46
70
  for field in model:
47
- discriminator = get_field_discriminator(field)
71
+ discriminator = search_nested_discriminator(field)
48
72
  if discriminator is not None:
49
73
  return discriminator
50
74
 
51
- discriminator = get_field_discriminator(model)
75
+ discriminator = search_nested_discriminator(model)
52
76
  if discriminator is not None:
53
77
  return discriminator
54
78
 
55
- raise ValueError(f'Could not find discriminator field {fieldname} in {model}')
79
+ raise ValueError(f"Could not find discriminator field {fieldname} in {model}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cribl-control-plane
3
- Version: 0.0.48a1
3
+ Version: 0.0.50rc1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -176,6 +176,7 @@ with CriblControlPlane(
176
176
  </br>
177
177
 
178
178
  The same SDK client can also be used to make asynchronous requests by importing asyncio.
179
+
179
180
  ```python
180
181
  # Asynchronous Example
181
182
  import asyncio
@@ -4,7 +4,7 @@ cribl_control_plane/_hooks/clientcredentials.py,sha256=p1WN7LL3PHrAf4AxXrsOZF_NB
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=FONIYlKGjbsdTqqpmTR1pRXAKUDi4cl6zkrPUa-j_44,546
7
+ cribl_control_plane/_version.py,sha256=IlEgbnjxGJxnADz100sggHqKi2ht94tH-Zh7JOEgHic,550
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
@@ -23,12 +23,13 @@ cribl_control_plane/errors/no_response_error.py,sha256=Kb7hmMtDo72KrLSjUEDNeQxvz
23
23
  cribl_control_plane/errors/responsevalidationerror.py,sha256=7vHiNVp0rm6nrult0NCC73VDabehUhM861LrWfaObvA,778
24
24
  cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPCez2hP7yc,695
25
25
  cribl_control_plane/groups_sdk.py,sha256=EkviXQbbtP9HIv8tSkRtyOTPqxVTySgzMlgx_zhudig,61835
26
- cribl_control_plane/health.py,sha256=mDYmC13IE_M9jTVKKBOr5aeZ5QArUURLT1PyPpvn5Ho,6719
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=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
29
29
  cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
30
- cribl_control_plane/models/__init__.py,sha256=F-b8_c-6covrN8JcZRDLkjlWFoopYgHaXPEEmWaBjIo,386850
30
+ cribl_control_plane/models/__init__.py,sha256=vPQ490qkaF_i3p1nNpKKW3H1_nEVemf8n4hubp6DQps,387697
31
31
  cribl_control_plane/models/addhectokenrequest.py,sha256=mzQLKrMWlwxNheqEs5SM_yrT-gyenfCWgHKhmb5oXFQ,800
32
+ cribl_control_plane/models/appmode.py,sha256=29pjcPnHZ7AzaIScZ2TuWEsPvhK53dBH5tfxtY95ig4,368
32
33
  cribl_control_plane/models/authtoken.py,sha256=uW0aIs8j14CQzFM2ueY5GIWFulna91cigBWQ3oPlDgY,295
33
34
  cribl_control_plane/models/branchinfo.py,sha256=jCX31O5TMG9jTjqigPvvUiBwpgPpVxHtSuhYrNykXiI,291
34
35
  cribl_control_plane/models/cacheconnection.py,sha256=IaqcKQhOxuY_SYdMpD2FqBGMbraqk8msS5DzkhvjHbQ,1802
@@ -40,7 +41,7 @@ cribl_control_plane/models/configgroupcloud.py,sha256=xme7fTZesBGwpma0huL-EXyPNa
40
41
  cribl_control_plane/models/configgrouplookups.py,sha256=1z1DlvlVehqfD6hZMXG0XedZTfoCIpYd0cHav45tiRw,830
41
42
  cribl_control_plane/models/createconfiggroupbyproductop.py,sha256=OZtUSrA4Lf81IhqH-PnO5nqbcWJ_plFLJJbe-vIBsSI,1728
42
43
  cribl_control_plane/models/createcribllakedatasetbylakeidop.py,sha256=IVH9RvCw8IM0LCzJuy7_eDX9GbpTUIk-Xp0nFPjn6BQ,1647
43
- cribl_control_plane/models/createinputhectokenbyidop.py,sha256=3UbrmX96ZFvh-0UFJfsYqSayk9HX5wCWTWkpJL56OTk,1502
44
+ cribl_control_plane/models/createinputhectokenbyidop.py,sha256=1FJEJYLPoVySpBtbiqV6ZCwR4AfkJ8-6Dsdc1DuG2tk,1590
44
45
  cribl_control_plane/models/createinputop.py,sha256=l5Hz9ANzw4Gjh25FVf_okFzXxZWjA7GOx1tp8yWhKaI,701
45
46
  cribl_control_plane/models/createoutputop.py,sha256=lWgs9T_pZR5bHcA0SZndbLuUPjVa_D_uFpqTuM7JiPc,718
46
47
  cribl_control_plane/models/createoutputtestbyidop.py,sha256=-5R-9LdZDrHAxnti3u_RS7SiAdNpCK2Kti4AlU00WvA,1641
@@ -48,9 +49,9 @@ cribl_control_plane/models/createpacksop.py,sha256=ZWmUQ9KU6XbSh_oL7-txQw-7esp-y
48
49
  cribl_control_plane/models/createpipelineop.py,sha256=vUHkNhYvYqhSAte_1jeBqry7tUL7W6T_s1M7vivuKwg,728
49
50
  cribl_control_plane/models/createroutesappendbyidop.py,sha256=OruUiz8gTR_SyMvKwolwgeyWHCEUI29annCJqihOMjU,1603
50
51
  cribl_control_plane/models/createversioncommitop.py,sha256=ijtv-PAHQT6MYtVpdytDRGDWLgVUJLlEozAnwvgN59o,1739
51
- cribl_control_plane/models/createversionpushop.py,sha256=lWAZSdUEgwWEvXuo5I5yac1PYd9IOY6ZQTY0mRSo9Nc,686
52
+ cribl_control_plane/models/createversionpushop.py,sha256=9cpZ_Ez8RDSuH9bfiffS0pisNsh0tqtwXiKzNps7DxQ,659
52
53
  cribl_control_plane/models/createversionrevertop.py,sha256=rTPVEEkTpK3bOBcUS1AzYZbCPJP8gSFTviyfFx0WPyU,1876
53
- cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
54
+ cribl_control_plane/models/createversionundoop.py,sha256=QS2n1IZYcv2t83X5YTOhz8ROZW7w2u5g9eEviL-vGLM,1302
54
55
  cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
55
56
  cribl_control_plane/models/cribllakedataset.py,sha256=hvfxljCGd4sFOGFuPZK5w4CWtgA-ZoL8JFl9c2V_I9k,2571
56
57
  cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
@@ -67,12 +68,14 @@ cribl_control_plane/models/deployrequest.py,sha256=zSl96WkkLVHACFRYUdPT4w7WhCaOv
67
68
  cribl_control_plane/models/deployrequestlookups.py,sha256=WJQf_uL_22Lj7_TIBZ0pZxspYnkfZu9ABNGBLG35tpA,613
68
69
  cribl_control_plane/models/difffiles.py,sha256=VJyPZY3njsKntwP8h4XrROCmXryp6kCvlk6MVv8Sz6g,4558
69
70
  cribl_control_plane/models/distributedsummary.py,sha256=H3vkBqmL3vbQIggXyfWqqrm3d27b3kgqBt9t9e-Vlz4,1359
71
+ cribl_control_plane/models/error.py,sha256=saRIdVJju2dlS4S5RZcoF_ccN60cegVQXGzq32wGkac,412
70
72
  cribl_control_plane/models/getconfiggroupaclbyproductandidop.py,sha256=MxTD4oztJQJ9Ng6ntnJIXwmrh_BcF3gle3JUJsODGsw,2349
71
73
  cribl_control_plane/models/getconfiggroupaclteamsbyproductandidop.py,sha256=ov0NQr05PpGq4YC5EeCSzw7NULu110vglLNOtXFMejs,2381
72
74
  cribl_control_plane/models/getconfiggroupbyproductandidop.py,sha256=GGNtsME7zmOIWw2C7wTXeb_oK0RgueWQXWgrZz8Fu7Q,2318
73
75
  cribl_control_plane/models/getconfiggroupconfigversionbyproductandidop.py,sha256=d7k_bLs7Bxjj-egRvlF9UjbdWvwTCD0h0GHvLPyCees,1770
74
76
  cribl_control_plane/models/getcribllakedatasetbylakeidandidop.py,sha256=X2XiJPwODvnOY9U5kRxIjFGirvEKQpiIUrO125lZoIo,1625
75
77
  cribl_control_plane/models/getcribllakedatasetbylakeidop.py,sha256=nd44uWdgyGfq3vjOvm2vQ76AiC_4J076q-ZCXP0ebAU,1371
78
+ cribl_control_plane/models/gethealthinfoop.py,sha256=RyxeQNoIACex7tw-YTxl614-m2ubh9g-XMTveMuZ5Fc,514
76
79
  cribl_control_plane/models/getinputbyidop.py,sha256=fuIpxpky_6KUbXM_8J-0VNIYsjNZnU6IyunVusx7QeE,1099
77
80
  cribl_control_plane/models/getmasterworkerentryop.py,sha256=dIMOw_dSQo-vP-iuDhaTkSFvyN_WMlbh7WFfme64Cas,1261
78
81
  cribl_control_plane/models/getoutputbyidop.py,sha256=Y8f9ZvCHlRE1cugt2APdigrcjLQz7R5jpkrLVUcDNcI,1128
@@ -89,7 +92,7 @@ cribl_control_plane/models/getversiondiffop.py,sha256=vm3B-GB9qDeuL-btzZFBC6chM6
89
92
  cribl_control_plane/models/getversionfilesop.py,sha256=R22O8bEtLVCif84eZUJi8H2996twJcEuuh2aTlD2JK4,1734
90
93
  cribl_control_plane/models/getversioninfoop.py,sha256=xgglVQWeQTgA_55hr4FghW24JCi3JtGLHk4wzYgnFeg,719
91
94
  cribl_control_plane/models/getversionop.py,sha256=EmI1-ll2LgrBY8WWIcr77y_yCT8sNJcjr9jDbG5Uzic,1662
92
- cribl_control_plane/models/getversionshowop.py,sha256=CXb23NGspBLhyIoosbfxh78jCfYLZJVnj3A6eaPNDWU,2457
95
+ cribl_control_plane/models/getversionshowop.py,sha256=md13a4afSZyzsB_Nbr3w2LNUPT4kIfnvuRUSTTA5kFc,2538
93
96
  cribl_control_plane/models/getversionstatusop.py,sha256=-NLep3d-XZtDHwz2iYULZ345r7o1yxp1GWPGiPR9S-E,1361
94
97
  cribl_control_plane/models/gitcommitparams.py,sha256=4RwyddK0-QDb2Ax_tP2CVOy1rHsq-KEn5lELI402B6I,563
95
98
  cribl_control_plane/models/gitcommitsummary.py,sha256=63UMkf5H5DFzFTsU7dr3dBrLGNMIxJBfinCPmBCd2OY,1312
@@ -97,15 +100,16 @@ cribl_control_plane/models/gitcountresult.py,sha256=VTC0J-ShpvHbpMiZ0Ote3Wf-9Bz9
97
100
  cribl_control_plane/models/gitdiffresult.py,sha256=UHek_rWxrF7AllVU0tXJe7NolWC08yBDQe0EaoUJ74o,493
98
101
  cribl_control_plane/models/gitfile.py,sha256=CMk0Xm08WFtUX73TaKBNAyRagZh-DMIY-m33RFgfFHg,493
99
102
  cribl_control_plane/models/gitfilesresponse.py,sha256=_xLOHOuJLUdy3BYCrkUQN8x5YLfrXcdCis57x2N32jo,670
100
- cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9ZfjN0A-U,515
103
+ cribl_control_plane/models/gitinfo.py,sha256=mBLQaIXUUKmKtaUjmOztylGE7SNkWM9pkVW8bL4Jicc,859
101
104
  cribl_control_plane/models/gitlogresult.py,sha256=JSTXgsLOce7j1z0mJGALXWeOR7pclWzY0T_8gUJdzNk,830
102
105
  cribl_control_plane/models/gitrevertparams.py,sha256=wMVlEcrprmZHUA01vi3CC8fMMDFqURJndv-1LaF2gik,478
103
106
  cribl_control_plane/models/gitrevertresult.py,sha256=RQ7-QhPP7zerEEF2bUhVI_IVft7tqYVOZrNLCWeB32c,1056
107
+ cribl_control_plane/models/gitshowresult.py,sha256=XTYNDfyix6mxWGL1bzevhttxf6OMyvVVOSoS0duMh9Y,592
104
108
  cribl_control_plane/models/gitstatusresult.py,sha256=7-pEpOnb4xzQwWo3rPBRN0tbM6UdG4KSIhkiUPyU3to,1166
105
- cribl_control_plane/models/hbcriblinfo.py,sha256=CVdRMaGVrd38wkrSD_jS5RXtM6btU7SAGqPzHWgBqAY,2891
109
+ cribl_control_plane/models/hbcriblinfo.py,sha256=CcdBrpApexHsPsAv3vIcl2I9qV4fmz_0dfcnJZkEAlo,2757
106
110
  cribl_control_plane/models/hbleaderinfo.py,sha256=SU5iM_I4sqxoTOzAQsw-rpOMfXwKl1ymze9nUrw6z6U,503
107
111
  cribl_control_plane/models/healthstatus.py,sha256=oGS-ntDNekMLdbjGQtGTDsFh7gDn_Fz9KUVyLix29m8,1056
108
- cribl_control_plane/models/heartbeatmetadata.py,sha256=mKMhlT2jo0zX2UQ4qFQns2ft1zWtYBHtS96BXEvfKhs,2345
112
+ cribl_control_plane/models/heartbeatmetadata.py,sha256=IlLu0BnjnwBeXQtZSk4YUj9gKiI8n95ipYJ2Og2x1IQ,2255
109
113
  cribl_control_plane/models/input.py,sha256=Zd6wdxKwa9pdoT3GmGKnlzwhV8oqIKG2CAnjy2khTxk,7682
110
114
  cribl_control_plane/models/inputappscope.py,sha256=4DBz29S82rynEUOuHuz_-kuB_F2lhpxsfJs_ZlaNNJ0,21057
111
115
  cribl_control_plane/models/inputazureblob.py,sha256=-T9zWYCKwsy8p3BIRYewiXea92dPNdy2bFIBaL_7Cmc,15601
@@ -166,7 +170,7 @@ cribl_control_plane/models/inputwineventlogs.py,sha256=m8VJ-VtcFl74RV6kS5lkjHcAb
166
170
  cribl_control_plane/models/inputwiz.py,sha256=_in9LUMsZ7jGIONDGO7yd7EA01D_vAy0BMOt6MqjEMI,15361
167
171
  cribl_control_plane/models/inputwizwebhook.py,sha256=zI57K9SnBcDfNDxwUQol8f778epG95_j46K-3FLCOB0,19480
168
172
  cribl_control_plane/models/inputzscalerhec.py,sha256=Ie84onXxyo3U7MsgwuNmSoXdbxfCjLTHZY7Zo3cfO3g,21179
169
- cribl_control_plane/models/jobinfo.py,sha256=DywkxnfEyU1ACJpVUAvLTRzYrdMiRiM-uIblWlmUnEM,607
173
+ cribl_control_plane/models/jobinfo.py,sha256=OwoVCzcEPDDGRvBLZfbN25uaiuOpM6r_-7XplLqHNnE,670
170
174
  cribl_control_plane/models/jobstatus.py,sha256=XFogf3iW-C1vQJ87QJ7_6B9ecHKnj9R00NezWpvD-AA,454
171
175
  cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
172
176
  cribl_control_plane/models/lakehouseconnectiontype.py,sha256=vLCrFdKQMRHbbxIzS6AxTDkt_99ehqvtrCPKpi6Bbyw,291
@@ -181,7 +185,7 @@ cribl_control_plane/models/lookupversions.py,sha256=PLk5hD1WPEIoePfJbhllePawNTa1
181
185
  cribl_control_plane/models/masterworkerentry.py,sha256=KT8bTu5t20ZwhybN8yz4MtG8CQZGpqv3I1JGjVItY7Q,2481
182
186
  cribl_control_plane/models/nodeactiveupgradestatus.py,sha256=knwgNh1octWr6oY-TadH0StJmzv0cktlJ4tc5pq_ChM,279
183
187
  cribl_control_plane/models/nodefailedupgradestatus.py,sha256=EE4tSjcWyQxASftW9xJCS8K5QjpLkjCl3YDIys4r7FA,267
184
- cribl_control_plane/models/nodeprovidedinfo.py,sha256=XElCf2bdE4ahiO7MaVmbtGziKgyJZIW7T143VPCUAvE,3742
188
+ cribl_control_plane/models/nodeprovidedinfo.py,sha256=wOFbUs8Ys3m7FW0fxXIMlVTZGPDeAuI_bqwZCxvgiZo,3707
185
189
  cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=EY-U3cUPwMa3H-X-hn5gdaEBmSAP3hB9gRPdiQZs5yU,294
186
190
  cribl_control_plane/models/nodeupgradestate.py,sha256=EerzMMQeFl-iHKHsJwEIxRroH6w97S7-em9YoY2-ASk,286
187
191
  cribl_control_plane/models/nodeupgradestatus.py,sha256=Ygdb7jTFOvD6M3Fjl3brliLCKbkdX3aCwkPYjTE4Dw0,1346
@@ -210,7 +214,7 @@ cribl_control_plane/models/outputelasticcloud.py,sha256=JG4IYnunuC7q-5ylciyIDdoJ
210
214
  cribl_control_plane/models/outputexabeam.py,sha256=Hs7Xz_lilL52b9YVDfmqIajcMazXdE9PPhkuD409J9w,13378
211
215
  cribl_control_plane/models/outputfilesystem.py,sha256=c1NNBsXG0KVG7BLPEeAs36st5AhGkQCHbBGC6cG9E6Q,17416
212
216
  cribl_control_plane/models/outputgooglechronicle.py,sha256=cA35weSlzLgeic3yzim188PKz2Jh-1FdMj0D0NhNX8I,23203
213
- cribl_control_plane/models/outputgooglecloudlogging.py,sha256=yIW_ANsOwdmCxVv8WyMyQp0VQ_N4e9UvyyGPMx-IFEM,34546
217
+ cribl_control_plane/models/outputgooglecloudlogging.py,sha256=JKzUqUY7tOfjXXhcpKuhQEIgfdE0JOiH8OhjQWi8e4M,35467
214
218
  cribl_control_plane/models/outputgooglecloudstorage.py,sha256=6OTByksM6K9by4ogmQJiORBQ8gRzW0l6GuEl4rn7NJs,23855
215
219
  cribl_control_plane/models/outputgooglepubsub.py,sha256=GE6QizUyIFMo96mUxGfJWPzoz7-Z8p6S3jJ1-acAKyU,12408
216
220
  cribl_control_plane/models/outputgrafanacloud.py,sha256=zzm9DM9hm-i_tMRosiLpakuticaGDj1BN8PmHishN18,54232
@@ -253,8 +257,8 @@ cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-p
253
257
  cribl_control_plane/models/outputwavefront.py,sha256=KDQ84_ovcbz_swEKNazIw6X4mcSyMB3pdEy6xV-BAhM,18283
254
258
  cribl_control_plane/models/outputwebhook.py,sha256=XxN7pfE6fu4ZilRQQtXaiC9q6h6ub21l4n6qyfCJAbs,34181
255
259
  cribl_control_plane/models/outputxsiam.py,sha256=wkEIvRzWbql5FDP6lLwvJcB7pTYuYEmV9Z7TQH58l9w,20405
256
- cribl_control_plane/models/packinfo.py,sha256=8pP80pbzBJKjIViX_kcibH5EBWIrnyVvc9P53ga7Re8,1844
257
- cribl_control_plane/models/packinstallinfo.py,sha256=RhIRUWRUYdk-FNEa2WyiPBs4RvdHsqovMH4dgLyd6Ds,1965
260
+ cribl_control_plane/models/packinfo.py,sha256=wdu3ClcROCcdAKQS5grRsz6xUP3tj1dA9TbXJTUfysQ,1941
261
+ cribl_control_plane/models/packinstallinfo.py,sha256=hd2NobQYVM5-gJc_8C9c5WncORQ0u6YBFHBZjDbYklk,2062
258
262
  cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
259
263
  cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
260
264
  cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
@@ -262,7 +266,8 @@ cribl_control_plane/models/pipelinefunctionconf.py,sha256=X61RPaoYpa_UZWavnQiNSa
262
266
  cribl_control_plane/models/productscore.py,sha256=iR4tV3eQI39kjOmyXM3RxJTxkisfVdio0p8nfmZ7t90,271
263
267
  cribl_control_plane/models/rbacresource.py,sha256=gN2zY3kwlIC-gL_K2N4ORuyTaKuqAttzaZaVftT1qQ4,429
264
268
  cribl_control_plane/models/resourcepolicy.py,sha256=NBWadVgjY9ctVazi9xRkj2bXg-_x_DAQXowYarTu5BU,696
265
- cribl_control_plane/models/routeconf.py,sha256=5QEcL6QMsAfoofsS8OJr8LkgCekLq2P7-byTNcepuHQ,1380
269
+ cribl_control_plane/models/routecloneconf.py,sha256=ESvEj0vl58BGOwJB5kYu3vMAm88JizYHXU7qorGdw9M,293
270
+ cribl_control_plane/models/routeconf.py,sha256=whFyvzWwmEqAo_0HoTFKJTZqQ2p8kdPKaZJIlh9nS58,1451
266
271
  cribl_control_plane/models/routes.py,sha256=2MRVmc4zvUjQw6moQmRYss_XaoGcaauj2Jpdb3VX8pA,2022
267
272
  cribl_control_plane/models/routesroute.py,sha256=7hFUWpgVDBj0N117IFxZRGkFqJntbe4NyBakVyMKsTY,2339
268
273
  cribl_control_plane/models/runnablejob.py,sha256=hyWHdW7SypvxfnwGcpRfXRAt7HgQWEyq3rqsm4TsEWM,812
@@ -277,7 +282,7 @@ cribl_control_plane/models/updateconfiggroupdeploybyproductandidop.py,sha256=4vf
277
282
  cribl_control_plane/models/updatecribllakedatasetbylakeidandidop.py,sha256=vawlVhfZ_xULNJcrKKtfyV6tMqrLT_i_UknodWucuUU,1990
278
283
  cribl_control_plane/models/updatehectokenrequest.py,sha256=Pq0JnAZuDqdU_g6mmCvfxfMgeK9Pu3uVXfD9sFWfjKQ,787
279
284
  cribl_control_plane/models/updateinputbyidop.py,sha256=fWbSRQQ1WdHI6_e-fV32T99vDFQ1Yv6oHM-80u5kbHE,1322
280
- cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=BnIPY8dTmpen_yKyplMqSDX4u_nfWmN3hZqSTKqy_48,1805
285
+ cribl_control_plane/models/updateinputhectokenbyidandtokenop.py,sha256=di6CX6521rBdx1h5pcUrtC-glnRFeDNehcx2U3px5_U,1893
281
286
  cribl_control_plane/models/updateoutputbyidop.py,sha256=44KI9zpS8trSu1FohNHD2egDVUxAlL-A8zazS7YOsrU,1357
282
287
  cribl_control_plane/models/updatepacksbyidop.py,sha256=QYjDGco3xBD0P7MXGzj0NE2qjQosmOWKQ7S0PoedugI,1510
283
288
  cribl_control_plane/models/updatepipelinebyidop.py,sha256=Cn_FBckmK1NyUkfOpWmc84K94W0nYCKuzppWwk0g4yY,1448
@@ -290,7 +295,7 @@ cribl_control_plane/pipelines.py,sha256=jeU-R5NDOsLXrV-5t7Cz-RPidsQ4KwNN4-_oW9iN
290
295
  cribl_control_plane/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
291
296
  cribl_control_plane/routes_sdk.py,sha256=aqJkB-EbLzA2NSFtu9N7ERta5BvIbpDRg7OZcO_ndkA,33197
292
297
  cribl_control_plane/samples.py,sha256=41bJGkB-lxj8WmeI-418PwgMT2KPKqlINp26CKwt0Yk,16067
293
- cribl_control_plane/sdk.py,sha256=OqUFrzRv28ANjtffffm1NlNgd9RPQvSGQc8k2Pl40lE,7974
298
+ cribl_control_plane/sdk.py,sha256=4sX7RKhsgrFTOlw5aXvG3Mrwt-pTzMdEip4cLZ-j9cA,8016
294
299
  cribl_control_plane/sdkconfiguration.py,sha256=bit6SSOyHqvibdtgNad5_ZcgMotk8NJfgHpKsBK8HFg,1259
295
300
  cribl_control_plane/sources.py,sha256=9JCNHdOGmMAGjBIYvzA7TSQsj6o6UEe89SHyQ_MGrSk,37120
296
301
  cribl_control_plane/statuses.py,sha256=jVfnmt3M0aiKJ3tgB2WlMaCmKDPZCJoD-1Kh8p-37ZM,8013
@@ -300,7 +305,7 @@ cribl_control_plane/tokens.py,sha256=iP_0_Pl8LFgs_ektBTU-bvRjJq6JQ3q7qMWIeIIuXmc
300
305
  cribl_control_plane/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
301
306
  cribl_control_plane/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
302
307
  cribl_control_plane/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
303
- cribl_control_plane/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
308
+ cribl_control_plane/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
304
309
  cribl_control_plane/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
305
310
  cribl_control_plane/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
306
311
  cribl_control_plane/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
@@ -318,6 +323,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
318
323
  cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
319
324
  cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
320
325
  cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
321
- cribl_control_plane-0.0.48a1.dist-info/METADATA,sha256=1TDRkBYqnao1aYOsZVhk6V7kfrlRRJ5LoB8F9lPYItE,38885
322
- cribl_control_plane-0.0.48a1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
323
- cribl_control_plane-0.0.48a1.dist-info/RECORD,,
326
+ cribl_control_plane-0.0.50rc1.dist-info/METADATA,sha256=z2c8S4tabvuPMz5NXubzE5CPHV_cR6MbsqejQA0v55o,38887
327
+ cribl_control_plane-0.0.50rc1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
328
+ cribl_control_plane-0.0.50rc1.dist-info/RECORD,,