cribl-control-plane 0.0.50rc1__py3-none-any.whl → 0.1.0a2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cribl-control-plane might be problematic. Click here for more details.
- cribl_control_plane/_version.py +4 -4
- cribl_control_plane/httpclient.py +0 -1
- cribl_control_plane/models/createversionundoop.py +3 -3
- cribl_control_plane/models/jobinfo.py +1 -4
- cribl_control_plane/models/nodeprovidedinfo.py +1 -4
- cribl_control_plane/models/packinfo.py +0 -3
- cribl_control_plane/models/packinstallinfo.py +0 -3
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.1.0a2.dist-info}/METADATA +1 -1
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.1.0a2.dist-info}/RECORD +10 -10
- {cribl_control_plane-0.0.50rc1.dist-info → cribl_control_plane-0.1.0a2.dist-info}/WHEEL +0 -0
cribl_control_plane/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "cribl-control-plane"
|
|
6
|
-
__version__: str = "0.
|
|
7
|
-
__openapi_doc_version__: str = "4.14.1-alpha.
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.
|
|
6
|
+
__version__: str = "0.1.0a2"
|
|
7
|
+
__openapi_doc_version__: str = "4.14.1-alpha.1759348021885-ce0ae185"
|
|
8
|
+
__gen_version__: str = "2.721.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.1.0a2 2.721.0 4.14.1-alpha.1759348021885-ce0ae185 cribl-control-plane"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not 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
|
|
7
|
+
from typing import 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[
|
|
30
|
+
items: NotRequired[List[str]]
|
|
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[
|
|
39
|
+
items: Optional[List[str]] = None
|
|
@@ -4,14 +4,13 @@ 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
|
|
7
|
+
from typing import 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]
|
|
15
14
|
status: JobStatusTypedDict
|
|
16
15
|
keep: NotRequired[bool]
|
|
17
16
|
|
|
@@ -21,8 +20,6 @@ class JobInfo(BaseModel):
|
|
|
21
20
|
|
|
22
21
|
id: str
|
|
23
22
|
|
|
24
|
-
stats: Dict[str, float]
|
|
25
|
-
|
|
26
23
|
status: JobStatus
|
|
27
24
|
|
|
28
25
|
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
|
|
8
|
+
from typing import List, Optional, Union
|
|
9
9
|
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
10
10
|
|
|
11
11
|
|
|
@@ -125,7 +125,6 @@ class NodeProvidedInfoTypedDict(TypedDict):
|
|
|
125
125
|
architecture: str
|
|
126
126
|
cpus: float
|
|
127
127
|
cribl: HBCriblInfoTypedDict
|
|
128
|
-
env: Dict[str, str]
|
|
129
128
|
free_disk_space: float
|
|
130
129
|
hostname: str
|
|
131
130
|
node: str
|
|
@@ -150,8 +149,6 @@ class NodeProvidedInfo(BaseModel):
|
|
|
150
149
|
|
|
151
150
|
cribl: HBCriblInfo
|
|
152
151
|
|
|
153
|
-
env: Dict[str, str]
|
|
154
|
-
|
|
155
152
|
free_disk_space: Annotated[float, pydantic.Field(alias="freeDiskSpace")]
|
|
156
153
|
|
|
157
154
|
hostname: str
|
|
@@ -28,7 +28,6 @@ class PackInfoTypedDict(TypedDict):
|
|
|
28
28
|
id: str
|
|
29
29
|
source: str
|
|
30
30
|
author: NotRequired[str]
|
|
31
|
-
dependencies: NotRequired[Dict[str, str]]
|
|
32
31
|
description: NotRequired[str]
|
|
33
32
|
display_name: NotRequired[str]
|
|
34
33
|
exports: NotRequired[List[str]]
|
|
@@ -49,8 +48,6 @@ class PackInfo(BaseModel):
|
|
|
49
48
|
|
|
50
49
|
author: Optional[str] = None
|
|
51
50
|
|
|
52
|
-
dependencies: Optional[Dict[str, str]] = None
|
|
53
|
-
|
|
54
51
|
description: Optional[str] = None
|
|
55
52
|
|
|
56
53
|
display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
|
|
@@ -28,7 +28,6 @@ class PackInstallInfoTypedDict(TypedDict):
|
|
|
28
28
|
id: str
|
|
29
29
|
source: str
|
|
30
30
|
author: NotRequired[str]
|
|
31
|
-
dependencies: NotRequired[Dict[str, str]]
|
|
32
31
|
description: NotRequired[str]
|
|
33
32
|
display_name: NotRequired[str]
|
|
34
33
|
exports: NotRequired[List[str]]
|
|
@@ -50,8 +49,6 @@ class PackInstallInfo(BaseModel):
|
|
|
50
49
|
|
|
51
50
|
author: Optional[str] = None
|
|
52
51
|
|
|
53
|
-
dependencies: Optional[Dict[str, str]] = None
|
|
54
|
-
|
|
55
52
|
description: Optional[str] = None
|
|
56
53
|
|
|
57
54
|
display_name: Annotated[Optional[str], pydantic.Field(alias="displayName")] = None
|
|
@@ -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=
|
|
7
|
+
cribl_control_plane/_version.py,sha256=ElDj1ffkw2Ba8f3SDfoochds6BmWtp5cR772iekjst0,544
|
|
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
|
|
@@ -25,7 +25,7 @@ cribl_control_plane/groups_configs.py,sha256=dgi-W0ElnyygaVKXqk5df2ldAAgj9YmXRPC
|
|
|
25
25
|
cribl_control_plane/groups_sdk.py,sha256=EkviXQbbtP9HIv8tSkRtyOTPqxVTySgzMlgx_zhudig,61835
|
|
26
26
|
cribl_control_plane/health.py,sha256=N8pX8RHkJVtLFd4nZ8ypJPrzT_JezciEVry9s9qvCRc,7019
|
|
27
27
|
cribl_control_plane/hectokens.py,sha256=0EGgGGrM83m1YmTZwkN5S4xFkHQGnw1IZe3y6uMwmLw,19151
|
|
28
|
-
cribl_control_plane/httpclient.py,sha256=
|
|
28
|
+
cribl_control_plane/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
29
29
|
cribl_control_plane/lakedatasets.py,sha256=7WYWcjXMzliDW1j3TQlgikc_h54IUq4lsysVy_39l38,46578
|
|
30
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
|
|
@@ -51,7 +51,7 @@ cribl_control_plane/models/createroutesappendbyidop.py,sha256=OruUiz8gTR_SyMvKwo
|
|
|
51
51
|
cribl_control_plane/models/createversioncommitop.py,sha256=ijtv-PAHQT6MYtVpdytDRGDWLgVUJLlEozAnwvgN59o,1739
|
|
52
52
|
cribl_control_plane/models/createversionpushop.py,sha256=9cpZ_Ez8RDSuH9bfiffS0pisNsh0tqtwXiKzNps7DxQ,659
|
|
53
53
|
cribl_control_plane/models/createversionrevertop.py,sha256=rTPVEEkTpK3bOBcUS1AzYZbCPJP8gSFTviyfFx0WPyU,1876
|
|
54
|
-
cribl_control_plane/models/createversionundoop.py,sha256=
|
|
54
|
+
cribl_control_plane/models/createversionundoop.py,sha256=31rK3VKcgJGL6JV2jBK0gYIETOa9Gwh_mSLbVyTOv54,1269
|
|
55
55
|
cribl_control_plane/models/criblevent.py,sha256=eT6WbxhOOCx5OQLkAfhwG6IeSUuUmF7hLTxeCHut4bo,361
|
|
56
56
|
cribl_control_plane/models/cribllakedataset.py,sha256=hvfxljCGd4sFOGFuPZK5w4CWtgA-ZoL8JFl9c2V_I9k,2571
|
|
57
57
|
cribl_control_plane/models/currentbranchresult.py,sha256=qq1IRI_XeGrAI_-lV_xHCYuO3VwIFUVarvo0-lN-ymU,317
|
|
@@ -170,7 +170,7 @@ cribl_control_plane/models/inputwineventlogs.py,sha256=m8VJ-VtcFl74RV6kS5lkjHcAb
|
|
|
170
170
|
cribl_control_plane/models/inputwiz.py,sha256=_in9LUMsZ7jGIONDGO7yd7EA01D_vAy0BMOt6MqjEMI,15361
|
|
171
171
|
cribl_control_plane/models/inputwizwebhook.py,sha256=zI57K9SnBcDfNDxwUQol8f778epG95_j46K-3FLCOB0,19480
|
|
172
172
|
cribl_control_plane/models/inputzscalerhec.py,sha256=Ie84onXxyo3U7MsgwuNmSoXdbxfCjLTHZY7Zo3cfO3g,21179
|
|
173
|
-
cribl_control_plane/models/jobinfo.py,sha256=
|
|
173
|
+
cribl_control_plane/models/jobinfo.py,sha256=DywkxnfEyU1ACJpVUAvLTRzYrdMiRiM-uIblWlmUnEM,607
|
|
174
174
|
cribl_control_plane/models/jobstatus.py,sha256=XFogf3iW-C1vQJ87QJ7_6B9ecHKnj9R00NezWpvD-AA,454
|
|
175
175
|
cribl_control_plane/models/lakedatasetsearchconfig.py,sha256=R0zz0K1FQ3gxPx44ezINy9y2bEFBGIWyvniF25D7Ydw,591
|
|
176
176
|
cribl_control_plane/models/lakehouseconnectiontype.py,sha256=vLCrFdKQMRHbbxIzS6AxTDkt_99ehqvtrCPKpi6Bbyw,291
|
|
@@ -185,7 +185,7 @@ cribl_control_plane/models/lookupversions.py,sha256=PLk5hD1WPEIoePfJbhllePawNTa1
|
|
|
185
185
|
cribl_control_plane/models/masterworkerentry.py,sha256=KT8bTu5t20ZwhybN8yz4MtG8CQZGpqv3I1JGjVItY7Q,2481
|
|
186
186
|
cribl_control_plane/models/nodeactiveupgradestatus.py,sha256=knwgNh1octWr6oY-TadH0StJmzv0cktlJ4tc5pq_ChM,279
|
|
187
187
|
cribl_control_plane/models/nodefailedupgradestatus.py,sha256=EE4tSjcWyQxASftW9xJCS8K5QjpLkjCl3YDIys4r7FA,267
|
|
188
|
-
cribl_control_plane/models/nodeprovidedinfo.py,sha256=
|
|
188
|
+
cribl_control_plane/models/nodeprovidedinfo.py,sha256=lw5JFVcnoetmbF0XSxX4Cyw0_QmTFbEZ56znS-u5UBg,3652
|
|
189
189
|
cribl_control_plane/models/nodeskippedupgradestatus.py,sha256=EY-U3cUPwMa3H-X-hn5gdaEBmSAP3hB9gRPdiQZs5yU,294
|
|
190
190
|
cribl_control_plane/models/nodeupgradestate.py,sha256=EerzMMQeFl-iHKHsJwEIxRroH6w97S7-em9YoY2-ASk,286
|
|
191
191
|
cribl_control_plane/models/nodeupgradestatus.py,sha256=Ygdb7jTFOvD6M3Fjl3brliLCKbkdX3aCwkPYjTE4Dw0,1346
|
|
@@ -257,8 +257,8 @@ cribl_control_plane/models/outputtestresponse.py,sha256=cKeXPvSpCzU6cWpXvHoujp-p
|
|
|
257
257
|
cribl_control_plane/models/outputwavefront.py,sha256=KDQ84_ovcbz_swEKNazIw6X4mcSyMB3pdEy6xV-BAhM,18283
|
|
258
258
|
cribl_control_plane/models/outputwebhook.py,sha256=XxN7pfE6fu4ZilRQQtXaiC9q6h6ub21l4n6qyfCJAbs,34181
|
|
259
259
|
cribl_control_plane/models/outputxsiam.py,sha256=wkEIvRzWbql5FDP6lLwvJcB7pTYuYEmV9Z7TQH58l9w,20405
|
|
260
|
-
cribl_control_plane/models/packinfo.py,sha256=
|
|
261
|
-
cribl_control_plane/models/packinstallinfo.py,sha256=
|
|
260
|
+
cribl_control_plane/models/packinfo.py,sha256=8pP80pbzBJKjIViX_kcibH5EBWIrnyVvc9P53ga7Re8,1844
|
|
261
|
+
cribl_control_plane/models/packinstallinfo.py,sha256=RhIRUWRUYdk-FNEa2WyiPBs4RvdHsqovMH4dgLyd6Ds,1965
|
|
262
262
|
cribl_control_plane/models/packrequestbody_union.py,sha256=EGDpybuIL6SAXT_mHnaFCm6PtEH3dTdTu999-7rmgKA,3897
|
|
263
263
|
cribl_control_plane/models/packupgraderequest.py,sha256=T-d4cha7jj-ez0sJcqRPA5xGS2C9yuZ0KfGtPRulqj0,671
|
|
264
264
|
cribl_control_plane/models/pipeline.py,sha256=AaoC5euxac-fwul-LM1mNf03hCzrXmHQGZLMrUWuS4g,2130
|
|
@@ -323,6 +323,6 @@ cribl_control_plane/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8N
|
|
|
323
323
|
cribl_control_plane/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
324
324
|
cribl_control_plane/versions.py,sha256=4xdTYbM84Xyjr5qkixqNpgn2q6V8aXVYXkEPDU2Ele0,1156
|
|
325
325
|
cribl_control_plane/versions_configs.py,sha256=5CKcfN4SzuyFgggrx6O8H_h3GhNyKSbfdVhSkVGZKi4,7284
|
|
326
|
-
cribl_control_plane-0.
|
|
327
|
-
cribl_control_plane-0.
|
|
328
|
-
cribl_control_plane-0.
|
|
326
|
+
cribl_control_plane-0.1.0a2.dist-info/METADATA,sha256=wDwSr612meWY2tkmp_hNYvKLVoAYdV6twPi8LHuq3hU,38885
|
|
327
|
+
cribl_control_plane-0.1.0a2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
328
|
+
cribl_control_plane-0.1.0a2.dist-info/RECORD,,
|
|
File without changes
|