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

@@ -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.1.0a1"
7
+ __openapi_doc_version__: str = "4.14.1-alpha.1758626754698-b3680673"
8
+ __gen_version__: str = "2.716.16"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.1.0a1 2.716.16 4.14.1-alpha.1758626754698-b3680673 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,
@@ -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",
@@ -6058,6 +6063,8 @@ __all__ = [
6058
6063
  "ResourceTypeLabel",
6059
6064
  "ResourceTypeLabelTypedDict",
6060
6065
  "Role",
6066
+ "RouteCloneConf",
6067
+ "RouteCloneConfTypedDict",
6061
6068
  "RouteConf",
6062
6069
  "RouteConfTypedDict",
6063
6070
  "Routes",
@@ -6208,6 +6215,7 @@ _dynamic_imports: dict[str, str] = {
6208
6215
  "AddHecTokenRequestMetadatum": ".addhectokenrequest",
6209
6216
  "AddHecTokenRequestMetadatumTypedDict": ".addhectokenrequest",
6210
6217
  "AddHecTokenRequestTypedDict": ".addhectokenrequest",
6218
+ "AppMode": ".appmode",
6211
6219
  "AuthToken": ".authtoken",
6212
6220
  "AuthTokenTypedDict": ".authtoken",
6213
6221
  "BranchInfo": ".branchinfo",
@@ -6339,6 +6347,8 @@ _dynamic_imports: dict[str, str] = {
6339
6347
  "DistributedSummaryTypedDict": ".distributedsummary",
6340
6348
  "DistributedSummaryWorkers": ".distributedsummary",
6341
6349
  "DistributedSummaryWorkersTypedDict": ".distributedsummary",
6350
+ "Error": ".error",
6351
+ "ErrorTypedDict": ".error",
6342
6352
  "GetConfigGroupACLByProductAndIDRequest": ".getconfiggroupaclbyproductandidop",
6343
6353
  "GetConfigGroupACLByProductAndIDRequestTypedDict": ".getconfiggroupaclbyproductandidop",
6344
6354
  "GetConfigGroupACLByProductAndIDResponse": ".getconfiggroupaclbyproductandidop",
@@ -6363,6 +6373,8 @@ _dynamic_imports: dict[str, str] = {
6363
6373
  "GetCriblLakeDatasetByLakeIDRequestTypedDict": ".getcribllakedatasetbylakeidop",
6364
6374
  "GetCriblLakeDatasetByLakeIDResponse": ".getcribllakedatasetbylakeidop",
6365
6375
  "GetCriblLakeDatasetByLakeIDResponseTypedDict": ".getcribllakedatasetbylakeidop",
6376
+ "GetHealthInfoResponse": ".gethealthinfoop",
6377
+ "GetHealthInfoResponseTypedDict": ".gethealthinfoop",
6366
6378
  "GetInputByIDRequest": ".getinputbyidop",
6367
6379
  "GetInputByIDRequestTypedDict": ".getinputbyidop",
6368
6380
  "GetInputByIDResponse": ".getinputbyidop",
@@ -6463,6 +6475,8 @@ _dynamic_imports: dict[str, str] = {
6463
6475
  "GitRevertResultFiles": ".gitrevertresult",
6464
6476
  "GitRevertResultFilesTypedDict": ".gitrevertresult",
6465
6477
  "GitRevertResultTypedDict": ".gitrevertresult",
6478
+ "GitShowResult": ".gitshowresult",
6479
+ "GitShowResultTypedDict": ".gitshowresult",
6466
6480
  "File": ".gitstatusresult",
6467
6481
  "FileTypedDict": ".gitstatusresult",
6468
6482
  "GitStatusResult": ".gitstatusresult",
@@ -6471,7 +6485,6 @@ _dynamic_imports: dict[str, str] = {
6471
6485
  "RenamedTypedDict": ".gitstatusresult",
6472
6486
  "Config": ".hbcriblinfo",
6473
6487
  "ConfigTypedDict": ".hbcriblinfo",
6474
- "DistMode": ".hbcriblinfo",
6475
6488
  "HBCriblInfo": ".hbcriblinfo",
6476
6489
  "HBCriblInfoTypedDict": ".hbcriblinfo",
6477
6490
  "HBLeaderInfo": ".hbleaderinfo",
@@ -9002,6 +9015,8 @@ _dynamic_imports: dict[str, str] = {
9002
9015
  "RbacResource": ".rbacresource",
9003
9016
  "ResourcePolicy": ".resourcepolicy",
9004
9017
  "ResourcePolicyTypedDict": ".resourcepolicy",
9018
+ "RouteCloneConf": ".routecloneconf",
9019
+ "RouteCloneConfTypedDict": ".routecloneconf",
9005
9020
  "RouteConf": ".routeconf",
9006
9021
  "RouteConfTypedDict": ".routeconf",
9007
9022
  "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
@@ -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
@@ -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
@@ -68,7 +57,7 @@ class HBCriblInfo(BaseModel):
68
57
  config: Config
69
58
 
70
59
  dist_mode: Annotated[
71
- Annotated[DistMode, PlainValidator(validate_open_enum(False))],
60
+ Annotated[AppMode, PlainValidator(validate_open_enum(False))],
72
61
  pydantic.Field(alias="distMode"),
73
62
  ]
74
63
 
@@ -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
@@ -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
@@ -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.1.0a1
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=UlLsKTHqS7xCIwss3er_arZWrMOO56tR4tvmHn2vNDc,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
@@ -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=-qJ0-u97riFoyLSJwEkYe0i54CnjLwUr4ARGX7NWF3k,387637
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,7 +49,7 @@ 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
54
  cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
54
55
  cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
@@ -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
@@ -101,11 +104,12 @@ cribl_control_plane/models/gitinfo.py,sha256=Xbct3PSJJVYojIDLtzy2mB_wNWsgiBgnsT9
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=GAKP4WYVokWwWNp7vQPazjqOzbT4R6QMPHxhR6vyxRc,2613
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
@@ -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=lw5JFVcnoetmbF0XSxX4Cyw0_QmTFbEZ56znS-u5UBg,3652
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
@@ -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.1.0a1.dist-info/METADATA,sha256=YYk8pEkP8ex5bG3BOBUCxxstbumebdiSHN2UafAgy8c,38885
327
+ cribl_control_plane-0.1.0a1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
328
+ cribl_control_plane-0.1.0a1.dist-info/RECORD,,