alibabacloud-rds20140815 11.3.0__py3-none-any.whl → 11.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_rds20140815/__init__.py +1 -1
- alibabacloud_rds20140815/client.py +156 -48
- alibabacloud_rds20140815/models.py +434 -139
- {alibabacloud_rds20140815-11.3.0.dist-info → alibabacloud_rds20140815-11.3.2.dist-info}/METADATA +2 -2
- alibabacloud_rds20140815-11.3.2.dist-info/RECORD +8 -0
- alibabacloud_rds20140815-11.3.0.dist-info/RECORD +0 -8
- {alibabacloud_rds20140815-11.3.0.dist-info → alibabacloud_rds20140815-11.3.2.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-11.3.0.dist-info → alibabacloud_rds20140815-11.3.2.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-11.3.0.dist-info → alibabacloud_rds20140815-11.3.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '11.3.
|
|
1
|
+
__version__ = '11.3.2'
|
|
@@ -7528,10 +7528,14 @@ class Client(OpenApiClient):
|
|
|
7528
7528
|
query['PeriodUnit'] = request.period_unit
|
|
7529
7529
|
if not UtilClient.is_unset(request.region_id):
|
|
7530
7530
|
query['RegionId'] = request.region_id
|
|
7531
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
7532
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
7531
7533
|
if not UtilClient.is_unset(request.size):
|
|
7532
7534
|
query['Size'] = request.size
|
|
7533
7535
|
if not UtilClient.is_unset(request.snapshot_id):
|
|
7534
7536
|
query['SnapshotId'] = request.snapshot_id
|
|
7537
|
+
if not UtilClient.is_unset(request.tag):
|
|
7538
|
+
query['Tag'] = request.tag
|
|
7535
7539
|
if not UtilClient.is_unset(request.zone_id):
|
|
7536
7540
|
query['ZoneId'] = request.zone_id
|
|
7537
7541
|
req = open_api_models.OpenApiRequest(
|
|
@@ -7589,10 +7593,14 @@ class Client(OpenApiClient):
|
|
|
7589
7593
|
query['PeriodUnit'] = request.period_unit
|
|
7590
7594
|
if not UtilClient.is_unset(request.region_id):
|
|
7591
7595
|
query['RegionId'] = request.region_id
|
|
7596
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
7597
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
7592
7598
|
if not UtilClient.is_unset(request.size):
|
|
7593
7599
|
query['Size'] = request.size
|
|
7594
7600
|
if not UtilClient.is_unset(request.snapshot_id):
|
|
7595
7601
|
query['SnapshotId'] = request.snapshot_id
|
|
7602
|
+
if not UtilClient.is_unset(request.tag):
|
|
7603
|
+
query['Tag'] = request.tag
|
|
7596
7604
|
if not UtilClient.is_unset(request.zone_id):
|
|
7597
7605
|
query['ZoneId'] = request.zone_id
|
|
7598
7606
|
req = open_api_models.OpenApiRequest(
|
|
@@ -20194,6 +20202,8 @@ class Client(OpenApiClient):
|
|
|
20194
20202
|
runtime: util_models.RuntimeOptions,
|
|
20195
20203
|
) -> rds_20140815_models.DescribeDBInstancesForCloneResponse:
|
|
20196
20204
|
"""
|
|
20205
|
+
@deprecated OpenAPI DescribeDBInstancesForClone is deprecated, please use Rds::2014-08-15::DescribeDBInstances instead.
|
|
20206
|
+
|
|
20197
20207
|
@summary Queries a list of instances.
|
|
20198
20208
|
|
|
20199
20209
|
@description This operation is phased out.
|
|
@@ -20201,6 +20211,7 @@ class Client(OpenApiClient):
|
|
|
20201
20211
|
@param request: DescribeDBInstancesForCloneRequest
|
|
20202
20212
|
@param runtime: runtime options for this request RuntimeOptions
|
|
20203
20213
|
@return: DescribeDBInstancesForCloneResponse
|
|
20214
|
+
Deprecated
|
|
20204
20215
|
"""
|
|
20205
20216
|
UtilClient.validate_model(request)
|
|
20206
20217
|
query = {}
|
|
@@ -20281,6 +20292,8 @@ class Client(OpenApiClient):
|
|
|
20281
20292
|
runtime: util_models.RuntimeOptions,
|
|
20282
20293
|
) -> rds_20140815_models.DescribeDBInstancesForCloneResponse:
|
|
20283
20294
|
"""
|
|
20295
|
+
@deprecated OpenAPI DescribeDBInstancesForClone is deprecated, please use Rds::2014-08-15::DescribeDBInstances instead.
|
|
20296
|
+
|
|
20284
20297
|
@summary Queries a list of instances.
|
|
20285
20298
|
|
|
20286
20299
|
@description This operation is phased out.
|
|
@@ -20288,6 +20301,7 @@ class Client(OpenApiClient):
|
|
|
20288
20301
|
@param request: DescribeDBInstancesForCloneRequest
|
|
20289
20302
|
@param runtime: runtime options for this request RuntimeOptions
|
|
20290
20303
|
@return: DescribeDBInstancesForCloneResponse
|
|
20304
|
+
Deprecated
|
|
20291
20305
|
"""
|
|
20292
20306
|
UtilClient.validate_model(request)
|
|
20293
20307
|
query = {}
|
|
@@ -20367,12 +20381,15 @@ class Client(OpenApiClient):
|
|
|
20367
20381
|
request: rds_20140815_models.DescribeDBInstancesForCloneRequest,
|
|
20368
20382
|
) -> rds_20140815_models.DescribeDBInstancesForCloneResponse:
|
|
20369
20383
|
"""
|
|
20384
|
+
@deprecated OpenAPI DescribeDBInstancesForClone is deprecated, please use Rds::2014-08-15::DescribeDBInstances instead.
|
|
20385
|
+
|
|
20370
20386
|
@summary Queries a list of instances.
|
|
20371
20387
|
|
|
20372
20388
|
@description This operation is phased out.
|
|
20373
20389
|
|
|
20374
20390
|
@param request: DescribeDBInstancesForCloneRequest
|
|
20375
20391
|
@return: DescribeDBInstancesForCloneResponse
|
|
20392
|
+
Deprecated
|
|
20376
20393
|
"""
|
|
20377
20394
|
runtime = util_models.RuntimeOptions()
|
|
20378
20395
|
return self.describe_dbinstances_for_clone_with_options(request, runtime)
|
|
@@ -20382,12 +20399,15 @@ class Client(OpenApiClient):
|
|
|
20382
20399
|
request: rds_20140815_models.DescribeDBInstancesForCloneRequest,
|
|
20383
20400
|
) -> rds_20140815_models.DescribeDBInstancesForCloneResponse:
|
|
20384
20401
|
"""
|
|
20402
|
+
@deprecated OpenAPI DescribeDBInstancesForClone is deprecated, please use Rds::2014-08-15::DescribeDBInstances instead.
|
|
20403
|
+
|
|
20385
20404
|
@summary Queries a list of instances.
|
|
20386
20405
|
|
|
20387
20406
|
@description This operation is phased out.
|
|
20388
20407
|
|
|
20389
20408
|
@param request: DescribeDBInstancesForCloneRequest
|
|
20390
20409
|
@return: DescribeDBInstancesForCloneResponse
|
|
20410
|
+
Deprecated
|
|
20391
20411
|
"""
|
|
20392
20412
|
runtime = util_models.RuntimeOptions()
|
|
20393
20413
|
return await self.describe_dbinstances_for_clone_with_options_async(request, runtime)
|
|
@@ -27402,7 +27422,12 @@ class Client(OpenApiClient):
|
|
|
27402
27422
|
runtime: util_models.RuntimeOptions,
|
|
27403
27423
|
) -> rds_20140815_models.DescribeRCInstanceDdosCountResponse:
|
|
27404
27424
|
"""
|
|
27405
|
-
@summary
|
|
27425
|
+
@summary Queries the number of DDos attacks on an RDS Custom for SQL Server instance and monitors the security status of the instance in real time to assess potential security risks.
|
|
27426
|
+
|
|
27427
|
+
@description ### [](#)Supported database engine
|
|
27428
|
+
SQL Server
|
|
27429
|
+
### [](#)References
|
|
27430
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27406
27431
|
|
|
27407
27432
|
@param request: DescribeRCInstanceDdosCountRequest
|
|
27408
27433
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -27441,7 +27466,12 @@ class Client(OpenApiClient):
|
|
|
27441
27466
|
runtime: util_models.RuntimeOptions,
|
|
27442
27467
|
) -> rds_20140815_models.DescribeRCInstanceDdosCountResponse:
|
|
27443
27468
|
"""
|
|
27444
|
-
@summary
|
|
27469
|
+
@summary Queries the number of DDos attacks on an RDS Custom for SQL Server instance and monitors the security status of the instance in real time to assess potential security risks.
|
|
27470
|
+
|
|
27471
|
+
@description ### [](#)Supported database engine
|
|
27472
|
+
SQL Server
|
|
27473
|
+
### [](#)References
|
|
27474
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27445
27475
|
|
|
27446
27476
|
@param request: DescribeRCInstanceDdosCountRequest
|
|
27447
27477
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -27479,7 +27509,12 @@ class Client(OpenApiClient):
|
|
|
27479
27509
|
request: rds_20140815_models.DescribeRCInstanceDdosCountRequest,
|
|
27480
27510
|
) -> rds_20140815_models.DescribeRCInstanceDdosCountResponse:
|
|
27481
27511
|
"""
|
|
27482
|
-
@summary
|
|
27512
|
+
@summary Queries the number of DDos attacks on an RDS Custom for SQL Server instance and monitors the security status of the instance in real time to assess potential security risks.
|
|
27513
|
+
|
|
27514
|
+
@description ### [](#)Supported database engine
|
|
27515
|
+
SQL Server
|
|
27516
|
+
### [](#)References
|
|
27517
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27483
27518
|
|
|
27484
27519
|
@param request: DescribeRCInstanceDdosCountRequest
|
|
27485
27520
|
@return: DescribeRCInstanceDdosCountResponse
|
|
@@ -27492,7 +27527,12 @@ class Client(OpenApiClient):
|
|
|
27492
27527
|
request: rds_20140815_models.DescribeRCInstanceDdosCountRequest,
|
|
27493
27528
|
) -> rds_20140815_models.DescribeRCInstanceDdosCountResponse:
|
|
27494
27529
|
"""
|
|
27495
|
-
@summary
|
|
27530
|
+
@summary Queries the number of DDos attacks on an RDS Custom for SQL Server instance and monitors the security status of the instance in real time to assess potential security risks.
|
|
27531
|
+
|
|
27532
|
+
@description ### [](#)Supported database engine
|
|
27533
|
+
SQL Server
|
|
27534
|
+
### [](#)References
|
|
27535
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27496
27536
|
|
|
27497
27537
|
@param request: DescribeRCInstanceDdosCountRequest
|
|
27498
27538
|
@return: DescribeRCInstanceDdosCountResponse
|
|
@@ -27662,7 +27702,13 @@ class Client(OpenApiClient):
|
|
|
27662
27702
|
runtime: util_models.RuntimeOptions,
|
|
27663
27703
|
) -> rds_20140815_models.DescribeRCInstanceIpAddressResponse:
|
|
27664
27704
|
"""
|
|
27665
|
-
@summary
|
|
27705
|
+
@summary Queries the protection information about an RDS Custom for SQL Server instance and the details of the Anti-DDoS Origin instance to which the RDS Custom instance is added.
|
|
27706
|
+
|
|
27707
|
+
@description ### [](#)Supported database engine
|
|
27708
|
+
SQL Server
|
|
27709
|
+
### [](#)References
|
|
27710
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27711
|
+
> If one or more assets of the current Alibaba Cloud account are added to an [Anti-DDoS Origin instance](https://help.aliyun.com/document_detail/63643.html), you can call the DescribeRCInstanceIpAddress operation to query the DDoS mitigation information and the details of the Anti-DDoS Origin instance. The information and the details include the basic protection threshold and traffic scrubbing threshold for the assets, DDoS mitigation status of the assets, ID of the instance, and the mitigation status of the instance.
|
|
27666
27712
|
|
|
27667
27713
|
@param request: DescribeRCInstanceIpAddressRequest
|
|
27668
27714
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -27715,7 +27761,13 @@ class Client(OpenApiClient):
|
|
|
27715
27761
|
runtime: util_models.RuntimeOptions,
|
|
27716
27762
|
) -> rds_20140815_models.DescribeRCInstanceIpAddressResponse:
|
|
27717
27763
|
"""
|
|
27718
|
-
@summary
|
|
27764
|
+
@summary Queries the protection information about an RDS Custom for SQL Server instance and the details of the Anti-DDoS Origin instance to which the RDS Custom instance is added.
|
|
27765
|
+
|
|
27766
|
+
@description ### [](#)Supported database engine
|
|
27767
|
+
SQL Server
|
|
27768
|
+
### [](#)References
|
|
27769
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27770
|
+
> If one or more assets of the current Alibaba Cloud account are added to an [Anti-DDoS Origin instance](https://help.aliyun.com/document_detail/63643.html), you can call the DescribeRCInstanceIpAddress operation to query the DDoS mitigation information and the details of the Anti-DDoS Origin instance. The information and the details include the basic protection threshold and traffic scrubbing threshold for the assets, DDoS mitigation status of the assets, ID of the instance, and the mitigation status of the instance.
|
|
27719
27771
|
|
|
27720
27772
|
@param request: DescribeRCInstanceIpAddressRequest
|
|
27721
27773
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -27767,7 +27819,13 @@ class Client(OpenApiClient):
|
|
|
27767
27819
|
request: rds_20140815_models.DescribeRCInstanceIpAddressRequest,
|
|
27768
27820
|
) -> rds_20140815_models.DescribeRCInstanceIpAddressResponse:
|
|
27769
27821
|
"""
|
|
27770
|
-
@summary
|
|
27822
|
+
@summary Queries the protection information about an RDS Custom for SQL Server instance and the details of the Anti-DDoS Origin instance to which the RDS Custom instance is added.
|
|
27823
|
+
|
|
27824
|
+
@description ### [](#)Supported database engine
|
|
27825
|
+
SQL Server
|
|
27826
|
+
### [](#)References
|
|
27827
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27828
|
+
> If one or more assets of the current Alibaba Cloud account are added to an [Anti-DDoS Origin instance](https://help.aliyun.com/document_detail/63643.html), you can call the DescribeRCInstanceIpAddress operation to query the DDoS mitigation information and the details of the Anti-DDoS Origin instance. The information and the details include the basic protection threshold and traffic scrubbing threshold for the assets, DDoS mitigation status of the assets, ID of the instance, and the mitigation status of the instance.
|
|
27771
27829
|
|
|
27772
27830
|
@param request: DescribeRCInstanceIpAddressRequest
|
|
27773
27831
|
@return: DescribeRCInstanceIpAddressResponse
|
|
@@ -27780,7 +27838,13 @@ class Client(OpenApiClient):
|
|
|
27780
27838
|
request: rds_20140815_models.DescribeRCInstanceIpAddressRequest,
|
|
27781
27839
|
) -> rds_20140815_models.DescribeRCInstanceIpAddressResponse:
|
|
27782
27840
|
"""
|
|
27783
|
-
@summary
|
|
27841
|
+
@summary Queries the protection information about an RDS Custom for SQL Server instance and the details of the Anti-DDoS Origin instance to which the RDS Custom instance is added.
|
|
27842
|
+
|
|
27843
|
+
@description ### [](#)Supported database engine
|
|
27844
|
+
SQL Server
|
|
27845
|
+
### [](#)References
|
|
27846
|
+
[Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
27847
|
+
> If one or more assets of the current Alibaba Cloud account are added to an [Anti-DDoS Origin instance](https://help.aliyun.com/document_detail/63643.html), you can call the DescribeRCInstanceIpAddress operation to query the DDoS mitigation information and the details of the Anti-DDoS Origin instance. The information and the details include the basic protection threshold and traffic scrubbing threshold for the assets, DDoS mitigation status of the assets, ID of the instance, and the mitigation status of the instance.
|
|
27784
27848
|
|
|
27785
27849
|
@param request: DescribeRCInstanceIpAddressRequest
|
|
27786
27850
|
@return: DescribeRCInstanceIpAddressResponse
|
|
@@ -28140,6 +28204,8 @@ class Client(OpenApiClient):
|
|
|
28140
28204
|
query['PublicIp'] = request.public_ip
|
|
28141
28205
|
if not UtilClient.is_unset(request.region_id):
|
|
28142
28206
|
query['RegionId'] = request.region_id
|
|
28207
|
+
if not UtilClient.is_unset(request.status):
|
|
28208
|
+
query['Status'] = request.status
|
|
28143
28209
|
if not UtilClient.is_unset(request.tag):
|
|
28144
28210
|
query['Tag'] = request.tag
|
|
28145
28211
|
if not UtilClient.is_unset(request.vpc_id):
|
|
@@ -28191,6 +28257,8 @@ class Client(OpenApiClient):
|
|
|
28191
28257
|
query['PublicIp'] = request.public_ip
|
|
28192
28258
|
if not UtilClient.is_unset(request.region_id):
|
|
28193
28259
|
query['RegionId'] = request.region_id
|
|
28260
|
+
if not UtilClient.is_unset(request.status):
|
|
28261
|
+
query['Status'] = request.status
|
|
28194
28262
|
if not UtilClient.is_unset(request.tag):
|
|
28195
28263
|
query['Tag'] = request.tag
|
|
28196
28264
|
if not UtilClient.is_unset(request.vpc_id):
|
|
@@ -31698,9 +31766,11 @@ class Client(OpenApiClient):
|
|
|
31698
31766
|
runtime: util_models.RuntimeOptions,
|
|
31699
31767
|
) -> rds_20140815_models.DescribeTasksResponse:
|
|
31700
31768
|
"""
|
|
31701
|
-
@summary
|
|
31769
|
+
@summary Queries the tasks in the Waiting or Executing state on an ApsaraDB RDS for SQL Server instance.
|
|
31702
31770
|
|
|
31703
|
-
@description
|
|
31771
|
+
@description ### [](#)Supported database engine
|
|
31772
|
+
SQL Server
|
|
31773
|
+
> You can call the [DescribeHistoryTasks](https://help.aliyun.com/document_detail/2627863.html) operation to query the tasks on an ApsaraDB RDS for MySQL or ApsaraDB RDS for PostgreSQL instance
|
|
31704
31774
|
|
|
31705
31775
|
@param request: DescribeTasksRequest
|
|
31706
31776
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31755,9 +31825,11 @@ class Client(OpenApiClient):
|
|
|
31755
31825
|
runtime: util_models.RuntimeOptions,
|
|
31756
31826
|
) -> rds_20140815_models.DescribeTasksResponse:
|
|
31757
31827
|
"""
|
|
31758
|
-
@summary
|
|
31828
|
+
@summary Queries the tasks in the Waiting or Executing state on an ApsaraDB RDS for SQL Server instance.
|
|
31759
31829
|
|
|
31760
|
-
@description
|
|
31830
|
+
@description ### [](#)Supported database engine
|
|
31831
|
+
SQL Server
|
|
31832
|
+
> You can call the [DescribeHistoryTasks](https://help.aliyun.com/document_detail/2627863.html) operation to query the tasks on an ApsaraDB RDS for MySQL or ApsaraDB RDS for PostgreSQL instance
|
|
31761
31833
|
|
|
31762
31834
|
@param request: DescribeTasksRequest
|
|
31763
31835
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31811,9 +31883,11 @@ class Client(OpenApiClient):
|
|
|
31811
31883
|
request: rds_20140815_models.DescribeTasksRequest,
|
|
31812
31884
|
) -> rds_20140815_models.DescribeTasksResponse:
|
|
31813
31885
|
"""
|
|
31814
|
-
@summary
|
|
31886
|
+
@summary Queries the tasks in the Waiting or Executing state on an ApsaraDB RDS for SQL Server instance.
|
|
31815
31887
|
|
|
31816
|
-
@description
|
|
31888
|
+
@description ### [](#)Supported database engine
|
|
31889
|
+
SQL Server
|
|
31890
|
+
> You can call the [DescribeHistoryTasks](https://help.aliyun.com/document_detail/2627863.html) operation to query the tasks on an ApsaraDB RDS for MySQL or ApsaraDB RDS for PostgreSQL instance
|
|
31817
31891
|
|
|
31818
31892
|
@param request: DescribeTasksRequest
|
|
31819
31893
|
@return: DescribeTasksResponse
|
|
@@ -31826,9 +31900,11 @@ class Client(OpenApiClient):
|
|
|
31826
31900
|
request: rds_20140815_models.DescribeTasksRequest,
|
|
31827
31901
|
) -> rds_20140815_models.DescribeTasksResponse:
|
|
31828
31902
|
"""
|
|
31829
|
-
@summary
|
|
31903
|
+
@summary Queries the tasks in the Waiting or Executing state on an ApsaraDB RDS for SQL Server instance.
|
|
31830
31904
|
|
|
31831
|
-
@description
|
|
31905
|
+
@description ### [](#)Supported database engine
|
|
31906
|
+
SQL Server
|
|
31907
|
+
> You can call the [DescribeHistoryTasks](https://help.aliyun.com/document_detail/2627863.html) operation to query the tasks on an ApsaraDB RDS for MySQL or ApsaraDB RDS for PostgreSQL instance
|
|
31832
31908
|
|
|
31833
31909
|
@param request: DescribeTasksRequest
|
|
31834
31910
|
@return: DescribeTasksResponse
|
|
@@ -43332,6 +43408,8 @@ class Client(OpenApiClient):
|
|
|
43332
43408
|
query = {}
|
|
43333
43409
|
if not UtilClient.is_unset(request.auto_pay):
|
|
43334
43410
|
query['AutoPay'] = request.auto_pay
|
|
43411
|
+
if not UtilClient.is_unset(request.auto_use_coupon):
|
|
43412
|
+
query['AutoUseCoupon'] = request.auto_use_coupon
|
|
43335
43413
|
if not UtilClient.is_unset(request.direction):
|
|
43336
43414
|
query['Direction'] = request.direction
|
|
43337
43415
|
if not UtilClient.is_unset(request.dry_run):
|
|
@@ -43340,6 +43418,8 @@ class Client(OpenApiClient):
|
|
|
43340
43418
|
query['InstanceId'] = request.instance_id
|
|
43341
43419
|
if not UtilClient.is_unset(request.instance_type):
|
|
43342
43420
|
query['InstanceType'] = request.instance_type
|
|
43421
|
+
if not UtilClient.is_unset(request.promotion_code):
|
|
43422
|
+
query['PromotionCode'] = request.promotion_code
|
|
43343
43423
|
if not UtilClient.is_unset(request.reboot_time):
|
|
43344
43424
|
query['RebootTime'] = request.reboot_time
|
|
43345
43425
|
if not UtilClient.is_unset(request.reboot_when_finished):
|
|
@@ -43389,6 +43469,8 @@ class Client(OpenApiClient):
|
|
|
43389
43469
|
query = {}
|
|
43390
43470
|
if not UtilClient.is_unset(request.auto_pay):
|
|
43391
43471
|
query['AutoPay'] = request.auto_pay
|
|
43472
|
+
if not UtilClient.is_unset(request.auto_use_coupon):
|
|
43473
|
+
query['AutoUseCoupon'] = request.auto_use_coupon
|
|
43392
43474
|
if not UtilClient.is_unset(request.direction):
|
|
43393
43475
|
query['Direction'] = request.direction
|
|
43394
43476
|
if not UtilClient.is_unset(request.dry_run):
|
|
@@ -43397,6 +43479,8 @@ class Client(OpenApiClient):
|
|
|
43397
43479
|
query['InstanceId'] = request.instance_id
|
|
43398
43480
|
if not UtilClient.is_unset(request.instance_type):
|
|
43399
43481
|
query['InstanceType'] = request.instance_type
|
|
43482
|
+
if not UtilClient.is_unset(request.promotion_code):
|
|
43483
|
+
query['PromotionCode'] = request.promotion_code
|
|
43400
43484
|
if not UtilClient.is_unset(request.reboot_time):
|
|
43401
43485
|
query['RebootTime'] = request.reboot_time
|
|
43402
43486
|
if not UtilClient.is_unset(request.reboot_when_finished):
|
|
@@ -43588,6 +43672,16 @@ class Client(OpenApiClient):
|
|
|
43588
43672
|
"""
|
|
43589
43673
|
@summary Modifies the billing method of an RDS Custom instance or cloud disks. You can call this operation to change the billing method of instances between pay-as-you-go and subscription.
|
|
43590
43674
|
|
|
43675
|
+
@description ### [](#)Precautions
|
|
43676
|
+
Before you call this operation, make sure that you are familiar with the subscription and pay-as-you-go billing methods and pricing of RDS Custom.
|
|
43677
|
+
The instances must be in the **Running** or **Stopped** state, and you have no overdue payments for the instances.
|
|
43678
|
+
The disk is in the **In_use** state and the billing method of the disk has not been changed within the previous 15 minutes.
|
|
43679
|
+
After you change the billing method, the payment is automatically completed. Make sure that the balance in your account is sufficient. Otherwise, your order becomes invalid and is canceled.
|
|
43680
|
+
### [](#)Considerations
|
|
43681
|
+
For more information, see the following documentation:
|
|
43682
|
+
[Change the billing method of an instance](https://help.aliyun.com/document_detail/2878542.html)
|
|
43683
|
+
[Change the billing method of a disk](https://help.aliyun.com/document_detail/2878547.html)
|
|
43684
|
+
|
|
43591
43685
|
@param request: ModifyRCInstanceChargeTypeRequest
|
|
43592
43686
|
@param runtime: runtime options for this request RuntimeOptions
|
|
43593
43687
|
@return: ModifyRCInstanceChargeTypeResponse
|
|
@@ -43651,6 +43745,16 @@ class Client(OpenApiClient):
|
|
|
43651
43745
|
"""
|
|
43652
43746
|
@summary Modifies the billing method of an RDS Custom instance or cloud disks. You can call this operation to change the billing method of instances between pay-as-you-go and subscription.
|
|
43653
43747
|
|
|
43748
|
+
@description ### [](#)Precautions
|
|
43749
|
+
Before you call this operation, make sure that you are familiar with the subscription and pay-as-you-go billing methods and pricing of RDS Custom.
|
|
43750
|
+
The instances must be in the **Running** or **Stopped** state, and you have no overdue payments for the instances.
|
|
43751
|
+
The disk is in the **In_use** state and the billing method of the disk has not been changed within the previous 15 minutes.
|
|
43752
|
+
After you change the billing method, the payment is automatically completed. Make sure that the balance in your account is sufficient. Otherwise, your order becomes invalid and is canceled.
|
|
43753
|
+
### [](#)Considerations
|
|
43754
|
+
For more information, see the following documentation:
|
|
43755
|
+
[Change the billing method of an instance](https://help.aliyun.com/document_detail/2878542.html)
|
|
43756
|
+
[Change the billing method of a disk](https://help.aliyun.com/document_detail/2878547.html)
|
|
43757
|
+
|
|
43654
43758
|
@param request: ModifyRCInstanceChargeTypeRequest
|
|
43655
43759
|
@param runtime: runtime options for this request RuntimeOptions
|
|
43656
43760
|
@return: ModifyRCInstanceChargeTypeResponse
|
|
@@ -43713,6 +43817,16 @@ class Client(OpenApiClient):
|
|
|
43713
43817
|
"""
|
|
43714
43818
|
@summary Modifies the billing method of an RDS Custom instance or cloud disks. You can call this operation to change the billing method of instances between pay-as-you-go and subscription.
|
|
43715
43819
|
|
|
43820
|
+
@description ### [](#)Precautions
|
|
43821
|
+
Before you call this operation, make sure that you are familiar with the subscription and pay-as-you-go billing methods and pricing of RDS Custom.
|
|
43822
|
+
The instances must be in the **Running** or **Stopped** state, and you have no overdue payments for the instances.
|
|
43823
|
+
The disk is in the **In_use** state and the billing method of the disk has not been changed within the previous 15 minutes.
|
|
43824
|
+
After you change the billing method, the payment is automatically completed. Make sure that the balance in your account is sufficient. Otherwise, your order becomes invalid and is canceled.
|
|
43825
|
+
### [](#)Considerations
|
|
43826
|
+
For more information, see the following documentation:
|
|
43827
|
+
[Change the billing method of an instance](https://help.aliyun.com/document_detail/2878542.html)
|
|
43828
|
+
[Change the billing method of a disk](https://help.aliyun.com/document_detail/2878547.html)
|
|
43829
|
+
|
|
43716
43830
|
@param request: ModifyRCInstanceChargeTypeRequest
|
|
43717
43831
|
@return: ModifyRCInstanceChargeTypeResponse
|
|
43718
43832
|
"""
|
|
@@ -43726,6 +43840,16 @@ class Client(OpenApiClient):
|
|
|
43726
43840
|
"""
|
|
43727
43841
|
@summary Modifies the billing method of an RDS Custom instance or cloud disks. You can call this operation to change the billing method of instances between pay-as-you-go and subscription.
|
|
43728
43842
|
|
|
43843
|
+
@description ### [](#)Precautions
|
|
43844
|
+
Before you call this operation, make sure that you are familiar with the subscription and pay-as-you-go billing methods and pricing of RDS Custom.
|
|
43845
|
+
The instances must be in the **Running** or **Stopped** state, and you have no overdue payments for the instances.
|
|
43846
|
+
The disk is in the **In_use** state and the billing method of the disk has not been changed within the previous 15 minutes.
|
|
43847
|
+
After you change the billing method, the payment is automatically completed. Make sure that the balance in your account is sufficient. Otherwise, your order becomes invalid and is canceled.
|
|
43848
|
+
### [](#)Considerations
|
|
43849
|
+
For more information, see the following documentation:
|
|
43850
|
+
[Change the billing method of an instance](https://help.aliyun.com/document_detail/2878542.html)
|
|
43851
|
+
[Change the billing method of a disk](https://help.aliyun.com/document_detail/2878547.html)
|
|
43852
|
+
|
|
43729
43853
|
@param request: ModifyRCInstanceChargeTypeRequest
|
|
43730
43854
|
@return: ModifyRCInstanceChargeTypeResponse
|
|
43731
43855
|
"""
|
|
@@ -44686,15 +44810,9 @@ class Client(OpenApiClient):
|
|
|
44686
44810
|
runtime: util_models.RuntimeOptions,
|
|
44687
44811
|
) -> rds_20140815_models.ModifySQLCollectorPolicyResponse:
|
|
44688
44812
|
"""
|
|
44689
|
-
@summary
|
|
44813
|
+
@summary This operation can still be called but is no longer maintained. This operation enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
44690
44814
|
|
|
44691
|
-
@description
|
|
44692
|
-
This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
44693
|
-
### [](#)References
|
|
44694
|
-
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44695
|
-
[Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
44696
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
44697
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
44815
|
+
@description This operation can still be called but is no longer maintained. We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation instead of this operation.
|
|
44698
44816
|
|
|
44699
44817
|
@param request: ModifySQLCollectorPolicyRequest
|
|
44700
44818
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44741,15 +44859,9 @@ class Client(OpenApiClient):
|
|
|
44741
44859
|
runtime: util_models.RuntimeOptions,
|
|
44742
44860
|
) -> rds_20140815_models.ModifySQLCollectorPolicyResponse:
|
|
44743
44861
|
"""
|
|
44744
|
-
@summary
|
|
44862
|
+
@summary This operation can still be called but is no longer maintained. This operation enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
44745
44863
|
|
|
44746
|
-
@description
|
|
44747
|
-
This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
44748
|
-
### [](#)References
|
|
44749
|
-
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44750
|
-
[Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
44751
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
44752
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
44864
|
+
@description This operation can still be called but is no longer maintained. We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation instead of this operation.
|
|
44753
44865
|
|
|
44754
44866
|
@param request: ModifySQLCollectorPolicyRequest
|
|
44755
44867
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44795,15 +44907,9 @@ class Client(OpenApiClient):
|
|
|
44795
44907
|
request: rds_20140815_models.ModifySQLCollectorPolicyRequest,
|
|
44796
44908
|
) -> rds_20140815_models.ModifySQLCollectorPolicyResponse:
|
|
44797
44909
|
"""
|
|
44798
|
-
@summary
|
|
44910
|
+
@summary This operation can still be called but is no longer maintained. This operation enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
44799
44911
|
|
|
44800
|
-
@description
|
|
44801
|
-
This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
44802
|
-
### [](#)References
|
|
44803
|
-
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44804
|
-
[Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
44805
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
44806
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
44912
|
+
@description This operation can still be called but is no longer maintained. We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation instead of this operation.
|
|
44807
44913
|
|
|
44808
44914
|
@param request: ModifySQLCollectorPolicyRequest
|
|
44809
44915
|
@return: ModifySQLCollectorPolicyResponse
|
|
@@ -44816,15 +44922,9 @@ class Client(OpenApiClient):
|
|
|
44816
44922
|
request: rds_20140815_models.ModifySQLCollectorPolicyRequest,
|
|
44817
44923
|
) -> rds_20140815_models.ModifySQLCollectorPolicyResponse:
|
|
44818
44924
|
"""
|
|
44819
|
-
@summary
|
|
44925
|
+
@summary This operation can still be called but is no longer maintained. This operation enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
44820
44926
|
|
|
44821
|
-
@description
|
|
44822
|
-
This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
44823
|
-
### [](#)References
|
|
44824
|
-
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44825
|
-
[Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
44826
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
44827
|
-
[Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
44927
|
+
@description This operation can still be called but is no longer maintained. We recommend that you call the [ModifySqlLogConfig](https://help.aliyun.com/document_detail/2778835.html) operation instead of this operation.
|
|
44828
44928
|
|
|
44829
44929
|
@param request: ModifySQLCollectorPolicyRequest
|
|
44830
44930
|
@return: ModifySQLCollectorPolicyResponse
|
|
@@ -49480,6 +49580,8 @@ class Client(OpenApiClient):
|
|
|
49480
49580
|
query['AutoPay'] = request.auto_pay
|
|
49481
49581
|
if not UtilClient.is_unset(request.auto_renew):
|
|
49482
49582
|
query['AutoRenew'] = request.auto_renew
|
|
49583
|
+
if not UtilClient.is_unset(request.auto_use_coupon):
|
|
49584
|
+
query['AutoUseCoupon'] = request.auto_use_coupon
|
|
49483
49585
|
if not UtilClient.is_unset(request.client_token):
|
|
49484
49586
|
query['ClientToken'] = request.client_token
|
|
49485
49587
|
if not UtilClient.is_unset(request.create_ack_edge_param_shrink):
|
|
@@ -49520,6 +49622,8 @@ class Client(OpenApiClient):
|
|
|
49520
49622
|
query['Period'] = request.period
|
|
49521
49623
|
if not UtilClient.is_unset(request.period_unit):
|
|
49522
49624
|
query['PeriodUnit'] = request.period_unit
|
|
49625
|
+
if not UtilClient.is_unset(request.promotion_code):
|
|
49626
|
+
query['PromotionCode'] = request.promotion_code
|
|
49523
49627
|
if not UtilClient.is_unset(request.region_id):
|
|
49524
49628
|
query['RegionId'] = request.region_id
|
|
49525
49629
|
if not UtilClient.is_unset(request.resource_group_id):
|
|
@@ -49595,6 +49699,8 @@ class Client(OpenApiClient):
|
|
|
49595
49699
|
query['AutoPay'] = request.auto_pay
|
|
49596
49700
|
if not UtilClient.is_unset(request.auto_renew):
|
|
49597
49701
|
query['AutoRenew'] = request.auto_renew
|
|
49702
|
+
if not UtilClient.is_unset(request.auto_use_coupon):
|
|
49703
|
+
query['AutoUseCoupon'] = request.auto_use_coupon
|
|
49598
49704
|
if not UtilClient.is_unset(request.client_token):
|
|
49599
49705
|
query['ClientToken'] = request.client_token
|
|
49600
49706
|
if not UtilClient.is_unset(request.create_ack_edge_param_shrink):
|
|
@@ -49635,6 +49741,8 @@ class Client(OpenApiClient):
|
|
|
49635
49741
|
query['Period'] = request.period
|
|
49636
49742
|
if not UtilClient.is_unset(request.period_unit):
|
|
49637
49743
|
query['PeriodUnit'] = request.period_unit
|
|
49744
|
+
if not UtilClient.is_unset(request.promotion_code):
|
|
49745
|
+
query['PromotionCode'] = request.promotion_code
|
|
49638
49746
|
if not UtilClient.is_unset(request.region_id):
|
|
49639
49747
|
query['RegionId'] = request.region_id
|
|
49640
49748
|
if not UtilClient.is_unset(request.resource_group_id):
|