alibabacloud-rds20140815 14.1.0__py3-none-any.whl → 15.0.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 +0 -106
- alibabacloud_rds20140815/models/__init__.py +0 -6
- alibabacloud_rds20140815/models/_create_rcsnapshot_request.py +2 -0
- alibabacloud_rds20140815/models/_delete_rcdisk_request.py +2 -0
- alibabacloud_rds20140815/models/_describe_dbinstance_replication_response_body.py +0 -8
- alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py +0 -16
- alibabacloud_rds20140815/models/_describe_rcinstances_response_body.py +0 -40
- alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py +2 -8
- alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py +0 -8
- alibabacloud_rds20140815/models/_detach_rcdisk_request.py +2 -0
- alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py +1 -8
- alibabacloud_rds20140815/models/_modify_rcinstance_charge_type_request.py +2 -0
- alibabacloud_rds20140815/models/_stop_rcinstance_request.py +0 -8
- alibabacloud_rds20140815/models/_stop_rcinstances_request.py +0 -8
- alibabacloud_rds20140815/models/_stop_rcinstances_shrink_request.py +0 -8
- {alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/METADATA +2 -2
- {alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/RECORD +21 -24
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_request.py +0 -75
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response.py +0 -54
- alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response_body.py +0 -34
- {alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '
|
|
1
|
+
__version__ = '15.0.0'
|
|
@@ -20378,8 +20378,6 @@ class Client(OpenApiClient):
|
|
|
20378
20378
|
query = {}
|
|
20379
20379
|
if not DaraCore.is_null(request.disk_id):
|
|
20380
20380
|
query['DiskId'] = request.disk_id
|
|
20381
|
-
if not DaraCore.is_null(request.instance_id):
|
|
20382
|
-
query['InstanceId'] = request.instance_id
|
|
20383
20381
|
if not DaraCore.is_null(request.page_number):
|
|
20384
20382
|
query['PageNumber'] = request.page_number
|
|
20385
20383
|
if not DaraCore.is_null(request.page_size):
|
|
@@ -20418,8 +20416,6 @@ class Client(OpenApiClient):
|
|
|
20418
20416
|
query = {}
|
|
20419
20417
|
if not DaraCore.is_null(request.disk_id):
|
|
20420
20418
|
query['DiskId'] = request.disk_id
|
|
20421
|
-
if not DaraCore.is_null(request.instance_id):
|
|
20422
|
-
query['InstanceId'] = request.instance_id
|
|
20423
20419
|
if not DaraCore.is_null(request.page_number):
|
|
20424
20420
|
query['PageNumber'] = request.page_number
|
|
20425
20421
|
if not DaraCore.is_null(request.page_size):
|
|
@@ -30599,96 +30595,6 @@ class Client(OpenApiClient):
|
|
|
30599
30595
|
runtime = RuntimeOptions()
|
|
30600
30596
|
return await self.modify_parameter_group_with_options_async(request, runtime)
|
|
30601
30597
|
|
|
30602
|
-
def modify_rcdisk_attribute_with_options(
|
|
30603
|
-
self,
|
|
30604
|
-
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30605
|
-
runtime: RuntimeOptions,
|
|
30606
|
-
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30607
|
-
request.validate()
|
|
30608
|
-
query = {}
|
|
30609
|
-
if not DaraCore.is_null(request.bursting_enabled):
|
|
30610
|
-
query['BurstingEnabled'] = request.bursting_enabled
|
|
30611
|
-
if not DaraCore.is_null(request.delete_with_instance):
|
|
30612
|
-
query['DeleteWithInstance'] = request.delete_with_instance
|
|
30613
|
-
if not DaraCore.is_null(request.description):
|
|
30614
|
-
query['Description'] = request.description
|
|
30615
|
-
if not DaraCore.is_null(request.disk_id):
|
|
30616
|
-
query['DiskId'] = request.disk_id
|
|
30617
|
-
if not DaraCore.is_null(request.disk_name):
|
|
30618
|
-
query['DiskName'] = request.disk_name
|
|
30619
|
-
if not DaraCore.is_null(request.region_id):
|
|
30620
|
-
query['RegionId'] = request.region_id
|
|
30621
|
-
req = open_api_util_models.OpenApiRequest(
|
|
30622
|
-
query = Utils.query(query)
|
|
30623
|
-
)
|
|
30624
|
-
params = open_api_util_models.Params(
|
|
30625
|
-
action = 'ModifyRCDiskAttribute',
|
|
30626
|
-
version = '2014-08-15',
|
|
30627
|
-
protocol = 'HTTPS',
|
|
30628
|
-
pathname = '/',
|
|
30629
|
-
method = 'POST',
|
|
30630
|
-
auth_type = 'AK',
|
|
30631
|
-
style = 'RPC',
|
|
30632
|
-
req_body_type = 'formData',
|
|
30633
|
-
body_type = 'json'
|
|
30634
|
-
)
|
|
30635
|
-
return DaraCore.from_map(
|
|
30636
|
-
main_models.ModifyRCDiskAttributeResponse(),
|
|
30637
|
-
self.call_api(params, req, runtime)
|
|
30638
|
-
)
|
|
30639
|
-
|
|
30640
|
-
async def modify_rcdisk_attribute_with_options_async(
|
|
30641
|
-
self,
|
|
30642
|
-
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30643
|
-
runtime: RuntimeOptions,
|
|
30644
|
-
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30645
|
-
request.validate()
|
|
30646
|
-
query = {}
|
|
30647
|
-
if not DaraCore.is_null(request.bursting_enabled):
|
|
30648
|
-
query['BurstingEnabled'] = request.bursting_enabled
|
|
30649
|
-
if not DaraCore.is_null(request.delete_with_instance):
|
|
30650
|
-
query['DeleteWithInstance'] = request.delete_with_instance
|
|
30651
|
-
if not DaraCore.is_null(request.description):
|
|
30652
|
-
query['Description'] = request.description
|
|
30653
|
-
if not DaraCore.is_null(request.disk_id):
|
|
30654
|
-
query['DiskId'] = request.disk_id
|
|
30655
|
-
if not DaraCore.is_null(request.disk_name):
|
|
30656
|
-
query['DiskName'] = request.disk_name
|
|
30657
|
-
if not DaraCore.is_null(request.region_id):
|
|
30658
|
-
query['RegionId'] = request.region_id
|
|
30659
|
-
req = open_api_util_models.OpenApiRequest(
|
|
30660
|
-
query = Utils.query(query)
|
|
30661
|
-
)
|
|
30662
|
-
params = open_api_util_models.Params(
|
|
30663
|
-
action = 'ModifyRCDiskAttribute',
|
|
30664
|
-
version = '2014-08-15',
|
|
30665
|
-
protocol = 'HTTPS',
|
|
30666
|
-
pathname = '/',
|
|
30667
|
-
method = 'POST',
|
|
30668
|
-
auth_type = 'AK',
|
|
30669
|
-
style = 'RPC',
|
|
30670
|
-
req_body_type = 'formData',
|
|
30671
|
-
body_type = 'json'
|
|
30672
|
-
)
|
|
30673
|
-
return DaraCore.from_map(
|
|
30674
|
-
main_models.ModifyRCDiskAttributeResponse(),
|
|
30675
|
-
await self.call_api_async(params, req, runtime)
|
|
30676
|
-
)
|
|
30677
|
-
|
|
30678
|
-
def modify_rcdisk_attribute(
|
|
30679
|
-
self,
|
|
30680
|
-
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30681
|
-
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30682
|
-
runtime = RuntimeOptions()
|
|
30683
|
-
return self.modify_rcdisk_attribute_with_options(request, runtime)
|
|
30684
|
-
|
|
30685
|
-
async def modify_rcdisk_attribute_async(
|
|
30686
|
-
self,
|
|
30687
|
-
request: main_models.ModifyRCDiskAttributeRequest,
|
|
30688
|
-
) -> main_models.ModifyRCDiskAttributeResponse:
|
|
30689
|
-
runtime = RuntimeOptions()
|
|
30690
|
-
return await self.modify_rcdisk_attribute_with_options_async(request, runtime)
|
|
30691
|
-
|
|
30692
30598
|
def modify_rcdisk_charge_type_with_options(
|
|
30693
30599
|
self,
|
|
30694
30600
|
request: main_models.ModifyRCDiskChargeTypeRequest,
|
|
@@ -30696,8 +30602,6 @@ class Client(OpenApiClient):
|
|
|
30696
30602
|
) -> main_models.ModifyRCDiskChargeTypeResponse:
|
|
30697
30603
|
request.validate()
|
|
30698
30604
|
query = {}
|
|
30699
|
-
if not DaraCore.is_null(request.auto_pay):
|
|
30700
|
-
query['AutoPay'] = request.auto_pay
|
|
30701
30605
|
if not DaraCore.is_null(request.auto_renew):
|
|
30702
30606
|
query['AutoRenew'] = request.auto_renew
|
|
30703
30607
|
if not DaraCore.is_null(request.auto_use_coupon):
|
|
@@ -30740,8 +30644,6 @@ class Client(OpenApiClient):
|
|
|
30740
30644
|
) -> main_models.ModifyRCDiskChargeTypeResponse:
|
|
30741
30645
|
request.validate()
|
|
30742
30646
|
query = {}
|
|
30743
|
-
if not DaraCore.is_null(request.auto_pay):
|
|
30744
|
-
query['AutoPay'] = request.auto_pay
|
|
30745
30647
|
if not DaraCore.is_null(request.auto_renew):
|
|
30746
30648
|
query['AutoRenew'] = request.auto_renew
|
|
30747
30649
|
if not DaraCore.is_null(request.auto_use_coupon):
|
|
@@ -36290,8 +36192,6 @@ class Client(OpenApiClient):
|
|
|
36290
36192
|
query['InstanceId'] = request.instance_id
|
|
36291
36193
|
if not DaraCore.is_null(request.region_id):
|
|
36292
36194
|
query['RegionId'] = request.region_id
|
|
36293
|
-
if not DaraCore.is_null(request.stopped_mode):
|
|
36294
|
-
query['StoppedMode'] = request.stopped_mode
|
|
36295
36195
|
req = open_api_util_models.OpenApiRequest(
|
|
36296
36196
|
query = Utils.query(query)
|
|
36297
36197
|
)
|
|
@@ -36324,8 +36224,6 @@ class Client(OpenApiClient):
|
|
|
36324
36224
|
query['InstanceId'] = request.instance_id
|
|
36325
36225
|
if not DaraCore.is_null(request.region_id):
|
|
36326
36226
|
query['RegionId'] = request.region_id
|
|
36327
|
-
if not DaraCore.is_null(request.stopped_mode):
|
|
36328
|
-
query['StoppedMode'] = request.stopped_mode
|
|
36329
36227
|
req = open_api_util_models.OpenApiRequest(
|
|
36330
36228
|
query = Utils.query(query)
|
|
36331
36229
|
)
|
|
@@ -36378,8 +36276,6 @@ class Client(OpenApiClient):
|
|
|
36378
36276
|
query['InstanceIds'] = request.instance_ids_shrink
|
|
36379
36277
|
if not DaraCore.is_null(request.region_id):
|
|
36380
36278
|
query['RegionId'] = request.region_id
|
|
36381
|
-
if not DaraCore.is_null(request.stopped_mode):
|
|
36382
|
-
query['StoppedMode'] = request.stopped_mode
|
|
36383
36279
|
req = open_api_util_models.OpenApiRequest(
|
|
36384
36280
|
query = Utils.query(query)
|
|
36385
36281
|
)
|
|
@@ -36418,8 +36314,6 @@ class Client(OpenApiClient):
|
|
|
36418
36314
|
query['InstanceIds'] = request.instance_ids_shrink
|
|
36419
36315
|
if not DaraCore.is_null(request.region_id):
|
|
36420
36316
|
query['RegionId'] = request.region_id
|
|
36421
|
-
if not DaraCore.is_null(request.stopped_mode):
|
|
36422
|
-
query['StoppedMode'] = request.stopped_mode
|
|
36423
36317
|
req = open_api_util_models.OpenApiRequest(
|
|
36424
36318
|
query = Utils.query(query)
|
|
36425
36319
|
)
|
|
@@ -940,9 +940,6 @@ from ._modify_parameter_response import ModifyParameterResponse
|
|
|
940
940
|
from ._modify_parameter_group_request import ModifyParameterGroupRequest
|
|
941
941
|
from ._modify_parameter_group_response_body import ModifyParameterGroupResponseBody
|
|
942
942
|
from ._modify_parameter_group_response import ModifyParameterGroupResponse
|
|
943
|
-
from ._modify_rcdisk_attribute_request import ModifyRCDiskAttributeRequest
|
|
944
|
-
from ._modify_rcdisk_attribute_response_body import ModifyRCDiskAttributeResponseBody
|
|
945
|
-
from ._modify_rcdisk_attribute_response import ModifyRCDiskAttributeResponse
|
|
946
943
|
from ._modify_rcdisk_charge_type_request import ModifyRCDiskChargeTypeRequest
|
|
947
944
|
from ._modify_rcdisk_charge_type_response_body import ModifyRCDiskChargeTypeResponseBody
|
|
948
945
|
from ._modify_rcdisk_charge_type_response import ModifyRCDiskChargeTypeResponse
|
|
@@ -2526,9 +2523,6 @@ __all__ = [
|
|
|
2526
2523
|
ModifyParameterGroupRequest,
|
|
2527
2524
|
ModifyParameterGroupResponseBody,
|
|
2528
2525
|
ModifyParameterGroupResponse,
|
|
2529
|
-
ModifyRCDiskAttributeRequest,
|
|
2530
|
-
ModifyRCDiskAttributeResponseBody,
|
|
2531
|
-
ModifyRCDiskAttributeResponse,
|
|
2532
2526
|
ModifyRCDiskChargeTypeRequest,
|
|
2533
2527
|
ModifyRCDiskChargeTypeResponseBody,
|
|
2534
2528
|
ModifyRCDiskChargeTypeResponse,
|
|
@@ -31,6 +31,8 @@ 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.
|
|
34
36
|
self.region_id = region_id
|
|
35
37
|
self.resource_group_id = resource_group_id
|
|
36
38
|
# The retention period of the snapshot. Valid values: 1 to 65536. Unit: days. The snapshot is automatically released when its retention period expires.
|
|
@@ -9,7 +9,6 @@ class DescribeDBInstanceReplicationResponseBody(DaraModel):
|
|
|
9
9
|
self,
|
|
10
10
|
external_replication: str = None,
|
|
11
11
|
gtid_executed: str = None,
|
|
12
|
-
import_status: str = None,
|
|
13
12
|
replication_delay: str = None,
|
|
14
13
|
replication_error_message: str = None,
|
|
15
14
|
replication_ip: str = None,
|
|
@@ -24,7 +23,6 @@ class DescribeDBInstanceReplicationResponseBody(DaraModel):
|
|
|
24
23
|
# * **OFF**
|
|
25
24
|
self.external_replication = external_replication
|
|
26
25
|
self.gtid_executed = gtid_executed
|
|
27
|
-
self.import_status = import_status
|
|
28
26
|
# The replication latency. Unit: seconds.
|
|
29
27
|
self.replication_delay = replication_delay
|
|
30
28
|
# The replication error message.
|
|
@@ -57,9 +55,6 @@ class DescribeDBInstanceReplicationResponseBody(DaraModel):
|
|
|
57
55
|
if self.gtid_executed is not None:
|
|
58
56
|
result['GtidExecuted'] = self.gtid_executed
|
|
59
57
|
|
|
60
|
-
if self.import_status is not None:
|
|
61
|
-
result['ImportStatus'] = self.import_status
|
|
62
|
-
|
|
63
58
|
if self.replication_delay is not None:
|
|
64
59
|
result['ReplicationDelay'] = self.replication_delay
|
|
65
60
|
|
|
@@ -91,9 +86,6 @@ class DescribeDBInstanceReplicationResponseBody(DaraModel):
|
|
|
91
86
|
if m.get('GtidExecuted') is not None:
|
|
92
87
|
self.gtid_executed = m.get('GtidExecuted')
|
|
93
88
|
|
|
94
|
-
if m.get('ImportStatus') is not None:
|
|
95
|
-
self.import_status = m.get('ImportStatus')
|
|
96
|
-
|
|
97
89
|
if m.get('ReplicationDelay') is not None:
|
|
98
90
|
self.replication_delay = m.get('ReplicationDelay')
|
|
99
91
|
|
|
@@ -83,7 +83,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
83
83
|
def __init__(
|
|
84
84
|
self,
|
|
85
85
|
attached_time: str = None,
|
|
86
|
-
bursting_enabled: bool = None,
|
|
87
86
|
category: str = None,
|
|
88
87
|
creation_time: str = None,
|
|
89
88
|
delete_auto_snapshot: bool = None,
|
|
@@ -99,7 +98,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
99
98
|
image_id: str = None,
|
|
100
99
|
instance_id: str = None,
|
|
101
100
|
performance_level: str = None,
|
|
102
|
-
portable: bool = None,
|
|
103
101
|
region_id: str = None,
|
|
104
102
|
resource_group_id: str = None,
|
|
105
103
|
serial_number: str = None,
|
|
@@ -113,7 +111,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
113
111
|
zone_id: str = None,
|
|
114
112
|
):
|
|
115
113
|
self.attached_time = attached_time
|
|
116
|
-
self.bursting_enabled = bursting_enabled
|
|
117
114
|
# The category of the disk. Valid values:
|
|
118
115
|
#
|
|
119
116
|
# * **cloud_efficiency**: ultra disk.
|
|
@@ -167,7 +164,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
167
164
|
# * PL2: A single ESSD can deliver up to 100,000 random read/write IOPS.
|
|
168
165
|
# * PL3: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
|
|
169
166
|
self.performance_level = performance_level
|
|
170
|
-
self.portable = portable
|
|
171
167
|
# The region ID.
|
|
172
168
|
self.region_id = region_id
|
|
173
169
|
# The ID of the resource group to which the disk belongs.
|
|
@@ -217,9 +213,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
217
213
|
if self.attached_time is not None:
|
|
218
214
|
result['AttachedTime'] = self.attached_time
|
|
219
215
|
|
|
220
|
-
if self.bursting_enabled is not None:
|
|
221
|
-
result['BurstingEnabled'] = self.bursting_enabled
|
|
222
|
-
|
|
223
216
|
if self.category is not None:
|
|
224
217
|
result['Category'] = self.category
|
|
225
218
|
|
|
@@ -265,9 +258,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
265
258
|
if self.performance_level is not None:
|
|
266
259
|
result['PerformanceLevel'] = self.performance_level
|
|
267
260
|
|
|
268
|
-
if self.portable is not None:
|
|
269
|
-
result['Portable'] = self.portable
|
|
270
|
-
|
|
271
261
|
if self.region_id is not None:
|
|
272
262
|
result['RegionId'] = self.region_id
|
|
273
263
|
|
|
@@ -310,9 +300,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
310
300
|
if m.get('AttachedTime') is not None:
|
|
311
301
|
self.attached_time = m.get('AttachedTime')
|
|
312
302
|
|
|
313
|
-
if m.get('BurstingEnabled') is not None:
|
|
314
|
-
self.bursting_enabled = m.get('BurstingEnabled')
|
|
315
|
-
|
|
316
303
|
if m.get('Category') is not None:
|
|
317
304
|
self.category = m.get('Category')
|
|
318
305
|
|
|
@@ -358,9 +345,6 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
358
345
|
if m.get('PerformanceLevel') is not None:
|
|
359
346
|
self.performance_level = m.get('PerformanceLevel')
|
|
360
347
|
|
|
361
|
-
if m.get('Portable') is not None:
|
|
362
|
-
self.portable = m.get('Portable')
|
|
363
|
-
|
|
364
348
|
if m.get('RegionId') is not None:
|
|
365
349
|
self.region_id = m.get('RegionId')
|
|
366
350
|
|
|
@@ -88,7 +88,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
88
88
|
db_type: str = None,
|
|
89
89
|
deployment_set_id: str = None,
|
|
90
90
|
description: str = None,
|
|
91
|
-
ecs_host_name: str = None,
|
|
92
91
|
expired_time: str = None,
|
|
93
92
|
gmt_created: str = None,
|
|
94
93
|
host_ip: str = None,
|
|
@@ -101,15 +100,11 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
101
100
|
instance_type_family: str = None,
|
|
102
101
|
memory: int = None,
|
|
103
102
|
node_type: str = None,
|
|
104
|
-
osname: str = None,
|
|
105
|
-
ostype: str = None,
|
|
106
103
|
public_ip: str = None,
|
|
107
104
|
region_id: str = None,
|
|
108
105
|
security_group_id: str = None,
|
|
109
106
|
spot_strategy: str = None,
|
|
110
|
-
start_time: str = None,
|
|
111
107
|
status: str = None,
|
|
112
|
-
stopped_mode: str = None,
|
|
113
108
|
tag_resources: List[main_models.DescribeRCInstancesResponseBodyRCInstancesTagResources] = None,
|
|
114
109
|
tags: List[main_models.DescribeRCInstancesResponseBodyRCInstancesTags] = None,
|
|
115
110
|
vpc_attributes: main_models.DescribeRCInstancesResponseBodyRCInstancesVpcAttributes = None,
|
|
@@ -125,7 +120,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
125
120
|
self.deployment_set_id = deployment_set_id
|
|
126
121
|
# The instance description.
|
|
127
122
|
self.description = description
|
|
128
|
-
self.ecs_host_name = ecs_host_name
|
|
129
123
|
self.expired_time = expired_time
|
|
130
124
|
# The time when the task was created. The time is displayed in GMT.
|
|
131
125
|
self.gmt_created = gmt_created
|
|
@@ -142,14 +136,11 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
142
136
|
self.instance_type_family = instance_type_family
|
|
143
137
|
self.memory = memory
|
|
144
138
|
self.node_type = node_type
|
|
145
|
-
self.osname = osname
|
|
146
|
-
self.ostype = ostype
|
|
147
139
|
self.public_ip = public_ip
|
|
148
140
|
# The region ID.
|
|
149
141
|
self.region_id = region_id
|
|
150
142
|
self.security_group_id = security_group_id
|
|
151
143
|
self.spot_strategy = spot_strategy
|
|
152
|
-
self.start_time = start_time
|
|
153
144
|
# The instance status. Valid values:
|
|
154
145
|
#
|
|
155
146
|
# * **Pending**
|
|
@@ -160,7 +151,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
160
151
|
#
|
|
161
152
|
# > If the value returned for the DescribeRCInstances operation is different from the value that is returned for the **DescribeRCInstanceAttribute** operation, the value returned for the **DescribeRCInstanceAttribute** operation shall prevail.
|
|
162
153
|
self.status = status
|
|
163
|
-
self.stopped_mode = stopped_mode
|
|
164
154
|
self.tag_resources = tag_resources
|
|
165
155
|
self.tags = tags
|
|
166
156
|
self.vpc_attributes = vpc_attributes
|
|
@@ -203,9 +193,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
203
193
|
if self.description is not None:
|
|
204
194
|
result['Description'] = self.description
|
|
205
195
|
|
|
206
|
-
if self.ecs_host_name is not None:
|
|
207
|
-
result['EcsHostName'] = self.ecs_host_name
|
|
208
|
-
|
|
209
196
|
if self.expired_time is not None:
|
|
210
197
|
result['ExpiredTime'] = self.expired_time
|
|
211
198
|
|
|
@@ -242,12 +229,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
242
229
|
if self.node_type is not None:
|
|
243
230
|
result['NodeType'] = self.node_type
|
|
244
231
|
|
|
245
|
-
if self.osname is not None:
|
|
246
|
-
result['OSName'] = self.osname
|
|
247
|
-
|
|
248
|
-
if self.ostype is not None:
|
|
249
|
-
result['OSType'] = self.ostype
|
|
250
|
-
|
|
251
232
|
if self.public_ip is not None:
|
|
252
233
|
result['PublicIp'] = self.public_ip
|
|
253
234
|
|
|
@@ -260,15 +241,9 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
260
241
|
if self.spot_strategy is not None:
|
|
261
242
|
result['SpotStrategy'] = self.spot_strategy
|
|
262
243
|
|
|
263
|
-
if self.start_time is not None:
|
|
264
|
-
result['StartTime'] = self.start_time
|
|
265
|
-
|
|
266
244
|
if self.status is not None:
|
|
267
245
|
result['Status'] = self.status
|
|
268
246
|
|
|
269
|
-
if self.stopped_mode is not None:
|
|
270
|
-
result['StoppedMode'] = self.stopped_mode
|
|
271
|
-
|
|
272
247
|
result['TagResources'] = []
|
|
273
248
|
if self.tag_resources is not None:
|
|
274
249
|
for k1 in self.tag_resources:
|
|
@@ -310,9 +285,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
310
285
|
if m.get('Description') is not None:
|
|
311
286
|
self.description = m.get('Description')
|
|
312
287
|
|
|
313
|
-
if m.get('EcsHostName') is not None:
|
|
314
|
-
self.ecs_host_name = m.get('EcsHostName')
|
|
315
|
-
|
|
316
288
|
if m.get('ExpiredTime') is not None:
|
|
317
289
|
self.expired_time = m.get('ExpiredTime')
|
|
318
290
|
|
|
@@ -349,12 +321,6 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
349
321
|
if m.get('NodeType') is not None:
|
|
350
322
|
self.node_type = m.get('NodeType')
|
|
351
323
|
|
|
352
|
-
if m.get('OSName') is not None:
|
|
353
|
-
self.osname = m.get('OSName')
|
|
354
|
-
|
|
355
|
-
if m.get('OSType') is not None:
|
|
356
|
-
self.ostype = m.get('OSType')
|
|
357
|
-
|
|
358
324
|
if m.get('PublicIp') is not None:
|
|
359
325
|
self.public_ip = m.get('PublicIp')
|
|
360
326
|
|
|
@@ -367,15 +333,9 @@ class DescribeRCInstancesResponseBodyRCInstances(DaraModel):
|
|
|
367
333
|
if m.get('SpotStrategy') is not None:
|
|
368
334
|
self.spot_strategy = m.get('SpotStrategy')
|
|
369
335
|
|
|
370
|
-
if m.get('StartTime') is not None:
|
|
371
|
-
self.start_time = m.get('StartTime')
|
|
372
|
-
|
|
373
336
|
if m.get('Status') is not None:
|
|
374
337
|
self.status = m.get('Status')
|
|
375
338
|
|
|
376
|
-
if m.get('StoppedMode') is not None:
|
|
377
|
-
self.stopped_mode = m.get('StoppedMode')
|
|
378
|
-
|
|
379
339
|
self.tag_resources = []
|
|
380
340
|
if m.get('TagResources') is not None:
|
|
381
341
|
for k1 in m.get('TagResources'):
|
|
@@ -11,7 +11,6 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
11
11
|
def __init__(
|
|
12
12
|
self,
|
|
13
13
|
disk_id: str = None,
|
|
14
|
-
instance_id: str = None,
|
|
15
14
|
page_number: int = None,
|
|
16
15
|
page_size: int = None,
|
|
17
16
|
region_id: str = None,
|
|
@@ -20,12 +19,13 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
20
19
|
):
|
|
21
20
|
# The cloud disk ID.
|
|
22
21
|
self.disk_id = disk_id
|
|
23
|
-
self.instance_id = instance_id
|
|
24
22
|
# The page number.
|
|
25
23
|
self.page_number = page_number
|
|
26
24
|
# The number of entries per page. Valid values: **30** to **100**. Default value: **30**.
|
|
27
25
|
self.page_size = page_size
|
|
28
26
|
# 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,9 +47,6 @@ 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
|
-
|
|
53
50
|
if self.page_number is not None:
|
|
54
51
|
result['PageNumber'] = self.page_number
|
|
55
52
|
|
|
@@ -74,9 +71,6 @@ class DescribeRCSnapshotsRequest(DaraModel):
|
|
|
74
71
|
if m.get('DiskId') is not None:
|
|
75
72
|
self.disk_id = m.get('DiskId')
|
|
76
73
|
|
|
77
|
-
if m.get('InstanceId') is not None:
|
|
78
|
-
self.instance_id = m.get('InstanceId')
|
|
79
|
-
|
|
80
74
|
if m.get('PageNumber') is not None:
|
|
81
75
|
self.page_number = m.get('PageNumber')
|
|
82
76
|
|
|
@@ -88,7 +88,6 @@ 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,
|
|
92
91
|
progress: str = None,
|
|
93
92
|
region_id: str = None,
|
|
94
93
|
resource_group_id: str = None,
|
|
@@ -125,7 +124,6 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
125
124
|
self.encrypted = encrypted
|
|
126
125
|
# This parameter is deprecated.
|
|
127
126
|
self.instant_access = instant_access
|
|
128
|
-
self.last_modified_time = last_modified_time
|
|
129
127
|
# The progress of the snapshot creation task in percentage.
|
|
130
128
|
self.progress = progress
|
|
131
129
|
# The region ID.
|
|
@@ -198,9 +196,6 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
198
196
|
if self.instant_access is not None:
|
|
199
197
|
result['InstantAccess'] = self.instant_access
|
|
200
198
|
|
|
201
|
-
if self.last_modified_time is not None:
|
|
202
|
-
result['LastModifiedTime'] = self.last_modified_time
|
|
203
|
-
|
|
204
199
|
if self.progress is not None:
|
|
205
200
|
result['Progress'] = self.progress
|
|
206
201
|
|
|
@@ -264,9 +259,6 @@ class DescribeRCSnapshotsResponseBodySnapshots(DaraModel):
|
|
|
264
259
|
if m.get('InstantAccess') is not None:
|
|
265
260
|
self.instant_access = m.get('InstantAccess')
|
|
266
261
|
|
|
267
|
-
if m.get('LastModifiedTime') is not None:
|
|
268
|
-
self.last_modified_time = m.get('LastModifiedTime')
|
|
269
|
-
|
|
270
262
|
if m.get('Progress') is not None:
|
|
271
263
|
self.progress = m.get('Progress')
|
|
272
264
|
|
|
@@ -23,6 +23,8 @@ 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.
|
|
26
28
|
self.region_id = region_id
|
|
27
29
|
|
|
28
30
|
def validate(self):
|
|
@@ -7,7 +7,6 @@ from darabonba.model import DaraModel
|
|
|
7
7
|
class ModifyRCDiskChargeTypeRequest(DaraModel):
|
|
8
8
|
def __init__(
|
|
9
9
|
self,
|
|
10
|
-
auto_pay: bool = None,
|
|
11
10
|
auto_renew: str = None,
|
|
12
11
|
auto_use_coupon: bool = None,
|
|
13
12
|
business_info: str = None,
|
|
@@ -17,13 +16,13 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
|
|
|
17
16
|
promotion_code: str = None,
|
|
18
17
|
region_id: str = None,
|
|
19
18
|
):
|
|
20
|
-
self.auto_pay = auto_pay
|
|
21
19
|
self.auto_renew = auto_renew
|
|
22
20
|
self.auto_use_coupon = auto_use_coupon
|
|
23
21
|
self.business_info = business_info
|
|
24
22
|
self.client_token = client_token
|
|
25
23
|
# This parameter is required.
|
|
26
24
|
self.instance_id = instance_id
|
|
25
|
+
# This parameter is required.
|
|
27
26
|
self.pay_type = pay_type
|
|
28
27
|
self.promotion_code = promotion_code
|
|
29
28
|
# This parameter is required.
|
|
@@ -37,9 +36,6 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
|
|
|
37
36
|
_map = super().to_map()
|
|
38
37
|
if _map is not None:
|
|
39
38
|
result = _map
|
|
40
|
-
if self.auto_pay is not None:
|
|
41
|
-
result['AutoPay'] = self.auto_pay
|
|
42
|
-
|
|
43
39
|
if self.auto_renew is not None:
|
|
44
40
|
result['AutoRenew'] = self.auto_renew
|
|
45
41
|
|
|
@@ -68,9 +64,6 @@ class ModifyRCDiskChargeTypeRequest(DaraModel):
|
|
|
68
64
|
|
|
69
65
|
def from_map(self, m: dict = None):
|
|
70
66
|
m = m or dict()
|
|
71
|
-
if m.get('AutoPay') is not None:
|
|
72
|
-
self.auto_pay = m.get('AutoPay')
|
|
73
|
-
|
|
74
67
|
if m.get('AutoRenew') is not None:
|
|
75
68
|
self.auto_renew = m.get('AutoRenew')
|
|
76
69
|
|
|
@@ -55,6 +55,8 @@ class ModifyRCInstanceChargeTypeRequest(DaraModel):
|
|
|
55
55
|
# The new billing method of the instance. Valid values:
|
|
56
56
|
# * **Prepaid**: subscription.
|
|
57
57
|
# * **Postpaid**: pay-as-you-go.
|
|
58
|
+
#
|
|
59
|
+
# This parameter is required.
|
|
58
60
|
self.pay_type = pay_type
|
|
59
61
|
# The renewal cycle of the instance. Valid values:
|
|
60
62
|
# * **Year**
|
|
@@ -10,7 +10,6 @@ class StopRCInstanceRequest(DaraModel):
|
|
|
10
10
|
force_stop: bool = None,
|
|
11
11
|
instance_id: str = None,
|
|
12
12
|
region_id: str = None,
|
|
13
|
-
stopped_mode: str = None,
|
|
14
13
|
):
|
|
15
14
|
# Specifies whether to forcefully stop the instance. Valid values:
|
|
16
15
|
#
|
|
@@ -23,7 +22,6 @@ class StopRCInstanceRequest(DaraModel):
|
|
|
23
22
|
self.instance_id = instance_id
|
|
24
23
|
# The region ID.
|
|
25
24
|
self.region_id = region_id
|
|
26
|
-
self.stopped_mode = stopped_mode
|
|
27
25
|
|
|
28
26
|
def validate(self):
|
|
29
27
|
pass
|
|
@@ -42,9 +40,6 @@ class StopRCInstanceRequest(DaraModel):
|
|
|
42
40
|
if self.region_id is not None:
|
|
43
41
|
result['RegionId'] = self.region_id
|
|
44
42
|
|
|
45
|
-
if self.stopped_mode is not None:
|
|
46
|
-
result['StoppedMode'] = self.stopped_mode
|
|
47
|
-
|
|
48
43
|
return result
|
|
49
44
|
|
|
50
45
|
def from_map(self, m: dict = None):
|
|
@@ -58,8 +53,5 @@ class StopRCInstanceRequest(DaraModel):
|
|
|
58
53
|
if m.get('RegionId') is not None:
|
|
59
54
|
self.region_id = m.get('RegionId')
|
|
60
55
|
|
|
61
|
-
if m.get('StoppedMode') is not None:
|
|
62
|
-
self.stopped_mode = m.get('StoppedMode')
|
|
63
|
-
|
|
64
56
|
return self
|
|
65
57
|
|
|
@@ -13,7 +13,6 @@ class StopRCInstancesRequest(DaraModel):
|
|
|
13
13
|
force_stop: bool = None,
|
|
14
14
|
instance_ids: List[str] = None,
|
|
15
15
|
region_id: str = None,
|
|
16
|
-
stopped_mode: str = None,
|
|
17
16
|
):
|
|
18
17
|
# The batch operation mode. Set the value to **AllTogether**. In this mode, if all instances are stopped, a success message is returned. If an instance fails the verification, none of the instances can be stopped and an error message is returned.
|
|
19
18
|
self.batch_optimization = batch_optimization
|
|
@@ -26,7 +25,6 @@ class StopRCInstancesRequest(DaraModel):
|
|
|
26
25
|
self.instance_ids = instance_ids
|
|
27
26
|
# The region ID of the instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/26243.html) operation to query the most recent region list.
|
|
28
27
|
self.region_id = region_id
|
|
29
|
-
self.stopped_mode = stopped_mode
|
|
30
28
|
|
|
31
29
|
def validate(self):
|
|
32
30
|
pass
|
|
@@ -48,9 +46,6 @@ class StopRCInstancesRequest(DaraModel):
|
|
|
48
46
|
if self.region_id is not None:
|
|
49
47
|
result['RegionId'] = self.region_id
|
|
50
48
|
|
|
51
|
-
if self.stopped_mode is not None:
|
|
52
|
-
result['StoppedMode'] = self.stopped_mode
|
|
53
|
-
|
|
54
49
|
return result
|
|
55
50
|
|
|
56
51
|
def from_map(self, m: dict = None):
|
|
@@ -67,8 +62,5 @@ class StopRCInstancesRequest(DaraModel):
|
|
|
67
62
|
if m.get('RegionId') is not None:
|
|
68
63
|
self.region_id = m.get('RegionId')
|
|
69
64
|
|
|
70
|
-
if m.get('StoppedMode') is not None:
|
|
71
|
-
self.stopped_mode = m.get('StoppedMode')
|
|
72
|
-
|
|
73
65
|
return self
|
|
74
66
|
|
|
@@ -11,7 +11,6 @@ class StopRCInstancesShrinkRequest(DaraModel):
|
|
|
11
11
|
force_stop: bool = None,
|
|
12
12
|
instance_ids_shrink: str = None,
|
|
13
13
|
region_id: str = None,
|
|
14
|
-
stopped_mode: str = None,
|
|
15
14
|
):
|
|
16
15
|
# The batch operation mode. Set the value to **AllTogether**. In this mode, if all instances are stopped, a success message is returned. If an instance fails the verification, none of the instances can be stopped and an error message is returned.
|
|
17
16
|
self.batch_optimization = batch_optimization
|
|
@@ -24,7 +23,6 @@ class StopRCInstancesShrinkRequest(DaraModel):
|
|
|
24
23
|
self.instance_ids_shrink = instance_ids_shrink
|
|
25
24
|
# The region ID of the instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/26243.html) operation to query the most recent region list.
|
|
26
25
|
self.region_id = region_id
|
|
27
|
-
self.stopped_mode = stopped_mode
|
|
28
26
|
|
|
29
27
|
def validate(self):
|
|
30
28
|
pass
|
|
@@ -46,9 +44,6 @@ class StopRCInstancesShrinkRequest(DaraModel):
|
|
|
46
44
|
if self.region_id is not None:
|
|
47
45
|
result['RegionId'] = self.region_id
|
|
48
46
|
|
|
49
|
-
if self.stopped_mode is not None:
|
|
50
|
-
result['StoppedMode'] = self.stopped_mode
|
|
51
|
-
|
|
52
47
|
return result
|
|
53
48
|
|
|
54
49
|
def from_map(self, m: dict = None):
|
|
@@ -65,8 +60,5 @@ class StopRCInstancesShrinkRequest(DaraModel):
|
|
|
65
60
|
if m.get('RegionId') is not None:
|
|
66
61
|
self.region_id = m.get('RegionId')
|
|
67
62
|
|
|
68
|
-
if m.get('StoppedMode') is not None:
|
|
69
|
-
self.stopped_mode = m.get('StoppedMode')
|
|
70
|
-
|
|
71
63
|
return self
|
|
72
64
|
|
{alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-rds20140815
|
|
3
|
-
Version:
|
|
3
|
+
Version: 15.0.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
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development
|
|
|
23
23
|
Requires-Python: >=3.7
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
|
|
27
27
|
Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
|
|
28
28
|
|
|
29
29
|
English | [简体中文](README-CN.md)
|
{alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.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=Ng2pixbfwEMQAJWYTkP4kN48pIKjw4uD7VcHYgjXl1g,22
|
|
2
|
+
alibabacloud_rds20140815/client.py,sha256=IVkZ20Tm_mq9xsydECcjK7Vz3k1Vk7_3gSl9qsBCAts,1648648
|
|
3
|
+
alibabacloud_rds20140815/models/__init__.py,sha256=pAsUpaSlUlgcSJMv09C665blId0k0z6JFsCx2gHo1_Q,210400
|
|
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
|
|
@@ -155,7 +155,7 @@ alibabacloud_rds20140815/models/_create_rcnode_pool_request.py,sha256=UZoh1i055K
|
|
|
155
155
|
alibabacloud_rds20140815/models/_create_rcnode_pool_response.py,sha256=ZQXmKGG37ZN0NPFFiccr3BfPNgBynZKTiZhwKvb29go,1480
|
|
156
156
|
alibabacloud_rds20140815/models/_create_rcnode_pool_response_body.py,sha256=TocnL8MttI-qjIuH9SrDpTcw9uwor-m3EaTO3oV-ycw,1716
|
|
157
157
|
alibabacloud_rds20140815/models/_create_rcnode_pool_shrink_request.py,sha256=bguLBUosjwTbzxnfO2j-MvEjaK-e5jFYOx5sm2OUDFQ,16316
|
|
158
|
-
alibabacloud_rds20140815/models/_create_rcsnapshot_request.py,sha256=
|
|
158
|
+
alibabacloud_rds20140815/models/_create_rcsnapshot_request.py,sha256=x1GUFmfSGq7KEdx10KAj70a_LfKSizKhOiFWs7lKAaA,4923
|
|
159
159
|
alibabacloud_rds20140815/models/_create_rcsnapshot_response.py,sha256=solRfUnpuHjH23Pek_Iy-YLF4YlHU5OxtKZaqnPBEJA,1480
|
|
160
160
|
alibabacloud_rds20140815/models/_create_rcsnapshot_response_body.py,sha256=edVL2aVrwZBVRgtgpR-lLi4jIA2fWgBthEfu0URtpZs,1087
|
|
161
161
|
alibabacloud_rds20140815/models/_create_read_only_dbinstance_request.py,sha256=l8fEa0haK5paLGKOmij1yV3xCJrLBkrzCGY4WAaFFos,21675
|
|
@@ -229,7 +229,7 @@ alibabacloud_rds20140815/models/_delete_rccluster_nodes_shrink_request.py,sha256
|
|
|
229
229
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_request.py,sha256=SquomieS1mSE48sZ8Orte8NOQZFCjly7wmVoubPyijE,1232
|
|
230
230
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_response.py,sha256=if7z-bqcnij_uVcJt3rsgSpbHdx1C-1z6CuFmdDsbqA,1495
|
|
231
231
|
alibabacloud_rds20140815/models/_delete_rcdeployment_set_response_body.py,sha256=oeyj8UDicb_i1yoUiV-iwVopvS6WYqSDWc5KyePWXbU,803
|
|
232
|
-
alibabacloud_rds20140815/models/_delete_rcdisk_request.py,sha256=
|
|
232
|
+
alibabacloud_rds20140815/models/_delete_rcdisk_request.py,sha256=fkDZ-V5cxZhldiy-sNuwQRfOPDdHikpSr3Nonox0yJ4,1180
|
|
233
233
|
alibabacloud_rds20140815/models/_delete_rcdisk_response.py,sha256=HcID1_Py_ng0Ib-S1-7gdb2iZPs-YwJ1XZC_sol-1K0,1468
|
|
234
234
|
alibabacloud_rds20140815/models/_delete_rcdisk_response_body.py,sha256=gFA8qF2BAI1kAAMuisLv7h80b44FojP6FW5ZYfGHKDs,794
|
|
235
235
|
alibabacloud_rds20140815/models/_delete_rcinstance_request.py,sha256=L7_6xkcJ9Kqr1d_U4lqyvDrW8q5kVe0xOiqmFIAoVJQ,1308
|
|
@@ -403,7 +403,7 @@ alibabacloud_rds20140815/models/_describe_dbinstance_proxy_configuration_respons
|
|
|
403
403
|
alibabacloud_rds20140815/models/_describe_dbinstance_proxy_configuration_response_body.py,sha256=EMvoJQ_3bo3-TDN8XRylbfpkl-f14_DwQ7BDFYYgGr0,3685
|
|
404
404
|
alibabacloud_rds20140815/models/_describe_dbinstance_replication_request.py,sha256=KpBoLYnNFL0sjaWC1W3jrZ6NZvTLfe6eHvkud21os5w,1737
|
|
405
405
|
alibabacloud_rds20140815/models/_describe_dbinstance_replication_response.py,sha256=i8XC3OLlcDFnpMwcejzyo6vdJeVJcvs-Af8GqvzqOw8,1519
|
|
406
|
-
alibabacloud_rds20140815/models/_describe_dbinstance_replication_response_body.py,sha256=
|
|
406
|
+
alibabacloud_rds20140815/models/_describe_dbinstance_replication_response_body.py,sha256=N_IeHh8ji9X6tczUfSGdi8FsbpE5a-Rpt8F0tdTW4gw,3819
|
|
407
407
|
alibabacloud_rds20140815/models/_describe_dbinstance_security_group_rule_request.py,sha256=rNAbzPYMuhA7LCpmvPtTokP1NberM9q33Fat41gV10o,2216
|
|
408
408
|
alibabacloud_rds20140815/models/_describe_dbinstance_security_group_rule_response.py,sha256=0t7YLFnK0YlsRQva-lFowpo2Yu6p-YSt7rtqXJfr4vM,1537
|
|
409
409
|
alibabacloud_rds20140815/models/_describe_dbinstance_security_group_rule_response_body.py,sha256=yliH1j2kckyGmCt_XE0_iXIxyvhREncHFW02m7263qU,1585
|
|
@@ -576,7 +576,7 @@ alibabacloud_rds20140815/models/_describe_rcdeployment_sets_response.py,sha256=H
|
|
|
576
576
|
alibabacloud_rds20140815/models/_describe_rcdeployment_sets_response_body.py,sha256=RvpNSUShhDzgfIBBpOJSDk2pqFhD9-WWMmGI94s8pFc,15623
|
|
577
577
|
alibabacloud_rds20140815/models/_describe_rcdisks_request.py,sha256=s6xX8oFxqt5rxP94lIuTH5OEzFd8AGcH1lcay8D2EGM,3764
|
|
578
578
|
alibabacloud_rds20140815/models/_describe_rcdisks_response.py,sha256=uKOGRZsz_JZ6rN9215q-O1DBmVaCPq13Ak1Mazsgi-g,1477
|
|
579
|
-
alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py,sha256=
|
|
579
|
+
alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py,sha256=DDI46jg_fyq5VLydQMNAHqqbfC4Gs4I2Ui_HV5xFMtk,14363
|
|
580
580
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_request.py,sha256=tP0kn52JGrQNkqTj6rFyhma8ClYUKMQRaNXoYiTR97c,1919
|
|
581
581
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_response.py,sha256=UHZDlA4gkf_jzyupub6kN0K2a6pBnFqY-Zz1S5YzZuw,1504
|
|
582
582
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_response_body.py,sha256=mNGAHWs3HSifw08AkUqwyKmBxq0Z5YBmyFfNCC4NQfk,3872
|
|
@@ -607,7 +607,7 @@ alibabacloud_rds20140815/models/_describe_rcinstance_vnc_url_response.py,sha256=
|
|
|
607
607
|
alibabacloud_rds20140815/models/_describe_rcinstance_vnc_url_response_body.py,sha256=x3xMVuCtKvSSNcuZOBzoOGq4-T-cf76NrcCDWVbuhO8,1325
|
|
608
608
|
alibabacloud_rds20140815/models/_describe_rcinstances_request.py,sha256=LwyzFIBGpnaMzYt9vegdO2HDxkMbj_Sfve3DHM7_1qk,4013
|
|
609
609
|
alibabacloud_rds20140815/models/_describe_rcinstances_response.py,sha256=w4dN0QjDalvXMFtu3vqRJcfaBwPm_b8fPJrwypbda4w,1489
|
|
610
|
-
alibabacloud_rds20140815/models/_describe_rcinstances_response_body.py,sha256=
|
|
610
|
+
alibabacloud_rds20140815/models/_describe_rcinstances_response_body.py,sha256=HluTnYgaiiwfKCu_pqxaNOIIvRHWRfUxmDjWs6m1yoM,16345
|
|
611
611
|
alibabacloud_rds20140815/models/_describe_rcinvocation_results_request.py,sha256=y6vs2CyJ32cD-wqcaqRJIOJeHKC4FyYJn_H9ZstNZnU,5300
|
|
612
612
|
alibabacloud_rds20140815/models/_describe_rcinvocation_results_response.py,sha256=8ZwmBqa-vfaox8Mu5JFFzLNrQZBIk60sinlXnC69oqc,1513
|
|
613
613
|
alibabacloud_rds20140815/models/_describe_rcinvocation_results_response_body.py,sha256=yrxiiIJOlTkTB11fIWhxJukvfbFGyd7CPBPTiu_PI7Q,9076
|
|
@@ -628,9 +628,9 @@ alibabacloud_rds20140815/models/_describe_rcsecurity_group_list_response_body.py
|
|
|
628
628
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_request.py,sha256=pcQ5SIIY66xKjVsNyCDgKaAi8X5i0FhXcGL_93VAgsQ,1164
|
|
629
629
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_response.py,sha256=RZ_ZOLAaY9eq_3GdG2V0mjMrxLUN4TlBAk9HMyW_ziE,1531
|
|
630
630
|
alibabacloud_rds20140815/models/_describe_rcsecurity_group_permission_response_body.py,sha256=4CxmEPldqIV4coczIXGnVHzQZ-IYIk5DgiGpQPi8o4k,6035
|
|
631
|
-
alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py,sha256=
|
|
631
|
+
alibabacloud_rds20140815/models/_describe_rcsnapshots_request.py,sha256=OBSBNu-F0NBGz5s-MRPhm6BoP8WsHPSREKZUFlNqITc,3629
|
|
632
632
|
alibabacloud_rds20140815/models/_describe_rcsnapshots_response.py,sha256=bVJALoVC7QedjVJ7HsGfW9lO5DWT4R3OIZO2izstaHc,1489
|
|
633
|
-
alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py,sha256=
|
|
633
|
+
alibabacloud_rds20140815/models/_describe_rcsnapshots_response_body.py,sha256=nIsAaeP0lXGmNcNRN4bCRhXPZebxXDJcnrwGpkxmJco,11480
|
|
634
634
|
alibabacloud_rds20140815/models/_describe_rcvcluster_request.py,sha256=5ORkCRgbtmH8ObI2DNszYtV0Snf23l6eTzZj9XlLahI,1089
|
|
635
635
|
alibabacloud_rds20140815/models/_describe_rcvcluster_response.py,sha256=xLqh606xJzdAskV50KjjwgG6uYqS2nthgv6sLikv2gc,1486
|
|
636
636
|
alibabacloud_rds20140815/models/_describe_rcvcluster_response_body.py,sha256=Unt-_rSw1B-G_y5D5UFNnNEnFfT413gHCSShtJMVzRU,1072
|
|
@@ -721,7 +721,7 @@ alibabacloud_rds20140815/models/_destroy_dbinstance_response_body.py,sha256=WhBy
|
|
|
721
721
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_request.py,sha256=xNJvIRbcjZ7c_rxnxQczY1qJ1cVwPGlIEoavelhIh5U,2265
|
|
722
722
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_response.py,sha256=x7BjlUyMmPwjMJ1S_ol1-upLZALnh5T_5TlcoSE5U68,1501
|
|
723
723
|
alibabacloud_rds20140815/models/_detach_gad_instance_member_response_body.py,sha256=JDNcqwtU03RdACTn4jLCWaWb7nkTFWoEKA3b1SrJUVo,805
|
|
724
|
-
alibabacloud_rds20140815/models/_detach_rcdisk_request.py,sha256=
|
|
724
|
+
alibabacloud_rds20140815/models/_detach_rcdisk_request.py,sha256=WXyRqKtG-rJGjpf4J5-wgq2-BSU1QrfBs8QLoOWA82Q,1984
|
|
725
725
|
alibabacloud_rds20140815/models/_detach_rcdisk_response.py,sha256=OIigQL2zAnpXwe74sgLMXlFXS8w3_G-AAPp69TpctQs,1468
|
|
726
726
|
alibabacloud_rds20140815/models/_detach_rcdisk_response_body.py,sha256=56Um4rWIHp2nLc2c8_zPgPtwdF9i1kn-Pscp-mLkqbI,794
|
|
727
727
|
alibabacloud_rds20140815/models/_detach_whitelist_template_to_instance_request.py,sha256=oOD1TcH40r-j40OcUUhxHZ57VpLkgfqgvos5pqXTstY,2650
|
|
@@ -939,10 +939,7 @@ alibabacloud_rds20140815/models/_modify_parameter_response_body.py,sha256=TWkmDB
|
|
|
939
939
|
alibabacloud_rds20140815/models/_modify_pghba_config_request.py,sha256=5qklQbyXTQ-8e4z4Z7-DqnLokhbmsJT9D8Q5S20XVf0,9384
|
|
940
940
|
alibabacloud_rds20140815/models/_modify_pghba_config_response.py,sha256=J7cDJz7ek39nEzAvZqmLC527S0wd_tAuixY2QB3O1CQ,1483
|
|
941
941
|
alibabacloud_rds20140815/models/_modify_pghba_config_response_body.py,sha256=T8CZ3A2STxkbppY-rKvCUI3wQvgyb4dqjl0aJq2qIG4,806
|
|
942
|
-
alibabacloud_rds20140815/models/
|
|
943
|
-
alibabacloud_rds20140815/models/_modify_rcdisk_attribute_response.py,sha256=FevuZ6VoKVCxthssDpJYmycVCdh6nEPZrRVY_ZEWLDw,1495
|
|
944
|
-
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
|
|
942
|
+
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_request.py,sha256=BUW3_c5PYpxxxlau121Ni_ufakm78ZlpuS0EsmPAwLg,2764
|
|
946
943
|
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response.py,sha256=zB7FgYXh-FKBB7rZDSSvUITLJRRIOU7SeMiFrRB_0rE,1498
|
|
947
944
|
alibabacloud_rds20140815/models/_modify_rcdisk_charge_type_response_body.py,sha256=AMI05aZ1Ui97r27zTolqXNlssHX-te8UERYRpdIag2Y,1854
|
|
948
945
|
alibabacloud_rds20140815/models/_modify_rcdisk_spec_request.py,sha256=riVtVJipb_gpDpHJItupvMOYZtyed6BsMbNswCuNBUU,3584
|
|
@@ -955,7 +952,7 @@ alibabacloud_rds20140815/models/_modify_rcinstance_attribute_request.py,sha256=7
|
|
|
955
952
|
alibabacloud_rds20140815/models/_modify_rcinstance_attribute_response.py,sha256=P9U9ZcQghJqRf86-ZlovABAmfKa7mG05_GoAU1rsFlg,1507
|
|
956
953
|
alibabacloud_rds20140815/models/_modify_rcinstance_attribute_response_body.py,sha256=X-80-eWFmCyzNrZnJkci-EJkirw6t1aA0RYzvQRF4j4,807
|
|
957
954
|
alibabacloud_rds20140815/models/_modify_rcinstance_attribute_shrink_request.py,sha256=n7Cc3IlrVCyI1iAYAVq3YwcnfSjeSB3djBkTzPyhf10,4330
|
|
958
|
-
alibabacloud_rds20140815/models/_modify_rcinstance_charge_type_request.py,sha256=
|
|
955
|
+
alibabacloud_rds20140815/models/_modify_rcinstance_charge_type_request.py,sha256=WcQZnC2w5XFtsivlkV0KOEda6-wylpGAvPQPE59CryI,6523
|
|
959
956
|
alibabacloud_rds20140815/models/_modify_rcinstance_charge_type_response.py,sha256=6tFK0Hvua0MTHh8FtjN7RxAz3drh4Fw5bGmF-icpEWg,1510
|
|
960
957
|
alibabacloud_rds20140815/models/_modify_rcinstance_charge_type_response_body.py,sha256=EkpJ0fEg1t8AoMrFPfUexNHVLo5tiiDXfWVxgA0bkaI,4408
|
|
961
958
|
alibabacloud_rds20140815/models/_modify_rcinstance_description_request.py,sha256=5ItnEGS6Ge3zmvyCpsXhDRZfIS2NpNHNb81JOs6MLlA,1626
|
|
@@ -1118,13 +1115,13 @@ alibabacloud_rds20140815/models/_start_rcinstances_shrink_request.py,sha256=n8C_
|
|
|
1118
1115
|
alibabacloud_rds20140815/models/_stop_dbinstance_request.py,sha256=a6_9-AceadY2yX-NrYbXF-Qxjy3ArQ8BpJp4PCSdQ-c,2246
|
|
1119
1116
|
alibabacloud_rds20140815/models/_stop_dbinstance_response.py,sha256=hIdvqRpo05RSOrZefIc0ezycjoy6a-nOdA8d_5RKnkM,1474
|
|
1120
1117
|
alibabacloud_rds20140815/models/_stop_dbinstance_response_body.py,sha256=whJdwNX2NeV15XCDcIHJfh1QoDeSfoagPsdaSeYI3u4,803
|
|
1121
|
-
alibabacloud_rds20140815/models/_stop_rcinstance_request.py,sha256=
|
|
1118
|
+
alibabacloud_rds20140815/models/_stop_rcinstance_request.py,sha256=mXYBO8bCbot8l4-dQm-Kz94VwXgt6JN0WmED-LbSWTY,1516
|
|
1122
1119
|
alibabacloud_rds20140815/models/_stop_rcinstance_response.py,sha256=SCCHprs5cj9Hl_Fft24m-bhL6BMIZfhPkMMRgloOp18,1474
|
|
1123
1120
|
alibabacloud_rds20140815/models/_stop_rcinstance_response_body.py,sha256=AyFJDWX69He7zlysRzqaEaOil4kHt0iGFj3WgVyDcZI,796
|
|
1124
|
-
alibabacloud_rds20140815/models/_stop_rcinstances_request.py,sha256=
|
|
1121
|
+
alibabacloud_rds20140815/models/_stop_rcinstances_request.py,sha256=NXft0DVpOPzBC2qMCqEF8jpWI1o9evg3HhoQPe_PqAA,2458
|
|
1125
1122
|
alibabacloud_rds20140815/models/_stop_rcinstances_response.py,sha256=kbGC-Th8eZhCgwssTNwK5HkvwExY6jKqnly3qc8_Okc,1477
|
|
1126
1123
|
alibabacloud_rds20140815/models/_stop_rcinstances_response_body.py,sha256=JiEjYgb4ErsgDg6YDuErQWVS4zhtLIEmt7-18OP4hQI,797
|
|
1127
|
-
alibabacloud_rds20140815/models/_stop_rcinstances_shrink_request.py,sha256=
|
|
1124
|
+
alibabacloud_rds20140815/models/_stop_rcinstances_shrink_request.py,sha256=B-9YJ7C-4UaJv_6txVNN7rHrapG9R0g5ysRyxI13GQs,2475
|
|
1128
1125
|
alibabacloud_rds20140815/models/_switch_dbinstance_harequest.py,sha256=alWmXyc_sgqYpyjPNfwBZWHSNP9W4Rinm85s-qn2Q_w,3488
|
|
1129
1126
|
alibabacloud_rds20140815/models/_switch_dbinstance_haresponse.py,sha256=5THo0pfNTZ0Nj11UxJR0QTRLMuc4CQYPQtY-bIdZc5I,1486
|
|
1130
1127
|
alibabacloud_rds20140815/models/_switch_dbinstance_haresponse_body.py,sha256=iDN-SGTFqlx27eUW3RVk1bgvkWWEv2_jRmo0gUBIhFs,807
|
|
@@ -1185,8 +1182,8 @@ alibabacloud_rds20140815/models/_upgrade_dbinstance_major_version_response_body.
|
|
|
1185
1182
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_request.py,sha256=YKxSyPLnrBfempCKlGsbw8y-lQaoKC9tDuon_zODMK8,4164
|
|
1186
1183
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response.py,sha256=wCg_jc-Zd2gJH4IdlaFOBHFcotYBMCU9Ay8EGJ9a4dU,1537
|
|
1187
1184
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response_body.py,sha256=UNvS1pq3eopumK9Sl6ELfb2xECWLlV_5i0n1s5i95L0,1427
|
|
1188
|
-
alibabacloud_rds20140815-
|
|
1189
|
-
alibabacloud_rds20140815-
|
|
1190
|
-
alibabacloud_rds20140815-
|
|
1191
|
-
alibabacloud_rds20140815-
|
|
1192
|
-
alibabacloud_rds20140815-
|
|
1185
|
+
alibabacloud_rds20140815-15.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
1186
|
+
alibabacloud_rds20140815-15.0.0.dist-info/METADATA,sha256=tPAnggCT4-MVRxPOYXTU42vKOztQkxoNAN8JpaAPUeU,2290
|
|
1187
|
+
alibabacloud_rds20140815-15.0.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
1188
|
+
alibabacloud_rds20140815-15.0.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
|
|
1189
|
+
alibabacloud_rds20140815-15.0.0.dist-info/RECORD,,
|
|
@@ -1,75 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,54 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,34 +0,0 @@
|
|
|
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
|
-
|
{alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_rds20140815-14.1.0.dist-info → alibabacloud_rds20140815-15.0.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|