alibabacloud-polardb20170801 6.6.2__py3-none-any.whl → 6.6.4__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.
- alibabacloud_polardb20170801/__init__.py +1 -1
- alibabacloud_polardb20170801/client.py +4 -0
- alibabacloud_polardb20170801/models/__init__.py +6 -0
- alibabacloud_polardb20170801/models/_describe_aidbcluster_attribute_response_body.py +8 -0
- alibabacloud_polardb20170801/models/_describe_applications_request.py +55 -1
- alibabacloud_polardb20170801/models/_describe_applications_response_body.py +81 -0
- {alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/METADATA +1 -1
- {alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/RECORD +11 -11
- {alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/WHEEL +0 -0
- {alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.6.
|
|
1
|
+
__version__ = '6.6.4'
|
|
@@ -8827,6 +8827,8 @@ class Client(OpenApiClient):
|
|
|
8827
8827
|
query['PageSize'] = request.page_size
|
|
8828
8828
|
if not DaraCore.is_null(request.region_id):
|
|
8829
8829
|
query['RegionId'] = request.region_id
|
|
8830
|
+
if not DaraCore.is_null(request.tag):
|
|
8831
|
+
query['Tag'] = request.tag
|
|
8830
8832
|
req = open_api_util_models.OpenApiRequest(
|
|
8831
8833
|
query = Utils.query(query)
|
|
8832
8834
|
)
|
|
@@ -8865,6 +8867,8 @@ class Client(OpenApiClient):
|
|
|
8865
8867
|
query['PageSize'] = request.page_size
|
|
8866
8868
|
if not DaraCore.is_null(request.region_id):
|
|
8867
8869
|
query['RegionId'] = request.region_id
|
|
8870
|
+
if not DaraCore.is_null(request.tag):
|
|
8871
|
+
query['Tag'] = request.tag
|
|
8868
8872
|
req = open_api_util_models.OpenApiRequest(
|
|
8869
8873
|
query = Utils.query(query)
|
|
8870
8874
|
)
|
|
@@ -918,8 +918,11 @@ from ._describe_application_parameters_response_body import DescribeApplicationP
|
|
|
918
918
|
from ._describe_application_parameters_response_body import DescribeApplicationParametersResponseBodyParametersComponentParameters
|
|
919
919
|
from ._describe_application_parameters_response_body import DescribeApplicationParametersResponseBodyParameters
|
|
920
920
|
from ._describe_application_serverless_conf_response_body import DescribeApplicationServerlessConfResponseBodyServerlessConfItems
|
|
921
|
+
from ._describe_applications_request import DescribeApplicationsRequestTag
|
|
921
922
|
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItemsApplicationsEndpointsEndpoint
|
|
922
923
|
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItemsApplicationsEndpoints
|
|
924
|
+
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItemsApplicationsTagsTag
|
|
925
|
+
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItemsApplicationsTags
|
|
923
926
|
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItemsApplications
|
|
924
927
|
from ._describe_applications_response_body import DescribeApplicationsResponseBodyItems
|
|
925
928
|
from ._describe_auto_renew_attribute_response_body import DescribeAutoRenewAttributeResponseBodyItemsAutoRenewAttribute
|
|
@@ -2035,8 +2038,11 @@ __all__ = [
|
|
|
2035
2038
|
DescribeApplicationParametersResponseBodyParametersComponentParameters,
|
|
2036
2039
|
DescribeApplicationParametersResponseBodyParameters,
|
|
2037
2040
|
DescribeApplicationServerlessConfResponseBodyServerlessConfItems,
|
|
2041
|
+
DescribeApplicationsRequestTag,
|
|
2038
2042
|
DescribeApplicationsResponseBodyItemsApplicationsEndpointsEndpoint,
|
|
2039
2043
|
DescribeApplicationsResponseBodyItemsApplicationsEndpoints,
|
|
2044
|
+
DescribeApplicationsResponseBodyItemsApplicationsTagsTag,
|
|
2045
|
+
DescribeApplicationsResponseBodyItemsApplicationsTags,
|
|
2040
2046
|
DescribeApplicationsResponseBodyItemsApplications,
|
|
2041
2047
|
DescribeApplicationsResponseBodyItems,
|
|
2042
2048
|
DescribeAutoRenewAttributeResponseBodyItemsAutoRenewAttribute,
|
|
@@ -11,6 +11,7 @@ class DescribeAIDBClusterAttributeResponseBody(DaraModel):
|
|
|
11
11
|
def __init__(
|
|
12
12
|
self,
|
|
13
13
|
ai_node_type: str = None,
|
|
14
|
+
api_key: str = None,
|
|
14
15
|
creation_time: str = None,
|
|
15
16
|
dbcluster_description: str = None,
|
|
16
17
|
dbcluster_id: str = None,
|
|
@@ -41,6 +42,7 @@ class DescribeAIDBClusterAttributeResponseBody(DaraModel):
|
|
|
41
42
|
zone_ids: str = None,
|
|
42
43
|
):
|
|
43
44
|
self.ai_node_type = ai_node_type
|
|
45
|
+
self.api_key = api_key
|
|
44
46
|
self.creation_time = creation_time
|
|
45
47
|
self.dbcluster_description = dbcluster_description
|
|
46
48
|
self.dbcluster_id = dbcluster_id
|
|
@@ -93,6 +95,9 @@ class DescribeAIDBClusterAttributeResponseBody(DaraModel):
|
|
|
93
95
|
if self.ai_node_type is not None:
|
|
94
96
|
result['AiNodeType'] = self.ai_node_type
|
|
95
97
|
|
|
98
|
+
if self.api_key is not None:
|
|
99
|
+
result['ApiKey'] = self.api_key
|
|
100
|
+
|
|
96
101
|
if self.creation_time is not None:
|
|
97
102
|
result['CreationTime'] = self.creation_time
|
|
98
103
|
|
|
@@ -190,6 +195,9 @@ class DescribeAIDBClusterAttributeResponseBody(DaraModel):
|
|
|
190
195
|
if m.get('AiNodeType') is not None:
|
|
191
196
|
self.ai_node_type = m.get('AiNodeType')
|
|
192
197
|
|
|
198
|
+
if m.get('ApiKey') is not None:
|
|
199
|
+
self.api_key = m.get('ApiKey')
|
|
200
|
+
|
|
193
201
|
if m.get('CreationTime') is not None:
|
|
194
202
|
self.creation_time = m.get('CreationTime')
|
|
195
203
|
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
# This file is auto-generated, don't edit it. Thanks.
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import List
|
|
6
|
+
|
|
7
|
+
from alibabacloud_polardb20170801 import models as main_models
|
|
5
8
|
from darabonba.model import DaraModel
|
|
6
9
|
|
|
7
10
|
class DescribeApplicationsRequest(DaraModel):
|
|
@@ -13,6 +16,7 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
13
16
|
page_number: int = None,
|
|
14
17
|
page_size: int = None,
|
|
15
18
|
region_id: str = None,
|
|
19
|
+
tag: List[main_models.DescribeApplicationsRequestTag] = None,
|
|
16
20
|
):
|
|
17
21
|
self.application_ids = application_ids
|
|
18
22
|
self.application_types = application_types
|
|
@@ -21,9 +25,13 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
21
25
|
self.page_size = page_size
|
|
22
26
|
# This parameter is required.
|
|
23
27
|
self.region_id = region_id
|
|
28
|
+
self.tag = tag
|
|
24
29
|
|
|
25
30
|
def validate(self):
|
|
26
|
-
|
|
31
|
+
if self.tag:
|
|
32
|
+
for v1 in self.tag:
|
|
33
|
+
if v1:
|
|
34
|
+
v1.validate()
|
|
27
35
|
|
|
28
36
|
def to_map(self):
|
|
29
37
|
result = dict()
|
|
@@ -48,6 +56,11 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
48
56
|
if self.region_id is not None:
|
|
49
57
|
result['RegionId'] = self.region_id
|
|
50
58
|
|
|
59
|
+
result['Tag'] = []
|
|
60
|
+
if self.tag is not None:
|
|
61
|
+
for k1 in self.tag:
|
|
62
|
+
result['Tag'].append(k1.to_map() if k1 else None)
|
|
63
|
+
|
|
51
64
|
return result
|
|
52
65
|
|
|
53
66
|
def from_map(self, m: dict = None):
|
|
@@ -70,5 +83,46 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
70
83
|
if m.get('RegionId') is not None:
|
|
71
84
|
self.region_id = m.get('RegionId')
|
|
72
85
|
|
|
86
|
+
self.tag = []
|
|
87
|
+
if m.get('Tag') is not None:
|
|
88
|
+
for k1 in m.get('Tag'):
|
|
89
|
+
temp_model = main_models.DescribeApplicationsRequestTag()
|
|
90
|
+
self.tag.append(temp_model.from_map(k1))
|
|
91
|
+
|
|
92
|
+
return self
|
|
93
|
+
|
|
94
|
+
class DescribeApplicationsRequestTag(DaraModel):
|
|
95
|
+
def __init__(
|
|
96
|
+
self,
|
|
97
|
+
key: str = None,
|
|
98
|
+
value: str = None,
|
|
99
|
+
):
|
|
100
|
+
self.key = key
|
|
101
|
+
self.value = value
|
|
102
|
+
|
|
103
|
+
def validate(self):
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
def to_map(self):
|
|
107
|
+
result = dict()
|
|
108
|
+
_map = super().to_map()
|
|
109
|
+
if _map is not None:
|
|
110
|
+
result = _map
|
|
111
|
+
if self.key is not None:
|
|
112
|
+
result['Key'] = self.key
|
|
113
|
+
|
|
114
|
+
if self.value is not None:
|
|
115
|
+
result['Value'] = self.value
|
|
116
|
+
|
|
117
|
+
return result
|
|
118
|
+
|
|
119
|
+
def from_map(self, m: dict = None):
|
|
120
|
+
m = m or dict()
|
|
121
|
+
if m.get('Key') is not None:
|
|
122
|
+
self.key = m.get('Key')
|
|
123
|
+
|
|
124
|
+
if m.get('Value') is not None:
|
|
125
|
+
self.value = m.get('Value')
|
|
126
|
+
|
|
73
127
|
return self
|
|
74
128
|
|
|
@@ -119,6 +119,7 @@ class DescribeApplicationsResponseBodyItemsApplications(DaraModel):
|
|
|
119
119
|
polar_fsinstance_id: str = None,
|
|
120
120
|
region_id: str = None,
|
|
121
121
|
status: str = None,
|
|
122
|
+
tags: main_models.DescribeApplicationsResponseBodyItemsApplicationsTags = None,
|
|
122
123
|
zone_id: str = None,
|
|
123
124
|
):
|
|
124
125
|
self.application_id = application_id
|
|
@@ -134,11 +135,14 @@ class DescribeApplicationsResponseBodyItemsApplications(DaraModel):
|
|
|
134
135
|
self.polar_fsinstance_id = polar_fsinstance_id
|
|
135
136
|
self.region_id = region_id
|
|
136
137
|
self.status = status
|
|
138
|
+
self.tags = tags
|
|
137
139
|
self.zone_id = zone_id
|
|
138
140
|
|
|
139
141
|
def validate(self):
|
|
140
142
|
if self.endpoints:
|
|
141
143
|
self.endpoints.validate()
|
|
144
|
+
if self.tags:
|
|
145
|
+
self.tags.validate()
|
|
142
146
|
|
|
143
147
|
def to_map(self):
|
|
144
148
|
result = dict()
|
|
@@ -184,6 +188,9 @@ class DescribeApplicationsResponseBodyItemsApplications(DaraModel):
|
|
|
184
188
|
if self.status is not None:
|
|
185
189
|
result['Status'] = self.status
|
|
186
190
|
|
|
191
|
+
if self.tags is not None:
|
|
192
|
+
result['Tags'] = self.tags.to_map()
|
|
193
|
+
|
|
187
194
|
if self.zone_id is not None:
|
|
188
195
|
result['ZoneId'] = self.zone_id
|
|
189
196
|
|
|
@@ -231,11 +238,85 @@ class DescribeApplicationsResponseBodyItemsApplications(DaraModel):
|
|
|
231
238
|
if m.get('Status') is not None:
|
|
232
239
|
self.status = m.get('Status')
|
|
233
240
|
|
|
241
|
+
if m.get('Tags') is not None:
|
|
242
|
+
temp_model = main_models.DescribeApplicationsResponseBodyItemsApplicationsTags()
|
|
243
|
+
self.tags = temp_model.from_map(m.get('Tags'))
|
|
244
|
+
|
|
234
245
|
if m.get('ZoneId') is not None:
|
|
235
246
|
self.zone_id = m.get('ZoneId')
|
|
236
247
|
|
|
237
248
|
return self
|
|
238
249
|
|
|
250
|
+
class DescribeApplicationsResponseBodyItemsApplicationsTags(DaraModel):
|
|
251
|
+
def __init__(
|
|
252
|
+
self,
|
|
253
|
+
tag: List[main_models.DescribeApplicationsResponseBodyItemsApplicationsTagsTag] = None,
|
|
254
|
+
):
|
|
255
|
+
self.tag = tag
|
|
256
|
+
|
|
257
|
+
def validate(self):
|
|
258
|
+
if self.tag:
|
|
259
|
+
for v1 in self.tag:
|
|
260
|
+
if v1:
|
|
261
|
+
v1.validate()
|
|
262
|
+
|
|
263
|
+
def to_map(self):
|
|
264
|
+
result = dict()
|
|
265
|
+
_map = super().to_map()
|
|
266
|
+
if _map is not None:
|
|
267
|
+
result = _map
|
|
268
|
+
result['Tag'] = []
|
|
269
|
+
if self.tag is not None:
|
|
270
|
+
for k1 in self.tag:
|
|
271
|
+
result['Tag'].append(k1.to_map() if k1 else None)
|
|
272
|
+
|
|
273
|
+
return result
|
|
274
|
+
|
|
275
|
+
def from_map(self, m: dict = None):
|
|
276
|
+
m = m or dict()
|
|
277
|
+
self.tag = []
|
|
278
|
+
if m.get('Tag') is not None:
|
|
279
|
+
for k1 in m.get('Tag'):
|
|
280
|
+
temp_model = main_models.DescribeApplicationsResponseBodyItemsApplicationsTagsTag()
|
|
281
|
+
self.tag.append(temp_model.from_map(k1))
|
|
282
|
+
|
|
283
|
+
return self
|
|
284
|
+
|
|
285
|
+
class DescribeApplicationsResponseBodyItemsApplicationsTagsTag(DaraModel):
|
|
286
|
+
def __init__(
|
|
287
|
+
self,
|
|
288
|
+
key: str = None,
|
|
289
|
+
value: str = None,
|
|
290
|
+
):
|
|
291
|
+
self.key = key
|
|
292
|
+
self.value = value
|
|
293
|
+
|
|
294
|
+
def validate(self):
|
|
295
|
+
pass
|
|
296
|
+
|
|
297
|
+
def to_map(self):
|
|
298
|
+
result = dict()
|
|
299
|
+
_map = super().to_map()
|
|
300
|
+
if _map is not None:
|
|
301
|
+
result = _map
|
|
302
|
+
if self.key is not None:
|
|
303
|
+
result['Key'] = self.key
|
|
304
|
+
|
|
305
|
+
if self.value is not None:
|
|
306
|
+
result['Value'] = self.value
|
|
307
|
+
|
|
308
|
+
return result
|
|
309
|
+
|
|
310
|
+
def from_map(self, m: dict = None):
|
|
311
|
+
m = m or dict()
|
|
312
|
+
if m.get('Key') is not None:
|
|
313
|
+
self.key = m.get('Key')
|
|
314
|
+
|
|
315
|
+
if m.get('Value') is not None:
|
|
316
|
+
self.value = m.get('Value')
|
|
317
|
+
|
|
318
|
+
return self
|
|
319
|
+
|
|
239
320
|
class DescribeApplicationsResponseBodyItemsApplicationsEndpoints(DaraModel):
|
|
240
321
|
def __init__(
|
|
241
322
|
self,
|
{alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
alibabacloud_polardb20170801/__init__.py,sha256=
|
|
2
|
-
alibabacloud_polardb20170801/client.py,sha256=
|
|
3
|
-
alibabacloud_polardb20170801/models/__init__.py,sha256=
|
|
1
|
+
alibabacloud_polardb20170801/__init__.py,sha256=_ZZgHweuqf3AzIjw5EoKaOoDkUOfrgdn17lMnlSILq4,21
|
|
2
|
+
alibabacloud_polardb20170801/client.py,sha256=pUZX5maKaC8wahLqaiWZfNf_gu2W_yFrHePz3bKPy8U,1228777
|
|
3
|
+
alibabacloud_polardb20170801/models/__init__.py,sha256=Tcmv2AQ4BTh2FZI4F5ES3J5zY49je44ww6WmtkEd1jY,146931
|
|
4
4
|
alibabacloud_polardb20170801/models/_abort_dbcluster_migration_request.py,sha256=TcuKBzRDatTAsq9WQNNhUgHCIPWQPKgzD69esNMW3vk,2618
|
|
5
5
|
alibabacloud_polardb20170801/models/_abort_dbcluster_migration_response.py,sha256=GITqFXJgUQXjK-NAOmUHTXhHIWpTdLHKyXEd2P7j3nc,1505
|
|
6
6
|
alibabacloud_polardb20170801/models/_abort_dbcluster_migration_response_body.py,sha256=o9z0oSYEwRUIO6RnLakYj7MNcAZkpvqA-qj9vtdiaSk,779
|
|
@@ -241,7 +241,7 @@ alibabacloud_polardb20170801/models/_describe_active_operation_tasks_response.py
|
|
|
241
241
|
alibabacloud_polardb20170801/models/_describe_active_operation_tasks_response_body.py,sha256=Kvubs4xd84OPeiHxreKFj6KRJLJQc17suhuiRZaGKiY,9929
|
|
242
242
|
alibabacloud_polardb20170801/models/_describe_aidbcluster_attribute_request.py,sha256=G4oB_fKnLJlgefpCGFTPOyj6EzaSTDngxufUP14skmQ,2021
|
|
243
243
|
alibabacloud_polardb20170801/models/_describe_aidbcluster_attribute_response.py,sha256=kzK2jWYeqY20bqxdndwnk7tz-sgv-l7pzZbXmgNI3C4,1520
|
|
244
|
-
alibabacloud_polardb20170801/models/_describe_aidbcluster_attribute_response_body.py,sha256=
|
|
244
|
+
alibabacloud_polardb20170801/models/_describe_aidbcluster_attribute_response_body.py,sha256=7PaBROa8Zq2_ezgLKtadtNis9wOvsu1W593EWxyHIaw,20083
|
|
245
245
|
alibabacloud_polardb20170801/models/_describe_aidbcluster_performance_request.py,sha256=mjQwyBKhM3MU4J4k6bYwQJrspNvqNEIzGEyjeEqx_l8,1870
|
|
246
246
|
alibabacloud_polardb20170801/models/_describe_aidbcluster_performance_response.py,sha256=6n3XK-IQSfM928paoP7PDrMKj9obBxeHxtS5HGJSCs8,1526
|
|
247
247
|
alibabacloud_polardb20170801/models/_describe_aidbcluster_performance_response_body.py,sha256=LS4ZnYG9mqZHisaCavhw2krnv81AWu82z8bIkqdmPDQ,6067
|
|
@@ -267,9 +267,9 @@ alibabacloud_polardb20170801/models/_describe_application_parameters_shrink_requ
|
|
|
267
267
|
alibabacloud_polardb20170801/models/_describe_application_serverless_conf_request.py,sha256=QiHn4I2lMEZXqvV8s4uWXRuwBQomAbcOoek5vk1eNFg,858
|
|
268
268
|
alibabacloud_polardb20170801/models/_describe_application_serverless_conf_response.py,sha256=hO_fFUCjOkCB5QbAVhvN-WwhKuhlpHmkEjZv9csb21o,1535
|
|
269
269
|
alibabacloud_polardb20170801/models/_describe_application_serverless_conf_response_body.py,sha256=fZVwTXo1EfkNl2vtZncO5YKzkvrLQbA0Rtmv_sDyhHs,3216
|
|
270
|
-
alibabacloud_polardb20170801/models/_describe_applications_request.py,sha256=
|
|
270
|
+
alibabacloud_polardb20170801/models/_describe_applications_request.py,sha256=JiQpKsaPnIpN3VpidYVLzFvfUeAMxUmOsJwyr6kPJcY,3628
|
|
271
271
|
alibabacloud_polardb20170801/models/_describe_applications_response.py,sha256=E7RMR9epaqNLoE-xpWUNHRCtst_IFKzHSM4JOghpkv0,1496
|
|
272
|
-
alibabacloud_polardb20170801/models/_describe_applications_response_body.py,sha256=
|
|
272
|
+
alibabacloud_polardb20170801/models/_describe_applications_response_body.py,sha256=OPfbUBViv07aE5yC-ad_xp9r-0FFbG-lvKIaUiU-me4,12000
|
|
273
273
|
alibabacloud_polardb20170801/models/_describe_auto_renew_attribute_request.py,sha256=pCvwKrd1AZRGohRoQ2q_ZWlIu4Y4bJ_6n4VC58Px9Vc,3926
|
|
274
274
|
alibabacloud_polardb20170801/models/_describe_auto_renew_attribute_response.py,sha256=Vps2yoGeaCW_vuoGFQEaeulGLLI59zdR2cJOslK-2po,1514
|
|
275
275
|
alibabacloud_polardb20170801/models/_describe_auto_renew_attribute_response_body.py,sha256=uwG3QzVUoMK-_1991AyBD3fBJG1YfYnU-qZesnWqMus,6480
|
|
@@ -866,8 +866,8 @@ alibabacloud_polardb20170801/models/_upgrade_dbcluster_version_response_body.py,
|
|
|
866
866
|
alibabacloud_polardb20170801/models/_upgrade_dbcluster_version_zonal_request.py,sha256=gUyAt9F-ddjv7sc8sHEwnD_pTdNFZlvElMVEm5k7Qlk,4959
|
|
867
867
|
alibabacloud_polardb20170801/models/_upgrade_dbcluster_version_zonal_response.py,sha256=QspQTKhuxhUMFmErp-3YEp2E6YlD2GHaUg5fBFcri0E,1520
|
|
868
868
|
alibabacloud_polardb20170801/models/_upgrade_dbcluster_version_zonal_response_body.py,sha256=XvDJIiNpZ4cClmcoHcVFu7-J9MDR5XYc7VKT4khC29c,784
|
|
869
|
-
alibabacloud_polardb20170801-6.6.
|
|
870
|
-
alibabacloud_polardb20170801-6.6.
|
|
871
|
-
alibabacloud_polardb20170801-6.6.
|
|
872
|
-
alibabacloud_polardb20170801-6.6.
|
|
873
|
-
alibabacloud_polardb20170801-6.6.
|
|
869
|
+
alibabacloud_polardb20170801-6.6.4.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
870
|
+
alibabacloud_polardb20170801-6.6.4.dist-info/METADATA,sha256=aknfGXyYRu3e2bGEBE-SDDFBPDJW81YMZhMrAKNDEDw,2330
|
|
871
|
+
alibabacloud_polardb20170801-6.6.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
872
|
+
alibabacloud_polardb20170801-6.6.4.dist-info/top_level.txt,sha256=p7IsMztEzFGUKapMvBUvPuZ0usUOM4d9QfpzT_xtDG4,29
|
|
873
|
+
alibabacloud_polardb20170801-6.6.4.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_polardb20170801-6.6.2.dist-info → alibabacloud_polardb20170801-6.6.4.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|