alibabacloud-rds20140815 14.0.2__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.
- alibabacloud_rds20140815/__init__.py +1 -1
- alibabacloud_rds20140815/client.py +258 -0
- alibabacloud_rds20140815/models/__init__.py +18 -0
- alibabacloud_rds20140815/models/_create_rcimage_request.py +61 -0
- alibabacloud_rds20140815/models/_create_rcimage_response.py +54 -0
- alibabacloud_rds20140815/models/_create_rcimage_response_body.py +34 -0
- alibabacloud_rds20140815/models/_create_rcsnapshot_request.py +0 -2
- alibabacloud_rds20140815/models/_delete_rcdisk_request.py +0 -2
- alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py +8 -2
- alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py +8 -0
- alibabacloud_rds20140815/models/_detach_rcdisk_request.py +0 -2
- alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_request.py +43 -0
- alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_response.py +54 -0
- alibabacloud_rds20140815/models/_modify_dbinstance_vector_support_status_response_body.py +33 -0
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_request.py +75 -0
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response.py +54 -0
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response_body.py +34 -0
- alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py +16 -0
- {alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/METADATA +1 -1
- {alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/RECORD +23 -14
- {alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '14.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,
|
|
@@ -20378,6 +20460,8 @@ class Client(OpenApiClient):
|
|
|
20378
20460
|
query = {}
|
|
20379
20461
|
if not DaraCore.is_null(request.disk_id):
|
|
20380
20462
|
query['DiskId'] = request.disk_id
|
|
20463
|
+
if not DaraCore.is_null(request.instance_id):
|
|
20464
|
+
query['InstanceId'] = request.instance_id
|
|
20381
20465
|
if not DaraCore.is_null(request.page_number):
|
|
20382
20466
|
query['PageNumber'] = request.page_number
|
|
20383
20467
|
if not DaraCore.is_null(request.page_size):
|
|
@@ -20416,6 +20500,8 @@ class Client(OpenApiClient):
|
|
|
20416
20500
|
query = {}
|
|
20417
20501
|
if not DaraCore.is_null(request.disk_id):
|
|
20418
20502
|
query['DiskId'] = request.disk_id
|
|
20503
|
+
if not DaraCore.is_null(request.instance_id):
|
|
20504
|
+
query['InstanceId'] = request.instance_id
|
|
20419
20505
|
if not DaraCore.is_null(request.page_number):
|
|
20420
20506
|
query['PageNumber'] = request.page_number
|
|
20421
20507
|
if not DaraCore.is_null(request.page_size):
|
|
@@ -28631,6 +28717,80 @@ class Client(OpenApiClient):
|
|
|
28631
28717
|
runtime = RuntimeOptions()
|
|
28632
28718
|
return await self.modify_dbinstance_tdewith_options_async(request, runtime)
|
|
28633
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
|
+
|
|
28634
28794
|
def modify_dbnode_with_options(
|
|
28635
28795
|
self,
|
|
28636
28796
|
tmp_req: main_models.ModifyDBNodeRequest,
|
|
@@ -30595,6 +30755,96 @@ class Client(OpenApiClient):
|
|
|
30595
30755
|
runtime = RuntimeOptions()
|
|
30596
30756
|
return await self.modify_parameter_group_with_options_async(request, runtime)
|
|
30597
30757
|
|
|
30758
|
+
def modify_rcdisk_attribute_with_options(
|
|
30759
|
+
self,
|
|
30760
|
+
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30761
|
+
runtime: RuntimeOptions,
|
|
30762
|
+
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30763
|
+
request.validate()
|
|
30764
|
+
query = {}
|
|
30765
|
+
if not DaraCore.is_null(request.bursting_enabled):
|
|
30766
|
+
query['BurstingEnabled'] = request.bursting_enabled
|
|
30767
|
+
if not DaraCore.is_null(request.delete_with_instance):
|
|
30768
|
+
query['DeleteWithInstance'] = request.delete_with_instance
|
|
30769
|
+
if not DaraCore.is_null(request.description):
|
|
30770
|
+
query['Description'] = request.description
|
|
30771
|
+
if not DaraCore.is_null(request.disk_id):
|
|
30772
|
+
query['DiskId'] = request.disk_id
|
|
30773
|
+
if not DaraCore.is_null(request.disk_name):
|
|
30774
|
+
query['DiskName'] = request.disk_name
|
|
30775
|
+
if not DaraCore.is_null(request.region_id):
|
|
30776
|
+
query['RegionId'] = request.region_id
|
|
30777
|
+
req = open_api_util_models.OpenApiRequest(
|
|
30778
|
+
query = Utils.query(query)
|
|
30779
|
+
)
|
|
30780
|
+
params = open_api_util_models.Params(
|
|
30781
|
+
action = 'ModifyRCDiskAttribute',
|
|
30782
|
+
version = '2014-08-15',
|
|
30783
|
+
protocol = 'HTTPS',
|
|
30784
|
+
pathname = '/',
|
|
30785
|
+
method = 'POST',
|
|
30786
|
+
auth_type = 'AK',
|
|
30787
|
+
style = 'RPC',
|
|
30788
|
+
req_body_type = 'formData',
|
|
30789
|
+
body_type = 'json'
|
|
30790
|
+
)
|
|
30791
|
+
return DaraCore.from_map(
|
|
30792
|
+
main_models.ModifyRCDiskAttributeResponse(),
|
|
30793
|
+
self.call_api(params, req, runtime)
|
|
30794
|
+
)
|
|
30795
|
+
|
|
30796
|
+
async def modify_rcdisk_attribute_with_options_async(
|
|
30797
|
+
self,
|
|
30798
|
+
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30799
|
+
runtime: RuntimeOptions,
|
|
30800
|
+
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30801
|
+
request.validate()
|
|
30802
|
+
query = {}
|
|
30803
|
+
if not DaraCore.is_null(request.bursting_enabled):
|
|
30804
|
+
query['BurstingEnabled'] = request.bursting_enabled
|
|
30805
|
+
if not DaraCore.is_null(request.delete_with_instance):
|
|
30806
|
+
query['DeleteWithInstance'] = request.delete_with_instance
|
|
30807
|
+
if not DaraCore.is_null(request.description):
|
|
30808
|
+
query['Description'] = request.description
|
|
30809
|
+
if not DaraCore.is_null(request.disk_id):
|
|
30810
|
+
query['DiskId'] = request.disk_id
|
|
30811
|
+
if not DaraCore.is_null(request.disk_name):
|
|
30812
|
+
query['DiskName'] = request.disk_name
|
|
30813
|
+
if not DaraCore.is_null(request.region_id):
|
|
30814
|
+
query['RegionId'] = request.region_id
|
|
30815
|
+
req = open_api_util_models.OpenApiRequest(
|
|
30816
|
+
query = Utils.query(query)
|
|
30817
|
+
)
|
|
30818
|
+
params = open_api_util_models.Params(
|
|
30819
|
+
action = 'ModifyRCDiskAttribute',
|
|
30820
|
+
version = '2014-08-15',
|
|
30821
|
+
protocol = 'HTTPS',
|
|
30822
|
+
pathname = '/',
|
|
30823
|
+
method = 'POST',
|
|
30824
|
+
auth_type = 'AK',
|
|
30825
|
+
style = 'RPC',
|
|
30826
|
+
req_body_type = 'formData',
|
|
30827
|
+
body_type = 'json'
|
|
30828
|
+
)
|
|
30829
|
+
return DaraCore.from_map(
|
|
30830
|
+
main_models.ModifyRCDiskAttributeResponse(),
|
|
30831
|
+
await self.call_api_async(params, req, runtime)
|
|
30832
|
+
)
|
|
30833
|
+
|
|
30834
|
+
def modify_rcdisk_attribute(
|
|
30835
|
+
self,
|
|
30836
|
+
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30837
|
+
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30838
|
+
runtime = RuntimeOptions()
|
|
30839
|
+
return self.modify_rcdisk_attribute_with_options(request, runtime)
|
|
30840
|
+
|
|
30841
|
+
async def modify_rcdisk_attribute_async(
|
|
30842
|
+
self,
|
|
30843
|
+
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30844
|
+
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30845
|
+
runtime = RuntimeOptions()
|
|
30846
|
+
return await self.modify_rcdisk_attribute_with_options_async(request, runtime)
|
|
30847
|
+
|
|
30598
30848
|
def modify_rcdisk_charge_type_with_options(
|
|
30599
30849
|
self,
|
|
30600
30850
|
request: main_models.ModifyRCDiskChargeTypeRequest,
|
|
@@ -30616,10 +30866,14 @@ class Client(OpenApiClient):
|
|
|
30616
30866
|
query['InstanceId'] = request.instance_id
|
|
30617
30867
|
if not DaraCore.is_null(request.pay_type):
|
|
30618
30868
|
query['PayType'] = request.pay_type
|
|
30869
|
+
if not DaraCore.is_null(request.period):
|
|
30870
|
+
query['Period'] = request.period
|
|
30619
30871
|
if not DaraCore.is_null(request.promotion_code):
|
|
30620
30872
|
query['PromotionCode'] = request.promotion_code
|
|
30621
30873
|
if not DaraCore.is_null(request.region_id):
|
|
30622
30874
|
query['RegionId'] = request.region_id
|
|
30875
|
+
if not DaraCore.is_null(request.used_time):
|
|
30876
|
+
query['UsedTime'] = request.used_time
|
|
30623
30877
|
req = open_api_util_models.OpenApiRequest(
|
|
30624
30878
|
query = Utils.query(query)
|
|
30625
30879
|
)
|
|
@@ -30660,10 +30914,14 @@ class Client(OpenApiClient):
|
|
|
30660
30914
|
query['InstanceId'] = request.instance_id
|
|
30661
30915
|
if not DaraCore.is_null(request.pay_type):
|
|
30662
30916
|
query['PayType'] = request.pay_type
|
|
30917
|
+
if not DaraCore.is_null(request.period):
|
|
30918
|
+
query['Period'] = request.period
|
|
30663
30919
|
if not DaraCore.is_null(request.promotion_code):
|
|
30664
30920
|
query['PromotionCode'] = request.promotion_code
|
|
30665
30921
|
if not DaraCore.is_null(request.region_id):
|
|
30666
30922
|
query['RegionId'] = request.region_id
|
|
30923
|
+
if not DaraCore.is_null(request.used_time):
|
|
30924
|
+
query['UsedTime'] = request.used_time
|
|
30667
30925
|
req = open_api_util_models.OpenApiRequest(
|
|
30668
30926
|
query = Utils.query(query)
|
|
30669
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
|
|
@@ -940,6 +946,9 @@ from ._modify_parameter_response import ModifyParameterResponse
|
|
|
940
946
|
from ._modify_parameter_group_request import ModifyParameterGroupRequest
|
|
941
947
|
from ._modify_parameter_group_response_body import ModifyParameterGroupResponseBody
|
|
942
948
|
from ._modify_parameter_group_response import ModifyParameterGroupResponse
|
|
949
|
+
from ._modify_rcdisk_attribute_request import ModifyRCDiskAttributeRequest
|
|
950
|
+
from ._modify_rcdisk_attribute_response_body import ModifyRCDiskAttributeResponseBody
|
|
951
|
+
from ._modify_rcdisk_attribute_response import ModifyRCDiskAttributeResponse
|
|
943
952
|
from ._modify_rcdisk_charge_type_request import ModifyRCDiskChargeTypeRequest
|
|
944
953
|
from ._modify_rcdisk_charge_type_response_body import ModifyRCDiskChargeTypeResponseBody
|
|
945
954
|
from ._modify_rcdisk_charge_type_response import ModifyRCDiskChargeTypeResponse
|
|
@@ -1735,6 +1744,9 @@ __all__ = [
|
|
|
1735
1744
|
CreateRCDiskRequest,
|
|
1736
1745
|
CreateRCDiskResponseBody,
|
|
1737
1746
|
CreateRCDiskResponse,
|
|
1747
|
+
CreateRCImageRequest,
|
|
1748
|
+
CreateRCImageResponseBody,
|
|
1749
|
+
CreateRCImageResponse,
|
|
1738
1750
|
CreateRCNodePoolRequest,
|
|
1739
1751
|
CreateRCNodePoolShrinkRequest,
|
|
1740
1752
|
CreateRCNodePoolResponseBody,
|
|
@@ -2465,6 +2477,9 @@ __all__ = [
|
|
|
2465
2477
|
ModifyDBInstanceTDERequest,
|
|
2466
2478
|
ModifyDBInstanceTDEResponseBody,
|
|
2467
2479
|
ModifyDBInstanceTDEResponse,
|
|
2480
|
+
ModifyDBInstanceVectorSupportStatusRequest,
|
|
2481
|
+
ModifyDBInstanceVectorSupportStatusResponseBody,
|
|
2482
|
+
ModifyDBInstanceVectorSupportStatusResponse,
|
|
2468
2483
|
ModifyDBNodeRequest,
|
|
2469
2484
|
ModifyDBNodeShrinkRequest,
|
|
2470
2485
|
ModifyDBNodeResponseBody,
|
|
@@ -2523,6 +2538,9 @@ __all__ = [
|
|
|
2523
2538
|
ModifyParameterGroupRequest,
|
|
2524
2539
|
ModifyParameterGroupResponseBody,
|
|
2525
2540
|
ModifyParameterGroupResponse,
|
|
2541
|
+
ModifyRCDiskAttributeRequest,
|
|
2542
|
+
ModifyRCDiskAttributeResponseBody,
|
|
2543
|
+
ModifyRCDiskAttributeResponse,
|
|
2526
2544
|
ModifyRCDiskChargeTypeRequest,
|
|
2527
2545
|
ModifyRCDiskChargeTypeResponseBody,
|
|
2528
2546
|
ModifyRCDiskChargeTypeResponse,
|
|
@@ -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
|
+
|
|
@@ -31,8 +31,6 @@ class CreateRCSnapshotRequest(DaraModel):
|
|
|
31
31
|
# This parameter is deprecated.
|
|
32
32
|
self.instant_access_retention_days = instant_access_retention_days
|
|
33
33
|
# The region ID.
|
|
34
|
-
#
|
|
35
|
-
# This parameter is required.
|
|
36
34
|
self.region_id = region_id
|
|
37
35
|
self.resource_group_id = resource_group_id
|
|
38
36
|
# The retention period of the snapshot. Valid values: 1 to 65536. Unit: days. The snapshot is automatically released when its retention period expires.
|
|
@@ -11,6 +11,7 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
11
11
|
def __init__(
|
|
12
12
|
self,
|
|
13
13
|
disk_id: str = None,
|
|
14
|
+
instance_id: str = None,
|
|
14
15
|
page_number: int = None,
|
|
15
16
|
page_size: int = None,
|
|
16
17
|
region_id: str = None,
|
|
@@ -19,13 +20,12 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
19
20
|
):
|
|
20
21
|
# The cloud disk ID.
|
|
21
22
|
self.disk_id = disk_id
|
|
23
|
+
self.instance_id = instance_id
|
|
22
24
|
# The page number.
|
|
23
25
|
self.page_number = page_number
|
|
24
26
|
# The number of entries per page. Valid values: **30** to **100**. Default value: **30**.
|
|
25
27
|
self.page_size = page_size
|
|
26
28
|
# The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
27
|
-
#
|
|
28
|
-
# This parameter is required.
|
|
29
29
|
self.region_id = region_id
|
|
30
30
|
# The snapshot IDs.
|
|
31
31
|
#
|
|
@@ -47,6 +47,9 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
47
47
|
if self.disk_id is not None:
|
|
48
48
|
result['DiskId'] = self.disk_id
|
|
49
49
|
|
|
50
|
+
if self.instance_id is not None:
|
|
51
|
+
result['InstanceId'] = self.instance_id
|
|
52
|
+
|
|
50
53
|
if self.page_number is not None:
|
|
51
54
|
result['PageNumber'] = self.page_number
|
|
52
55
|
|
|
@@ -71,6 +74,9 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
71
74
|
if m.get('DiskId') is not None:
|
|
72
75
|
self.disk_id = m.get('DiskId')
|
|
73
76
|
|
|
77
|
+
if m.get('InstanceId') is not None:
|
|
78
|
+
self.instance_id = m.get('InstanceId')
|
|
79
|
+
|
|
74
80
|
if m.get('PageNumber') is not None:
|
|
75
81
|
self.page_number = m.get('PageNumber')
|
|
76
82
|
|
|
@@ -88,6 +88,7 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
88
88
|
description: str = None,
|
|
89
89
|
encrypted: bool = None,
|
|
90
90
|
instant_access: bool = None,
|
|
91
|
+
last_modified_time: str = None,
|
|
91
92
|
progress: str = None,
|
|
92
93
|
region_id: str = None,
|
|
93
94
|
resource_group_id: str = None,
|
|
@@ -124,6 +125,7 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
124
125
|
self.encrypted = encrypted
|
|
125
126
|
# This parameter is deprecated.
|
|
126
127
|
self.instant_access = instant_access
|
|
128
|
+
self.last_modified_time = last_modified_time
|
|
127
129
|
# The progress of the snapshot creation task in percentage.
|
|
128
130
|
self.progress = progress
|
|
129
131
|
# The region ID.
|
|
@@ -196,6 +198,9 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
196
198
|
if self.instant_access is not None:
|
|
197
199
|
result['InstantAccess'] = self.instant_access
|
|
198
200
|
|
|
201
|
+
if self.last_modified_time is not None:
|
|
202
|
+
result['LastModifiedTime'] = self.last_modified_time
|
|
203
|
+
|
|
199
204
|
if self.progress is not None:
|
|
200
205
|
result['Progress'] = self.progress
|
|
201
206
|
|
|
@@ -259,6 +264,9 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
259
264
|
if m.get('InstantAccess') is not None:
|
|
260
265
|
self.instant_access = m.get('InstantAccess')
|
|
261
266
|
|
|
267
|
+
if m.get('LastModifiedTime') is not None:
|
|
268
|
+
self.last_modified_time = m.get('LastModifiedTime')
|
|
269
|
+
|
|
262
270
|
if m.get('Progress') is not None:
|
|
263
271
|
self.progress = m.get('Progress')
|
|
264
272
|
|
|
@@ -23,8 +23,6 @@ class DetachRCDiskRequest(DaraModel):
|
|
|
23
23
|
# This parameter is required.
|
|
24
24
|
self.instance_id = instance_id
|
|
25
25
|
# The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
26
|
-
#
|
|
27
|
-
# This parameter is required.
|
|
28
26
|
self.region_id = region_id
|
|
29
27
|
|
|
30
28
|
def validate(self):
|
|
@@ -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
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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 ModifyRCDiskAttributeRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
bursting_enabled: bool = None,
|
|
11
|
+
delete_with_instance: bool = None,
|
|
12
|
+
description: str = None,
|
|
13
|
+
disk_id: str = None,
|
|
14
|
+
disk_name: str = None,
|
|
15
|
+
region_id: str = None,
|
|
16
|
+
):
|
|
17
|
+
self.bursting_enabled = bursting_enabled
|
|
18
|
+
self.delete_with_instance = delete_with_instance
|
|
19
|
+
self.description = description
|
|
20
|
+
# This parameter is required.
|
|
21
|
+
self.disk_id = disk_id
|
|
22
|
+
self.disk_name = disk_name
|
|
23
|
+
# This parameter is required.
|
|
24
|
+
self.region_id = region_id
|
|
25
|
+
|
|
26
|
+
def validate(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def to_map(self):
|
|
30
|
+
result = dict()
|
|
31
|
+
_map = super().to_map()
|
|
32
|
+
if _map is not None:
|
|
33
|
+
result = _map
|
|
34
|
+
if self.bursting_enabled is not None:
|
|
35
|
+
result['BurstingEnabled'] = self.bursting_enabled
|
|
36
|
+
|
|
37
|
+
if self.delete_with_instance is not None:
|
|
38
|
+
result['DeleteWithInstance'] = self.delete_with_instance
|
|
39
|
+
|
|
40
|
+
if self.description is not None:
|
|
41
|
+
result['Description'] = self.description
|
|
42
|
+
|
|
43
|
+
if self.disk_id is not None:
|
|
44
|
+
result['DiskId'] = self.disk_id
|
|
45
|
+
|
|
46
|
+
if self.disk_name is not None:
|
|
47
|
+
result['DiskName'] = self.disk_name
|
|
48
|
+
|
|
49
|
+
if self.region_id is not None:
|
|
50
|
+
result['RegionId'] = self.region_id
|
|
51
|
+
|
|
52
|
+
return result
|
|
53
|
+
|
|
54
|
+
def from_map(self, m: dict = None):
|
|
55
|
+
m = m or dict()
|
|
56
|
+
if m.get('BurstingEnabled') is not None:
|
|
57
|
+
self.bursting_enabled = m.get('BurstingEnabled')
|
|
58
|
+
|
|
59
|
+
if m.get('DeleteWithInstance') is not None:
|
|
60
|
+
self.delete_with_instance = m.get('DeleteWithInstance')
|
|
61
|
+
|
|
62
|
+
if m.get('Description') is not None:
|
|
63
|
+
self.description = m.get('Description')
|
|
64
|
+
|
|
65
|
+
if m.get('DiskId') is not None:
|
|
66
|
+
self.disk_id = m.get('DiskId')
|
|
67
|
+
|
|
68
|
+
if m.get('DiskName') is not None:
|
|
69
|
+
self.disk_name = m.get('DiskName')
|
|
70
|
+
|
|
71
|
+
if m.get('RegionId') is not None:
|
|
72
|
+
self.region_id = m.get('RegionId')
|
|
73
|
+
|
|
74
|
+
return self
|
|
75
|
+
|
|
@@ -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 ModifyRCDiskAttributeResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.ModifyRCDiskAttributeResponseBody = 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.ModifyRCDiskAttributeResponseBody()
|
|
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 ModifyRCDiskAttributeResponseBody(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
request_id: str = None,
|
|
11
|
+
):
|
|
12
|
+
# Id of the request
|
|
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
|
+
|
|
@@ -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
|
|
{alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
alibabacloud_rds20140815/__init__.py,sha256=
|
|
2
|
-
alibabacloud_rds20140815/client.py,sha256=
|
|
3
|
-
alibabacloud_rds20140815/models/__init__.py,sha256=
|
|
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,11 +151,14 @@ 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
|
|
157
160
|
alibabacloud_rds20140815/models/_create_rcnode_pool_shrink_request.py,sha256=bguLBUosjwTbzxnfO2j-MvEjaK-e5jFYOx5sm2OUDFQ,16316
|
|
158
|
-
alibabacloud_rds20140815/models/_create_rcsnapshot_request.py,sha256=
|
|
161
|
+
alibabacloud_rds20140815/models/_create_rcsnapshot_request.py,sha256=9bBAukXsHv5_-ULJKHj8AeWgo4Anhp_nYAdO94l0ZTk,4874
|
|
159
162
|
alibabacloud_rds20140815/models/_create_rcsnapshot_response.py,sha256=solRfUnpuHjH23Pek_Iy-YLF4YlHU5OxtKZaqnPBEJA,1480
|
|
160
163
|
alibabacloud_rds20140815/models/_create_rcsnapshot_response_body.py,sha256=edVL2aVrwZBVRgtgpR-lLi4jIA2fWgBthEfu0URtpZs,1087
|
|
161
164
|
alibabacloud_rds20140815/models/_create_read_only_dbinstance_request.py,sha256=l8fEa0haK5paLGKOmij1yV3xCJrLBkrzCGY4WAaFFos,21675
|
|
@@ -229,7 +232,7 @@ alibabacloud_rds20140815/models/_delete_rccluster_nodes_shrink_request.py,sha256
|
|
|
229
232
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_request.py,sha256=SquomieS1mSE48sZ8Orte8NOQZFCjly7wmVoubPyijE,1232
|
|
230
233
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_response.py,sha256=if7z-bqcnij_uVcJt3rsgSpbHdx1C-1z6CuFmdDsbqA,1495
|
|
231
234
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_response_body.py,sha256=oeyj8UDicb_i1yoUiV-iwVopvS6WYqSDWc5KyePWXbU,803
|
|
232
|
-
alibabacloud_rds20140815/models/_delete_rcdisk_request.py,sha256=
|
|
235
|
+
alibabacloud_rds20140815/models/_delete_rcdisk_request.py,sha256=rmQsFrdjTDTizuyyn1l1uThrNTQY7jAe9ANAcH3O4OI,1131
|
|
233
236
|
alibabacloud_rds20140815/models/_delete_rcdisk_response.py,sha256=HcID1_Py_ng0Ib-S1-7gdb2iZPs-YwJ1XZC_sol-1K0,1468
|
|
234
237
|
alibabacloud_rds20140815/models/_delete_rcdisk_response_body.py,sha256=gFA8qF2BAI1kAAMuisLv7h80b44FojP6FW5ZYfGHKDs,794
|
|
235
238
|
alibabacloud_rds20140815/models/_delete_rcinstance_request.py,sha256=L7_6xkcJ9Kqr1d_U4lqyvDrW8q5kVe0xOiqmFIAoVJQ,1308
|
|
@@ -628,9 +631,9 @@ alibabacloud_rds20140815/models/_describe_rcsecurity_group_list_response_body.py
|
|
|
628
631
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_request.py,sha256=pcQ5SIIY66xKjVsNyCDgKaAi8X5i0FhXcGL_93VAgsQ,1164
|
|
629
632
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_response.py,sha256=RZ_ZOLAaY9eq_3GdG2V0mjMrxLUN4TlBAk9HMyW_ziE,1531
|
|
630
633
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_response_body.py,sha256=4CxmEPldqIV4coczIXGnVHzQZ-IYIk5DgiGpQPi8o4k,6035
|
|
631
|
-
alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py,sha256=
|
|
634
|
+
alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py,sha256=EXDlB2vSwaYccxgKuPIpg6O3gMxIL75JrGe-Dm0b274,3842
|
|
632
635
|
alibabacloud_rds20140815/models/_describe_rcsnapshots_response.py,sha256=bVJALoVC7QedjVJ7HsGfW9lO5DWT4R3OIZO2izstaHc,1489
|
|
633
|
-
alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py,sha256=
|
|
636
|
+
alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py,sha256=PVKdbcdspxg1lhGbu2kY3tVvnIml4yjlWPEfAIPL25M,11802
|
|
634
637
|
alibabacloud_rds20140815/models/_describe_rcvcluster_request.py,sha256=5ORkCRgbtmH8ObI2DNszYtV0Snf23l6eTzZj9XlLahI,1089
|
|
635
638
|
alibabacloud_rds20140815/models/_describe_rcvcluster_response.py,sha256=xLqh606xJzdAskV50KjjwgG6uYqS2nthgv6sLikv2gc,1486
|
|
636
639
|
alibabacloud_rds20140815/models/_describe_rcvcluster_response_body.py,sha256=Unt-_rSw1B-G_y5D5UFNnNEnFfT413gHCSShtJMVzRU,1072
|
|
@@ -721,7 +724,7 @@ alibabacloud_rds20140815/models/_destroy_dbinstance_response_body.py,sha256=WhBy
|
|
|
721
724
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_request.py,sha256=xNJvIRbcjZ7c_rxnxQczY1qJ1cVwPGlIEoavelhIh5U,2265
|
|
722
725
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_response.py,sha256=x7BjlUyMmPwjMJ1S_ol1-upLZALnh5T_5TlcoSE5U68,1501
|
|
723
726
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_response_body.py,sha256=JDNcqwtU03RdACTn4jLCWaWb7nkTFWoEKA3b1SrJUVo,805
|
|
724
|
-
alibabacloud_rds20140815/models/_detach_rcdisk_request.py,sha256=
|
|
727
|
+
alibabacloud_rds20140815/models/_detach_rcdisk_request.py,sha256=SJMGybVpU-jow46Nux0VKssP2Irq5Xao3MXyiupjtYc,1935
|
|
725
728
|
alibabacloud_rds20140815/models/_detach_rcdisk_response.py,sha256=OIigQL2zAnpXwe74sgLMXlFXS8w3_G-AAPp69TpctQs,1468
|
|
726
729
|
alibabacloud_rds20140815/models/_detach_rcdisk_response_body.py,sha256=56Um4rWIHp2nLc2c8_zPgPtwdF9i1kn-Pscp-mLkqbI,794
|
|
727
730
|
alibabacloud_rds20140815/models/_detach_whitelist_template_to_instance_request.py,sha256=oOD1TcH40r-j40OcUUhxHZ57VpLkgfqgvos5pqXTstY,2650
|
|
@@ -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
|
|
@@ -939,7 +945,10 @@ alibabacloud_rds20140815/models/_modify_parameter_response_body.py,sha256=TWkmDB
|
|
|
939
945
|
alibabacloud_rds20140815/models/_modify_pghba_config_request.py,sha256=5qklQbyXTQ-8e4z4Z7-DqnLokhbmsJT9D8Q5S20XVf0,9384
|
|
940
946
|
alibabacloud_rds20140815/models/_modify_pghba_config_response.py,sha256=J7cDJz7ek39nEzAvZqmLC527S0wd_tAuixY2QB3O1CQ,1483
|
|
941
947
|
alibabacloud_rds20140815/models/_modify_pghba_config_response_body.py,sha256=T8CZ3A2STxkbppY-rKvCUI3wQvgyb4dqjl0aJq2qIG4,806
|
|
942
|
-
alibabacloud_rds20140815/models/
|
|
948
|
+
alibabacloud_rds20140815/models/_modify_rcdisk_attribute_request.py,sha256=2irOeC1UBowNOa28FihrC32tVAG9tDr-MmR7O3bips4,2223
|
|
949
|
+
alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response.py,sha256=FevuZ6VoKVCxthssDpJYmycVCdh6nEPZrRVY_ZEWLDw,1495
|
|
950
|
+
alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response_body.py,sha256=IhOrK8Bhs--C9Oys2kxhdov8DGifkq1T1AWyQQxoD-w,805
|
|
951
|
+
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py,sha256=m2TPIUibynFG302HUt6Dc033l06v69UDLKktFWmLZtc,3426
|
|
943
952
|
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response.py,sha256=zB7FgYXh-FKBB7rZDSSvUITLJRRIOU7SeMiFrRB_0rE,1498
|
|
944
953
|
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response_body.py,sha256=AMI05aZ1Ui97r27zTolqXNlssHX-te8UERYRpdIag2Y,1854
|
|
945
954
|
alibabacloud_rds20140815/models/_modify_rcdisk_spec_request.py,sha256=riVtVJipb_gpDpHJItupvMOYZtyed6BsMbNswCuNBUU,3584
|
|
@@ -1182,8 +1191,8 @@ alibabacloud_rds20140815/models/_upgrade_dbinstance_major_version_response_body.
|
|
|
1182
1191
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_request.py,sha256=YKxSyPLnrBfempCKlGsbw8y-lQaoKC9tDuon_zODMK8,4164
|
|
1183
1192
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response.py,sha256=wCg_jc-Zd2gJH4IdlaFOBHFcotYBMCU9Ay8EGJ9a4dU,1537
|
|
1184
1193
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response_body.py,sha256=UNvS1pq3eopumK9Sl6ELfb2xECWLlV_5i0n1s5i95L0,1427
|
|
1185
|
-
alibabacloud_rds20140815-14.0.
|
|
1186
|
-
alibabacloud_rds20140815-14.0.
|
|
1187
|
-
alibabacloud_rds20140815-14.0.
|
|
1188
|
-
alibabacloud_rds20140815-14.0.
|
|
1189
|
-
alibabacloud_rds20140815-14.0.
|
|
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,,
|
{alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_rds20140815-14.0.2.dist-info → alibabacloud_rds20140815-14.2.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|