graphscope-flex 0.27.0__py2.py3-none-any.whl → 0.29.0a20250115__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. graphscope/flex/rest/__init__.py +59 -44
  2. graphscope/flex/rest/api/__init__.py +2 -4
  3. graphscope/flex/rest/api/alert_api.py +721 -394
  4. graphscope/flex/rest/api/{legacy_api.py → data_source_api.py} +260 -189
  5. graphscope/flex/rest/api/deployment_api.py +388 -138
  6. graphscope/flex/rest/api/graph_api.py +858 -260
  7. graphscope/flex/rest/api/job_api.py +286 -203
  8. graphscope/flex/rest/api/service_api.py +320 -39
  9. graphscope/flex/rest/api/{procedure_api.py → stored_procedure_api.py} +296 -237
  10. graphscope/flex/rest/api/utils_api.py +18 -13
  11. graphscope/flex/rest/api_client.py +60 -30
  12. graphscope/flex/rest/configuration.py +19 -5
  13. graphscope/flex/rest/exceptions.py +2 -2
  14. graphscope/flex/rest/models/__init__.py +57 -40
  15. graphscope/flex/rest/models/{vertex_type.py → base_edge_type.py} +25 -25
  16. graphscope/flex/rest/models/{edge_type_vertex_type_pair_relations_inner.py → base_edge_type_vertex_type_pair_relations_inner.py} +17 -17
  17. graphscope/flex/rest/models/{edge_type_vertex_type_pair_relations_inner_x_csr_params.py → base_edge_type_vertex_type_pair_relations_inner_x_csr_params.py} +11 -11
  18. graphscope/flex/rest/models/{model_property.py → base_property_meta.py} +28 -19
  19. graphscope/flex/rest/models/base_vertex_type.py +96 -0
  20. graphscope/flex/rest/models/{procedure_params_inner.py → base_vertex_type_x_csr_params.py} +15 -17
  21. graphscope/flex/rest/models/column_mapping.py +13 -13
  22. graphscope/flex/rest/models/{edge_mapping_source_vertex_mappings_inner_column.py → column_mapping_column.py} +12 -12
  23. graphscope/flex/rest/models/{schema_mapping_loading_config_data_source.py → create_alert_receiver_request.py} +29 -24
  24. graphscope/flex/rest/models/{alert_rule.py → create_alert_rule_request.py} +19 -25
  25. graphscope/flex/rest/models/create_dataloading_job_response.py +88 -0
  26. graphscope/flex/rest/models/create_edge_type.py +114 -0
  27. graphscope/flex/rest/models/{graph.py → create_graph_request.py} +27 -33
  28. graphscope/flex/rest/models/create_graph_response.py +88 -0
  29. graphscope/flex/rest/models/{model_schema.py → create_graph_schema_request.py} +25 -25
  30. graphscope/flex/rest/models/{groot_vertex_type.py → create_property_meta.py} +32 -25
  31. graphscope/flex/rest/models/{graph_stored_procedures.py → create_stored_proc_request.py} +26 -23
  32. graphscope/flex/rest/models/create_stored_proc_response.py +88 -0
  33. graphscope/flex/rest/models/create_vertex_type.py +108 -0
  34. graphscope/flex/rest/models/{groot_dataloading_job_config.py → dataloading_job_config.py} +45 -21
  35. graphscope/flex/rest/models/{groot_dataloading_job_config_edges_inner.py → dataloading_job_config_edges_inner.py} +12 -12
  36. graphscope/flex/rest/models/{schema_mapping_loading_config.py → dataloading_job_config_loading_config.py} +16 -22
  37. graphscope/flex/rest/models/{schema_mapping_loading_config_format.py → dataloading_job_config_loading_config_format.py} +12 -12
  38. graphscope/flex/rest/models/{groot_edge_type_relations_inner.py → dataloading_job_config_vertices_inner.py} +15 -17
  39. graphscope/flex/rest/models/dataloading_mr_job_config.py +88 -0
  40. graphscope/flex/rest/models/date_type.py +88 -0
  41. graphscope/flex/rest/models/edge_mapping.py +23 -25
  42. graphscope/flex/rest/models/edge_mapping_type_triplet.py +12 -12
  43. graphscope/flex/rest/models/error.py +90 -0
  44. graphscope/flex/rest/models/{alert_message.py → get_alert_message_response.py} +23 -32
  45. graphscope/flex/rest/models/{alert_receiver.py → get_alert_receiver_response.py} +22 -25
  46. graphscope/flex/rest/models/{connection_status.py → get_alert_rule_response.py} +37 -33
  47. graphscope/flex/rest/models/{edge_type.py → get_edge_type.py} +33 -27
  48. graphscope/flex/rest/models/get_graph_response.py +139 -0
  49. graphscope/flex/rest/models/{groot_schema.py → get_graph_schema_response.py} +32 -32
  50. graphscope/flex/rest/models/get_pod_log_response.py +88 -0
  51. graphscope/flex/rest/models/{edge_mapping_destination_vertex_mappings_inner.py → get_property_meta.py} +34 -19
  52. graphscope/flex/rest/models/get_resource_usage_response.py +105 -0
  53. graphscope/flex/rest/models/get_storage_usage_response.py +88 -0
  54. graphscope/flex/rest/models/{procedure.py → get_stored_proc_response.py} +37 -36
  55. graphscope/flex/rest/models/{groot_edge_type.py → get_vertex_type.py} +33 -31
  56. graphscope/flex/rest/models/gs_data_type.py +152 -0
  57. graphscope/flex/rest/models/job_status.py +14 -17
  58. graphscope/flex/rest/models/{connection.py → long_text.py} +20 -15
  59. graphscope/flex/rest/models/node_status.py +15 -15
  60. graphscope/flex/rest/models/parameter.py +96 -0
  61. graphscope/flex/rest/models/{deployment_info_graphs_info_value.py → pod_status.py} +34 -20
  62. graphscope/flex/rest/models/{property_property_type.py → primitive_type.py} +16 -19
  63. graphscope/flex/rest/models/resource_usage.py +92 -0
  64. graphscope/flex/rest/models/{deployment_info.py → running_deployment_info.py} +42 -45
  65. graphscope/flex/rest/models/running_deployment_status.py +124 -0
  66. graphscope/flex/rest/models/schema_mapping.py +18 -26
  67. graphscope/flex/rest/models/service_status.py +29 -13
  68. graphscope/flex/rest/models/service_status_sdk_endpoints.py +8 -8
  69. graphscope/flex/rest/models/start_service_request.py +11 -11
  70. graphscope/flex/rest/models/{groot_graph.py → stored_procedure_meta.py} +46 -36
  71. graphscope/flex/rest/models/string_type.py +92 -0
  72. graphscope/flex/rest/models/string_type_string.py +124 -0
  73. graphscope/flex/rest/models/temporal_type.py +92 -0
  74. graphscope/flex/rest/models/temporal_type_temporal.py +138 -0
  75. graphscope/flex/rest/models/time_stamp_type.py +88 -0
  76. graphscope/flex/rest/models/update_alert_message_status_request.py +97 -0
  77. graphscope/flex/rest/models/update_stored_proc_request.py +88 -0
  78. graphscope/flex/rest/models/upload_file_response.py +90 -0
  79. graphscope/flex/rest/models/vertex_mapping.py +13 -13
  80. graphscope/flex/rest/rest.py +4 -2
  81. graphscope_flex-0.29.0a20250115.dist-info/METADATA +19 -0
  82. graphscope_flex-0.29.0a20250115.dist-info/RECORD +86 -0
  83. {graphscope_flex-0.27.0.dist-info → graphscope_flex-0.29.0a20250115.dist-info}/WHEEL +1 -1
  84. graphscope/flex/rest/api/connection_api.py +0 -550
  85. graphscope/flex/rest/api/datasource_api.py +0 -2308
  86. graphscope/flex/rest/models/data_source.py +0 -106
  87. graphscope/flex/rest/models/deployment_status.py +0 -108
  88. graphscope/flex/rest/models/edge_data_source.py +0 -112
  89. graphscope/flex/rest/models/edge_mapping_source_vertex_mappings_inner.py +0 -92
  90. graphscope/flex/rest/models/groot_graph_gremlin_interface.py +0 -94
  91. graphscope/flex/rest/models/groot_property.py +0 -104
  92. graphscope/flex/rest/models/update_alert_messages_request.py +0 -110
  93. graphscope/flex/rest/models/vertex_data_source.py +0 -104
  94. graphscope_flex-0.27.0.dist-info/METADATA +0 -17
  95. graphscope_flex-0.27.0.dist-info/RECORD +0 -71
  96. {graphscope_flex-0.27.0.dist-info → graphscope_flex-0.29.0a20250115.dist-info}/top_level.txt +0 -0
