graphscope-flex 0.29.0a20241130__py2.py3-none-any.whl → 0.29.0a20250112__py2.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.
- graphscope/flex/rest/models/parameter.py +6 -4
- {graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/METADATA +1 -1
- {graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/RECORD +5 -5
- {graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/WHEEL +0 -0
- {graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/top_level.txt +0 -0
@@ -18,8 +18,8 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, StrictStr
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from graphscope.flex.rest.models.gs_data_type import GSDataType
|
24
24
|
from typing import Optional, Set
|
25
25
|
from typing_extensions import Self
|
@@ -30,7 +30,8 @@ class Parameter(BaseModel):
|
|
30
30
|
""" # noqa: E501
|
31
31
|
name: StrictStr
|
32
32
|
type: GSDataType
|
33
|
-
|
33
|
+
allow_cast: Optional[StrictBool] = None
|
34
|
+
__properties: ClassVar[List[str]] = ["name", "type", "allow_cast"]
|
34
35
|
|
35
36
|
model_config = ConfigDict(
|
36
37
|
populate_by_name=True,
|
@@ -87,7 +88,8 @@ class Parameter(BaseModel):
|
|
87
88
|
|
88
89
|
_obj = cls.model_validate({
|
89
90
|
"name": obj.get("name"),
|
90
|
-
"type": GSDataType.from_dict(obj["type"]) if obj.get("type") is not None else None
|
91
|
+
"type": GSDataType.from_dict(obj["type"]) if obj.get("type") is not None else None,
|
92
|
+
"allow_cast": obj.get("allow_cast")
|
91
93
|
})
|
92
94
|
return _obj
|
93
95
|
|
{graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/RECORD
RENAMED
@@ -60,7 +60,7 @@ graphscope/flex/rest/models/gs_data_type.py,sha256=zJTN7jXXA2VuUJlgLoWdznVYpP1y4
|
|
60
60
|
graphscope/flex/rest/models/job_status.py,sha256=WpU_xVM1Z2hOPZWccCrlL_TOeS6fMSktpfPs-BfbdZ8,3533
|
61
61
|
graphscope/flex/rest/models/long_text.py,sha256=YRJfsN24WuZneJO_jTyrAN9ngg9cQVif-0geyKgctSU,2860
|
62
62
|
graphscope/flex/rest/models/node_status.py,sha256=dp6o_ipwJFQ-5NOY3VaI2AJaGfheDX-ToHe2OIF1m-Q,2971
|
63
|
-
graphscope/flex/rest/models/parameter.py,sha256=
|
63
|
+
graphscope/flex/rest/models/parameter.py,sha256=UGal3fQPHLgs3hGFmmPgC608zxyb4LzDeuWj-sPhDx8,3076
|
64
64
|
graphscope/flex/rest/models/pod_status.py,sha256=ZozN_gDRncNTfjeHkJvpw9aZqwoDkPCVYoOJrGRyQCA,3545
|
65
65
|
graphscope/flex/rest/models/primitive_type.py,sha256=lMYTvPdWdxPmMUHb0Ww58DTEuKjvoKjOqxwADxdovXs,3145
|
66
66
|
graphscope/flex/rest/models/resource_usage.py,sha256=NSLJoQZqLsc_v51fdTqNHm9ha9DPm-F05GCsen2-2WA,2775
|
@@ -80,7 +80,7 @@ graphscope/flex/rest/models/update_alert_message_status_request.py,sha256=sgQshr
|
|
80
80
|
graphscope/flex/rest/models/update_stored_proc_request.py,sha256=kugg4ir3lpWhu9lV2epP-qRujHNXRwklUP-GsqDnBsk,2689
|
81
81
|
graphscope/flex/rest/models/upload_file_response.py,sha256=-fMN6KfHporMNSSVIqbs0JvFofkDvcNIg9PXRFoGj8Y,2747
|
82
82
|
graphscope/flex/rest/models/vertex_mapping.py,sha256=v0ILNhsCqjdSoYGNP7-2XQkF0viSx1Mszd8RTWtearA,3414
|
83
|
-
graphscope_flex-0.29.
|
84
|
-
graphscope_flex-0.29.
|
85
|
-
graphscope_flex-0.29.
|
86
|
-
graphscope_flex-0.29.
|
83
|
+
graphscope_flex-0.29.0a20250112.dist-info/METADATA,sha256=hbDjk7wgh8j0W2mDdVtWI6xEMsIKk-GDbLx6zxfBWE4,882
|
84
|
+
graphscope_flex-0.29.0a20250112.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
|
85
|
+
graphscope_flex-0.29.0a20250112.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
|
86
|
+
graphscope_flex-0.29.0a20250112.dist-info/RECORD,,
|
{graphscope_flex-0.29.0a20241130.dist-info → graphscope_flex-0.29.0a20250112.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|