alibabacloud-polardb20170801 6.6.0__py3-none-any.whl → 6.6.2__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 +24 -0
- alibabacloud_polardb20170801/models/__init__.py +4 -0
- alibabacloud_polardb20170801/models/_create_application_request.py +94 -0
- alibabacloud_polardb20170801/models/_create_application_shrink_request.py +16 -0
- alibabacloud_polardb20170801/models/_describe_application_attribute_response_body.py +78 -0
- alibabacloud_polardb20170801/models/_describe_applications_request.py +8 -0
- alibabacloud_polardb20170801/models/_modify_dbcluster_and_nodes_parameters_request.py +8 -0
- alibabacloud_polardb20170801/models/_modify_dbcluster_parameters_request.py +8 -0
- {alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/METADATA +1 -1
- {alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/RECORD +14 -14
- {alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/WHEEL +0 -0
- {alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.6.
|
|
1
|
+
__version__ = '6.6.2'
|
|
@@ -2406,6 +2406,8 @@ class Client(OpenApiClient):
|
|
|
2406
2406
|
request.components_shrink = Utils.array_to_string_with_specified_style(tmp_req.components, 'Components', 'json')
|
|
2407
2407
|
if not DaraCore.is_null(tmp_req.endpoints):
|
|
2408
2408
|
request.endpoints_shrink = Utils.array_to_string_with_specified_style(tmp_req.endpoints, 'Endpoints', 'json')
|
|
2409
|
+
if not DaraCore.is_null(tmp_req.mem_application_spec):
|
|
2410
|
+
request.mem_application_spec_shrink = Utils.array_to_string_with_specified_style(tmp_req.mem_application_spec, 'MemApplicationSpec', 'json')
|
|
2409
2411
|
query = {}
|
|
2410
2412
|
if not DaraCore.is_null(request.application_type):
|
|
2411
2413
|
query['ApplicationType'] = request.application_type
|
|
@@ -2427,6 +2429,8 @@ class Client(OpenApiClient):
|
|
|
2427
2429
|
query['DryRun'] = request.dry_run
|
|
2428
2430
|
if not DaraCore.is_null(request.endpoints_shrink):
|
|
2429
2431
|
query['Endpoints'] = request.endpoints_shrink
|
|
2432
|
+
if not DaraCore.is_null(request.mem_application_spec_shrink):
|
|
2433
|
+
query['MemApplicationSpec'] = request.mem_application_spec_shrink
|
|
2430
2434
|
if not DaraCore.is_null(request.pay_type):
|
|
2431
2435
|
query['PayType'] = request.pay_type
|
|
2432
2436
|
if not DaraCore.is_null(request.period):
|
|
@@ -2439,6 +2443,8 @@ class Client(OpenApiClient):
|
|
|
2439
2443
|
query['RegionId'] = request.region_id
|
|
2440
2444
|
if not DaraCore.is_null(request.resource_group_id):
|
|
2441
2445
|
query['ResourceGroupId'] = request.resource_group_id
|
|
2446
|
+
if not DaraCore.is_null(request.security_group_id):
|
|
2447
|
+
query['SecurityGroupId'] = request.security_group_id
|
|
2442
2448
|
if not DaraCore.is_null(request.used_time):
|
|
2443
2449
|
query['UsedTime'] = request.used_time
|
|
2444
2450
|
if not DaraCore.is_null(request.v_switch_id):
|
|
@@ -2478,6 +2484,8 @@ class Client(OpenApiClient):
|
|
|
2478
2484
|
request.components_shrink = Utils.array_to_string_with_specified_style(tmp_req.components, 'Components', 'json')
|
|
2479
2485
|
if not DaraCore.is_null(tmp_req.endpoints):
|
|
2480
2486
|
request.endpoints_shrink = Utils.array_to_string_with_specified_style(tmp_req.endpoints, 'Endpoints', 'json')
|
|
2487
|
+
if not DaraCore.is_null(tmp_req.mem_application_spec):
|
|
2488
|
+
request.mem_application_spec_shrink = Utils.array_to_string_with_specified_style(tmp_req.mem_application_spec, 'MemApplicationSpec', 'json')
|
|
2481
2489
|
query = {}
|
|
2482
2490
|
if not DaraCore.is_null(request.application_type):
|
|
2483
2491
|
query['ApplicationType'] = request.application_type
|
|
@@ -2499,6 +2507,8 @@ class Client(OpenApiClient):
|
|
|
2499
2507
|
query['DryRun'] = request.dry_run
|
|
2500
2508
|
if not DaraCore.is_null(request.endpoints_shrink):
|
|
2501
2509
|
query['Endpoints'] = request.endpoints_shrink
|
|
2510
|
+
if not DaraCore.is_null(request.mem_application_spec_shrink):
|
|
2511
|
+
query['MemApplicationSpec'] = request.mem_application_spec_shrink
|
|
2502
2512
|
if not DaraCore.is_null(request.pay_type):
|
|
2503
2513
|
query['PayType'] = request.pay_type
|
|
2504
2514
|
if not DaraCore.is_null(request.period):
|
|
@@ -2511,6 +2521,8 @@ class Client(OpenApiClient):
|
|
|
2511
2521
|
query['RegionId'] = request.region_id
|
|
2512
2522
|
if not DaraCore.is_null(request.resource_group_id):
|
|
2513
2523
|
query['ResourceGroupId'] = request.resource_group_id
|
|
2524
|
+
if not DaraCore.is_null(request.security_group_id):
|
|
2525
|
+
query['SecurityGroupId'] = request.security_group_id
|
|
2514
2526
|
if not DaraCore.is_null(request.used_time):
|
|
2515
2527
|
query['UsedTime'] = request.used_time
|
|
2516
2528
|
if not DaraCore.is_null(request.v_switch_id):
|
|
@@ -8805,6 +8817,8 @@ class Client(OpenApiClient):
|
|
|
8805
8817
|
query = {}
|
|
8806
8818
|
if not DaraCore.is_null(request.application_ids):
|
|
8807
8819
|
query['ApplicationIds'] = request.application_ids
|
|
8820
|
+
if not DaraCore.is_null(request.application_types):
|
|
8821
|
+
query['ApplicationTypes'] = request.application_types
|
|
8808
8822
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
8809
8823
|
query['DBClusterId'] = request.dbcluster_id
|
|
8810
8824
|
if not DaraCore.is_null(request.page_number):
|
|
@@ -8841,6 +8855,8 @@ class Client(OpenApiClient):
|
|
|
8841
8855
|
query = {}
|
|
8842
8856
|
if not DaraCore.is_null(request.application_ids):
|
|
8843
8857
|
query['ApplicationIds'] = request.application_ids
|
|
8858
|
+
if not DaraCore.is_null(request.application_types):
|
|
8859
|
+
query['ApplicationTypes'] = request.application_types
|
|
8844
8860
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
8845
8861
|
query['DBClusterId'] = request.dbcluster_id
|
|
8846
8862
|
if not DaraCore.is_null(request.page_number):
|
|
@@ -21781,6 +21797,8 @@ class Client(OpenApiClient):
|
|
|
21781
21797
|
) -> main_models.ModifyDBClusterAndNodesParametersResponse:
|
|
21782
21798
|
request.validate()
|
|
21783
21799
|
query = {}
|
|
21800
|
+
if not DaraCore.is_null(request.clear_binlog):
|
|
21801
|
+
query['ClearBinlog'] = request.clear_binlog
|
|
21784
21802
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
21785
21803
|
query['DBClusterId'] = request.dbcluster_id
|
|
21786
21804
|
if not DaraCore.is_null(request.dbnode_ids):
|
|
@@ -21831,6 +21849,8 @@ class Client(OpenApiClient):
|
|
|
21831
21849
|
) -> main_models.ModifyDBClusterAndNodesParametersResponse:
|
|
21832
21850
|
request.validate()
|
|
21833
21851
|
query = {}
|
|
21852
|
+
if not DaraCore.is_null(request.clear_binlog):
|
|
21853
|
+
query['ClearBinlog'] = request.clear_binlog
|
|
21834
21854
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
21835
21855
|
query['DBClusterId'] = request.dbcluster_id
|
|
21836
21856
|
if not DaraCore.is_null(request.dbnode_ids):
|
|
@@ -22973,6 +22993,8 @@ class Client(OpenApiClient):
|
|
|
22973
22993
|
) -> main_models.ModifyDBClusterParametersResponse:
|
|
22974
22994
|
request.validate()
|
|
22975
22995
|
query = {}
|
|
22996
|
+
if not DaraCore.is_null(request.clear_binlog):
|
|
22997
|
+
query['ClearBinlog'] = request.clear_binlog
|
|
22976
22998
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
22977
22999
|
query['DBClusterId'] = request.dbcluster_id
|
|
22978
23000
|
if not DaraCore.is_null(request.from_time_service):
|
|
@@ -23019,6 +23041,8 @@ class Client(OpenApiClient):
|
|
|
23019
23041
|
) -> main_models.ModifyDBClusterParametersResponse:
|
|
23020
23042
|
request.validate()
|
|
23021
23043
|
query = {}
|
|
23044
|
+
if not DaraCore.is_null(request.clear_binlog):
|
|
23045
|
+
query['ClearBinlog'] = request.clear_binlog
|
|
23022
23046
|
if not DaraCore.is_null(request.dbcluster_id):
|
|
23023
23047
|
query['DBClusterId'] = request.dbcluster_id
|
|
23024
23048
|
if not DaraCore.is_null(request.from_time_service):
|
|
@@ -871,6 +871,7 @@ from ._add_polar_fs_quota_request import AddPolarFsQuotaRequestQuotas
|
|
|
871
871
|
from ._create_ainodes_request import CreateAINodesRequestDBNodes
|
|
872
872
|
from ._create_application_request import CreateApplicationRequestComponents
|
|
873
873
|
from ._create_application_request import CreateApplicationRequestEndpoints
|
|
874
|
+
from ._create_application_request import CreateApplicationRequestMemApplicationSpec
|
|
874
875
|
from ._create_application_response_body import CreateApplicationResponseBodyComponents
|
|
875
876
|
from ._create_dbcluster_request import CreateDBClusterRequestTag
|
|
876
877
|
from ._create_dbendpoint_address_request import CreateDBEndpointAddressRequestZoneInfo
|
|
@@ -907,6 +908,7 @@ from ._describe_application_attribute_response_body import DescribeApplicationAt
|
|
|
907
908
|
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodyComponentsTopology
|
|
908
909
|
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodyComponents
|
|
909
910
|
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodyEndpoints
|
|
911
|
+
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodyMemApplicationAttribute
|
|
910
912
|
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodySecurityGroups
|
|
911
913
|
from ._describe_application_attribute_response_body import DescribeApplicationAttributeResponseBodySecurityIPArrays
|
|
912
914
|
from ._describe_application_parameters_response_body import DescribeApplicationParametersResponseBodyParameterTemplatesComponentParameterTemplatesParameters
|
|
@@ -1986,6 +1988,7 @@ __all__ = [
|
|
|
1986
1988
|
CreateAINodesRequestDBNodes,
|
|
1987
1989
|
CreateApplicationRequestComponents,
|
|
1988
1990
|
CreateApplicationRequestEndpoints,
|
|
1991
|
+
CreateApplicationRequestMemApplicationSpec,
|
|
1989
1992
|
CreateApplicationResponseBodyComponents,
|
|
1990
1993
|
CreateDBClusterRequestTag,
|
|
1991
1994
|
CreateDBEndpointAddressRequestZoneInfo,
|
|
@@ -2022,6 +2025,7 @@ __all__ = [
|
|
|
2022
2025
|
DescribeApplicationAttributeResponseBodyComponentsTopology,
|
|
2023
2026
|
DescribeApplicationAttributeResponseBodyComponents,
|
|
2024
2027
|
DescribeApplicationAttributeResponseBodyEndpoints,
|
|
2028
|
+
DescribeApplicationAttributeResponseBodyMemApplicationAttribute,
|
|
2025
2029
|
DescribeApplicationAttributeResponseBodySecurityGroups,
|
|
2026
2030
|
DescribeApplicationAttributeResponseBodySecurityIPArrays,
|
|
2027
2031
|
DescribeApplicationParametersResponseBodyParameterTemplatesComponentParameterTemplatesParameters,
|
|
@@ -20,12 +20,14 @@ class CreateApplicationRequest(DaraModel):
|
|
|
20
20
|
description: str = None,
|
|
21
21
|
dry_run: bool = None,
|
|
22
22
|
endpoints: List[main_models.CreateApplicationRequestEndpoints] = None,
|
|
23
|
+
mem_application_spec: main_models.CreateApplicationRequestMemApplicationSpec = None,
|
|
23
24
|
pay_type: str = None,
|
|
24
25
|
period: str = None,
|
|
25
26
|
polar_fsinstance_id: str = None,
|
|
26
27
|
promotion_code: str = None,
|
|
27
28
|
region_id: str = None,
|
|
28
29
|
resource_group_id: str = None,
|
|
30
|
+
security_group_id: str = None,
|
|
29
31
|
used_time: str = None,
|
|
30
32
|
v_switch_id: str = None,
|
|
31
33
|
vpc_id: str = None,
|
|
@@ -43,12 +45,14 @@ class CreateApplicationRequest(DaraModel):
|
|
|
43
45
|
self.description = description
|
|
44
46
|
self.dry_run = dry_run
|
|
45
47
|
self.endpoints = endpoints
|
|
48
|
+
self.mem_application_spec = mem_application_spec
|
|
46
49
|
self.pay_type = pay_type
|
|
47
50
|
self.period = period
|
|
48
51
|
self.polar_fsinstance_id = polar_fsinstance_id
|
|
49
52
|
self.promotion_code = promotion_code
|
|
50
53
|
self.region_id = region_id
|
|
51
54
|
self.resource_group_id = resource_group_id
|
|
55
|
+
self.security_group_id = security_group_id
|
|
52
56
|
self.used_time = used_time
|
|
53
57
|
self.v_switch_id = v_switch_id
|
|
54
58
|
self.vpc_id = vpc_id
|
|
@@ -63,6 +67,8 @@ class CreateApplicationRequest(DaraModel):
|
|
|
63
67
|
for v1 in self.endpoints:
|
|
64
68
|
if v1:
|
|
65
69
|
v1.validate()
|
|
70
|
+
if self.mem_application_spec:
|
|
71
|
+
self.mem_application_spec.validate()
|
|
66
72
|
|
|
67
73
|
def to_map(self):
|
|
68
74
|
result = dict()
|
|
@@ -103,6 +109,9 @@ class CreateApplicationRequest(DaraModel):
|
|
|
103
109
|
for k1 in self.endpoints:
|
|
104
110
|
result['Endpoints'].append(k1.to_map() if k1 else None)
|
|
105
111
|
|
|
112
|
+
if self.mem_application_spec is not None:
|
|
113
|
+
result['MemApplicationSpec'] = self.mem_application_spec.to_map()
|
|
114
|
+
|
|
106
115
|
if self.pay_type is not None:
|
|
107
116
|
result['PayType'] = self.pay_type
|
|
108
117
|
|
|
@@ -121,6 +130,9 @@ class CreateApplicationRequest(DaraModel):
|
|
|
121
130
|
if self.resource_group_id is not None:
|
|
122
131
|
result['ResourceGroupId'] = self.resource_group_id
|
|
123
132
|
|
|
133
|
+
if self.security_group_id is not None:
|
|
134
|
+
result['SecurityGroupId'] = self.security_group_id
|
|
135
|
+
|
|
124
136
|
if self.used_time is not None:
|
|
125
137
|
result['UsedTime'] = self.used_time
|
|
126
138
|
|
|
@@ -173,6 +185,10 @@ class CreateApplicationRequest(DaraModel):
|
|
|
173
185
|
temp_model = main_models.CreateApplicationRequestEndpoints()
|
|
174
186
|
self.endpoints.append(temp_model.from_map(k1))
|
|
175
187
|
|
|
188
|
+
if m.get('MemApplicationSpec') is not None:
|
|
189
|
+
temp_model = main_models.CreateApplicationRequestMemApplicationSpec()
|
|
190
|
+
self.mem_application_spec = temp_model.from_map(m.get('MemApplicationSpec'))
|
|
191
|
+
|
|
176
192
|
if m.get('PayType') is not None:
|
|
177
193
|
self.pay_type = m.get('PayType')
|
|
178
194
|
|
|
@@ -191,6 +207,9 @@ class CreateApplicationRequest(DaraModel):
|
|
|
191
207
|
if m.get('ResourceGroupId') is not None:
|
|
192
208
|
self.resource_group_id = m.get('ResourceGroupId')
|
|
193
209
|
|
|
210
|
+
if m.get('SecurityGroupId') is not None:
|
|
211
|
+
self.security_group_id = m.get('SecurityGroupId')
|
|
212
|
+
|
|
194
213
|
if m.get('UsedTime') is not None:
|
|
195
214
|
self.used_time = m.get('UsedTime')
|
|
196
215
|
|
|
@@ -205,6 +224,81 @@ class CreateApplicationRequest(DaraModel):
|
|
|
205
224
|
|
|
206
225
|
return self
|
|
207
226
|
|
|
227
|
+
class CreateApplicationRequestMemApplicationSpec(DaraModel):
|
|
228
|
+
def __init__(
|
|
229
|
+
self,
|
|
230
|
+
db_name: str = None,
|
|
231
|
+
db_password: str = None,
|
|
232
|
+
db_user: str = None,
|
|
233
|
+
embedder_model: str = None,
|
|
234
|
+
llm_model: str = None,
|
|
235
|
+
project_name: str = None,
|
|
236
|
+
reranker_model: str = None,
|
|
237
|
+
):
|
|
238
|
+
self.db_name = db_name
|
|
239
|
+
self.db_password = db_password
|
|
240
|
+
self.db_user = db_user
|
|
241
|
+
self.embedder_model = embedder_model
|
|
242
|
+
self.llm_model = llm_model
|
|
243
|
+
self.project_name = project_name
|
|
244
|
+
self.reranker_model = reranker_model
|
|
245
|
+
|
|
246
|
+
def validate(self):
|
|
247
|
+
pass
|
|
248
|
+
|
|
249
|
+
def to_map(self):
|
|
250
|
+
result = dict()
|
|
251
|
+
_map = super().to_map()
|
|
252
|
+
if _map is not None:
|
|
253
|
+
result = _map
|
|
254
|
+
if self.db_name is not None:
|
|
255
|
+
result['DbName'] = self.db_name
|
|
256
|
+
|
|
257
|
+
if self.db_password is not None:
|
|
258
|
+
result['DbPassword'] = self.db_password
|
|
259
|
+
|
|
260
|
+
if self.db_user is not None:
|
|
261
|
+
result['DbUser'] = self.db_user
|
|
262
|
+
|
|
263
|
+
if self.embedder_model is not None:
|
|
264
|
+
result['EmbedderModel'] = self.embedder_model
|
|
265
|
+
|
|
266
|
+
if self.llm_model is not None:
|
|
267
|
+
result['LlmModel'] = self.llm_model
|
|
268
|
+
|
|
269
|
+
if self.project_name is not None:
|
|
270
|
+
result['ProjectName'] = self.project_name
|
|
271
|
+
|
|
272
|
+
if self.reranker_model is not None:
|
|
273
|
+
result['RerankerModel'] = self.reranker_model
|
|
274
|
+
|
|
275
|
+
return result
|
|
276
|
+
|
|
277
|
+
def from_map(self, m: dict = None):
|
|
278
|
+
m = m or dict()
|
|
279
|
+
if m.get('DbName') is not None:
|
|
280
|
+
self.db_name = m.get('DbName')
|
|
281
|
+
|
|
282
|
+
if m.get('DbPassword') is not None:
|
|
283
|
+
self.db_password = m.get('DbPassword')
|
|
284
|
+
|
|
285
|
+
if m.get('DbUser') is not None:
|
|
286
|
+
self.db_user = m.get('DbUser')
|
|
287
|
+
|
|
288
|
+
if m.get('EmbedderModel') is not None:
|
|
289
|
+
self.embedder_model = m.get('EmbedderModel')
|
|
290
|
+
|
|
291
|
+
if m.get('LlmModel') is not None:
|
|
292
|
+
self.llm_model = m.get('LlmModel')
|
|
293
|
+
|
|
294
|
+
if m.get('ProjectName') is not None:
|
|
295
|
+
self.project_name = m.get('ProjectName')
|
|
296
|
+
|
|
297
|
+
if m.get('RerankerModel') is not None:
|
|
298
|
+
self.reranker_model = m.get('RerankerModel')
|
|
299
|
+
|
|
300
|
+
return self
|
|
301
|
+
|
|
208
302
|
class CreateApplicationRequestEndpoints(DaraModel):
|
|
209
303
|
def __init__(
|
|
210
304
|
self,
|
|
@@ -17,12 +17,14 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
17
17
|
description: str = None,
|
|
18
18
|
dry_run: bool = None,
|
|
19
19
|
endpoints_shrink: str = None,
|
|
20
|
+
mem_application_spec_shrink: str = None,
|
|
20
21
|
pay_type: str = None,
|
|
21
22
|
period: str = None,
|
|
22
23
|
polar_fsinstance_id: str = None,
|
|
23
24
|
promotion_code: str = None,
|
|
24
25
|
region_id: str = None,
|
|
25
26
|
resource_group_id: str = None,
|
|
27
|
+
security_group_id: str = None,
|
|
26
28
|
used_time: str = None,
|
|
27
29
|
v_switch_id: str = None,
|
|
28
30
|
vpc_id: str = None,
|
|
@@ -40,12 +42,14 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
40
42
|
self.description = description
|
|
41
43
|
self.dry_run = dry_run
|
|
42
44
|
self.endpoints_shrink = endpoints_shrink
|
|
45
|
+
self.mem_application_spec_shrink = mem_application_spec_shrink
|
|
43
46
|
self.pay_type = pay_type
|
|
44
47
|
self.period = period
|
|
45
48
|
self.polar_fsinstance_id = polar_fsinstance_id
|
|
46
49
|
self.promotion_code = promotion_code
|
|
47
50
|
self.region_id = region_id
|
|
48
51
|
self.resource_group_id = resource_group_id
|
|
52
|
+
self.security_group_id = security_group_id
|
|
49
53
|
self.used_time = used_time
|
|
50
54
|
self.v_switch_id = v_switch_id
|
|
51
55
|
self.vpc_id = vpc_id
|
|
@@ -89,6 +93,9 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
89
93
|
if self.endpoints_shrink is not None:
|
|
90
94
|
result['Endpoints'] = self.endpoints_shrink
|
|
91
95
|
|
|
96
|
+
if self.mem_application_spec_shrink is not None:
|
|
97
|
+
result['MemApplicationSpec'] = self.mem_application_spec_shrink
|
|
98
|
+
|
|
92
99
|
if self.pay_type is not None:
|
|
93
100
|
result['PayType'] = self.pay_type
|
|
94
101
|
|
|
@@ -107,6 +114,9 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
107
114
|
if self.resource_group_id is not None:
|
|
108
115
|
result['ResourceGroupId'] = self.resource_group_id
|
|
109
116
|
|
|
117
|
+
if self.security_group_id is not None:
|
|
118
|
+
result['SecurityGroupId'] = self.security_group_id
|
|
119
|
+
|
|
110
120
|
if self.used_time is not None:
|
|
111
121
|
result['UsedTime'] = self.used_time
|
|
112
122
|
|
|
@@ -153,6 +163,9 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
153
163
|
if m.get('Endpoints') is not None:
|
|
154
164
|
self.endpoints_shrink = m.get('Endpoints')
|
|
155
165
|
|
|
166
|
+
if m.get('MemApplicationSpec') is not None:
|
|
167
|
+
self.mem_application_spec_shrink = m.get('MemApplicationSpec')
|
|
168
|
+
|
|
156
169
|
if m.get('PayType') is not None:
|
|
157
170
|
self.pay_type = m.get('PayType')
|
|
158
171
|
|
|
@@ -171,6 +184,9 @@ class CreateApplicationShrinkRequest(DaraModel):
|
|
|
171
184
|
if m.get('ResourceGroupId') is not None:
|
|
172
185
|
self.resource_group_id = m.get('ResourceGroupId')
|
|
173
186
|
|
|
187
|
+
if m.get('SecurityGroupId') is not None:
|
|
188
|
+
self.security_group_id = m.get('SecurityGroupId')
|
|
189
|
+
|
|
174
190
|
if m.get('UsedTime') is not None:
|
|
175
191
|
self.used_time = m.get('UsedTime')
|
|
176
192
|
|
|
@@ -23,6 +23,7 @@ class DescribeApplicationAttributeResponseBody(DaraModel):
|
|
|
23
23
|
lock_mode: str = None,
|
|
24
24
|
maintain_end_time: str = None,
|
|
25
25
|
maintain_start_time: str = None,
|
|
26
|
+
mem_application_attribute: main_models.DescribeApplicationAttributeResponseBodyMemApplicationAttribute = None,
|
|
26
27
|
pay_type: str = None,
|
|
27
28
|
polar_fsinstance_id: str = None,
|
|
28
29
|
region_id: str = None,
|
|
@@ -50,6 +51,7 @@ class DescribeApplicationAttributeResponseBody(DaraModel):
|
|
|
50
51
|
self.lock_mode = lock_mode
|
|
51
52
|
self.maintain_end_time = maintain_end_time
|
|
52
53
|
self.maintain_start_time = maintain_start_time
|
|
54
|
+
self.mem_application_attribute = mem_application_attribute
|
|
53
55
|
self.pay_type = pay_type
|
|
54
56
|
self.polar_fsinstance_id = polar_fsinstance_id
|
|
55
57
|
self.region_id = region_id
|
|
@@ -75,6 +77,8 @@ class DescribeApplicationAttributeResponseBody(DaraModel):
|
|
|
75
77
|
for v1 in self.endpoints:
|
|
76
78
|
if v1:
|
|
77
79
|
v1.validate()
|
|
80
|
+
if self.mem_application_attribute:
|
|
81
|
+
self.mem_application_attribute.validate()
|
|
78
82
|
if self.security_groups:
|
|
79
83
|
for v1 in self.security_groups:
|
|
80
84
|
if v1:
|
|
@@ -132,6 +136,9 @@ class DescribeApplicationAttributeResponseBody(DaraModel):
|
|
|
132
136
|
if self.maintain_start_time is not None:
|
|
133
137
|
result['MaintainStartTime'] = self.maintain_start_time
|
|
134
138
|
|
|
139
|
+
if self.mem_application_attribute is not None:
|
|
140
|
+
result['MemApplicationAttribute'] = self.mem_application_attribute.to_map()
|
|
141
|
+
|
|
135
142
|
if self.pay_type is not None:
|
|
136
143
|
result['PayType'] = self.pay_type
|
|
137
144
|
|
|
@@ -224,6 +231,10 @@ class DescribeApplicationAttributeResponseBody(DaraModel):
|
|
|
224
231
|
if m.get('MaintainStartTime') is not None:
|
|
225
232
|
self.maintain_start_time = m.get('MaintainStartTime')
|
|
226
233
|
|
|
234
|
+
if m.get('MemApplicationAttribute') is not None:
|
|
235
|
+
temp_model = main_models.DescribeApplicationAttributeResponseBodyMemApplicationAttribute()
|
|
236
|
+
self.mem_application_attribute = temp_model.from_map(m.get('MemApplicationAttribute'))
|
|
237
|
+
|
|
227
238
|
if m.get('PayType') is not None:
|
|
228
239
|
self.pay_type = m.get('PayType')
|
|
229
240
|
|
|
@@ -381,6 +392,73 @@ class DescribeApplicationAttributeResponseBodySecurityGroups(DaraModel):
|
|
|
381
392
|
|
|
382
393
|
return self
|
|
383
394
|
|
|
395
|
+
class DescribeApplicationAttributeResponseBodyMemApplicationAttribute(DaraModel):
|
|
396
|
+
def __init__(
|
|
397
|
+
self,
|
|
398
|
+
db_name: str = None,
|
|
399
|
+
embedder_model_name: str = None,
|
|
400
|
+
llm_model_name: str = None,
|
|
401
|
+
project_name: str = None,
|
|
402
|
+
reranker_model_name: str = None,
|
|
403
|
+
user_name: str = None,
|
|
404
|
+
):
|
|
405
|
+
self.db_name = db_name
|
|
406
|
+
self.embedder_model_name = embedder_model_name
|
|
407
|
+
self.llm_model_name = llm_model_name
|
|
408
|
+
self.project_name = project_name
|
|
409
|
+
self.reranker_model_name = reranker_model_name
|
|
410
|
+
self.user_name = user_name
|
|
411
|
+
|
|
412
|
+
def validate(self):
|
|
413
|
+
pass
|
|
414
|
+
|
|
415
|
+
def to_map(self):
|
|
416
|
+
result = dict()
|
|
417
|
+
_map = super().to_map()
|
|
418
|
+
if _map is not None:
|
|
419
|
+
result = _map
|
|
420
|
+
if self.db_name is not None:
|
|
421
|
+
result['DbName'] = self.db_name
|
|
422
|
+
|
|
423
|
+
if self.embedder_model_name is not None:
|
|
424
|
+
result['EmbedderModelName'] = self.embedder_model_name
|
|
425
|
+
|
|
426
|
+
if self.llm_model_name is not None:
|
|
427
|
+
result['LlmModelName'] = self.llm_model_name
|
|
428
|
+
|
|
429
|
+
if self.project_name is not None:
|
|
430
|
+
result['ProjectName'] = self.project_name
|
|
431
|
+
|
|
432
|
+
if self.reranker_model_name is not None:
|
|
433
|
+
result['RerankerModelName'] = self.reranker_model_name
|
|
434
|
+
|
|
435
|
+
if self.user_name is not None:
|
|
436
|
+
result['UserName'] = self.user_name
|
|
437
|
+
|
|
438
|
+
return result
|
|
439
|
+
|
|
440
|
+
def from_map(self, m: dict = None):
|
|
441
|
+
m = m or dict()
|
|
442
|
+
if m.get('DbName') is not None:
|
|
443
|
+
self.db_name = m.get('DbName')
|
|
444
|
+
|
|
445
|
+
if m.get('EmbedderModelName') is not None:
|
|
446
|
+
self.embedder_model_name = m.get('EmbedderModelName')
|
|
447
|
+
|
|
448
|
+
if m.get('LlmModelName') is not None:
|
|
449
|
+
self.llm_model_name = m.get('LlmModelName')
|
|
450
|
+
|
|
451
|
+
if m.get('ProjectName') is not None:
|
|
452
|
+
self.project_name = m.get('ProjectName')
|
|
453
|
+
|
|
454
|
+
if m.get('RerankerModelName') is not None:
|
|
455
|
+
self.reranker_model_name = m.get('RerankerModelName')
|
|
456
|
+
|
|
457
|
+
if m.get('UserName') is not None:
|
|
458
|
+
self.user_name = m.get('UserName')
|
|
459
|
+
|
|
460
|
+
return self
|
|
461
|
+
|
|
384
462
|
class DescribeApplicationAttributeResponseBodyEndpoints(DaraModel):
|
|
385
463
|
def __init__(
|
|
386
464
|
self,
|
|
@@ -8,12 +8,14 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
8
8
|
def __init__(
|
|
9
9
|
self,
|
|
10
10
|
application_ids: str = None,
|
|
11
|
+
application_types: str = None,
|
|
11
12
|
dbcluster_id: str = None,
|
|
12
13
|
page_number: int = None,
|
|
13
14
|
page_size: int = None,
|
|
14
15
|
region_id: str = None,
|
|
15
16
|
):
|
|
16
17
|
self.application_ids = application_ids
|
|
18
|
+
self.application_types = application_types
|
|
17
19
|
self.dbcluster_id = dbcluster_id
|
|
18
20
|
self.page_number = page_number
|
|
19
21
|
self.page_size = page_size
|
|
@@ -31,6 +33,9 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
31
33
|
if self.application_ids is not None:
|
|
32
34
|
result['ApplicationIds'] = self.application_ids
|
|
33
35
|
|
|
36
|
+
if self.application_types is not None:
|
|
37
|
+
result['ApplicationTypes'] = self.application_types
|
|
38
|
+
|
|
34
39
|
if self.dbcluster_id is not None:
|
|
35
40
|
result['DBClusterId'] = self.dbcluster_id
|
|
36
41
|
|
|
@@ -50,6 +55,9 @@ class DescribeApplicationsRequest(DaraModel):
|
|
|
50
55
|
if m.get('ApplicationIds') is not None:
|
|
51
56
|
self.application_ids = m.get('ApplicationIds')
|
|
52
57
|
|
|
58
|
+
if m.get('ApplicationTypes') is not None:
|
|
59
|
+
self.application_types = m.get('ApplicationTypes')
|
|
60
|
+
|
|
53
61
|
if m.get('DBClusterId') is not None:
|
|
54
62
|
self.dbcluster_id = m.get('DBClusterId')
|
|
55
63
|
|
|
@@ -7,6 +7,7 @@ from darabonba.model import DaraModel
|
|
|
7
7
|
class ModifyDBClusterAndNodesParametersRequest(DaraModel):
|
|
8
8
|
def __init__(
|
|
9
9
|
self,
|
|
10
|
+
clear_binlog: bool = None,
|
|
10
11
|
dbcluster_id: str = None,
|
|
11
12
|
dbnode_ids: str = None,
|
|
12
13
|
from_time_service: bool = None,
|
|
@@ -20,6 +21,7 @@ class ModifyDBClusterAndNodesParametersRequest(DaraModel):
|
|
|
20
21
|
resource_owner_id: int = None,
|
|
21
22
|
standby_cluster_id_list_need_to_sync: str = None,
|
|
22
23
|
):
|
|
24
|
+
self.clear_binlog = clear_binlog
|
|
23
25
|
# The ID of the cluster.
|
|
24
26
|
#
|
|
25
27
|
# This parameter is required.
|
|
@@ -68,6 +70,9 @@ class ModifyDBClusterAndNodesParametersRequest(DaraModel):
|
|
|
68
70
|
_map = super().to_map()
|
|
69
71
|
if _map is not None:
|
|
70
72
|
result = _map
|
|
73
|
+
if self.clear_binlog is not None:
|
|
74
|
+
result['ClearBinlog'] = self.clear_binlog
|
|
75
|
+
|
|
71
76
|
if self.dbcluster_id is not None:
|
|
72
77
|
result['DBClusterId'] = self.dbcluster_id
|
|
73
78
|
|
|
@@ -108,6 +113,9 @@ class ModifyDBClusterAndNodesParametersRequest(DaraModel):
|
|
|
108
113
|
|
|
109
114
|
def from_map(self, m: dict = None):
|
|
110
115
|
m = m or dict()
|
|
116
|
+
if m.get('ClearBinlog') is not None:
|
|
117
|
+
self.clear_binlog = m.get('ClearBinlog')
|
|
118
|
+
|
|
111
119
|
if m.get('DBClusterId') is not None:
|
|
112
120
|
self.dbcluster_id = m.get('DBClusterId')
|
|
113
121
|
|
|
@@ -7,6 +7,7 @@ from darabonba.model import DaraModel
|
|
|
7
7
|
class ModifyDBClusterParametersRequest(DaraModel):
|
|
8
8
|
def __init__(
|
|
9
9
|
self,
|
|
10
|
+
clear_binlog: bool = None,
|
|
10
11
|
dbcluster_id: str = None,
|
|
11
12
|
from_time_service: bool = None,
|
|
12
13
|
owner_account: str = None,
|
|
@@ -18,6 +19,7 @@ class ModifyDBClusterParametersRequest(DaraModel):
|
|
|
18
19
|
resource_owner_account: str = None,
|
|
19
20
|
resource_owner_id: int = None,
|
|
20
21
|
):
|
|
22
|
+
self.clear_binlog = clear_binlog
|
|
21
23
|
# The ID of the cluster.
|
|
22
24
|
#
|
|
23
25
|
# > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.
|
|
@@ -76,6 +78,9 @@ class ModifyDBClusterParametersRequest(DaraModel):
|
|
|
76
78
|
_map = super().to_map()
|
|
77
79
|
if _map is not None:
|
|
78
80
|
result = _map
|
|
81
|
+
if self.clear_binlog is not None:
|
|
82
|
+
result['ClearBinlog'] = self.clear_binlog
|
|
83
|
+
|
|
79
84
|
if self.dbcluster_id is not None:
|
|
80
85
|
result['DBClusterId'] = self.dbcluster_id
|
|
81
86
|
|
|
@@ -110,6 +115,9 @@ class ModifyDBClusterParametersRequest(DaraModel):
|
|
|
110
115
|
|
|
111
116
|
def from_map(self, m: dict = None):
|
|
112
117
|
m = m or dict()
|
|
118
|
+
if m.get('ClearBinlog') is not None:
|
|
119
|
+
self.clear_binlog = m.get('ClearBinlog')
|
|
120
|
+
|
|
113
121
|
if m.get('DBClusterId') is not None:
|
|
114
122
|
self.dbcluster_id = m.get('DBClusterId')
|
|
115
123
|
|
{alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.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=yUoX3cZpxhwPmqxV5mlbj3q_ZI_s5ZDC344cPgjp3I0,21
|
|
2
|
+
alibabacloud_polardb20170801/client.py,sha256=DKJtvMWs8Yxge2-rCCnxnfrv1rxAIKueNndnlc3LQ7w,1228607
|
|
3
|
+
alibabacloud_polardb20170801/models/__init__.py,sha256=g2Z2WIfOwLfsR38Fz3RVfr_Uy6umZPLZbjgtO1EoODw,146488
|
|
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
|
|
@@ -79,10 +79,10 @@ alibabacloud_polardb20170801/models/_create_ainodes_response_body.py,sha256=fYUa
|
|
|
79
79
|
alibabacloud_polardb20170801/models/_create_application_endpoint_address_request.py,sha256=vq6j6YFraaSlw4Ru_2b25EX1idyAZ8lfDlK5tApXGQ0,1430
|
|
80
80
|
alibabacloud_polardb20170801/models/_create_application_endpoint_address_response.py,sha256=HWbIz6ISOjlBiK_DAKgGNJ3eLuY99LKm8suzl1v4-HY,1532
|
|
81
81
|
alibabacloud_polardb20170801/models/_create_application_endpoint_address_response_body.py,sha256=8CI9-uc7WX-zUufXEMNOe9_RyeShN6wEJkxYFKZFGxM,1339
|
|
82
|
-
alibabacloud_polardb20170801/models/_create_application_request.py,sha256=
|
|
82
|
+
alibabacloud_polardb20170801/models/_create_application_request.py,sha256=Hdja3SMGGILqpBeeRZfhqj5ErXjAGbGJmGw_Lo4Zmhk,14200
|
|
83
83
|
alibabacloud_polardb20170801/models/_create_application_response.py,sha256=YddwSWhLVMayP2pOuktEN5k_R95yROApcG_au-Z1YLg,1487
|
|
84
84
|
alibabacloud_polardb20170801/models/_create_application_response_body.py,sha256=ZvZWNWj134pU2Fkzi9Ij1eBTkOvu9uToxQNm76FR6Ho,3623
|
|
85
|
-
alibabacloud_polardb20170801/models/_create_application_shrink_request.py,sha256=
|
|
85
|
+
alibabacloud_polardb20170801/models/_create_application_shrink_request.py,sha256=xLZyHoCbFiO3lK61t4jsO-_2vZJDqU1AhKNucD61ix4,6689
|
|
86
86
|
alibabacloud_polardb20170801/models/_create_backup_request.py,sha256=u3eyKgKBbrR0q40yFj-QXpFUAntRDpuj3hFcASehtNQ,2624
|
|
87
87
|
alibabacloud_polardb20170801/models/_create_backup_response.py,sha256=DyZZL5CxfSj9HsOIgTVo1tqcI439KF0m1AYAhSeXdUk,1472
|
|
88
88
|
alibabacloud_polardb20170801/models/_create_backup_response_body.py,sha256=-tJ_NvVAt1nu0rm3yjmXOjfc5va-NU0vs4O_xY9NyOo,1107
|
|
@@ -259,7 +259,7 @@ alibabacloud_polardb20170801/models/_describe_aitask_status_response.py,sha256=O
|
|
|
259
259
|
alibabacloud_polardb20170801/models/_describe_aitask_status_response_body.py,sha256=T4aNuHDyEf8xODv8MkPgAgxwC5ragPKLC7f2u-eudgI,2160
|
|
260
260
|
alibabacloud_polardb20170801/models/_describe_application_attribute_request.py,sha256=v5lnXzl1tuZeZJVkK3tnk4VopICKNu0g2FW-pMAYTcE,853
|
|
261
261
|
alibabacloud_polardb20170801/models/_describe_application_attribute_response.py,sha256=xWn06cMtA0KHkxbQpzDyiCvvLsMVZqNRK574sfK34a4,1520
|
|
262
|
-
alibabacloud_polardb20170801/models/_describe_application_attribute_response_body.py,sha256=
|
|
262
|
+
alibabacloud_polardb20170801/models/_describe_application_attribute_response_body.py,sha256=0Osz0j5dMBuT8DeDywzocQlWjEj_coHXCGaihviMVgE,27420
|
|
263
263
|
alibabacloud_polardb20170801/models/_describe_application_parameters_request.py,sha256=NlkH97Rjp7nl9e3EmOn7PM0-LtY2iWZyLSHbnVY8iXY,1198
|
|
264
264
|
alibabacloud_polardb20170801/models/_describe_application_parameters_response.py,sha256=A7omjeRt4PJaaRl17313ScAhdfDSHrP0e889C7JWsgk,1523
|
|
265
265
|
alibabacloud_polardb20170801/models/_describe_application_parameters_response_body.py,sha256=pqxeEOh83VYtkQyLzRWPzKd9f5ky2xhtrW513i0RbF4,12750
|
|
@@ -267,7 +267,7 @@ 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=cABldI4p7EVJhgYImpTzQy7vvUL5yG7GDZFL6nf_5mA,2191
|
|
271
271
|
alibabacloud_polardb20170801/models/_describe_applications_response.py,sha256=E7RMR9epaqNLoE-xpWUNHRCtst_IFKzHSM4JOghpkv0,1496
|
|
272
272
|
alibabacloud_polardb20170801/models/_describe_applications_response_body.py,sha256=xiKhyar-MeSQGSbaZui7KthKQiMyhQiFkUyZpGdd2Hs,9740
|
|
273
273
|
alibabacloud_polardb20170801/models/_describe_auto_renew_attribute_request.py,sha256=pCvwKrd1AZRGohRoQ2q_ZWlIu4Y4bJ_6n4VC58Px9Vc,3926
|
|
@@ -661,7 +661,7 @@ alibabacloud_polardb20170801/models/_modify_cron_job_policy_serverless_response_
|
|
|
661
661
|
alibabacloud_polardb20170801/models/_modify_dbcluster_access_whitelist_request.py,sha256=tDEvRlnB_K9J95U9tHwEyuxjyTNzaC3Rb-rAQ4i69uY,6515
|
|
662
662
|
alibabacloud_polardb20170801/models/_modify_dbcluster_access_whitelist_response.py,sha256=GzX6aMHf7M20sYfjVi7YrFd6YFjQ6CKaIX_mur630_4,1526
|
|
663
663
|
alibabacloud_polardb20170801/models/_modify_dbcluster_access_whitelist_response_body.py,sha256=puD6T462CMKOK3LABa0lR5vS0aNPC7AUGdnNv1xl9yk,812
|
|
664
|
-
alibabacloud_polardb20170801/models/_modify_dbcluster_and_nodes_parameters_request.py,sha256=
|
|
664
|
+
alibabacloud_polardb20170801/models/_modify_dbcluster_and_nodes_parameters_request.py,sha256=IA0CT1FUgUQhMqoro3UBSGBzwBegGSTlaxypsMB9xe0,6652
|
|
665
665
|
alibabacloud_polardb20170801/models/_modify_dbcluster_and_nodes_parameters_response.py,sha256=3nal_Hp4s5IhR3wyaTDSLpzH0wyr4Vn8HJu2l7odDAA,1535
|
|
666
666
|
alibabacloud_polardb20170801/models/_modify_dbcluster_and_nodes_parameters_response_body.py,sha256=Sobwc395i5WSle0mGMzqkxqd6AKMaJyeGJqp6dj8BSI,815
|
|
667
667
|
alibabacloud_polardb20170801/models/_modify_dbcluster_arch_request.py,sha256=cuMJq-M9EC8utgG3hIH8b-wSBOYv_SGZcGCHTbIs2Fw,3096
|
|
@@ -697,7 +697,7 @@ alibabacloud_polardb20170801/models/_modify_dbcluster_migration_response_body.py
|
|
|
697
697
|
alibabacloud_polardb20170801/models/_modify_dbcluster_monitor_request.py,sha256=CYmYX_ndCHq-pCsSuBI5P_N8XOjTskukYCVtGJLxofY,2430
|
|
698
698
|
alibabacloud_polardb20170801/models/_modify_dbcluster_monitor_response.py,sha256=GSoIK5Ly4yAAMt_dPjcjoneMP9zwBoM4UcpwbEb9Cww,1502
|
|
699
699
|
alibabacloud_polardb20170801/models/_modify_dbcluster_monitor_response_body.py,sha256=HqDJe8NbviNH5l-bTHVXlKTcTucRSdZg0_JVtHTxxpI,804
|
|
700
|
-
alibabacloud_polardb20170801/models/_modify_dbcluster_parameters_request.py,sha256=
|
|
700
|
+
alibabacloud_polardb20170801/models/_modify_dbcluster_parameters_request.py,sha256=EuJhHjiUsVUKc54sgffVAy8815azobV1hPNjHxZJcKA,6617
|
|
701
701
|
alibabacloud_polardb20170801/models/_modify_dbcluster_parameters_response.py,sha256=i2m-MvhauR84ATdKlW7k2dhsaBt5MZU3KvKNm6xHctw,1511
|
|
702
702
|
alibabacloud_polardb20170801/models/_modify_dbcluster_parameters_response_body.py,sha256=KtGPK5xf9ewSi_Zh4hpj4EoLtg1Kd97F39e5MnmR9Nw,814
|
|
703
703
|
alibabacloud_polardb20170801/models/_modify_dbcluster_primary_zone_request.py,sha256=-UW1SyOM6eukylklz0miwaN2hRy19XvCYNO7gaTfcuM,7144
|
|
@@ -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.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
870
|
+
alibabacloud_polardb20170801-6.6.2.dist-info/METADATA,sha256=v8SDGlm9eL6TpLIzMsmBlwJ8Y9xFOyr8CmJmAT0Gnfw,2330
|
|
871
|
+
alibabacloud_polardb20170801-6.6.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
872
|
+
alibabacloud_polardb20170801-6.6.2.dist-info/top_level.txt,sha256=p7IsMztEzFGUKapMvBUvPuZ0usUOM4d9QfpzT_xtDG4,29
|
|
873
|
+
alibabacloud_polardb20170801-6.6.2.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_polardb20170801-6.6.0.dist-info → alibabacloud_polardb20170801-6.6.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|