graphscope-flex 0.29.0a20241105__py2.py3-none-any.whl → 0.29.0a20241107__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/service_status.py +8 -1
- {graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/METADATA +1 -1
- {graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/RECORD +5 -5
- {graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/WHEEL +0 -0
- {graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/top_level.txt +0 -0
@@ -31,8 +31,9 @@ class ServiceStatus(BaseModel):
|
|
31
31
|
graph_id: StrictStr
|
32
32
|
status: StrictStr
|
33
33
|
sdk_endpoints: Optional[ServiceStatusSdkEndpoints] = None
|
34
|
+
info: Optional[StrictStr] = None
|
34
35
|
start_time: Optional[StrictStr] = None
|
35
|
-
__properties: ClassVar[List[str]] = ["graph_id", "status", "sdk_endpoints", "start_time"]
|
36
|
+
__properties: ClassVar[List[str]] = ["graph_id", "status", "sdk_endpoints", "info", "start_time"]
|
36
37
|
|
37
38
|
@field_validator('status')
|
38
39
|
def status_validate_enum(cls, value):
|
@@ -83,6 +84,11 @@ class ServiceStatus(BaseModel):
|
|
83
84
|
# override the default output from pydantic by calling `to_dict()` of sdk_endpoints
|
84
85
|
if self.sdk_endpoints:
|
85
86
|
_dict['sdk_endpoints'] = self.sdk_endpoints.to_dict()
|
87
|
+
# set to None if info (nullable) is None
|
88
|
+
# and model_fields_set contains the field
|
89
|
+
if self.info is None and "info" in self.model_fields_set:
|
90
|
+
_dict['info'] = None
|
91
|
+
|
86
92
|
return _dict
|
87
93
|
|
88
94
|
@classmethod
|
@@ -98,6 +104,7 @@ class ServiceStatus(BaseModel):
|
|
98
104
|
"graph_id": obj.get("graph_id"),
|
99
105
|
"status": obj.get("status"),
|
100
106
|
"sdk_endpoints": ServiceStatusSdkEndpoints.from_dict(obj["sdk_endpoints"]) if obj.get("sdk_endpoints") is not None else None,
|
107
|
+
"info": obj.get("info"),
|
101
108
|
"start_time": obj.get("start_time")
|
102
109
|
})
|
103
110
|
return _obj
|
{graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/RECORD
RENAMED
@@ -67,7 +67,7 @@ graphscope/flex/rest/models/resource_usage.py,sha256=NSLJoQZqLsc_v51fdTqNHm9ha9D
|
|
67
67
|
graphscope/flex/rest/models/running_deployment_info.py,sha256=uuZrUZsiEqEMrrYn4DSLx3IYLVgWBz_ZV_nRT5Q2pdM,4332
|
68
68
|
graphscope/flex/rest/models/running_deployment_status.py,sha256=oSeuCNJs6gt7KqwoNS46PBD-tDZrJDJNGc1Yxri7SDI,4418
|
69
69
|
graphscope/flex/rest/models/schema_mapping.py,sha256=RCWJbEI2Xulj6L9g4vxtvYugYLpOIr9H55jduCGru30,3847
|
70
|
-
graphscope/flex/rest/models/service_status.py,sha256=
|
70
|
+
graphscope/flex/rest/models/service_status.py,sha256=II_OMZdrqWMeUTkM08FbNJq8C0u9SMGaYPQ--FZd6Kg,3888
|
71
71
|
graphscope/flex/rest/models/service_status_sdk_endpoints.py,sha256=_8Od6Ef5XUMt-5wXiHI4DquVfDJ2g6qr43ilHJ0dTXc,2962
|
72
72
|
graphscope/flex/rest/models/start_service_request.py,sha256=KEN52dtpVV55NLFYE2iA2G8WolUz1QYi9nw8HhPZQf4,2688
|
73
73
|
graphscope/flex/rest/models/stored_procedure_meta.py,sha256=3z7HRvf50IVG9y8dQLecTEpAlI2gw4_96EuOtSHDrV0,4430
|
@@ -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.0a20241107.dist-info/METADATA,sha256=CqLvnaZa5IZCNPLJGQz3dDhR2bvWsa_-TfV2l1eqctg,882
|
84
|
+
graphscope_flex-0.29.0a20241107.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
|
85
|
+
graphscope_flex-0.29.0a20241107.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
|
86
|
+
graphscope_flex-0.29.0a20241107.dist-info/RECORD,,
|
{graphscope_flex-0.29.0a20241105.dist-info → graphscope_flex-0.29.0a20241107.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|