alibabacloud-polardb20170801 6.6.3__py3-none-any.whl → 6.6.5__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_applications_request.py +55 -1
- alibabacloud_polardb20170801/models/_describe_applications_response_body.py +81 -0
- alibabacloud_polardb20170801/models/_describe_slow_log_records_response_body.py +8 -0
- {alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/METADATA +1 -1
- {alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/RECORD +11 -11
- {alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/WHEEL +0 -0
- {alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.6.
|
|
1
|
+
__version__ = '6.6.5'
|
|
@@ -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,
|
|
@@ -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,
|
|
@@ -133,6 +133,7 @@ class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord(DaraModel):
|
|
|
133
133
|
dbnode_id: str = None,
|
|
134
134
|
execution_start_time: str = None,
|
|
135
135
|
host_address: str = None,
|
|
136
|
+
lock_time_ms: int = None,
|
|
136
137
|
lock_times: int = None,
|
|
137
138
|
parse_row_counts: int = None,
|
|
138
139
|
query_time_ms: int = None,
|
|
@@ -149,6 +150,7 @@ class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord(DaraModel):
|
|
|
149
150
|
self.execution_start_time = execution_start_time
|
|
150
151
|
# Client address connecting to the database.
|
|
151
152
|
self.host_address = host_address
|
|
153
|
+
self.lock_time_ms = lock_time_ms
|
|
152
154
|
# SQL lock duration in seconds.
|
|
153
155
|
self.lock_times = lock_times
|
|
154
156
|
# Number of rows parsed.
|
|
@@ -184,6 +186,9 @@ class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord(DaraModel):
|
|
|
184
186
|
if self.host_address is not None:
|
|
185
187
|
result['HostAddress'] = self.host_address
|
|
186
188
|
|
|
189
|
+
if self.lock_time_ms is not None:
|
|
190
|
+
result['LockTimeMS'] = self.lock_time_ms
|
|
191
|
+
|
|
187
192
|
if self.lock_times is not None:
|
|
188
193
|
result['LockTimes'] = self.lock_times
|
|
189
194
|
|
|
@@ -221,6 +226,9 @@ class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord(DaraModel):
|
|
|
221
226
|
if m.get('HostAddress') is not None:
|
|
222
227
|
self.host_address = m.get('HostAddress')
|
|
223
228
|
|
|
229
|
+
if m.get('LockTimeMS') is not None:
|
|
230
|
+
self.lock_time_ms = m.get('LockTimeMS')
|
|
231
|
+
|
|
224
232
|
if m.get('LockTimes') is not None:
|
|
225
233
|
self.lock_times = m.get('LockTimes')
|
|
226
234
|
|
{alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.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=Yh6k5OXLkFsxObl5jdfVn2lLYipJMEX8akDAfYIsIUw,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
|
|
@@ -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
|
|
@@ -529,7 +529,7 @@ alibabacloud_polardb20170801/models/_describe_schedule_tasks_response.py,sha256=
|
|
|
529
529
|
alibabacloud_polardb20170801/models/_describe_schedule_tasks_response_body.py,sha256=VtAUoLxQtm7rNA6ODA7XxBv3E9UJ1h3lWls8_V5M_RU,9394
|
|
530
530
|
alibabacloud_polardb20170801/models/_describe_slow_log_records_request.py,sha256=yrRRCwNs9xf5iccdxefmQyWWlWP3pV8Z9h4i5mYTugE,6045
|
|
531
531
|
alibabacloud_polardb20170801/models/_describe_slow_log_records_response.py,sha256=_Xgnv75VlyYaxu547UVXw6HCyVqHV7Gjz0rBk3YywzU,1502
|
|
532
|
-
alibabacloud_polardb20170801/models/_describe_slow_log_records_response_body.py,sha256=
|
|
532
|
+
alibabacloud_polardb20170801/models/_describe_slow_log_records_response_body.py,sha256=UlZj2DR0fv9ErVvUm0NmpuHkvYxyyzycqcQpzI8jiI8,8103
|
|
533
533
|
alibabacloud_polardb20170801/models/_describe_slow_logs_request.py,sha256=_l26Xz0mSe3E7SrTMAj_LwtiaEk3zdFU1wbSF6BS_Gc,4277
|
|
534
534
|
alibabacloud_polardb20170801/models/_describe_slow_logs_response.py,sha256=zY9Tn87qaa1n8NUa-xcS6zRXkcQE983KRsJ8G1RZdSs,1484
|
|
535
535
|
alibabacloud_polardb20170801/models/_describe_slow_logs_response_body.py,sha256=aspngxJttsHqQHO1ItVAt_UDu7XX2fnqsJmHw4I0UlI,10632
|
|
@@ -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.5.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
870
|
+
alibabacloud_polardb20170801-6.6.5.dist-info/METADATA,sha256=G3eSHemJLqufFq9A5bTE1hDJ3-5ZkN0SMLTBpLkbPBQ,2330
|
|
871
|
+
alibabacloud_polardb20170801-6.6.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
872
|
+
alibabacloud_polardb20170801-6.6.5.dist-info/top_level.txt,sha256=p7IsMztEzFGUKapMvBUvPuZ0usUOM4d9QfpzT_xtDG4,29
|
|
873
|
+
alibabacloud_polardb20170801-6.6.5.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_polardb20170801-6.6.3.dist-info → alibabacloud_polardb20170801-6.6.5.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|