graphscope-flex 0.27.0__5-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.
Files changed (77) hide show
  1. graphscope/flex/rest/__init__.py +97 -0
  2. graphscope/flex/rest/api/__init__.py +12 -0
  3. graphscope/flex/rest/api/alert_api.py +2780 -0
  4. graphscope/flex/rest/api/data_source_api.py +1173 -0
  5. graphscope/flex/rest/api/deployment_api.py +528 -0
  6. graphscope/flex/rest/api/graph_api.py +2803 -0
  7. graphscope/flex/rest/api/job_api.py +1356 -0
  8. graphscope/flex/rest/api/service_api.py +1311 -0
  9. graphscope/flex/rest/api/stored_procedure_api.py +1449 -0
  10. graphscope/flex/rest/api/utils_api.py +309 -0
  11. graphscope/flex/rest/api_client.py +759 -0
  12. graphscope/flex/rest/api_response.py +21 -0
  13. graphscope/flex/rest/configuration.py +437 -0
  14. graphscope/flex/rest/exceptions.py +200 -0
  15. graphscope/flex/rest/models/__init__.py +73 -0
  16. graphscope/flex/rest/models/base_edge_type.py +102 -0
  17. graphscope/flex/rest/models/base_edge_type_vertex_type_pair_relations_inner.py +105 -0
  18. graphscope/flex/rest/models/base_edge_type_vertex_type_pair_relations_inner_x_csr_params.py +98 -0
  19. graphscope/flex/rest/models/base_property_meta.py +105 -0
  20. graphscope/flex/rest/models/base_vertex_type.py +96 -0
  21. graphscope/flex/rest/models/base_vertex_type_x_csr_params.py +88 -0
  22. graphscope/flex/rest/models/column_mapping.py +94 -0
  23. graphscope/flex/rest/models/column_mapping_column.py +90 -0
  24. graphscope/flex/rest/models/create_alert_receiver_request.py +103 -0
  25. graphscope/flex/rest/models/create_alert_rule_request.py +112 -0
  26. graphscope/flex/rest/models/create_dataloading_job_response.py +88 -0
  27. graphscope/flex/rest/models/create_edge_type.py +114 -0
  28. graphscope/flex/rest/models/create_graph_request.py +106 -0
  29. graphscope/flex/rest/models/create_graph_response.py +88 -0
  30. graphscope/flex/rest/models/create_graph_schema_request.py +106 -0
  31. graphscope/flex/rest/models/create_property_meta.py +100 -0
  32. graphscope/flex/rest/models/create_stored_proc_request.py +101 -0
  33. graphscope/flex/rest/models/create_stored_proc_response.py +88 -0
  34. graphscope/flex/rest/models/create_vertex_type.py +108 -0
  35. graphscope/flex/rest/models/dataloading_job_config.py +136 -0
  36. graphscope/flex/rest/models/dataloading_job_config_edges_inner.py +92 -0
  37. graphscope/flex/rest/models/dataloading_job_config_loading_config.py +104 -0
  38. graphscope/flex/rest/models/dataloading_job_config_loading_config_format.py +90 -0
  39. graphscope/flex/rest/models/dataloading_job_config_vertices_inner.py +88 -0
  40. graphscope/flex/rest/models/edge_mapping.py +122 -0
  41. graphscope/flex/rest/models/edge_mapping_type_triplet.py +92 -0
  42. graphscope/flex/rest/models/error.py +90 -0
  43. graphscope/flex/rest/models/get_alert_message_response.py +123 -0
  44. graphscope/flex/rest/models/get_alert_receiver_response.py +107 -0
  45. graphscope/flex/rest/models/get_alert_rule_response.py +114 -0
  46. graphscope/flex/rest/models/get_edge_type.py +116 -0
  47. graphscope/flex/rest/models/get_graph_response.py +126 -0
  48. graphscope/flex/rest/models/get_graph_schema_response.py +106 -0
  49. graphscope/flex/rest/models/get_property_meta.py +102 -0
  50. graphscope/flex/rest/models/get_stored_proc_response.py +128 -0
  51. graphscope/flex/rest/models/get_vertex_type.py +110 -0
  52. graphscope/flex/rest/models/gs_data_type.py +138 -0
  53. graphscope/flex/rest/models/job_status.py +107 -0
  54. graphscope/flex/rest/models/long_text.py +93 -0
  55. graphscope/flex/rest/models/node_status.py +94 -0
  56. graphscope/flex/rest/models/parameter.py +94 -0
  57. graphscope/flex/rest/models/primitive_type.py +95 -0
  58. graphscope/flex/rest/models/running_deployment_info.py +128 -0
  59. graphscope/flex/rest/models/running_deployment_status.py +105 -0
  60. graphscope/flex/rest/models/running_deployment_status_nodes_inner.py +124 -0
  61. graphscope/flex/rest/models/schema_mapping.py +106 -0
  62. graphscope/flex/rest/models/service_status.py +105 -0
  63. graphscope/flex/rest/models/service_status_sdk_endpoints.py +94 -0
  64. graphscope/flex/rest/models/start_service_request.py +88 -0
  65. graphscope/flex/rest/models/stored_procedure_meta.py +124 -0
  66. graphscope/flex/rest/models/string_type.py +92 -0
  67. graphscope/flex/rest/models/string_type_string.py +124 -0
  68. graphscope/flex/rest/models/update_alert_message_status_request.py +97 -0
  69. graphscope/flex/rest/models/update_stored_proc_request.py +88 -0
  70. graphscope/flex/rest/models/upload_file_response.py +90 -0
  71. graphscope/flex/rest/models/vertex_mapping.py +100 -0
  72. graphscope/flex/rest/py.typed +0 -0
  73. graphscope/flex/rest/rest.py +256 -0
  74. graphscope_flex-0.27.0.dist-info/METADATA +17 -0
  75. graphscope_flex-0.27.0.dist-info/RECORD +77 -0
  76. graphscope_flex-0.27.0.dist-info/WHEEL +6 -0
  77. graphscope_flex-0.27.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,90 @@
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: 1.0.0
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
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class UploadFileResponse(BaseModel):
27
+ """
28
+ UploadFileResponse
29
+ """ # noqa: E501
30
+ file_path: StrictStr
31
+ metadata: Dict[str, Any]
32
+ __properties: ClassVar[List[str]] = ["file_path", "metadata"]
33
+
34
+ model_config = {
35
+ "populate_by_name": True,
36
+ "validate_assignment": True,
37
+ "protected_namespaces": (),
38
+ }
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of UploadFileResponse from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([
66
+ ])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
+ """Create an instance of UploadFileResponse from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return cls.model_validate(obj)
83
+
84
+ _obj = cls.model_validate({
85
+ "file_path": obj.get("file_path"),
86
+ "metadata": obj.get("metadata")
87
+ })
88
+ return _obj
89
+
90
+
@@ -0,0 +1,100 @@
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: 1.0.0
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
22
+ from typing import Any, ClassVar, Dict, List
23
+ from graphscope.flex.rest.models.column_mapping import ColumnMapping
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class VertexMapping(BaseModel):
28
+ """
29
+ VertexMapping
30
+ """ # noqa: E501
31
+ type_name: StrictStr
32
+ inputs: List[StrictStr]
33
+ column_mappings: List[ColumnMapping]
34
+ __properties: ClassVar[List[str]] = ["type_name", "inputs", "column_mappings"]
35
+
36
+ model_config = {
37
+ "populate_by_name": True,
38
+ "validate_assignment": True,
39
+ "protected_namespaces": (),
40
+ }
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of VertexMapping from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # override the default output from pydantic by calling `to_dict()` of each item in column_mappings (list)
76
+ _items = []
77
+ if self.column_mappings:
78
+ for _item in self.column_mappings:
79
+ if _item:
80
+ _items.append(_item.to_dict())
81
+ _dict['column_mappings'] = _items
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of VertexMapping from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate({
94
+ "type_name": obj.get("type_name"),
95
+ "inputs": obj.get("inputs"),
96
+ "column_mappings": [ColumnMapping.from_dict(_item) for _item in obj["column_mappings"]] if obj.get("column_mappings") is not None else None
97
+ })
98
+ return _obj
99
+
100
+
File without changes
@@ -0,0 +1,256 @@
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: 1.0.0
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
+ import io
17
+ import json
18
+ import re
19
+ import ssl
20
+
21
+ import urllib3
22
+
23
+ from graphscope.flex.rest.exceptions import ApiException, ApiValueError
24
+
25
+ SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
26
+ RESTResponseType = urllib3.HTTPResponse
27
+
28
+
29
+ def is_socks_proxy_url(url):
30
+ if url is None:
31
+ return False
32
+ split_section = url.split("://")
33
+ if len(split_section) < 2:
34
+ return False
35
+ else:
36
+ return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
37
+
38
+
39
+ class RESTResponse(io.IOBase):
40
+
41
+ def __init__(self, resp) -> None:
42
+ self.response = resp
43
+ self.status = resp.status
44
+ self.reason = resp.reason
45
+ self.data = None
46
+
47
+ def read(self):
48
+ if self.data is None:
49
+ self.data = self.response.data
50
+ return self.data
51
+
52
+ def getheaders(self):
53
+ """Returns a dictionary of the response headers."""
54
+ return self.response.headers
55
+
56
+ def getheader(self, name, default=None):
57
+ """Returns a given response header."""
58
+ return self.response.headers.get(name, default)
59
+
60
+
61
+ class RESTClientObject:
62
+
63
+ def __init__(self, configuration) -> None:
64
+ # urllib3.PoolManager will pass all kw parameters to connectionpool
65
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
66
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
67
+ # Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
68
+
69
+ # cert_reqs
70
+ if configuration.verify_ssl:
71
+ cert_reqs = ssl.CERT_REQUIRED
72
+ else:
73
+ cert_reqs = ssl.CERT_NONE
74
+
75
+ pool_args = {
76
+ "cert_reqs": cert_reqs,
77
+ "ca_certs": configuration.ssl_ca_cert,
78
+ "cert_file": configuration.cert_file,
79
+ "key_file": configuration.key_file,
80
+ }
81
+ if configuration.assert_hostname is not None:
82
+ pool_args['assert_hostname'] = (
83
+ configuration.assert_hostname
84
+ )
85
+
86
+ if configuration.retries is not None:
87
+ pool_args['retries'] = configuration.retries
88
+
89
+ if configuration.tls_server_name:
90
+ pool_args['server_hostname'] = configuration.tls_server_name
91
+
92
+
93
+ if configuration.socket_options is not None:
94
+ pool_args['socket_options'] = configuration.socket_options
95
+
96
+ if configuration.connection_pool_maxsize is not None:
97
+ pool_args['maxsize'] = configuration.connection_pool_maxsize
98
+
99
+ # https pool manager
100
+ self.pool_manager: urllib3.PoolManager
101
+
102
+ if configuration.proxy:
103
+ if is_socks_proxy_url(configuration.proxy):
104
+ from urllib3.contrib.socks import SOCKSProxyManager
105
+ pool_args["proxy_url"] = configuration.proxy
106
+ pool_args["headers"] = configuration.proxy_headers
107
+ self.pool_manager = SOCKSProxyManager(**pool_args)
108
+ else:
109
+ pool_args["proxy_url"] = configuration.proxy
110
+ pool_args["proxy_headers"] = configuration.proxy_headers
111
+ self.pool_manager = urllib3.ProxyManager(**pool_args)
112
+ else:
113
+ self.pool_manager = urllib3.PoolManager(**pool_args)
114
+
115
+ def request(
116
+ self,
117
+ method,
118
+ url,
119
+ headers=None,
120
+ body=None,
121
+ post_params=None,
122
+ _request_timeout=None
123
+ ):
124
+ """Perform requests.
125
+
126
+ :param method: http request method
127
+ :param url: http request url
128
+ :param headers: http request headers
129
+ :param body: request json body, for `application/json`
130
+ :param post_params: request post parameters,
131
+ `application/x-www-form-urlencoded`
132
+ and `multipart/form-data`
133
+ :param _request_timeout: timeout setting for this request. If one
134
+ number provided, it will be total request
135
+ timeout. It can also be a pair (tuple) of
136
+ (connection, read) timeouts.
137
+ """
138
+ method = method.upper()
139
+ assert method in [
140
+ 'GET',
141
+ 'HEAD',
142
+ 'DELETE',
143
+ 'POST',
144
+ 'PUT',
145
+ 'PATCH',
146
+ 'OPTIONS'
147
+ ]
148
+
149
+ if post_params and body:
150
+ raise ApiValueError(
151
+ "body parameter cannot be used with post_params parameter."
152
+ )
153
+
154
+ post_params = post_params or {}
155
+ headers = headers or {}
156
+
157
+ timeout = None
158
+ if _request_timeout:
159
+ if isinstance(_request_timeout, (int, float)):
160
+ timeout = urllib3.Timeout(total=_request_timeout)
161
+ elif (
162
+ isinstance(_request_timeout, tuple)
163
+ and len(_request_timeout) == 2
164
+ ):
165
+ timeout = urllib3.Timeout(
166
+ connect=_request_timeout[0],
167
+ read=_request_timeout[1]
168
+ )
169
+
170
+ try:
171
+ # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
172
+ if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
173
+
174
+ # no content type provided or payload is json
175
+ content_type = headers.get('Content-Type')
176
+ if (
177
+ not content_type
178
+ or re.search('json', content_type, re.IGNORECASE)
179
+ ):
180
+ request_body = None
181
+ if body is not None:
182
+ request_body = json.dumps(body)
183
+ r = self.pool_manager.request(
184
+ method,
185
+ url,
186
+ body=request_body,
187
+ timeout=timeout,
188
+ headers=headers,
189
+ preload_content=False
190
+ )
191
+ elif content_type == 'application/x-www-form-urlencoded':
192
+ r = self.pool_manager.request(
193
+ method,
194
+ url,
195
+ fields=post_params,
196
+ encode_multipart=False,
197
+ timeout=timeout,
198
+ headers=headers,
199
+ preload_content=False
200
+ )
201
+ elif content_type == 'multipart/form-data':
202
+ # must del headers['Content-Type'], or the correct
203
+ # Content-Type which generated by urllib3 will be
204
+ # overwritten.
205
+ del headers['Content-Type']
206
+ r = self.pool_manager.request(
207
+ method,
208
+ url,
209
+ fields=post_params,
210
+ encode_multipart=True,
211
+ timeout=timeout,
212
+ headers=headers,
213
+ preload_content=False
214
+ )
215
+ # Pass a `string` parameter directly in the body to support
216
+ # other content types than JSON when `body` argument is
217
+ # provided in serialized form.
218
+ elif isinstance(body, str) or isinstance(body, bytes):
219
+ r = self.pool_manager.request(
220
+ method,
221
+ url,
222
+ body=body,
223
+ timeout=timeout,
224
+ headers=headers,
225
+ preload_content=False
226
+ )
227
+ elif headers['Content-Type'] == 'text/plain' and isinstance(body, bool):
228
+ request_body = "true" if body else "false"
229
+ r = self.pool_manager.request(
230
+ method,
231
+ url,
232
+ body=request_body,
233
+ preload_content=False,
234
+ timeout=timeout,
235
+ headers=headers)
236
+ else:
237
+ # Cannot generate the request from given parameters
238
+ msg = """Cannot prepare a request message for provided
239
+ arguments. Please check that your arguments match
240
+ declared content type."""
241
+ raise ApiException(status=0, reason=msg)
242
+ # For `GET`, `HEAD`
243
+ else:
244
+ r = self.pool_manager.request(
245
+ method,
246
+ url,
247
+ fields={},
248
+ timeout=timeout,
249
+ headers=headers,
250
+ preload_content=False
251
+ )
252
+ except urllib3.exceptions.SSLError as e:
253
+ msg = "\n".join([type(e).__name__, str(e)])
254
+ raise ApiException(status=0, reason=msg)
255
+
256
+ return RESTResponse(r)
@@ -0,0 +1,17 @@
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
+
@@ -0,0 +1,77 @@
1
+ graphscope/flex/rest/__init__.py,sha256=4feD7TP4JCJbrT4TBx1cAsGY88CX8j3tASWvSMt7lfg,6532
2
+ graphscope/flex/rest/api_client.py,sha256=tdpBLaT8Wbf04dnvQYCSzLCkDvdmc1zbY0JCnWBcHIQ,26182
3
+ graphscope/flex/rest/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ graphscope/flex/rest/configuration.py,sha256=zAYUqk1_WWevFAo2u8undnYu-aCCz0PLPQwM2i01xj8,14825
5
+ graphscope/flex/rest/exceptions.py,sha256=uijRJWtMLjOFOlONMT7vDkn0WsBM_Um8B1RFGi15Eqk,6327
6
+ graphscope/flex/rest/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ graphscope/flex/rest/rest.py,sha256=jeBUH2zaMh2CgVsaIRiJbBKwq6WL0wdpiBJQ6d9LS5I,9593
8
+ graphscope/flex/rest/api/__init__.py,sha256=1Pr4pEIgZpc8u3gBkpU586OKwiSD69eXm5t2DBbqLjE,538
9
+ graphscope/flex/rest/api/alert_api.py,sha256=iTAwnk5qwTX_V4QDjoA5vmKCXZroWmj1L1SklE2vXdg,106902
10
+ graphscope/flex/rest/api/data_source_api.py,sha256=ZUD5sGR6wAcvUGy4khSg3umqVmWikbW5bvGS5V0U2ak,43959
11
+ graphscope/flex/rest/api/deployment_api.py,sha256=wpWZod3gnOLLsutOV2tRu4EJyITsfsrts2UVEnBpOaE,20044
12
+ graphscope/flex/rest/api/graph_api.py,sha256=YoJBdE2Yh3l5m78huIrr4Iue1u3VYXiLxCod3BczG_w,105166
13
+ graphscope/flex/rest/api/job_api.py,sha256=CJHshdY-c-96R7vX8xpukXblhv-Sv8HbGxJHhCMwjHc,50764
14
+ graphscope/flex/rest/api/service_api.py,sha256=gNA5DGAOABezo5EGNcEH2nBNRQx-jsrm9PLWRkMPMmc,49144
15
+ graphscope/flex/rest/api/stored_procedure_api.py,sha256=MGcyRuoean3rQ4Cdair6XSYPV0VOASmAsshTsvd6eV0,55850
16
+ graphscope/flex/rest/api/utils_api.py,sha256=LsQT0xZww4Xi2fOnUnph2hKO1_vq5vE98KlBv2uBYwQ,11692
17
+ graphscope/flex/rest/models/__init__.py,sha256=KTDDXyioQ9Bj5TKKtFd3AHL66P0zXeZ4VKvNW-oLFM4,5444
18
+ graphscope/flex/rest/models/base_edge_type.py,sha256=KAILFagXqSt02T5fWjFQvh5wrUPnEOhoCNGzj4dxpAg,3899
19
+ graphscope/flex/rest/models/base_edge_type_vertex_type_pair_relations_inner.py,sha256=FFRWFSzoqOdbi_tQrP0Lx0HtAs2-84wgWtmRxPLf0fY,4125
20
+ graphscope/flex/rest/models/base_edge_type_vertex_type_pair_relations_inner_x_csr_params.py,sha256=BSgNxWdrdS1blxII5_fLgkmMDawaGEULf79W1ki5T3M,3426
21
+ graphscope/flex/rest/models/base_property_meta.py,sha256=9x74P01-eA1mKYGorDMjr4QPT9rHJMwGQqu6gTwibAY,3859
22
+ graphscope/flex/rest/models/base_vertex_type.py,sha256=8MJzJvOfXppr95PxgLXuriGlqqcbMJr9HXewVBzmpO4,3437
23
+ graphscope/flex/rest/models/base_vertex_type_x_csr_params.py,sha256=t9veyZmJ68juR0YPU_B6kUT9julMFGCDpEPDmrfB7wQ,2926
24
+ graphscope/flex/rest/models/column_mapping.py,sha256=6ECjpzoxwIbvD3CBdDQxUSOy6u4fqdXZnCnaLw3vQSw,3301
25
+ graphscope/flex/rest/models/column_mapping_column.py,sha256=rHHHfXR8jCC9WFyqWw18LvMmJ9k2SOJGwH6G-WlkYZ4,2958
26
+ graphscope/flex/rest/models/create_alert_receiver_request.py,sha256=gxN8qgwDSXtbVj6RtfJnGr_NUJcvCMlm2X00AxHBA70,3480
27
+ graphscope/flex/rest/models/create_alert_rule_request.py,sha256=u63mmcikxEAWVSQ4cbBfioygRCab54_dP2h7jas6zik,3931
28
+ graphscope/flex/rest/models/create_dataloading_job_response.py,sha256=8pX22Si5X2Qq35KAwKdQeFET-KWrrsjI17uZV2HmoiE,2878
29
+ graphscope/flex/rest/models/create_edge_type.py,sha256=MOhPoSOoHwmuWVprqxyRKf4U1iQnbTKscZ5pMvfI5EI,4612
30
+ graphscope/flex/rest/models/create_graph_request.py,sha256=ubt6njE_O8CMurDVJKNdPOBKpuGgpZ3fX6PnIw6JJbc,4151
31
+ graphscope/flex/rest/models/create_graph_response.py,sha256=7IbMjMEgbSNgKEOtVnasM_S7p9uZxHdTc4qtt4Ze-BE,2850
32
+ graphscope/flex/rest/models/create_graph_schema_request.py,sha256=2FfrrPPHS0mXeprmh1Z3G9zfwJ-SIHYps-hU8Ljda_o,3962
33
+ graphscope/flex/rest/models/create_property_meta.py,sha256=80NV8A7jLpbEvHcFZeCck93_c2REr27YrVvsJH9_bis,3643
34
+ graphscope/flex/rest/models/create_stored_proc_request.py,sha256=qEMAQeLPG0VChjjOV2d-v15aEjPKd_-RtPg9nptqHxI,3370
35
+ graphscope/flex/rest/models/create_stored_proc_response.py,sha256=pZxIzvw5XgKMtBGbsmoMBugBEX2xQqNhhsyiXd975m4,2914
36
+ graphscope/flex/rest/models/create_vertex_type.py,sha256=Fc8P6AiBEVC4AbXveD2WWjYjvY-TaTEC8F13YOH6gp4,4150
37
+ graphscope/flex/rest/models/dataloading_job_config.py,sha256=ekJASiHy1mg7eBwurKYnouTApm5sU2dQz2b1cjf76oY,5563
38
+ graphscope/flex/rest/models/dataloading_job_config_edges_inner.py,sha256=WmRdrIh-FsWNvqHsIQDAT8Wc4Lxwbp_m2u_xpafRk20,3181
39
+ graphscope/flex/rest/models/dataloading_job_config_loading_config.py,sha256=lslDvNzN1Uvrm6BkL8UBKq-md8O-bd4uRC5VAI60R3U,3793
40
+ graphscope/flex/rest/models/dataloading_job_config_loading_config_format.py,sha256=NhB7ofmHmKuUn8COn1LA91JYatfE-wE_wgISJ49V5kg,3044
41
+ graphscope/flex/rest/models/dataloading_job_config_vertices_inner.py,sha256=ZovUnekKd7_u-0OZviWkxL5AK9mQ2g65z9Qzgz8f_VM,2937
42
+ graphscope/flex/rest/models/edge_mapping.py,sha256=7fTI95CQiNrGTethZdIpE9SpaTC-hXL-pLZ31G80FI8,5196
43
+ graphscope/flex/rest/models/edge_mapping_type_triplet.py,sha256=LXkyd4j0-IVizwKddFRH4Chm0oW62n3Me-XCrVnYi8Q,3095
44
+ graphscope/flex/rest/models/error.py,sha256=O55OpEGtNUTJjZWWDwuAOa93LxMZ5I2fKkGtAz1-G0Q,2944
45
+ graphscope/flex/rest/models/get_alert_message_response.py,sha256=JMB4AaDLQERlZFveZ5h5oeGZ_RwMpvOTWoAKdvgdmuM,4326
46
+ graphscope/flex/rest/models/get_alert_receiver_response.py,sha256=vDgJIKtb3mMxrmLvgRnWSO-8HeaNCD-sk4VnfSoegHQ,3675
47
+ graphscope/flex/rest/models/get_alert_rule_response.py,sha256=xtDKtJp_Hi4vAHot9TIslaNvgyMMkLAiZhU2qKBHHXg,3980
48
+ graphscope/flex/rest/models/get_edge_type.py,sha256=drR6UCCn-x38qC4azJj5W84IqE4YgaJP518ZaNSoH9E,4693
49
+ graphscope/flex/rest/models/get_graph_response.py,sha256=D9GVMP67CPRvORRUZ_2UW4tsSH6Sbu6iK4_oOC1FbQU,4910
50
+ graphscope/flex/rest/models/get_graph_schema_response.py,sha256=TDBUXTNjB9DSagELjkx5OVIkyJAu7ToDbrsmUeDjjdE,3930
51
+ graphscope/flex/rest/models/get_property_meta.py,sha256=c7uF5i3-HfRfrXf_iDvucnRBdtm7cxG4qIu4sYTK1EM,3735
52
+ graphscope/flex/rest/models/get_stored_proc_response.py,sha256=7yUVdyCwR5dOlb73xEm0zNj2Ku5mg8-oYJAeAPkme5w,4674
53
+ graphscope/flex/rest/models/get_vertex_type.py,sha256=1ZWWQUi9jNAyUQ3nM-wrZVT_zhJoosYcE_Egyde7R0A,4214
54
+ graphscope/flex/rest/models/gs_data_type.py,sha256=Ub7Gjol9QkfMBTi5CO41JuGOWPjpZbIEUOQox_pjlAE,5565
55
+ graphscope/flex/rest/models/job_status.py,sha256=rCvPwMzBlTAOWLSEy2_1hZeBGA8InjU4t3UyN3k7y-M,3722
56
+ graphscope/flex/rest/models/long_text.py,sha256=HavB7lnHVBl4cmoewWfEG18pU-fFWBVboWs0Pa8KhJM,3049
57
+ graphscope/flex/rest/models/node_status.py,sha256=Q0AKffSSDEs5EP8SS2szkKFxf2IWvlbnI_7qxPCge9Q,3160
58
+ graphscope/flex/rest/models/parameter.py,sha256=FTdfZ3UypqDAVW36AZERENW3n9BE95sVhkigRii7gzQ,3136
59
+ graphscope/flex/rest/models/primitive_type.py,sha256=dToiwWWbQyGsYNT3_VoSAZEDrWl84aCkLdzs7Hewnvg,3334
60
+ graphscope/flex/rest/models/running_deployment_info.py,sha256=Uy7pOH2Z1gstzYdZpOa1-Xgl5-9MNXWY1x34N8EPKzc,4479
61
+ graphscope/flex/rest/models/running_deployment_status.py,sha256=tHNyOht64F-Mxv_OprJt_3u0iAO2_0By-UoDeh2sAmg,3788
62
+ graphscope/flex/rest/models/running_deployment_status_nodes_inner.py,sha256=_k1AbjCHGjxQ3DkQ6wAH4ez7eJ2v_VZaTnTY5TXD1-U,4999
63
+ graphscope/flex/rest/models/schema_mapping.py,sha256=tZWkkU35y-UMOGJzc7qxVjaBV1tcH10mbQmkg4Zs04E,3946
64
+ graphscope/flex/rest/models/service_status.py,sha256=SjIUbWpVR0_k6uiPIzkSW6Kq8XrTRzGLFet3RKRRuEo,3796
65
+ graphscope/flex/rest/models/service_status_sdk_endpoints.py,sha256=O5W8a7Foc3etrHv-WHQ2iIFAEVqJLce1D74wQ0r282E,3151
66
+ graphscope/flex/rest/models/start_service_request.py,sha256=fZ36mNFa75u_ZUZ5DuNltaWScqYcYtiAqDmzm0J1FvE,2877
67
+ graphscope/flex/rest/models/stored_procedure_meta.py,sha256=k-3s_WoNcbz7Zo3HwOV_3nOmMVPzuFS-o31pu1f8aVE,4479
68
+ graphscope/flex/rest/models/string_type.py,sha256=3Fpp5PRUzYUXHissCa13vqok_lfs04gvNvBx7lo0Xlk,3106
69
+ graphscope/flex/rest/models/string_type_string.py,sha256=SjCziWETwRz9tTUWw0pWf6X0cGHs66m65qaLgXtNOt0,4829
70
+ graphscope/flex/rest/models/update_alert_message_status_request.py,sha256=0mD2QWIXm7WllYHytsYNVY2cWRKlun_LfuVMqpIoMrg,3291
71
+ graphscope/flex/rest/models/update_stored_proc_request.py,sha256=jI6p-Bo9f6xlOHtechZEns1FkG608fetoGybieOBmmw,2878
72
+ graphscope/flex/rest/models/upload_file_response.py,sha256=gopVaKnZxGb1A-M7NpB2Ey3T1x7ljGT5Oj0V8wympu4,2936
73
+ graphscope/flex/rest/models/vertex_mapping.py,sha256=5jyb3rm7rjKMLjb3RTDPM9j7Rx5X3N1BERyaYKd7v58,3528
74
+ graphscope_flex-0.27.0.dist-info/METADATA,sha256=tHPsjLhgeIQ-nj2YNm_Vn-W271DvvpdNGp1DoM2PKBU,855
75
+ graphscope_flex-0.27.0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
76
+ graphscope_flex-0.27.0.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
77
+ graphscope_flex-0.27.0.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.36.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1 @@
1
+ graphscope