@@ -1,110 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- GraphScope FLEX HTTP SERVICE API
5
-
6
- This is a specification for GraphScope FLEX HTTP service based on the OpenAPI 3.0 specification. You can find out more details about specification at [doc](https://swagger.io/specification/v3/). Some useful links: - [GraphScope Repository](https://github.com/alibaba/GraphScope) - [The Source API definition for GraphScope Interactive](https://github.com/GraphScope/portal/tree/main/httpservice)
7
-
8
- The version of the OpenAPI document: 0.9.1
9
- Contact: graphscope@alibaba-inc.com
10
- Generated by OpenAPI Generator (https://openapi-generator.tech)
11
-
12
- Do not edit the class manually.
13
- """ # noqa: E501
14
-
15
-
16
- from __future__ import annotations
17
- import pprint
18
- import re # noqa: F401
19
- import json
20
-
21
- from pydantic import BaseModel, Field, StrictBool, StrictStr, field_validator
22
- from typing import Any, ClassVar, Dict, List, Optional
23
- from graphscope.flex.rest.models.alert_message import AlertMessage
24
- from typing import Optional, Set
25
- from typing_extensions import Self
26
-
27
- class UpdateAlertMessagesRequest(BaseModel):
28
- """
29
- UpdateAlertMessagesRequest
30
- """ # noqa: E501
31
- messages: Optional[List[AlertMessage]] = None
32
- batch_status: Optional[StrictStr] = Field(default=None, description="Override the status of each message")
33
- batch_delete: Optional[StrictBool] = Field(default=False, description="True will delete all the messages in request body")
34
- __properties: ClassVar[List[str]] = ["messages", "batch_status", "batch_delete"]
35
-
36
- @field_validator('batch_status')
37
- def batch_status_validate_enum(cls, value):
38
- """Validates the enum"""
39
- if value is None:
40
- return value
41
-
42
- if value not in set(['solved', 'unsolved', 'dealing']):
43
- raise ValueError("must be one of enum values ('solved', 'unsolved', 'dealing')")
44
- return value
45
-
46
- model_config = {
47
- "populate_by_name": True,
48
- "validate_assignment": True,
49
- "protected_namespaces": (),
50
- }
51
-
52
-
53
- def to_str(self) -> str:
54
- """Returns the string representation of the model using alias"""
55
- return pprint.pformat(self.model_dump(by_alias=True))
56
-
57
- def to_json(self) -> str:
58
- """Returns the JSON representation of the model using alias"""
59
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
60
- return json.dumps(self.to_dict())
61
-
62
- @classmethod
63
- def from_json(cls, json_str: str) -> Optional[Self]:
64
- """Create an instance of UpdateAlertMessagesRequest from a JSON string"""
65
- return cls.from_dict(json.loads(json_str))
66
-
67
- def to_dict(self) -> Dict[str, Any]:
68
- """Return the dictionary representation of the model using alias.
69
-
70
- This has the following differences from calling pydantic's
71
- `self.model_dump(by_alias=True)`:
72
-
73
- * `None` is only added to the output dict for nullable fields that
74
- were set at model initialization. Other fields with value `None`
75
- are ignored.
76
- """
77
- excluded_fields: Set[str] = set([
78
- ])
79
-
80
- _dict = self.model_dump(
81
- by_alias=True,
82
- exclude=excluded_fields,
83
- exclude_none=True,
84
- )
85
- # override the default output from pydantic by calling `to_dict()` of each item in messages (list)
86
- _items = []
87
- if self.messages:
88
- for _item in self.messages:
89
- if _item:
90
- _items.append(_item.to_dict())
91
- _dict['messages'] = _items
92
- return _dict
93
-
94
- @classmethod
95
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
96
- """Create an instance of UpdateAlertMessagesRequest from a dict"""
97
- if obj is None:
98
- return None
99
-
100
- if not isinstance(obj, dict):
101
- return cls.model_validate(obj)
102
-
103
- _obj = cls.model_validate({
104
- "messages": [AlertMessage.from_dict(_item) for _item in obj["messages"]] if obj.get("messages") is not None else None,
105
- "batch_status": obj.get("batch_status"),
106
- "batch_delete": obj.get("batch_delete") if obj.get("batch_delete") is not None else False
107
- })
108
- return _obj
109
-
110
-
@@ -1,104 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- GraphScope FLEX HTTP SERVICE API
5
-
6
- This is a specification for GraphScope FLEX HTTP service based on the OpenAPI 3.0 specification. You can find out more details about specification at [doc](https://swagger.io/specification/v3/). Some useful links: - [GraphScope Repository](https://github.com/alibaba/GraphScope) - [The Source API definition for GraphScope Interactive](https://github.com/GraphScope/portal/tree/main/httpservice)
7
-
8
- The version of the OpenAPI document: 0.9.1
9
- Contact: graphscope@alibaba-inc.com
10
- Generated by OpenAPI Generator (https://openapi-generator.tech)
11
-
12
- Do not edit the class manually.
13
- """ # noqa: E501
14
-
15
-
16
- from __future__ import annotations
17
- import pprint
18
- import re # noqa: F401
19
- import json
20
-
21
- from pydantic import BaseModel, StrictStr, field_validator
22
- from typing import Any, ClassVar, Dict, List, Optional
23
- from typing import Optional, Set
24
- from typing_extensions import Self
25
-
26
- class VertexDataSource(BaseModel):
27
- """
28
- VertexDataSource
29
- """ # noqa: E501
30
- data_source: Optional[StrictStr] = None
31
- type_name: Optional[StrictStr] = None
32
- location: Optional[StrictStr] = None
33
- property_mapping: Optional[Dict[str, Any]] = None
34
- __properties: ClassVar[List[str]] = ["data_source", "type_name", "location", "property_mapping"]
35
-
36
- @field_validator('data_source')
37
- def data_source_validate_enum(cls, value):
38
- """Validates the enum"""
39
- if value is None:
40
- return value
41
-
42
- if value not in set(['ODPS', 'FILE']):
43
- raise ValueError("must be one of enum values ('ODPS', 'FILE')")
44
- return value
45
-
46
- model_config = {
47
- "populate_by_name": True,
48
- "validate_assignment": True,
49
- "protected_namespaces": (),
50
- }
51
-
52
-
53
- def to_str(self) -> str:
54
- """Returns the string representation of the model using alias"""
55
- return pprint.pformat(self.model_dump(by_alias=True))
56
-
57
- def to_json(self) -> str:
58
- """Returns the JSON representation of the model using alias"""
59
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
60
- return json.dumps(self.to_dict())
61
-
62
- @classmethod
63
- def from_json(cls, json_str: str) -> Optional[Self]:
64
- """Create an instance of VertexDataSource from a JSON string"""
65
- return cls.from_dict(json.loads(json_str))
66
-
67
- def to_dict(self) -> Dict[str, Any]:
68
- """Return the dictionary representation of the model using alias.
69
-
70
- This has the following differences from calling pydantic's
71
- `self.model_dump(by_alias=True)`:
72
-
73
- * `None` is only added to the output dict for nullable fields that
74
- were set at model initialization. Other fields with value `None`
75
- are ignored.
76
- """
77
- excluded_fields: Set[str] = set([
78
- ])
79
-
80
- _dict = self.model_dump(
81
- by_alias=True,
82
- exclude=excluded_fields,
83
- exclude_none=True,
84
- )
85
- return _dict
86
-
87
- @classmethod
88
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
89
- """Create an instance of VertexDataSource from a dict"""
90
- if obj is None:
91
- return None
92
-
93
- if not isinstance(obj, dict):
94
- return cls.model_validate(obj)
95
-
96
- _obj = cls.model_validate({
97
- "data_source": obj.get("data_source"),
98
- "type_name": obj.get("type_name"),
99
- "location": obj.get("location"),
100
- "property_mapping": obj.get("property_mapping")
101
- })
102
- return _obj
103
-
104
-
@@ -1,17 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: graphscope-flex
3
- Version: 0.27.0
4
- Summary: GraphScope FLEX HTTP SERVICE API
5
- Home-page:
6
- Author: GraphScope
7
- Author-email: graphscope@alibaba-inc.com
8
- License: Apache 2.0
9
- Keywords: OpenAPI,OpenAPI-Generator,GraphScope FLEX HTTP SERVICE API
10
- Description-Content-Type: text/markdown
11
- Requires-Dist: urllib3 (<2.1.0,>=1.25.3)
12
- Requires-Dist: python-dateutil
13
- Requires-Dist: pydantic (>=2)
14
- Requires-Dist: typing-extensions (>=4.7.1)
15
-
16
- This is a specification for GraphScope FLEX HTTP service based on the OpenAPI 3.0 specification. You can find out more details about specification at [doc](https://swagger.io/specification/v3/). Some useful links: - [GraphScope Repository](https://github.com/alibaba/GraphScope) - [The Source API definition for GraphScope Interactive](https://github.com/GraphScope/portal/tree/main/httpservice)
17
-
@@ -1,71 +0,0 @@
1
- graphscope/flex/rest/__init__.py,sha256=A2hxe6nTvJKevXZaT3N4fRgypbXwQMShLEHOAQQqJEY,5885
2
- graphscope/flex/rest/api_client.py,sha256=8ItRcCBG1xUkzdK0c5Hy_4uGM8rRtxlR-bxVDiWOffw,26182
3
- graphscope/flex/rest/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- graphscope/flex/rest/configuration.py,sha256=NYJHQn7kRTs_x2hdr69RT9GgxTvFFhczcXknszNuQyo,14825
5
- graphscope/flex/rest/exceptions.py,sha256=3AMAQUB6xuUMVo-ee183FrYqQf4LO5tRAZtDfvI9_S4,6327
6
- graphscope/flex/rest/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- graphscope/flex/rest/rest.py,sha256=3qRklg2tllMTkxxYC4pVevIYQOQuOavdZukfUx4CPEA,9593
8
- graphscope/flex/rest/api/__init__.py,sha256=Lg94RiSAFq4OnLdbObo60F4uAU-OYkLXxvlLQPViG3w,648
9
- graphscope/flex/rest/api/alert_api.py,sha256=gejLk8fBZU63vF7yh2kXbeQWb_OzB5YEgwPzQIswKgw,93049
10
- graphscope/flex/rest/api/connection_api.py,sha256=omDFWxPhmmu7H9SIxTcMebo8OgTd7xuDMvHwE6sLPtM,20514
11
- graphscope/flex/rest/api/datasource_api.py,sha256=waZ_0_VpeQGOhhovYFXMY4nSnDCpodKmCQ_s1I6Mxxs,87074
12
- graphscope/flex/rest/api/deployment_api.py,sha256=8fYegtZmY-xyAhAXoqafUG_HlHI0kdZwmaYP-H2QQg0,40340
13
- graphscope/flex/rest/api/graph_api.py,sha256=QxJ9e9dB6GfM4KhRScLsVzCFOOkmxDTP6Xz2EfXpz6o,82307
14
- graphscope/flex/rest/api/job_api.py,sha256=XJPKYZDbImGoMAPwydg-WZUxo69r-13NlDKZdbrjNdQ,49496
15
- graphscope/flex/rest/api/legacy_api.py,sha256=7HoECoAdHvpcYxP4MX-42Zg3Lo1S1LbZmOghzagkfMY,41960
16
- graphscope/flex/rest/api/procedure_api.py,sha256=P_gVjR_XfOMqVMjBo0AXn7gkXmpTL89NYeDUHnJ86Yg,52390
17
- graphscope/flex/rest/api/service_api.py,sha256=k-Y1zpTJ7xpg0JB6qc9NFgcBcdYTCTY_TTzkeLc-2-E,38898
18
- graphscope/flex/rest/api/utils_api.py,sha256=2BBgIvvSRP_uP2jw1ZN9T3arNFmTb73XPkHLThuq-OA,11453
19
- graphscope/flex/rest/models/__init__.py,sha256=yhOJpKFYVX928FpJNr-3a9hF023F9Gc4zdk5Cg9j4Ic,4687
20
- graphscope/flex/rest/models/alert_message.py,sha256=TP6sl9p_WDndSOwa1C7C1aCtjL3zSq14e89Rw_7DOBI,4623
21
- graphscope/flex/rest/models/alert_receiver.py,sha256=0WR1SnBipoPme9uojpHq_pmvN4SNDuUlRlP20erw5YM,3910
22
- graphscope/flex/rest/models/alert_rule.py,sha256=SEMItKm8W6GH1qpSzdUxoGnuTwchGeVUYHs58fLc5Ng,4102
23
- graphscope/flex/rest/models/column_mapping.py,sha256=XCV4j7o42LT_hKCGCAMjXOe3Qjg_UkAz97wzYhUVWHs,3448
24
- graphscope/flex/rest/models/connection.py,sha256=9nYLxLQ9EDaabCMeDfF1N1nyrAqOyHfduoURjAiz0Tc,2889
25
- graphscope/flex/rest/models/connection_status.py,sha256=Px5pFGb8Kj3pG3O9ha6FGyRnigRR57HKI1mJhk6lmRI,3618
26
- graphscope/flex/rest/models/data_source.py,sha256=k0v8ge5xApQTWHnE1_fkKbOboxMLZAjN-me3KL2BeA0,4067
27
- graphscope/flex/rest/models/deployment_info.py,sha256=Y-IZYtzoAiu9PmQa3iG5F9riJQDRAaMOz3KT15WPsVI,4767
28
- graphscope/flex/rest/models/deployment_info_graphs_info_value.py,sha256=ykn28i02JZKQcpuMqFeJVjqWj84R78WQmKlVCgUz4qg,3279
29
- graphscope/flex/rest/models/deployment_status.py,sha256=70j4AXJKq5RVeXIxaV0AYJb-gQNYDnpOkn87HAGrvhI,3990
30
- graphscope/flex/rest/models/edge_data_source.py,sha256=uqA9DoiwkEXH99cGDcjUwtkYOBBqFt0AUv7dQNGBdaA,4112
31
- graphscope/flex/rest/models/edge_mapping.py,sha256=5DcDUWkZhefbK5gvgAItf9eJLPoMzy9ygfWJ6V0TrWE,5614
32
- graphscope/flex/rest/models/edge_mapping_destination_vertex_mappings_inner.py,sha256=hHB26MotbYJkT03XEf0QSYQuhb0c62-HWgrGj4kF14U,3385
33
- graphscope/flex/rest/models/edge_mapping_source_vertex_mappings_inner.py,sha256=znEBS5XWREub3KbcW2yHs_tt_P7ZI4PMk8miii6dT8k,3365
34
- graphscope/flex/rest/models/edge_mapping_source_vertex_mappings_inner_column.py,sha256=kk2CwJsG3xvZduPB7JJ8eKUR81kHMbX8Q2SKE8davYA,3050
35
- graphscope/flex/rest/models/edge_mapping_type_triplet.py,sha256=sjM-6dYCe1KQ1SYHx9ct_tvtL4LPdxde8I3qi5LJuVs,3156
36
- graphscope/flex/rest/models/edge_type.py,sha256=-ic_HVZlt6E5Tv6Z0wYA54wzHLy7BM59ac8Ph04SThE,4365
37
- graphscope/flex/rest/models/edge_type_vertex_type_pair_relations_inner.py,sha256=X4ZJ47e3t1Bc0SdnXAi7IirIWwYfJ7JnyJZcKfhIsIw,4195
38
- graphscope/flex/rest/models/edge_type_vertex_type_pair_relations_inner_x_csr_params.py,sha256=-wrtxKnwetbMDMig3sI20aTKhpKy9nPEchhGG1iN704,3414
39
- graphscope/flex/rest/models/graph.py,sha256=VdR6rk5q84LkTZGKg8G_TtCGvwqmj90lGU0SXMdD604,4191
40
- graphscope/flex/rest/models/graph_stored_procedures.py,sha256=OM-__Zl96p6Gbt3CB2bZAGzzsTelSLzF15YmP_laQN8,3205
41
- graphscope/flex/rest/models/groot_dataloading_job_config.py,sha256=CMSJ38YgFOgxekNIbXTdyW5q_cydi1fo_GevCUUAeRk,4138
42
- graphscope/flex/rest/models/groot_dataloading_job_config_edges_inner.py,sha256=trfSXxSwodQ4-CMFBaGztyrxLDmgz5MUn4p424smDKs,3201
43
- graphscope/flex/rest/models/groot_edge_type.py,sha256=yAss1B4mSYIsMUVuSm9SyU_pobi-zNQtRcJSNZwebeI,4073
44
- graphscope/flex/rest/models/groot_edge_type_relations_inner.py,sha256=4lDS3FLRgLj3tXiuT1hYsk4y6_Ju5wmDiK7iLCZD2oY,3015
45
- graphscope/flex/rest/models/groot_graph.py,sha256=syVwfcUOhyJBpoD8jOYdTzOGCh5FkvQUBVz-oHXW6t8,4423
46
- graphscope/flex/rest/models/groot_graph_gremlin_interface.py,sha256=kTIMOtbUM586UmWeLek4hVz1EtZlV9JX2txkwvW5USc,3251
47
- graphscope/flex/rest/models/groot_property.py,sha256=7zBg8JTjzKlrv4y952sDzFiBzP0sMTYd0I4W-W2EHQo,3479
48
- graphscope/flex/rest/models/groot_schema.py,sha256=Q-hUAAAJfAErsBFblY72AsNbNMou4c_TzldNzs7uTN0,3865
49
- graphscope/flex/rest/models/groot_vertex_type.py,sha256=D-IYZV21S9sH7ZHLoPH3cZGCizrasb3CuKTyopjiJl4,3440
50
- graphscope/flex/rest/models/job_status.py,sha256=hRXSdY0EvvJUIRfW220qCKWPS-GS-SbbVZCZRC0QzA8,3833
51
- graphscope/flex/rest/models/model_property.py,sha256=QS4wk-DweEoowjbDyPTQXxe1U6WWbtgrGCAzEMJoO4c,3474
52
- graphscope/flex/rest/models/model_schema.py,sha256=-GfG6N8z211LUIIVlTN1pQRiL2dtVXOa-evNeq2CLsM,3904
53
- graphscope/flex/rest/models/node_status.py,sha256=uNk7wQClcAE3xCtMrNZ-IvKDbxZLCDWy8oHvuXdR8yk,3238
54
- graphscope/flex/rest/models/procedure.py,sha256=nUeLKRRyW_0Z6rfesJNtnyovXEU5MFqqvy7DZmgcnts,4822
55
- graphscope/flex/rest/models/procedure_params_inner.py,sha256=L_QXL40nUDBNFcyGkhflJtxaPGEMYeGwnQovce-WJXg,2947
56
- graphscope/flex/rest/models/property_property_type.py,sha256=Pq1qQMcFXBDDNl_4r12vcKz1SCrelTz-4PYgMzfCovM,3363
57
- graphscope/flex/rest/models/schema_mapping.py,sha256=8TvwbfuzfGn1fZTYZN3jegFRUsOuRxJXCSQoVxAlOcY,4601
58
- graphscope/flex/rest/models/schema_mapping_loading_config.py,sha256=xUVzb7ODIIIgnUodYo38N3j8H2523IQyVKfRyBAH3sM,4265
59
- graphscope/flex/rest/models/schema_mapping_loading_config_data_source.py,sha256=Kr08SoLWgu_RDssvPUUhmjV7UldOD4OZEjbbks1UzEc,3241
60
- graphscope/flex/rest/models/schema_mapping_loading_config_format.py,sha256=Pp8qNG_WqQHliJEgm9QyuiYbU3SnzaHHS0hS0yFnjhc,3016
61
- graphscope/flex/rest/models/service_status.py,sha256=1hIPcLj-eH9IOEw9F5mQTzUUYLU5jcOfl_IACwxVMEo,3516
62
- graphscope/flex/rest/models/service_status_sdk_endpoints.py,sha256=bAEZsu-jYqEshhT4A1kP-GMqi6SwiiqFv-hyWYIjn5o,3151
63
- graphscope/flex/rest/models/start_service_request.py,sha256=jNb47yq8ifldvofh5YeqrltANxTrb6h9eUVerv6wKn8,2885
64
- graphscope/flex/rest/models/update_alert_messages_request.py,sha256=VXhynsx6pW8Kp-b1od1RfYYYEb6ftuEsx9OMbk3UOM8,4187
65
- graphscope/flex/rest/models/vertex_data_source.py,sha256=aDM048Wf1_Jl8mEY2MQF9PCoJwOMFhjugZm9AA6hPFI,3542
66
- graphscope/flex/rest/models/vertex_mapping.py,sha256=nCWpWWd9INxYd8faSE6c5RT-tp_oOlV8tyBnhRkg2XI,3589
67
- graphscope/flex/rest/models/vertex_type.py,sha256=RSxNzpugAr-Ua_PMRiMjHbomieabICfOkVbCC7_byV8,3661
68
- graphscope_flex-0.27.0.dist-info/METADATA,sha256=tHPsjLhgeIQ-nj2YNm_Vn-W271DvvpdNGp1DoM2PKBU,855
69
- graphscope_flex-0.27.0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
70
- graphscope_flex-0.27.0.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
71
- graphscope_flex-0.27.0.dist-info/RECORD,,