alibabacloud-rds20140815 14.1.0__py3-none-any.whl → 14.2.0__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.
@@ -1 +1 @@
1
- __version__ = '14.1.0'
1
+ __version__ = '14.2.0'
@@ -5221,6 +5221,88 @@ class Client(OpenApiClient):
5221
5221
  runtime = RuntimeOptions()
5222
5222
  return await self.create_rcdisk_with_options_async(request, runtime)
5223
5223
 
5224
+ def create_rcimage_with_options(
5225
+ self,
5226
+ request: main_models.CreateRCImageRequest,
5227
+ runtime: RuntimeOptions,
5228
+ ) -> main_models.CreateRCImageResponse:
5229
+ request.validate()
5230
+ query = {}
5231
+ if not DaraCore.is_null(request.image_name):
5232
+ query['ImageName'] = request.image_name
5233
+ if not DaraCore.is_null(request.instance_id):
5234
+ query['InstanceId'] = request.instance_id
5235
+ if not DaraCore.is_null(request.region_id):
5236
+ query['RegionId'] = request.region_id
5237
+ if not DaraCore.is_null(request.snapshot_id):
5238
+ query['SnapshotId'] = request.snapshot_id
5239
+ req = open_api_util_models.OpenApiRequest(
5240
+ query = Utils.query(query)
5241
+ )
5242
+ params = open_api_util_models.Params(
5243
+ action = 'CreateRCImage',
5244
+ version = '2014-08-15',
5245
+ protocol = 'HTTPS',
5246
+ pathname = '/',
5247
+ method = 'POST',
5248
+ auth_type = 'AK',
5249
+ style = 'RPC',
5250
+ req_body_type = 'formData',
5251
+ body_type = 'json'
5252
+ )
5253
+ return DaraCore.from_map(
5254
+ main_models.CreateRCImageResponse(),
5255
+ self.call_api(params, req, runtime)
5256
+ )
5257
+
5258
+ async def create_rcimage_with_options_async(
5259
+ self,
5260
+ request: main_models.CreateRCImageRequest,
5261
+ runtime: RuntimeOptions,
5262
+ ) -> main_models.CreateRCImageResponse:
5263
+ request.validate()
5264
+ query = {}
5265
+ if not DaraCore.is_null(request.image_name):
5266
+ query['ImageName'] = request.image_name
5267
+ if not DaraCore.is_null(request.instance_id):
5268
+ query['InstanceId'] = request.instance_id
5269
+ if not DaraCore.is_null(request.region_id):
5270
+ query['RegionId'] = request.region_id
5271
+ if not DaraCore.is_null(request.snapshot_id):
5272
+ query['SnapshotId'] = request.snapshot_id
5273
+ req = open_api_util_models.OpenApiRequest(
5274
+ query = Utils.query(query)
5275
+ )
5276
+ params = open_api_util_models.Params(
5277
+ action = 'CreateRCImage',
5278
+ version = '2014-08-15',
5279
+ protocol = 'HTTPS',
5280
+ pathname = '/',
5281
+ method = 'POST',
5282
+ auth_type = 'AK',
5283
+ style = 'RPC',
5284
+ req_body_type = 'formData',
5285
+ body_type = 'json'
5286
+ )
5287
+ return DaraCore.from_map(
5288
+ main_models.CreateRCImageResponse(),
5289
+ await self.call_api_async(params, req, runtime)
5290
+ )
5291
+
5292
+ def create_rcimage(
5293
+ self,
5294
+ request: main_models.CreateRCImageRequest,
5295
+ ) -> main_models.CreateRCImageResponse:
5296
+ runtime = RuntimeOptions()
5297
+ return self.create_rcimage_with_options(request, runtime)
5298
+
5299
+ async def create_rcimage_async(
5300
+ self,
5301
+ request: main_models.CreateRCImageRequest,
5302
+ ) -> main_models.CreateRCImageResponse:
5303
+ runtime = RuntimeOptions()
5304
+ return await self.create_rcimage_with_options_async(request, runtime)
5305
+
5224
5306
  def create_rcnode_pool_with_options(
5225
5307
  self,
5226
5308
  tmp_req: main_models.CreateRCNodePoolRequest,
@@ -28635,6 +28717,80 @@ class Client(OpenApiClient):
28635
28717
  runtime = RuntimeOptions()
28636
28718
  return await self.modify_dbinstance_tdewith_options_async(request, runtime)
28637
28719
 
28720
+ def modify_dbinstance_vector_support_status_with_options(
28721
+ self,
28722
+ request: main_models.ModifyDBInstanceVectorSupportStatusRequest,
28723
+ runtime: RuntimeOptions,
28724
+ ) -> main_models.ModifyDBInstanceVectorSupportStatusResponse:
28725
+ request.validate()
28726
+ query = {}
28727
+ if not DaraCore.is_null(request.dbinstance_id):
28728
+ query['DBInstanceId'] = request.dbinstance_id
28729
+ if not DaraCore.is_null(request.status):
28730
+ query['Status'] = request.status
28731
+ req = open_api_util_models.OpenApiRequest(
28732
+ query = Utils.query(query)
28733
+ )
28734
+ params = open_api_util_models.Params(
28735
+ action = 'ModifyDBInstanceVectorSupportStatus',
28736
+ version = '2014-08-15',
28737
+ protocol = 'HTTPS',
28738
+ pathname = '/',
28739
+ method = 'POST',
28740
+ auth_type = 'AK',
28741
+ style = 'RPC',
28742
+ req_body_type = 'formData',
28743
+ body_type = 'json'
28744
+ )
28745
+ return DaraCore.from_map(
28746
+ main_models.ModifyDBInstanceVectorSupportStatusResponse(),
28747
+ self.call_api(params, req, runtime)
28748
+ )
28749
+
28750
+ async def modify_dbinstance_vector_support_status_with_options_async(
28751
+ self,
28752
+ request: main_models.ModifyDBInstanceVectorSupportStatusRequest,
28753
+ runtime: RuntimeOptions,
28754
+ ) -> main_models.ModifyDBInstanceVectorSupportStatusResponse:
28755
+ request.validate()
28756
+ query = {}
28757
+ if not DaraCore.is_null(request.dbinstance_id):
28758
+ query['DBInstanceId'] = request.dbinstance_id
28759
+ if not DaraCore.is_null(request.status):
28760
+ query['Status'] = request.status
28761
+ req = open_api_util_models.OpenApiRequest(
28762
+ query = Utils.query(query)
28763
+ )
28764
+ params = open_api_util_models.Params(
28765
+ action = 'ModifyDBInstanceVectorSupportStatus',
28766
+ version = '2014-08-15',
28767
+ protocol = 'HTTPS',
28768
+ pathname = '/',
28769
+ method = 'POST',
28770
+ auth_type = 'AK',
28771
+ style = 'RPC',
28772
+ req_body_type = 'formData',
28773
+ body_type = 'json'
28774
+ )
28775
+ return DaraCore.from_map(
28776
+ main_models.ModifyDBInstanceVectorSupportStatusResponse(),
28777
+ await self.call_api_async(params, req, runtime)
28778
+ )
28779
+
28780
+ def modify_dbinstance_vector_support_status(
28781
+ self,
28782
+ request: main_models.ModifyDBInstanceVectorSupportStatusRequest,
28783
+ ) -> main_models.ModifyDBInstanceVectorSupportStatusResponse:
28784
+ runtime = RuntimeOptions()
28785
+ return self.modify_dbinstance_vector_support_status_with_options(request, runtime)
28786
+
28787
+ async def modify_dbinstance_vector_support_status_async(
28788
+ self,
28789
+ request: main_models.ModifyDBInstanceVectorSupportStatusRequest,
28790
+ ) -> main_models.ModifyDBInstanceVectorSupportStatusResponse:
28791
+ runtime = RuntimeOptions()
28792
+ return await self.modify_dbinstance_vector_support_status_with_options_async(request, runtime)
28793
+
28638
28794
  def modify_dbnode_with_options(
28639
28795
  self,
28640
28796
  tmp_req: main_models.ModifyDBNodeRequest,
@@ -30710,10 +30866,14 @@ class Client(OpenApiClient):
30710
30866
  query['InstanceId'] = request.instance_id
30711
30867
  if not DaraCore.is_null(request.pay_type):
30712
30868
  query['PayType'] = request.pay_type
30869
+ if not DaraCore.is_null(request.period):
30870
+ query['Period'] = request.period
30713
30871
  if not DaraCore.is_null(request.promotion_code):
30714
30872
  query['PromotionCode'] = request.promotion_code
30715
30873
  if not DaraCore.is_null(request.region_id):
30716
30874
  query['RegionId'] = request.region_id
30875
+ if not DaraCore.is_null(request.used_time):
30876
+ query['UsedTime'] = request.used_time
30717
30877
  req = open_api_util_models.OpenApiRequest(
30718
30878
  query = Utils.query(query)
30719
30879
  )
@@ -30754,10 +30914,14 @@ class Client(OpenApiClient):
30754
30914
  query['InstanceId'] = request.instance_id
30755
30915
  if not DaraCore.is_null(request.pay_type):
30756
30916
  query['PayType'] = request.pay_type
30917
+ if not DaraCore.is_null(request.period):
30918
+ query['Period'] = request.period
30757
30919
  if not DaraCore.is_null(request.promotion_code):
30758
30920
  query['PromotionCode'] = request.promotion_code
30759
30921
  if not DaraCore.is_null(request.region_id):
30760
30922
  query['RegionId'] = request.region_id
30923
+ if not DaraCore.is_null(request.used_time):
30924
+ query['UsedTime'] = request.used_time
30761
30925
  req = open_api_util_models.OpenApiRequest(
30762
30926
  query = Utils.query(query)
30763
30927
  )
@@ -152,6 +152,9 @@ from ._create_rcdeployment_set_response import CreateRCDeploymentSetResponse
152
152
  from ._create_rcdisk_request import CreateRCDiskRequest
153
153
  from ._create_rcdisk_response_body import CreateRCDiskResponseBody
154
154
  from ._create_rcdisk_response import CreateRCDiskResponse
155
+ from ._create_rcimage_request import CreateRCImageRequest
156
+ from ._create_rcimage_response_body import CreateRCImageResponseBody
157
+ from ._create_rcimage_response import CreateRCImageResponse
155
158
  from ._create_rcnode_pool_request import CreateRCNodePoolRequest
156
159
  from ._create_rcnode_pool_shrink_request import CreateRCNodePoolShrinkRequest
157
160
  from ._create_rcnode_pool_response_body import CreateRCNodePoolResponseBody
@@ -882,6 +885,9 @@ from ._modify_dbinstance_spec_response import ModifyDBInstanceSpecResponse
882
885
  from ._modify_dbinstance_tderequest import ModifyDBInstanceTDERequest
883
886
  from ._modify_dbinstance_tderesponse_body import ModifyDBInstanceTDEResponseBody
884
887
  from ._modify_dbinstance_tderesponse import ModifyDBInstanceTDEResponse
888
+ from ._modify_dbinstance_vector_support_status_request import ModifyDBInstanceVectorSupportStatusRequest
889
+ from ._modify_dbinstance_vector_support_status_response_body import ModifyDBInstanceVectorSupportStatusResponseBody
890
+ from ._modify_dbinstance_vector_support_status_response import ModifyDBInstanceVectorSupportStatusResponse
885
891
  from ._modify_dbnode_request import ModifyDBNodeRequest
886
892
  from ._modify_dbnode_shrink_request import ModifyDBNodeShrinkRequest
887
893
  from ._modify_dbnode_response_body import ModifyDBNodeResponseBody
@@ -1738,6 +1744,9 @@ __all__ = [
1738
1744
  CreateRCDiskRequest,
1739
1745
  CreateRCDiskResponseBody,
1740
1746
  CreateRCDiskResponse,
1747
+ CreateRCImageRequest,
1748
+ CreateRCImageResponseBody,
1749
+ CreateRCImageResponse,
1741
1750
  CreateRCNodePoolRequest,
1742
1751
  CreateRCNodePoolShrinkRequest,
1743
1752
  CreateRCNodePoolResponseBody,
@@ -2468,6 +2477,9 @@ __all__ = [
2468
2477
  ModifyDBInstanceTDERequest,
2469
2478
  ModifyDBInstanceTDEResponseBody,
2470
2479
  ModifyDBInstanceTDEResponse,
2480
+ ModifyDBInstanceVectorSupportStatusRequest,
2481
+ ModifyDBInstanceVectorSupportStatusResponseBody,
2482
+ ModifyDBInstanceVectorSupportStatusResponse,
2471
2483
  ModifyDBNodeRequest,
2472
2484
  ModifyDBNodeShrinkRequest,
2473
2485
  ModifyDBNodeResponseBody,
@@ -0,0 +1,61 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class CreateRCImageRequest(DaraModel):
8
+ def __init__(
9
+ self,
10
+ image_name: str = None,
11
+ instance_id: str = None,
12
+ region_id: str = None,
13
+ snapshot_id: str = None,
14
+ ):
15
+ # The name of the custom image.
16
+ self.image_name = image_name
17
+ # The ID of the RDS Custom instance.
18
+ self.instance_id = instance_id
19
+ # The region ID. You can call the DescribeRegions operation to query the most recent region list.
20
+ self.region_id = region_id
21
+ # The ID of the snapshot from which to create the custom image. You can call the DescribeRCSnapshots operation to query the snapshot ID.
22
+ self.snapshot_id = snapshot_id
23
+
24
+ def validate(self):
25
+ pass
26
+
27
+ def to_map(self):
28
+ result = dict()
29
+ _map = super().to_map()
30
+ if _map is not None:
31
+ result = _map
32
+ if self.image_name is not None:
33
+ result['ImageName'] = self.image_name
34
+
35
+ if self.instance_id is not None:
36
+ result['InstanceId'] = self.instance_id
37
+
38
+ if self.region_id is not None:
39
+ result['RegionId'] = self.region_id
40
+
41
+ if self.snapshot_id is not None:
42
+ result['SnapshotId'] = self.snapshot_id
43
+
44
+ return result
45
+
46
+ def from_map(self, m: dict = None):
47
+ m = m or dict()
48
+ if m.get('ImageName') is not None:
49
+ self.image_name = m.get('ImageName')
50
+
51
+ if m.get('InstanceId') is not None:
52
+ self.instance_id = m.get('InstanceId')
53
+
54
+ if m.get('RegionId') is not None:
55
+ self.region_id = m.get('RegionId')
56
+
57
+ if m.get('SnapshotId') is not None:
58
+ self.snapshot_id = m.get('SnapshotId')
59
+
60
+ return self
61
+
@@ -0,0 +1,54 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict
6
+
7
+ from alibabacloud_rds20140815 import models as main_models
8
+ from darabonba.model import DaraModel
9
+
10
+ class CreateRCImageResponse(DaraModel):
11
+ def __init__(
12
+ self,
13
+ headers: Dict[str, str] = None,
14
+ status_code: int = None,
15
+ body: main_models.CreateRCImageResponseBody = None,
16
+ ):
17
+ self.headers = headers
18
+ self.status_code = status_code
19
+ self.body = body
20
+
21
+ def validate(self):
22
+ if self.body:
23
+ self.body.validate()
24
+
25
+ def to_map(self):
26
+ result = dict()
27
+ _map = super().to_map()
28
+ if _map is not None:
29
+ result = _map
30
+ if self.headers is not None:
31
+ result['headers'] = self.headers
32
+
33
+ if self.status_code is not None:
34
+ result['statusCode'] = self.status_code
35
+
36
+ if self.body is not None:
37
+ result['body'] = self.body.to_map()
38
+
39
+ return result
40
+
41
+ def from_map(self, m: dict = None):
42
+ m = m or dict()
43
+ if m.get('headers') is not None:
44
+ self.headers = m.get('headers')
45
+
46
+ if m.get('statusCode') is not None:
47
+ self.status_code = m.get('statusCode')
48
+
49
+ if m.get('body') is not None:
50
+ temp_model = main_models.CreateRCImageResponseBody()
51
+ self.body = temp_model.from_map(m.get('body'))
52
+
53
+ return self
54
+
@@ -0,0 +1,34 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class CreateRCImageResponseBody(DaraModel):
8
+ def __init__(
9
+ self,
10
+ request_id: str = None,
11
+ ):
12
+ # The request ID.
13
+ self.request_id = request_id
14
+
15
+ def validate(self):
16
+ pass
17
+
18
+ def to_map(self):
19
+ result = dict()
20
+ _map = super().to_map()
21
+ if _map is not None:
22
+ result = _map
23
+ if self.request_id is not None:
24
+ result['RequestId'] = self.request_id
25
+
26
+ return result
27
+
28
+ def from_map(self, m: dict = None):
29
+ m = m or dict()
30
+ if m.get('RequestId') is not None:
31
+ self.request_id = m.get('RequestId')
32
+
33
+ return self
34
+
@@ -0,0 +1,43 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class ModifyDBInstanceVectorSupportStatusRequest(DaraModel):
8
+ def __init__(
9
+ self,
10
+ dbinstance_id: str = None,
11
+ status: str = None,
12
+ ):
13
+ # This parameter is required.
14
+ self.dbinstance_id = dbinstance_id
15
+ # This parameter is required.
16
+ self.status = status
17
+
18
+ def validate(self):
19
+ pass
20
+
21
+ def to_map(self):
22
+ result = dict()
23
+ _map = super().to_map()
24
+ if _map is not None:
25
+ result = _map
26
+ if self.dbinstance_id is not None:
27
+ result['DBInstanceId'] = self.dbinstance_id
28
+
29
+ if self.status is not None:
30
+ result['Status'] = self.status
31
+
32
+ return result
33
+
34
+ def from_map(self, m: dict = None):
35
+ m = m or dict()
36
+ if m.get('DBInstanceId') is not None:
37
+ self.dbinstance_id = m.get('DBInstanceId')
38
+
39
+ if m.get('Status') is not None:
40
+ self.status = m.get('Status')
41
+
42
+ return self
43
+
@@ -0,0 +1,54 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict
6
+
7
+ from alibabacloud_rds20140815 import models as main_models
8
+ from darabonba.model import DaraModel
9
+
10
+ class ModifyDBInstanceVectorSupportStatusResponse(DaraModel):
11
+ def __init__(
12
+ self,
13
+ headers: Dict[str, str] = None,
14
+ status_code: int = None,
15
+ body: main_models.ModifyDBInstanceVectorSupportStatusResponseBody = None,
16
+ ):
17
+ self.headers = headers
18
+ self.status_code = status_code
19
+ self.body = body
20
+
21
+ def validate(self):
22
+ if self.body:
23
+ self.body.validate()
24
+
25
+ def to_map(self):
26
+ result = dict()
27
+ _map = super().to_map()
28
+ if _map is not None:
29
+ result = _map
30
+ if self.headers is not None:
31
+ result['headers'] = self.headers
32
+
33
+ if self.status_code is not None:
34
+ result['statusCode'] = self.status_code
35
+
36
+ if self.body is not None:
37
+ result['body'] = self.body.to_map()
38
+
39
+ return result
40
+
41
+ def from_map(self, m: dict = None):
42
+ m = m or dict()
43
+ if m.get('headers') is not None:
44
+ self.headers = m.get('headers')
45
+
46
+ if m.get('statusCode') is not None:
47
+ self.status_code = m.get('statusCode')
48
+
49
+ if m.get('body') is not None:
50
+ temp_model = main_models.ModifyDBInstanceVectorSupportStatusResponseBody()
51
+ self.body = temp_model.from_map(m.get('body'))
52
+
53
+ return self
54
+
@@ -0,0 +1,33 @@
1
+ # -*- coding: utf-8 -*-
2
+ # This file is auto-generated, don't edit it. Thanks.
3
+ from __future__ import annotations
4
+
5
+ from darabonba.model import DaraModel
6
+
7
+ class ModifyDBInstanceVectorSupportStatusResponseBody(DaraModel):
8
+ def __init__(
9
+ self,
10
+ request_id: str = None,
11
+ ):
12
+ self.request_id = request_id
13
+
14
+ def validate(self):
15
+ pass
16
+
17
+ def to_map(self):
18
+ result = dict()
19
+ _map = super().to_map()
20
+ if _map is not None:
21
+ result = _map
22
+ if self.request_id is not None:
23
+ result['RequestId'] = self.request_id
24
+
25
+ return result
26
+
27
+ def from_map(self, m: dict = None):
28
+ m = m or dict()
29
+ if m.get('RequestId') is not None:
30
+ self.request_id = m.get('RequestId')
31
+
32
+ return self
33
+
@@ -14,8 +14,10 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
14
14
  client_token: str = None,
15
15
  instance_id: str = None,
16
16
  pay_type: str = None,
17
+ period: str = None,
17
18
  promotion_code: str = None,
18
19
  region_id: str = None,
20
+ used_time: int = None,
19
21
  ):
20
22
  self.auto_pay = auto_pay
21
23
  self.auto_renew = auto_renew
@@ -25,9 +27,11 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
25
27
  # This parameter is required.
26
28
  self.instance_id = instance_id
27
29
  self.pay_type = pay_type
30
+ self.period = period
28
31
  self.promotion_code = promotion_code
29
32
  # This parameter is required.
30
33
  self.region_id = region_id
34
+ self.used_time = used_time
31
35
 
32
36
  def validate(self):
33
37
  pass
@@ -58,12 +62,18 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
58
62
  if self.pay_type is not None:
59
63
  result['PayType'] = self.pay_type
60
64
 
65
+ if self.period is not None:
66
+ result['Period'] = self.period
67
+
61
68
  if self.promotion_code is not None:
62
69
  result['PromotionCode'] = self.promotion_code
63
70
 
64
71
  if self.region_id is not None:
65
72
  result['RegionId'] = self.region_id
66
73
 
74
+ if self.used_time is not None:
75
+ result['UsedTime'] = self.used_time
76
+
67
77
  return result
68
78
 
69
79
  def from_map(self, m: dict = None):
@@ -89,11 +99,17 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
89
99
  if m.get('PayType') is not None:
90
100
  self.pay_type = m.get('PayType')
91
101
 
102
+ if m.get('Period') is not None:
103
+ self.period = m.get('Period')
104
+
92
105
  if m.get('PromotionCode') is not None:
93
106
  self.promotion_code = m.get('PromotionCode')
94
107
 
95
108
  if m.get('RegionId') is not None:
96
109
  self.region_id = m.get('RegionId')
97
110
 
111
+ if m.get('UsedTime') is not None:
112
+ self.used_time = m.get('UsedTime')
113
+
98
114
  return self
99
115
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-rds20140815
3
- Version: 14.1.0
3
+ Version: 14.2.0
4
4
  Summary: Alibaba Cloud rds (20140815) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -1,6 +1,6 @@
1
- alibabacloud_rds20140815/__init__.py,sha256=sJsjhhf0uxdjWPQCE_mDt-JM7UpEqU9M-CkbX-3fkOE,22
2
- alibabacloud_rds20140815/client.py,sha256=XYGervc_za83OxTDTfIbapWAb67BHOLEf8iVYaOhHmA,1653134
3
- alibabacloud_rds20140815/models/__init__.py,sha256=xTwUk_-gYUh308mgeAeZdIiJiHqYjXFhJvpWlO_Gmtk,210746
1
+ alibabacloud_rds20140815/__init__.py,sha256=Zru5ttEByF6eKGcTPSarWS72XP8cMe1CV_kb7d-hgc4,22
2
+ alibabacloud_rds20140815/client.py,sha256=l0NOHcZA--QRzQ9-LWNOshgmpaO7ubPt2qLeWjpltkk,1659494
3
+ alibabacloud_rds20140815/models/__init__.py,sha256=su3uYmeVhtQFK10-s5Eu1tX2SkxkoedUtCm6wD1ojNo,211495
4
4
  alibabacloud_rds20140815/models/_accept_rcinquired_system_event_request.py,sha256=9JXBVt1-R15-kb6w6xg3GfTI2sMbX6mrVdzcxqvEjfk,1185
5
5
  alibabacloud_rds20140815/models/_accept_rcinquired_system_event_response.py,sha256=EaX1WiEo6Rm3uEsSUPYsa-L4PX3IILGRw8eEmD8bon8,1513
6
6
  alibabacloud_rds20140815/models/_accept_rcinquired_system_event_response_body.py,sha256=OKIUcVmiu8QPMT8dr7WzN8S9JsVU5xMNukcl2SJy2bI,816
@@ -151,6 +151,9 @@ alibabacloud_rds20140815/models/_create_rcdeployment_set_response_body.py,sha256
151
151
  alibabacloud_rds20140815/models/_create_rcdisk_request.py,sha256=SMfZqfC-A-WKBg6n4xDtwQyrz35k4AVwV0vkDvgoz54,10945
152
152
  alibabacloud_rds20140815/models/_create_rcdisk_response.py,sha256=JxPM9WTPUstqF0kv5XlC_xI51gRszXte86MRtGCxAho,1468
153
153
  alibabacloud_rds20140815/models/_create_rcdisk_response_body.py,sha256=SaM7OkWaxuaMJ0qsbS8UzFQhsYsiJZvn7j_qwxd3Yyk,1308
154
+ alibabacloud_rds20140815/models/_create_rcimage_request.py,sha256=K6UQ7mBdjXloikGIYqXvft9seA5lkNnB9GrdBuPm23Y,1868
155
+ alibabacloud_rds20140815/models/_create_rcimage_response.py,sha256=_lGMBGVFqCfRdmkHY57tSxvZqsNSbCNDQc-q5RbFfNA,1471
156
+ alibabacloud_rds20140815/models/_create_rcimage_response_body.py,sha256=uumNKt9tC7P7d-SBxk_xODv9yxWVDGebtICub-5-eiY,795
154
157
  alibabacloud_rds20140815/models/_create_rcnode_pool_request.py,sha256=UZoh1i055Kk8W5r1tQaLcM1qvwQWDKwLO6wNXcym-9o,21056
155
158
  alibabacloud_rds20140815/models/_create_rcnode_pool_response.py,sha256=ZQXmKGG37ZN0NPFFiccr3BfPNgBynZKTiZhwKvb29go,1480
156
159
  alibabacloud_rds20140815/models/_create_rcnode_pool_response_body.py,sha256=TocnL8MttI-qjIuH9SrDpTcw9uwor-m3EaTO3oV-ycw,1716
@@ -890,6 +893,9 @@ alibabacloud_rds20140815/models/_modify_dbinstance_sslresponse_body.py,sha256=7O
890
893
  alibabacloud_rds20140815/models/_modify_dbinstance_tderequest.py,sha256=oaVZXTgftW30Lv4WnO_dVnRpVWnbVBNPDypSRG5XA6I,7061
891
894
  alibabacloud_rds20140815/models/_modify_dbinstance_tderesponse.py,sha256=o1aQbcp7-XiQ-rh6sOlLX-TCsLxx6hTklDmrI14qKNI,1489
892
895
  alibabacloud_rds20140815/models/_modify_dbinstance_tderesponse_body.py,sha256=IXikHACHR1nuFQDeiCetAr_uAh1-UOAU1Ie2aDuy9fM,808
896
+ alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_request.py,sha256=J3rJYmBXQs-4lhI38hat2boTL3dXunUSTiwTpe8mZEA,1109
897
+ alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_response.py,sha256=vn_zhLcAd1eWYqhWsEYFRYlRThCT_gZcdO2MGfbgLW0,1537
898
+ alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_response_body.py,sha256=Lkv-spF8qW8nIZgmvaytJ3VPW0vfBOkyipk71Zy0JfY,791
893
899
  alibabacloud_rds20140815/models/_modify_dbnode_request.py,sha256=0t7NybI-5l1ApGIvV5NxbmBz_5onYB_ot9f7Bn4tLiw,8124
894
900
  alibabacloud_rds20140815/models/_modify_dbnode_response.py,sha256=L084PIYHiVFJRzvNnHqnVoQN-oyhKgKmvZtUijevDTs,1468
895
901
  alibabacloud_rds20140815/models/_modify_dbnode_response_body.py,sha256=KjnOgExe-e5CSw39pKSRnmvlVIwy4nayHvQzlWNpYHI,1775
@@ -942,7 +948,7 @@ alibabacloud_rds20140815/models/_modify_pghba_config_response_body.py,sha256=T8C
942
948
  alibabacloud_rds20140815/models/_modify_rcdisk_attribute_request.py,sha256=2irOeC1UBowNOa28FihrC32tVAG9tDr-MmR7O3bips4,2223
943
949
  alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response.py,sha256=FevuZ6VoKVCxthssDpJYmycVCdh6nEPZrRVY_ZEWLDw,1495
944
950
  alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response_body.py,sha256=IhOrK8Bhs--C9Oys2kxhdov8DGifkq1T1AWyQQxoD-w,805
945
- alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py,sha256=X4nCLVouY1msw6UxNs-4WMVqTz5A7kUvRHh_OL2ghoo,2962
951
+ alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py,sha256=m2TPIUibynFG302HUt6Dc033l06v69UDLKktFWmLZtc,3426
946
952
  alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response.py,sha256=zB7FgYXh-FKBB7rZDSSvUITLJRRIOU7SeMiFrRB_0rE,1498
947
953
  alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response_body.py,sha256=AMI05aZ1Ui97r27zTolqXNlssHX-te8UERYRpdIag2Y,1854
948
954
  alibabacloud_rds20140815/models/_modify_rcdisk_spec_request.py,sha256=riVtVJipb_gpDpHJItupvMOYZtyed6BsMbNswCuNBUU,3584
@@ -1185,8 +1191,8 @@ alibabacloud_rds20140815/models/_upgrade_dbinstance_major_version_response_body.
1185
1191
  alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_request.py,sha256=YKxSyPLnrBfempCKlGsbw8y-lQaoKC9tDuon_zODMK8,4164
1186
1192
  alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response.py,sha256=wCg_jc-Zd2gJH4IdlaFOBHFcotYBMCU9Ay8EGJ9a4dU,1537
1187
1193
  alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response_body.py,sha256=UNvS1pq3eopumK9Sl6ELfb2xECWLlV_5i0n1s5i95L0,1427
1188
- alibabacloud_rds20140815-14.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
1189
- alibabacloud_rds20140815-14.1.0.dist-info/METADATA,sha256=6ZhETF383OZtZrMpJHHdFxPplpPrJ1qu3ed1-xPxa3s,2290
1190
- alibabacloud_rds20140815-14.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
1191
- alibabacloud_rds20140815-14.1.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
1192
- alibabacloud_rds20140815-14.1.0.dist-info/RECORD,,
1194
+ alibabacloud_rds20140815-14.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
1195
+ alibabacloud_rds20140815-14.2.0.dist-info/METADATA,sha256=PXXxfFGs_d0N8bXTR-GaTaqZeZMk7IhBGoO9VUBIf_I,2290
1196
+ alibabacloud_rds20140815-14.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
1197
+ alibabacloud_rds20140815-14.2.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
1198
+ alibabacloud_rds20140815-14.2.0.dist-info/RECORD,,