alibabacloud-rds20140815 15.1.2__py3-none-any.whl → 15.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 +278 -0
- alibabacloud_rds20140815/models/__init__.py +18 -0
- alibabacloud_rds20140815/models/_describe_dbinstance_clsrequest.py +66 -0
- alibabacloud_rds20140815/models/_describe_dbinstance_clsresponse.py +54 -0
- alibabacloud_rds20140815/models/_describe_dbinstance_clsresponse_body.py +65 -0
- alibabacloud_rds20140815/models/_modify_dbinstance_clsrequest.py +123 -0
- alibabacloud_rds20140815/models/_modify_dbinstance_clsresponse.py +54 -0
- alibabacloud_rds20140815/models/_modify_dbinstance_clsresponse_body.py +33 -0
- alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_request.py +49 -0
- alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_response.py +54 -0
- alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_response_body.py +33 -0
- {alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/METADATA +1 -1
- {alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/RECORD +17 -8
- {alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '15.
|
|
1
|
+
__version__ = '15.2.0'
|
|
@@ -11963,6 +11963,92 @@ class Client(OpenApiClient):
|
|
|
11963
11963
|
runtime = RuntimeOptions()
|
|
11964
11964
|
return await self.describe_dbinstance_by_tags_with_options_async(request, runtime)
|
|
11965
11965
|
|
|
11966
|
+
def describe_dbinstance_clswith_options(
|
|
11967
|
+
self,
|
|
11968
|
+
request: main_models.DescribeDBInstanceCLSRequest,
|
|
11969
|
+
runtime: RuntimeOptions,
|
|
11970
|
+
) -> main_models.DescribeDBInstanceCLSResponse:
|
|
11971
|
+
request.validate()
|
|
11972
|
+
query = {}
|
|
11973
|
+
if not DaraCore.is_null(request.dbinstance_id):
|
|
11974
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
11975
|
+
if not DaraCore.is_null(request.owner_account):
|
|
11976
|
+
query['OwnerAccount'] = request.owner_account
|
|
11977
|
+
if not DaraCore.is_null(request.owner_id):
|
|
11978
|
+
query['OwnerId'] = request.owner_id
|
|
11979
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
11980
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
11981
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
11982
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
11983
|
+
req = open_api_util_models.OpenApiRequest(
|
|
11984
|
+
query = Utils.query(query)
|
|
11985
|
+
)
|
|
11986
|
+
params = open_api_util_models.Params(
|
|
11987
|
+
action = 'DescribeDBInstanceCLS',
|
|
11988
|
+
version = '2014-08-15',
|
|
11989
|
+
protocol = 'HTTPS',
|
|
11990
|
+
pathname = '/',
|
|
11991
|
+
method = 'POST',
|
|
11992
|
+
auth_type = 'AK',
|
|
11993
|
+
style = 'RPC',
|
|
11994
|
+
req_body_type = 'formData',
|
|
11995
|
+
body_type = 'json'
|
|
11996
|
+
)
|
|
11997
|
+
return DaraCore.from_map(
|
|
11998
|
+
main_models.DescribeDBInstanceCLSResponse(),
|
|
11999
|
+
self.call_api(params, req, runtime)
|
|
12000
|
+
)
|
|
12001
|
+
|
|
12002
|
+
async def describe_dbinstance_clswith_options_async(
|
|
12003
|
+
self,
|
|
12004
|
+
request: main_models.DescribeDBInstanceCLSRequest,
|
|
12005
|
+
runtime: RuntimeOptions,
|
|
12006
|
+
) -> main_models.DescribeDBInstanceCLSResponse:
|
|
12007
|
+
request.validate()
|
|
12008
|
+
query = {}
|
|
12009
|
+
if not DaraCore.is_null(request.dbinstance_id):
|
|
12010
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
12011
|
+
if not DaraCore.is_null(request.owner_account):
|
|
12012
|
+
query['OwnerAccount'] = request.owner_account
|
|
12013
|
+
if not DaraCore.is_null(request.owner_id):
|
|
12014
|
+
query['OwnerId'] = request.owner_id
|
|
12015
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
12016
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
12017
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
12018
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
12019
|
+
req = open_api_util_models.OpenApiRequest(
|
|
12020
|
+
query = Utils.query(query)
|
|
12021
|
+
)
|
|
12022
|
+
params = open_api_util_models.Params(
|
|
12023
|
+
action = 'DescribeDBInstanceCLS',
|
|
12024
|
+
version = '2014-08-15',
|
|
12025
|
+
protocol = 'HTTPS',
|
|
12026
|
+
pathname = '/',
|
|
12027
|
+
method = 'POST',
|
|
12028
|
+
auth_type = 'AK',
|
|
12029
|
+
style = 'RPC',
|
|
12030
|
+
req_body_type = 'formData',
|
|
12031
|
+
body_type = 'json'
|
|
12032
|
+
)
|
|
12033
|
+
return DaraCore.from_map(
|
|
12034
|
+
main_models.DescribeDBInstanceCLSResponse(),
|
|
12035
|
+
await self.call_api_async(params, req, runtime)
|
|
12036
|
+
)
|
|
12037
|
+
|
|
12038
|
+
def describe_dbinstance_cls(
|
|
12039
|
+
self,
|
|
12040
|
+
request: main_models.DescribeDBInstanceCLSRequest,
|
|
12041
|
+
) -> main_models.DescribeDBInstanceCLSResponse:
|
|
12042
|
+
runtime = RuntimeOptions()
|
|
12043
|
+
return self.describe_dbinstance_clswith_options(request, runtime)
|
|
12044
|
+
|
|
12045
|
+
async def describe_dbinstance_cls_async(
|
|
12046
|
+
self,
|
|
12047
|
+
request: main_models.DescribeDBInstanceCLSRequest,
|
|
12048
|
+
) -> main_models.DescribeDBInstanceCLSResponse:
|
|
12049
|
+
runtime = RuntimeOptions()
|
|
12050
|
+
return await self.describe_dbinstance_clswith_options_async(request, runtime)
|
|
12051
|
+
|
|
11966
12052
|
def describe_dbinstance_connectivity_with_options(
|
|
11967
12053
|
self,
|
|
11968
12054
|
request: main_models.DescribeDBInstanceConnectivityRequest,
|
|
@@ -27063,6 +27149,120 @@ class Client(OpenApiClient):
|
|
|
27063
27149
|
runtime = RuntimeOptions()
|
|
27064
27150
|
return await self.modify_dbinstance_auto_upgrade_minor_version_with_options_async(request, runtime)
|
|
27065
27151
|
|
|
27152
|
+
def modify_dbinstance_clswith_options(
|
|
27153
|
+
self,
|
|
27154
|
+
request: main_models.ModifyDBInstanceCLSRequest,
|
|
27155
|
+
runtime: RuntimeOptions,
|
|
27156
|
+
) -> main_models.ModifyDBInstanceCLSResponse:
|
|
27157
|
+
request.validate()
|
|
27158
|
+
query = {}
|
|
27159
|
+
if not DaraCore.is_null(request.dbinstance_id):
|
|
27160
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
27161
|
+
if not DaraCore.is_null(request.encryption_algorithm):
|
|
27162
|
+
query['EncryptionAlgorithm'] = request.encryption_algorithm
|
|
27163
|
+
if not DaraCore.is_null(request.encryption_key):
|
|
27164
|
+
query['EncryptionKey'] = request.encryption_key
|
|
27165
|
+
if not DaraCore.is_null(request.encryption_key_mode):
|
|
27166
|
+
query['EncryptionKeyMode'] = request.encryption_key_mode
|
|
27167
|
+
if not DaraCore.is_null(request.encryption_status):
|
|
27168
|
+
query['EncryptionStatus'] = request.encryption_status
|
|
27169
|
+
if not DaraCore.is_null(request.is_rotate):
|
|
27170
|
+
query['IsRotate'] = request.is_rotate
|
|
27171
|
+
if not DaraCore.is_null(request.owner_account):
|
|
27172
|
+
query['OwnerAccount'] = request.owner_account
|
|
27173
|
+
if not DaraCore.is_null(request.owner_id):
|
|
27174
|
+
query['OwnerId'] = request.owner_id
|
|
27175
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
27176
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
27177
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
27178
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
27179
|
+
if not DaraCore.is_null(request.role_arn):
|
|
27180
|
+
query['RoleArn'] = request.role_arn
|
|
27181
|
+
if not DaraCore.is_null(request.white_list_mode):
|
|
27182
|
+
query['WhiteListMode'] = request.white_list_mode
|
|
27183
|
+
req = open_api_util_models.OpenApiRequest(
|
|
27184
|
+
query = Utils.query(query)
|
|
27185
|
+
)
|
|
27186
|
+
params = open_api_util_models.Params(
|
|
27187
|
+
action = 'ModifyDBInstanceCLS',
|
|
27188
|
+
version = '2014-08-15',
|
|
27189
|
+
protocol = 'HTTPS',
|
|
27190
|
+
pathname = '/',
|
|
27191
|
+
method = 'POST',
|
|
27192
|
+
auth_type = 'AK',
|
|
27193
|
+
style = 'RPC',
|
|
27194
|
+
req_body_type = 'formData',
|
|
27195
|
+
body_type = 'json'
|
|
27196
|
+
)
|
|
27197
|
+
return DaraCore.from_map(
|
|
27198
|
+
main_models.ModifyDBInstanceCLSResponse(),
|
|
27199
|
+
self.call_api(params, req, runtime)
|
|
27200
|
+
)
|
|
27201
|
+
|
|
27202
|
+
async def modify_dbinstance_clswith_options_async(
|
|
27203
|
+
self,
|
|
27204
|
+
request: main_models.ModifyDBInstanceCLSRequest,
|
|
27205
|
+
runtime: RuntimeOptions,
|
|
27206
|
+
) -> main_models.ModifyDBInstanceCLSResponse:
|
|
27207
|
+
request.validate()
|
|
27208
|
+
query = {}
|
|
27209
|
+
if not DaraCore.is_null(request.dbinstance_id):
|
|
27210
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
27211
|
+
if not DaraCore.is_null(request.encryption_algorithm):
|
|
27212
|
+
query['EncryptionAlgorithm'] = request.encryption_algorithm
|
|
27213
|
+
if not DaraCore.is_null(request.encryption_key):
|
|
27214
|
+
query['EncryptionKey'] = request.encryption_key
|
|
27215
|
+
if not DaraCore.is_null(request.encryption_key_mode):
|
|
27216
|
+
query['EncryptionKeyMode'] = request.encryption_key_mode
|
|
27217
|
+
if not DaraCore.is_null(request.encryption_status):
|
|
27218
|
+
query['EncryptionStatus'] = request.encryption_status
|
|
27219
|
+
if not DaraCore.is_null(request.is_rotate):
|
|
27220
|
+
query['IsRotate'] = request.is_rotate
|
|
27221
|
+
if not DaraCore.is_null(request.owner_account):
|
|
27222
|
+
query['OwnerAccount'] = request.owner_account
|
|
27223
|
+
if not DaraCore.is_null(request.owner_id):
|
|
27224
|
+
query['OwnerId'] = request.owner_id
|
|
27225
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
27226
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
27227
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
27228
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
27229
|
+
if not DaraCore.is_null(request.role_arn):
|
|
27230
|
+
query['RoleArn'] = request.role_arn
|
|
27231
|
+
if not DaraCore.is_null(request.white_list_mode):
|
|
27232
|
+
query['WhiteListMode'] = request.white_list_mode
|
|
27233
|
+
req = open_api_util_models.OpenApiRequest(
|
|
27234
|
+
query = Utils.query(query)
|
|
27235
|
+
)
|
|
27236
|
+
params = open_api_util_models.Params(
|
|
27237
|
+
action = 'ModifyDBInstanceCLS',
|
|
27238
|
+
version = '2014-08-15',
|
|
27239
|
+
protocol = 'HTTPS',
|
|
27240
|
+
pathname = '/',
|
|
27241
|
+
method = 'POST',
|
|
27242
|
+
auth_type = 'AK',
|
|
27243
|
+
style = 'RPC',
|
|
27244
|
+
req_body_type = 'formData',
|
|
27245
|
+
body_type = 'json'
|
|
27246
|
+
)
|
|
27247
|
+
return DaraCore.from_map(
|
|
27248
|
+
main_models.ModifyDBInstanceCLSResponse(),
|
|
27249
|
+
await self.call_api_async(params, req, runtime)
|
|
27250
|
+
)
|
|
27251
|
+
|
|
27252
|
+
def modify_dbinstance_cls(
|
|
27253
|
+
self,
|
|
27254
|
+
request: main_models.ModifyDBInstanceCLSRequest,
|
|
27255
|
+
) -> main_models.ModifyDBInstanceCLSResponse:
|
|
27256
|
+
runtime = RuntimeOptions()
|
|
27257
|
+
return self.modify_dbinstance_clswith_options(request, runtime)
|
|
27258
|
+
|
|
27259
|
+
async def modify_dbinstance_cls_async(
|
|
27260
|
+
self,
|
|
27261
|
+
request: main_models.ModifyDBInstanceCLSRequest,
|
|
27262
|
+
) -> main_models.ModifyDBInstanceCLSResponse:
|
|
27263
|
+
runtime = RuntimeOptions()
|
|
27264
|
+
return await self.modify_dbinstance_clswith_options_async(request, runtime)
|
|
27265
|
+
|
|
27066
27266
|
def modify_dbinstance_config_with_options(
|
|
27067
27267
|
self,
|
|
27068
27268
|
request: main_models.ModifyDBInstanceConfigRequest,
|
|
@@ -31209,6 +31409,84 @@ class Client(OpenApiClient):
|
|
|
31209
31409
|
runtime = RuntimeOptions()
|
|
31210
31410
|
return await self.modify_parameter_group_with_options_async(request, runtime)
|
|
31211
31411
|
|
|
31412
|
+
def modify_parameter_timed_schedule_task_with_options(
|
|
31413
|
+
self,
|
|
31414
|
+
request: main_models.ModifyParameterTimedScheduleTaskRequest,
|
|
31415
|
+
runtime: RuntimeOptions,
|
|
31416
|
+
) -> main_models.ModifyParameterTimedScheduleTaskResponse:
|
|
31417
|
+
request.validate()
|
|
31418
|
+
query = {}
|
|
31419
|
+
if not DaraCore.is_null(request.dbinstance_name):
|
|
31420
|
+
query['DBInstanceName'] = request.dbinstance_name
|
|
31421
|
+
if not DaraCore.is_null(request.switch_time):
|
|
31422
|
+
query['SwitchTime'] = request.switch_time
|
|
31423
|
+
if not DaraCore.is_null(request.task_id):
|
|
31424
|
+
query['TaskId'] = request.task_id
|
|
31425
|
+
req = open_api_util_models.OpenApiRequest(
|
|
31426
|
+
query = Utils.query(query)
|
|
31427
|
+
)
|
|
31428
|
+
params = open_api_util_models.Params(
|
|
31429
|
+
action = 'ModifyParameterTimedScheduleTask',
|
|
31430
|
+
version = '2014-08-15',
|
|
31431
|
+
protocol = 'HTTPS',
|
|
31432
|
+
pathname = '/',
|
|
31433
|
+
method = 'POST',
|
|
31434
|
+
auth_type = 'AK',
|
|
31435
|
+
style = 'RPC',
|
|
31436
|
+
req_body_type = 'formData',
|
|
31437
|
+
body_type = 'json'
|
|
31438
|
+
)
|
|
31439
|
+
return DaraCore.from_map(
|
|
31440
|
+
main_models.ModifyParameterTimedScheduleTaskResponse(),
|
|
31441
|
+
self.call_api(params, req, runtime)
|
|
31442
|
+
)
|
|
31443
|
+
|
|
31444
|
+
async def modify_parameter_timed_schedule_task_with_options_async(
|
|
31445
|
+
self,
|
|
31446
|
+
request: main_models.ModifyParameterTimedScheduleTaskRequest,
|
|
31447
|
+
runtime: RuntimeOptions,
|
|
31448
|
+
) -> main_models.ModifyParameterTimedScheduleTaskResponse:
|
|
31449
|
+
request.validate()
|
|
31450
|
+
query = {}
|
|
31451
|
+
if not DaraCore.is_null(request.dbinstance_name):
|
|
31452
|
+
query['DBInstanceName'] = request.dbinstance_name
|
|
31453
|
+
if not DaraCore.is_null(request.switch_time):
|
|
31454
|
+
query['SwitchTime'] = request.switch_time
|
|
31455
|
+
if not DaraCore.is_null(request.task_id):
|
|
31456
|
+
query['TaskId'] = request.task_id
|
|
31457
|
+
req = open_api_util_models.OpenApiRequest(
|
|
31458
|
+
query = Utils.query(query)
|
|
31459
|
+
)
|
|
31460
|
+
params = open_api_util_models.Params(
|
|
31461
|
+
action = 'ModifyParameterTimedScheduleTask',
|
|
31462
|
+
version = '2014-08-15',
|
|
31463
|
+
protocol = 'HTTPS',
|
|
31464
|
+
pathname = '/',
|
|
31465
|
+
method = 'POST',
|
|
31466
|
+
auth_type = 'AK',
|
|
31467
|
+
style = 'RPC',
|
|
31468
|
+
req_body_type = 'formData',
|
|
31469
|
+
body_type = 'json'
|
|
31470
|
+
)
|
|
31471
|
+
return DaraCore.from_map(
|
|
31472
|
+
main_models.ModifyParameterTimedScheduleTaskResponse(),
|
|
31473
|
+
await self.call_api_async(params, req, runtime)
|
|
31474
|
+
)
|
|
31475
|
+
|
|
31476
|
+
def modify_parameter_timed_schedule_task(
|
|
31477
|
+
self,
|
|
31478
|
+
request: main_models.ModifyParameterTimedScheduleTaskRequest,
|
|
31479
|
+
) -> main_models.ModifyParameterTimedScheduleTaskResponse:
|
|
31480
|
+
runtime = RuntimeOptions()
|
|
31481
|
+
return self.modify_parameter_timed_schedule_task_with_options(request, runtime)
|
|
31482
|
+
|
|
31483
|
+
async def modify_parameter_timed_schedule_task_async(
|
|
31484
|
+
self,
|
|
31485
|
+
request: main_models.ModifyParameterTimedScheduleTaskRequest,
|
|
31486
|
+
) -> main_models.ModifyParameterTimedScheduleTaskResponse:
|
|
31487
|
+
runtime = RuntimeOptions()
|
|
31488
|
+
return await self.modify_parameter_timed_schedule_task_with_options_async(request, runtime)
|
|
31489
|
+
|
|
31212
31490
|
def modify_rcdisk_attribute_with_options(
|
|
31213
31491
|
self,
|
|
31214
31492
|
request: main_models.ModifyRCDiskAttributeRequest,
|
|
@@ -363,6 +363,9 @@ from ._describe_dbinstance_attribute_response import DescribeDBInstanceAttribute
|
|
|
363
363
|
from ._describe_dbinstance_by_tags_request import DescribeDBInstanceByTagsRequest
|
|
364
364
|
from ._describe_dbinstance_by_tags_response_body import DescribeDBInstanceByTagsResponseBody
|
|
365
365
|
from ._describe_dbinstance_by_tags_response import DescribeDBInstanceByTagsResponse
|
|
366
|
+
from ._describe_dbinstance_clsrequest import DescribeDBInstanceCLSRequest
|
|
367
|
+
from ._describe_dbinstance_clsresponse_body import DescribeDBInstanceCLSResponseBody
|
|
368
|
+
from ._describe_dbinstance_clsresponse import DescribeDBInstanceCLSResponse
|
|
366
369
|
from ._describe_dbinstance_connectivity_request import DescribeDBInstanceConnectivityRequest
|
|
367
370
|
from ._describe_dbinstance_connectivity_response_body import DescribeDBInstanceConnectivityResponseBody
|
|
368
371
|
from ._describe_dbinstance_connectivity_response import DescribeDBInstanceConnectivityResponse
|
|
@@ -838,6 +841,9 @@ from ._modify_dbdescription_response import ModifyDBDescriptionResponse
|
|
|
838
841
|
from ._modify_dbinstance_auto_upgrade_minor_version_request import ModifyDBInstanceAutoUpgradeMinorVersionRequest
|
|
839
842
|
from ._modify_dbinstance_auto_upgrade_minor_version_response_body import ModifyDBInstanceAutoUpgradeMinorVersionResponseBody
|
|
840
843
|
from ._modify_dbinstance_auto_upgrade_minor_version_response import ModifyDBInstanceAutoUpgradeMinorVersionResponse
|
|
844
|
+
from ._modify_dbinstance_clsrequest import ModifyDBInstanceCLSRequest
|
|
845
|
+
from ._modify_dbinstance_clsresponse_body import ModifyDBInstanceCLSResponseBody
|
|
846
|
+
from ._modify_dbinstance_clsresponse import ModifyDBInstanceCLSResponse
|
|
841
847
|
from ._modify_dbinstance_config_request import ModifyDBInstanceConfigRequest
|
|
842
848
|
from ._modify_dbinstance_config_response_body import ModifyDBInstanceConfigResponseBody
|
|
843
849
|
from ._modify_dbinstance_config_response import ModifyDBInstanceConfigResponse
|
|
@@ -961,6 +967,9 @@ from ._modify_parameter_response import ModifyParameterResponse
|
|
|
961
967
|
from ._modify_parameter_group_request import ModifyParameterGroupRequest
|
|
962
968
|
from ._modify_parameter_group_response_body import ModifyParameterGroupResponseBody
|
|
963
969
|
from ._modify_parameter_group_response import ModifyParameterGroupResponse
|
|
970
|
+
from ._modify_parameter_timed_schedule_task_request import ModifyParameterTimedScheduleTaskRequest
|
|
971
|
+
from ._modify_parameter_timed_schedule_task_response_body import ModifyParameterTimedScheduleTaskResponseBody
|
|
972
|
+
from ._modify_parameter_timed_schedule_task_response import ModifyParameterTimedScheduleTaskResponse
|
|
964
973
|
from ._modify_rcdisk_attribute_request import ModifyRCDiskAttributeRequest
|
|
965
974
|
from ._modify_rcdisk_attribute_response_body import ModifyRCDiskAttributeResponseBody
|
|
966
975
|
from ._modify_rcdisk_attribute_response import ModifyRCDiskAttributeResponse
|
|
@@ -1974,6 +1983,9 @@ __all__ = [
|
|
|
1974
1983
|
DescribeDBInstanceByTagsRequest,
|
|
1975
1984
|
DescribeDBInstanceByTagsResponseBody,
|
|
1976
1985
|
DescribeDBInstanceByTagsResponse,
|
|
1986
|
+
DescribeDBInstanceCLSRequest,
|
|
1987
|
+
DescribeDBInstanceCLSResponseBody,
|
|
1988
|
+
DescribeDBInstanceCLSResponse,
|
|
1977
1989
|
DescribeDBInstanceConnectivityRequest,
|
|
1978
1990
|
DescribeDBInstanceConnectivityResponseBody,
|
|
1979
1991
|
DescribeDBInstanceConnectivityResponse,
|
|
@@ -2449,6 +2461,9 @@ __all__ = [
|
|
|
2449
2461
|
ModifyDBInstanceAutoUpgradeMinorVersionRequest,
|
|
2450
2462
|
ModifyDBInstanceAutoUpgradeMinorVersionResponseBody,
|
|
2451
2463
|
ModifyDBInstanceAutoUpgradeMinorVersionResponse,
|
|
2464
|
+
ModifyDBInstanceCLSRequest,
|
|
2465
|
+
ModifyDBInstanceCLSResponseBody,
|
|
2466
|
+
ModifyDBInstanceCLSResponse,
|
|
2452
2467
|
ModifyDBInstanceConfigRequest,
|
|
2453
2468
|
ModifyDBInstanceConfigResponseBody,
|
|
2454
2469
|
ModifyDBInstanceConfigResponse,
|
|
@@ -2572,6 +2587,9 @@ __all__ = [
|
|
|
2572
2587
|
ModifyParameterGroupRequest,
|
|
2573
2588
|
ModifyParameterGroupResponseBody,
|
|
2574
2589
|
ModifyParameterGroupResponse,
|
|
2590
|
+
ModifyParameterTimedScheduleTaskRequest,
|
|
2591
|
+
ModifyParameterTimedScheduleTaskResponseBody,
|
|
2592
|
+
ModifyParameterTimedScheduleTaskResponse,
|
|
2575
2593
|
ModifyRCDiskAttributeRequest,
|
|
2576
2594
|
ModifyRCDiskAttributeResponseBody,
|
|
2577
2595
|
ModifyRCDiskAttributeResponse,
|
|
@@ -0,0 +1,66 @@
|
|
|
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 DescribeDBInstanceCLSRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
dbinstance_id: str = None,
|
|
11
|
+
owner_account: str = None,
|
|
12
|
+
owner_id: int = None,
|
|
13
|
+
resource_owner_account: str = None,
|
|
14
|
+
resource_owner_id: int = None,
|
|
15
|
+
):
|
|
16
|
+
# This parameter is required.
|
|
17
|
+
self.dbinstance_id = dbinstance_id
|
|
18
|
+
self.owner_account = owner_account
|
|
19
|
+
self.owner_id = owner_id
|
|
20
|
+
self.resource_owner_account = resource_owner_account
|
|
21
|
+
self.resource_owner_id = resource_owner_id
|
|
22
|
+
|
|
23
|
+
def validate(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def to_map(self):
|
|
27
|
+
result = dict()
|
|
28
|
+
_map = super().to_map()
|
|
29
|
+
if _map is not None:
|
|
30
|
+
result = _map
|
|
31
|
+
if self.dbinstance_id is not None:
|
|
32
|
+
result['DBInstanceId'] = self.dbinstance_id
|
|
33
|
+
|
|
34
|
+
if self.owner_account is not None:
|
|
35
|
+
result['OwnerAccount'] = self.owner_account
|
|
36
|
+
|
|
37
|
+
if self.owner_id is not None:
|
|
38
|
+
result['OwnerId'] = self.owner_id
|
|
39
|
+
|
|
40
|
+
if self.resource_owner_account is not None:
|
|
41
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
42
|
+
|
|
43
|
+
if self.resource_owner_id is not None:
|
|
44
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
45
|
+
|
|
46
|
+
return result
|
|
47
|
+
|
|
48
|
+
def from_map(self, m: dict = None):
|
|
49
|
+
m = m or dict()
|
|
50
|
+
if m.get('DBInstanceId') is not None:
|
|
51
|
+
self.dbinstance_id = m.get('DBInstanceId')
|
|
52
|
+
|
|
53
|
+
if m.get('OwnerAccount') is not None:
|
|
54
|
+
self.owner_account = m.get('OwnerAccount')
|
|
55
|
+
|
|
56
|
+
if m.get('OwnerId') is not None:
|
|
57
|
+
self.owner_id = m.get('OwnerId')
|
|
58
|
+
|
|
59
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
60
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
61
|
+
|
|
62
|
+
if m.get('ResourceOwnerId') is not None:
|
|
63
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
64
|
+
|
|
65
|
+
return self
|
|
66
|
+
|
|
@@ -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 DescribeDBInstanceCLSResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.DescribeDBInstanceCLSResponseBody = 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.DescribeDBInstanceCLSResponseBody()
|
|
51
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
52
|
+
|
|
53
|
+
return self
|
|
54
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
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 DescribeDBInstanceCLSResponseBody(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
algorithm: str = None,
|
|
11
|
+
encryption_key: str = None,
|
|
12
|
+
encryption_key_mode: str = None,
|
|
13
|
+
request_id: str = None,
|
|
14
|
+
white_list_mode: bool = None,
|
|
15
|
+
):
|
|
16
|
+
self.algorithm = algorithm
|
|
17
|
+
self.encryption_key = encryption_key
|
|
18
|
+
self.encryption_key_mode = encryption_key_mode
|
|
19
|
+
self.request_id = request_id
|
|
20
|
+
self.white_list_mode = white_list_mode
|
|
21
|
+
|
|
22
|
+
def validate(self):
|
|
23
|
+
pass
|
|
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.algorithm is not None:
|
|
31
|
+
result['Algorithm'] = self.algorithm
|
|
32
|
+
|
|
33
|
+
if self.encryption_key is not None:
|
|
34
|
+
result['EncryptionKey'] = self.encryption_key
|
|
35
|
+
|
|
36
|
+
if self.encryption_key_mode is not None:
|
|
37
|
+
result['EncryptionKeyMode'] = self.encryption_key_mode
|
|
38
|
+
|
|
39
|
+
if self.request_id is not None:
|
|
40
|
+
result['RequestId'] = self.request_id
|
|
41
|
+
|
|
42
|
+
if self.white_list_mode is not None:
|
|
43
|
+
result['WhiteListMode'] = self.white_list_mode
|
|
44
|
+
|
|
45
|
+
return result
|
|
46
|
+
|
|
47
|
+
def from_map(self, m: dict = None):
|
|
48
|
+
m = m or dict()
|
|
49
|
+
if m.get('Algorithm') is not None:
|
|
50
|
+
self.algorithm = m.get('Algorithm')
|
|
51
|
+
|
|
52
|
+
if m.get('EncryptionKey') is not None:
|
|
53
|
+
self.encryption_key = m.get('EncryptionKey')
|
|
54
|
+
|
|
55
|
+
if m.get('EncryptionKeyMode') is not None:
|
|
56
|
+
self.encryption_key_mode = m.get('EncryptionKeyMode')
|
|
57
|
+
|
|
58
|
+
if m.get('RequestId') is not None:
|
|
59
|
+
self.request_id = m.get('RequestId')
|
|
60
|
+
|
|
61
|
+
if m.get('WhiteListMode') is not None:
|
|
62
|
+
self.white_list_mode = m.get('WhiteListMode')
|
|
63
|
+
|
|
64
|
+
return self
|
|
65
|
+
|
|
@@ -0,0 +1,123 @@
|
|
|
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 ModifyDBInstanceCLSRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
dbinstance_id: str = None,
|
|
11
|
+
encryption_algorithm: str = None,
|
|
12
|
+
encryption_key: str = None,
|
|
13
|
+
encryption_key_mode: str = None,
|
|
14
|
+
encryption_status: str = None,
|
|
15
|
+
is_rotate: bool = None,
|
|
16
|
+
owner_account: str = None,
|
|
17
|
+
owner_id: int = None,
|
|
18
|
+
resource_owner_account: str = None,
|
|
19
|
+
resource_owner_id: int = None,
|
|
20
|
+
role_arn: str = None,
|
|
21
|
+
white_list_mode: bool = None,
|
|
22
|
+
):
|
|
23
|
+
# This parameter is required.
|
|
24
|
+
self.dbinstance_id = dbinstance_id
|
|
25
|
+
self.encryption_algorithm = encryption_algorithm
|
|
26
|
+
self.encryption_key = encryption_key
|
|
27
|
+
self.encryption_key_mode = encryption_key_mode
|
|
28
|
+
# This parameter is required.
|
|
29
|
+
self.encryption_status = encryption_status
|
|
30
|
+
self.is_rotate = is_rotate
|
|
31
|
+
self.owner_account = owner_account
|
|
32
|
+
self.owner_id = owner_id
|
|
33
|
+
self.resource_owner_account = resource_owner_account
|
|
34
|
+
self.resource_owner_id = resource_owner_id
|
|
35
|
+
self.role_arn = role_arn
|
|
36
|
+
self.white_list_mode = white_list_mode
|
|
37
|
+
|
|
38
|
+
def validate(self):
|
|
39
|
+
pass
|
|
40
|
+
|
|
41
|
+
def to_map(self):
|
|
42
|
+
result = dict()
|
|
43
|
+
_map = super().to_map()
|
|
44
|
+
if _map is not None:
|
|
45
|
+
result = _map
|
|
46
|
+
if self.dbinstance_id is not None:
|
|
47
|
+
result['DBInstanceId'] = self.dbinstance_id
|
|
48
|
+
|
|
49
|
+
if self.encryption_algorithm is not None:
|
|
50
|
+
result['EncryptionAlgorithm'] = self.encryption_algorithm
|
|
51
|
+
|
|
52
|
+
if self.encryption_key is not None:
|
|
53
|
+
result['EncryptionKey'] = self.encryption_key
|
|
54
|
+
|
|
55
|
+
if self.encryption_key_mode is not None:
|
|
56
|
+
result['EncryptionKeyMode'] = self.encryption_key_mode
|
|
57
|
+
|
|
58
|
+
if self.encryption_status is not None:
|
|
59
|
+
result['EncryptionStatus'] = self.encryption_status
|
|
60
|
+
|
|
61
|
+
if self.is_rotate is not None:
|
|
62
|
+
result['IsRotate'] = self.is_rotate
|
|
63
|
+
|
|
64
|
+
if self.owner_account is not None:
|
|
65
|
+
result['OwnerAccount'] = self.owner_account
|
|
66
|
+
|
|
67
|
+
if self.owner_id is not None:
|
|
68
|
+
result['OwnerId'] = self.owner_id
|
|
69
|
+
|
|
70
|
+
if self.resource_owner_account is not None:
|
|
71
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
72
|
+
|
|
73
|
+
if self.resource_owner_id is not None:
|
|
74
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
75
|
+
|
|
76
|
+
if self.role_arn is not None:
|
|
77
|
+
result['RoleArn'] = self.role_arn
|
|
78
|
+
|
|
79
|
+
if self.white_list_mode is not None:
|
|
80
|
+
result['WhiteListMode'] = self.white_list_mode
|
|
81
|
+
|
|
82
|
+
return result
|
|
83
|
+
|
|
84
|
+
def from_map(self, m: dict = None):
|
|
85
|
+
m = m or dict()
|
|
86
|
+
if m.get('DBInstanceId') is not None:
|
|
87
|
+
self.dbinstance_id = m.get('DBInstanceId')
|
|
88
|
+
|
|
89
|
+
if m.get('EncryptionAlgorithm') is not None:
|
|
90
|
+
self.encryption_algorithm = m.get('EncryptionAlgorithm')
|
|
91
|
+
|
|
92
|
+
if m.get('EncryptionKey') is not None:
|
|
93
|
+
self.encryption_key = m.get('EncryptionKey')
|
|
94
|
+
|
|
95
|
+
if m.get('EncryptionKeyMode') is not None:
|
|
96
|
+
self.encryption_key_mode = m.get('EncryptionKeyMode')
|
|
97
|
+
|
|
98
|
+
if m.get('EncryptionStatus') is not None:
|
|
99
|
+
self.encryption_status = m.get('EncryptionStatus')
|
|
100
|
+
|
|
101
|
+
if m.get('IsRotate') is not None:
|
|
102
|
+
self.is_rotate = m.get('IsRotate')
|
|
103
|
+
|
|
104
|
+
if m.get('OwnerAccount') is not None:
|
|
105
|
+
self.owner_account = m.get('OwnerAccount')
|
|
106
|
+
|
|
107
|
+
if m.get('OwnerId') is not None:
|
|
108
|
+
self.owner_id = m.get('OwnerId')
|
|
109
|
+
|
|
110
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
111
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
112
|
+
|
|
113
|
+
if m.get('ResourceOwnerId') is not None:
|
|
114
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
115
|
+
|
|
116
|
+
if m.get('RoleArn') is not None:
|
|
117
|
+
self.role_arn = m.get('RoleArn')
|
|
118
|
+
|
|
119
|
+
if m.get('WhiteListMode') is not None:
|
|
120
|
+
self.white_list_mode = m.get('WhiteListMode')
|
|
121
|
+
|
|
122
|
+
return self
|
|
123
|
+
|
|
@@ -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 ModifyDBInstanceCLSResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.ModifyDBInstanceCLSResponseBody = 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.ModifyDBInstanceCLSResponseBody()
|
|
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 ModifyDBInstanceCLSResponseBody(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,49 @@
|
|
|
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 ModifyParameterTimedScheduleTaskRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
dbinstance_name: str = None,
|
|
11
|
+
switch_time: str = None,
|
|
12
|
+
task_id: int = None,
|
|
13
|
+
):
|
|
14
|
+
self.dbinstance_name = dbinstance_name
|
|
15
|
+
self.switch_time = switch_time
|
|
16
|
+
self.task_id = task_id
|
|
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_name is not None:
|
|
27
|
+
result['DBInstanceName'] = self.dbinstance_name
|
|
28
|
+
|
|
29
|
+
if self.switch_time is not None:
|
|
30
|
+
result['SwitchTime'] = self.switch_time
|
|
31
|
+
|
|
32
|
+
if self.task_id is not None:
|
|
33
|
+
result['TaskId'] = self.task_id
|
|
34
|
+
|
|
35
|
+
return result
|
|
36
|
+
|
|
37
|
+
def from_map(self, m: dict = None):
|
|
38
|
+
m = m or dict()
|
|
39
|
+
if m.get('DBInstanceName') is not None:
|
|
40
|
+
self.dbinstance_name = m.get('DBInstanceName')
|
|
41
|
+
|
|
42
|
+
if m.get('SwitchTime') is not None:
|
|
43
|
+
self.switch_time = m.get('SwitchTime')
|
|
44
|
+
|
|
45
|
+
if m.get('TaskId') is not None:
|
|
46
|
+
self.task_id = m.get('TaskId')
|
|
47
|
+
|
|
48
|
+
return self
|
|
49
|
+
|
|
@@ -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 ModifyParameterTimedScheduleTaskResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.ModifyParameterTimedScheduleTaskResponseBody = 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.ModifyParameterTimedScheduleTaskResponseBody()
|
|
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 ModifyParameterTimedScheduleTaskResponseBody(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
|
+
|
{alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.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=ix5EcWqTUfYbe3bcdKor6pt5yFlCRqKREprPaL6OCxA,22
|
|
2
|
+
alibabacloud_rds20140815/client.py,sha256=YN5gg4I6XZNWx1z1LjNnIhtPEGchxvEBu76xDFrXH1U,1694436
|
|
3
|
+
alibabacloud_rds20140815/models/__init__.py,sha256=lQnxZxz-bMTcdSEcCk83ALSWbtoxr1hVSfzhH6IDnJA,214675
|
|
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
|
|
@@ -365,6 +365,9 @@ alibabacloud_rds20140815/models/_describe_dbinstance_attribute_response_body.py,
|
|
|
365
365
|
alibabacloud_rds20140815/models/_describe_dbinstance_by_tags_request.py,sha256=V_qz6cne0yfxcPNguFaNqD1lJSM9qct6Jz0n2HM2bus,4011
|
|
366
366
|
alibabacloud_rds20140815/models/_describe_dbinstance_by_tags_response.py,sha256=EDK5TsO3Y8O-MAClm-CdEdVV_LlQtomKMSXgDE6RiwI,1504
|
|
367
367
|
alibabacloud_rds20140815/models/_describe_dbinstance_by_tags_response_body.py,sha256=g7klxh25CE3Ud7IkNRnJR0XNi_CbEIDcwYjtQEwHooM,6639
|
|
368
|
+
alibabacloud_rds20140815/models/_describe_dbinstance_clsrequest.py,sha256=N3xFkV2G9__FuoxHSrys8ujHc67BeKHQm207d6tp31c,2023
|
|
369
|
+
alibabacloud_rds20140815/models/_describe_dbinstance_clsresponse.py,sha256=CxFpGqZqf8QpWK3PW8WqlVcYwIF56SH0LbjurT0jKF8,1495
|
|
370
|
+
alibabacloud_rds20140815/models/_describe_dbinstance_clsresponse_body.py,sha256=Fv13phwPEq06dqC1MBSbFUoAGREBeATZYxwLqfpKZmY,1940
|
|
368
371
|
alibabacloud_rds20140815/models/_describe_dbinstance_connectivity_request.py,sha256=MAJMZTOP3r45-CavYWwHyDwRaRh3pzlyGtwFi3mQWTw,3124
|
|
369
372
|
alibabacloud_rds20140815/models/_describe_dbinstance_connectivity_response.py,sha256=xX-23fI1AdNxky-ToVy2XlrbH9ktOWdT5JC2iZgxHVs,1522
|
|
370
373
|
alibabacloud_rds20140815/models/_describe_dbinstance_connectivity_response_body.py,sha256=6VdZ6dZxIJ3DIlHFP2SFNzg89_IUCZkj6XJz0IblANs,2605
|
|
@@ -846,6 +849,9 @@ alibabacloud_rds20140815/models/_modify_dbdescription_response_body.py,sha256=9N
|
|
|
846
849
|
alibabacloud_rds20140815/models/_modify_dbinstance_auto_upgrade_minor_version_request.py,sha256=ExcQUgAtDqncT2O_UEr6ol3ka50_xH-lAHK1g4Y6B2A,3208
|
|
847
850
|
alibabacloud_rds20140815/models/_modify_dbinstance_auto_upgrade_minor_version_response.py,sha256=-4WGldv-ZnE0moF6O_7Stz3vD3wYIly_-n1KUPSSS0E,1549
|
|
848
851
|
alibabacloud_rds20140815/models/_modify_dbinstance_auto_upgrade_minor_version_response_body.py,sha256=-Hpwqnf2pFOOQUZmE7MThDu4LmOQ9PuS2Wh3DtqEt20,828
|
|
852
|
+
alibabacloud_rds20140815/models/_modify_dbinstance_clsrequest.py,sha256=pr39hPHdbXtRQP7JuF1WKjO7gfhfK1x6X7Wqc2v6Ewo,4114
|
|
853
|
+
alibabacloud_rds20140815/models/_modify_dbinstance_clsresponse.py,sha256=mfgfPMQT1EACSpacaExNAfTE7bMyXHeVpzb5hBXONv4,1489
|
|
854
|
+
alibabacloud_rds20140815/models/_modify_dbinstance_clsresponse_body.py,sha256=Eil_C7abcJZIdKPrAWMR7go7DY3the06pO97cIJoVh8,775
|
|
849
855
|
alibabacloud_rds20140815/models/_modify_dbinstance_config_request.py,sha256=hDJWWenwKaKKzl_uW275U2PpxPYHDuVCgu2LPBzcBgY,5613
|
|
850
856
|
alibabacloud_rds20140815/models/_modify_dbinstance_config_response.py,sha256=syL-A_A4ChqcQa3kyQIUNSQDjD1WP3sAiC2BWHEVJZE,1498
|
|
851
857
|
alibabacloud_rds20140815/models/_modify_dbinstance_config_response_body.py,sha256=trOl1bz0vaG2KF0SxUahlYajGLhl1Gy9DMi7Sy7I70c,804
|
|
@@ -957,6 +963,9 @@ alibabacloud_rds20140815/models/_modify_parameter_group_response_body.py,sha256=
|
|
|
957
963
|
alibabacloud_rds20140815/models/_modify_parameter_request.py,sha256=q1mpSnfF4sbOsNdA-UkLoS8t283ERADFcY4d0WhoAB0,5956
|
|
958
964
|
alibabacloud_rds20140815/models/_modify_parameter_response.py,sha256=vuFlCM5cdOd-iDmAhPLM544NF5SVnctkoUoB43vxPDE,1477
|
|
959
965
|
alibabacloud_rds20140815/models/_modify_parameter_response_body.py,sha256=TWkmDB4m6uqOVcAsogKMm8bDUf4Y7UomH1YsK0BvHYs,804
|
|
966
|
+
alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_request.py,sha256=BgyA5JWA1UYUTD6Ylo_nHFmWXQw6KryB9GjKQvoSCzU,1316
|
|
967
|
+
alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_response.py,sha256=xGHt12DZuFyPXHEkUaoktRs7wIb0zLb3zi5Pcur7YBA,1528
|
|
968
|
+
alibabacloud_rds20140815/models/_modify_parameter_timed_schedule_task_response_body.py,sha256=L1du-1oapuKRLQrEAdbfdnGLEaYlCXQvicvXGMhLXxg,788
|
|
960
969
|
alibabacloud_rds20140815/models/_modify_pghba_config_request.py,sha256=5qklQbyXTQ-8e4z4Z7-DqnLokhbmsJT9D8Q5S20XVf0,9384
|
|
961
970
|
alibabacloud_rds20140815/models/_modify_pghba_config_response.py,sha256=J7cDJz7ek39nEzAvZqmLC527S0wd_tAuixY2QB3O1CQ,1483
|
|
962
971
|
alibabacloud_rds20140815/models/_modify_pghba_config_response_body.py,sha256=T8CZ3A2STxkbppY-rKvCUI3wQvgyb4dqjl0aJq2qIG4,806
|
|
@@ -1209,8 +1218,8 @@ alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_respons
|
|
|
1209
1218
|
alibabacloud_rds20140815/models/_validate_import_task_request.py,sha256=6gbm9Dkbl6Yd5f69PQCxqs9d7nvawuQzI8483Rb3E6Y,3860
|
|
1210
1219
|
alibabacloud_rds20140815/models/_validate_import_task_response.py,sha256=inu9atvxi_qGyH8TNszrdjeb0092Z_zCUuPf8_U0Pks,1486
|
|
1211
1220
|
alibabacloud_rds20140815/models/_validate_import_task_response_body.py,sha256=Dk2XlLcUFHqTDK-X4fyy9ZKVeu31QKRGqfnncoTg7ek,1028
|
|
1212
|
-
alibabacloud_rds20140815-15.
|
|
1213
|
-
alibabacloud_rds20140815-15.
|
|
1214
|
-
alibabacloud_rds20140815-15.
|
|
1215
|
-
alibabacloud_rds20140815-15.
|
|
1216
|
-
alibabacloud_rds20140815-15.
|
|
1221
|
+
alibabacloud_rds20140815-15.2.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
1222
|
+
alibabacloud_rds20140815-15.2.0.dist-info/METADATA,sha256=qqrmT9VHKZu-9Iq7tQaTskRUR9dxTEm4pPlegruSNhs,2290
|
|
1223
|
+
alibabacloud_rds20140815-15.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
1224
|
+
alibabacloud_rds20140815-15.2.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
|
|
1225
|
+
alibabacloud_rds20140815-15.2.0.dist-info/RECORD,,
|
{alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_rds20140815-15.1.2.dist-info → alibabacloud_rds20140815-15.2.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|