alibabacloud-rds20140815 7.1.4__py3-none-any.whl → 7.3.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 +756 -140
- alibabacloud_rds20140815/models.py +1907 -153
- {alibabacloud_rds20140815-7.1.4.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/METADATA +3 -3
- alibabacloud_rds20140815-7.3.0.dist-info/RECORD +8 -0
- alibabacloud_rds20140815-7.1.4.dist-info/RECORD +0 -8
- {alibabacloud_rds20140815-7.1.4.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-7.1.4.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-7.1.4.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/top_level.txt +0 -0
|
@@ -1076,6 +1076,190 @@ class Client(OpenApiClient):
|
|
|
1076
1076
|
runtime = util_models.RuntimeOptions()
|
|
1077
1077
|
return await self.calculate_dbinstance_weight_with_options_async(request, runtime)
|
|
1078
1078
|
|
|
1079
|
+
def cancel_active_operation_tasks_with_options(
|
|
1080
|
+
self,
|
|
1081
|
+
request: rds_20140815_models.CancelActiveOperationTasksRequest,
|
|
1082
|
+
runtime: util_models.RuntimeOptions,
|
|
1083
|
+
) -> rds_20140815_models.CancelActiveOperationTasksResponse:
|
|
1084
|
+
"""
|
|
1085
|
+
@summary This interface is used to cancel maintenance tasks that have not yet started.
|
|
1086
|
+
|
|
1087
|
+
@description ### Supported Engines
|
|
1088
|
+
- RDS MySQL
|
|
1089
|
+
- RDS PostgreSQL
|
|
1090
|
+
- RDS SQL Server
|
|
1091
|
+
- RDS MariaDB
|
|
1092
|
+
### Related Function Documentation
|
|
1093
|
+
>Notice: Before using this interface, please carefully read the function documentation to ensure you fully understand the prerequisites and the impact of using the interface before proceeding with the operation.
|
|
1094
|
+
- [RDS MySQL Scheduled Events](https://help.aliyun.com/document_detail/104183.html)
|
|
1095
|
+
- [RDS PostgreSQL Scheduled Events](https://help.aliyun.com/document_detail/104452.html)
|
|
1096
|
+
- [RDS SQL Server Scheduled Events](https://help.aliyun.com/document_detail/104451.html)
|
|
1097
|
+
- [RDS MariaDB Scheduled Events](https://help.aliyun.com/document_detail/104454.html)
|
|
1098
|
+
### Usage Restrictions
|
|
1099
|
+
The task cannot be canceled under the following conditions:
|
|
1100
|
+
- `allowCancel` is 0.
|
|
1101
|
+
- The current time is later than the task start time.
|
|
1102
|
+
- The task status is not 3 (waiting for execution).
|
|
1103
|
+
|
|
1104
|
+
@param request: CancelActiveOperationTasksRequest
|
|
1105
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1106
|
+
@return: CancelActiveOperationTasksResponse
|
|
1107
|
+
"""
|
|
1108
|
+
UtilClient.validate_model(request)
|
|
1109
|
+
query = {}
|
|
1110
|
+
if not UtilClient.is_unset(request.ids):
|
|
1111
|
+
query['Ids'] = request.ids
|
|
1112
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
1113
|
+
query['OwnerAccount'] = request.owner_account
|
|
1114
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
1115
|
+
query['OwnerId'] = request.owner_id
|
|
1116
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
1117
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
1118
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
1119
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
1120
|
+
if not UtilClient.is_unset(request.security_token):
|
|
1121
|
+
query['SecurityToken'] = request.security_token
|
|
1122
|
+
req = open_api_models.OpenApiRequest(
|
|
1123
|
+
query=OpenApiUtilClient.query(query)
|
|
1124
|
+
)
|
|
1125
|
+
params = open_api_models.Params(
|
|
1126
|
+
action='CancelActiveOperationTasks',
|
|
1127
|
+
version='2014-08-15',
|
|
1128
|
+
protocol='HTTPS',
|
|
1129
|
+
pathname='/',
|
|
1130
|
+
method='POST',
|
|
1131
|
+
auth_type='AK',
|
|
1132
|
+
style='RPC',
|
|
1133
|
+
req_body_type='formData',
|
|
1134
|
+
body_type='json'
|
|
1135
|
+
)
|
|
1136
|
+
return TeaCore.from_map(
|
|
1137
|
+
rds_20140815_models.CancelActiveOperationTasksResponse(),
|
|
1138
|
+
self.call_api(params, req, runtime)
|
|
1139
|
+
)
|
|
1140
|
+
|
|
1141
|
+
async def cancel_active_operation_tasks_with_options_async(
|
|
1142
|
+
self,
|
|
1143
|
+
request: rds_20140815_models.CancelActiveOperationTasksRequest,
|
|
1144
|
+
runtime: util_models.RuntimeOptions,
|
|
1145
|
+
) -> rds_20140815_models.CancelActiveOperationTasksResponse:
|
|
1146
|
+
"""
|
|
1147
|
+
@summary This interface is used to cancel maintenance tasks that have not yet started.
|
|
1148
|
+
|
|
1149
|
+
@description ### Supported Engines
|
|
1150
|
+
- RDS MySQL
|
|
1151
|
+
- RDS PostgreSQL
|
|
1152
|
+
- RDS SQL Server
|
|
1153
|
+
- RDS MariaDB
|
|
1154
|
+
### Related Function Documentation
|
|
1155
|
+
>Notice: Before using this interface, please carefully read the function documentation to ensure you fully understand the prerequisites and the impact of using the interface before proceeding with the operation.
|
|
1156
|
+
- [RDS MySQL Scheduled Events](https://help.aliyun.com/document_detail/104183.html)
|
|
1157
|
+
- [RDS PostgreSQL Scheduled Events](https://help.aliyun.com/document_detail/104452.html)
|
|
1158
|
+
- [RDS SQL Server Scheduled Events](https://help.aliyun.com/document_detail/104451.html)
|
|
1159
|
+
- [RDS MariaDB Scheduled Events](https://help.aliyun.com/document_detail/104454.html)
|
|
1160
|
+
### Usage Restrictions
|
|
1161
|
+
The task cannot be canceled under the following conditions:
|
|
1162
|
+
- `allowCancel` is 0.
|
|
1163
|
+
- The current time is later than the task start time.
|
|
1164
|
+
- The task status is not 3 (waiting for execution).
|
|
1165
|
+
|
|
1166
|
+
@param request: CancelActiveOperationTasksRequest
|
|
1167
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1168
|
+
@return: CancelActiveOperationTasksResponse
|
|
1169
|
+
"""
|
|
1170
|
+
UtilClient.validate_model(request)
|
|
1171
|
+
query = {}
|
|
1172
|
+
if not UtilClient.is_unset(request.ids):
|
|
1173
|
+
query['Ids'] = request.ids
|
|
1174
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
1175
|
+
query['OwnerAccount'] = request.owner_account
|
|
1176
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
1177
|
+
query['OwnerId'] = request.owner_id
|
|
1178
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
1179
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
1180
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
1181
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
1182
|
+
if not UtilClient.is_unset(request.security_token):
|
|
1183
|
+
query['SecurityToken'] = request.security_token
|
|
1184
|
+
req = open_api_models.OpenApiRequest(
|
|
1185
|
+
query=OpenApiUtilClient.query(query)
|
|
1186
|
+
)
|
|
1187
|
+
params = open_api_models.Params(
|
|
1188
|
+
action='CancelActiveOperationTasks',
|
|
1189
|
+
version='2014-08-15',
|
|
1190
|
+
protocol='HTTPS',
|
|
1191
|
+
pathname='/',
|
|
1192
|
+
method='POST',
|
|
1193
|
+
auth_type='AK',
|
|
1194
|
+
style='RPC',
|
|
1195
|
+
req_body_type='formData',
|
|
1196
|
+
body_type='json'
|
|
1197
|
+
)
|
|
1198
|
+
return TeaCore.from_map(
|
|
1199
|
+
rds_20140815_models.CancelActiveOperationTasksResponse(),
|
|
1200
|
+
await self.call_api_async(params, req, runtime)
|
|
1201
|
+
)
|
|
1202
|
+
|
|
1203
|
+
def cancel_active_operation_tasks(
|
|
1204
|
+
self,
|
|
1205
|
+
request: rds_20140815_models.CancelActiveOperationTasksRequest,
|
|
1206
|
+
) -> rds_20140815_models.CancelActiveOperationTasksResponse:
|
|
1207
|
+
"""
|
|
1208
|
+
@summary This interface is used to cancel maintenance tasks that have not yet started.
|
|
1209
|
+
|
|
1210
|
+
@description ### Supported Engines
|
|
1211
|
+
- RDS MySQL
|
|
1212
|
+
- RDS PostgreSQL
|
|
1213
|
+
- RDS SQL Server
|
|
1214
|
+
- RDS MariaDB
|
|
1215
|
+
### Related Function Documentation
|
|
1216
|
+
>Notice: Before using this interface, please carefully read the function documentation to ensure you fully understand the prerequisites and the impact of using the interface before proceeding with the operation.
|
|
1217
|
+
- [RDS MySQL Scheduled Events](https://help.aliyun.com/document_detail/104183.html)
|
|
1218
|
+
- [RDS PostgreSQL Scheduled Events](https://help.aliyun.com/document_detail/104452.html)
|
|
1219
|
+
- [RDS SQL Server Scheduled Events](https://help.aliyun.com/document_detail/104451.html)
|
|
1220
|
+
- [RDS MariaDB Scheduled Events](https://help.aliyun.com/document_detail/104454.html)
|
|
1221
|
+
### Usage Restrictions
|
|
1222
|
+
The task cannot be canceled under the following conditions:
|
|
1223
|
+
- `allowCancel` is 0.
|
|
1224
|
+
- The current time is later than the task start time.
|
|
1225
|
+
- The task status is not 3 (waiting for execution).
|
|
1226
|
+
|
|
1227
|
+
@param request: CancelActiveOperationTasksRequest
|
|
1228
|
+
@return: CancelActiveOperationTasksResponse
|
|
1229
|
+
"""
|
|
1230
|
+
runtime = util_models.RuntimeOptions()
|
|
1231
|
+
return self.cancel_active_operation_tasks_with_options(request, runtime)
|
|
1232
|
+
|
|
1233
|
+
async def cancel_active_operation_tasks_async(
|
|
1234
|
+
self,
|
|
1235
|
+
request: rds_20140815_models.CancelActiveOperationTasksRequest,
|
|
1236
|
+
) -> rds_20140815_models.CancelActiveOperationTasksResponse:
|
|
1237
|
+
"""
|
|
1238
|
+
@summary This interface is used to cancel maintenance tasks that have not yet started.
|
|
1239
|
+
|
|
1240
|
+
@description ### Supported Engines
|
|
1241
|
+
- RDS MySQL
|
|
1242
|
+
- RDS PostgreSQL
|
|
1243
|
+
- RDS SQL Server
|
|
1244
|
+
- RDS MariaDB
|
|
1245
|
+
### Related Function Documentation
|
|
1246
|
+
>Notice: Before using this interface, please carefully read the function documentation to ensure you fully understand the prerequisites and the impact of using the interface before proceeding with the operation.
|
|
1247
|
+
- [RDS MySQL Scheduled Events](https://help.aliyun.com/document_detail/104183.html)
|
|
1248
|
+
- [RDS PostgreSQL Scheduled Events](https://help.aliyun.com/document_detail/104452.html)
|
|
1249
|
+
- [RDS SQL Server Scheduled Events](https://help.aliyun.com/document_detail/104451.html)
|
|
1250
|
+
- [RDS MariaDB Scheduled Events](https://help.aliyun.com/document_detail/104454.html)
|
|
1251
|
+
### Usage Restrictions
|
|
1252
|
+
The task cannot be canceled under the following conditions:
|
|
1253
|
+
- `allowCancel` is 0.
|
|
1254
|
+
- The current time is later than the task start time.
|
|
1255
|
+
- The task status is not 3 (waiting for execution).
|
|
1256
|
+
|
|
1257
|
+
@param request: CancelActiveOperationTasksRequest
|
|
1258
|
+
@return: CancelActiveOperationTasksResponse
|
|
1259
|
+
"""
|
|
1260
|
+
runtime = util_models.RuntimeOptions()
|
|
1261
|
+
return await self.cancel_active_operation_tasks_with_options_async(request, runtime)
|
|
1262
|
+
|
|
1079
1263
|
def check_account_name_available_with_options(
|
|
1080
1264
|
self,
|
|
1081
1265
|
request: rds_20140815_models.CheckAccountNameAvailableRequest,
|
|
@@ -1986,6 +2170,8 @@ class Client(OpenApiClient):
|
|
|
1986
2170
|
query['ClientToken'] = request.client_token
|
|
1987
2171
|
if not UtilClient.is_unset(request.dbinstance_class):
|
|
1988
2172
|
query['DBInstanceClass'] = request.dbinstance_class
|
|
2173
|
+
if not UtilClient.is_unset(request.dbinstance_description):
|
|
2174
|
+
query['DBInstanceDescription'] = request.dbinstance_description
|
|
1989
2175
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
1990
2176
|
query['DBInstanceId'] = request.dbinstance_id
|
|
1991
2177
|
if not UtilClient.is_unset(request.dbinstance_storage):
|
|
@@ -2097,6 +2283,8 @@ class Client(OpenApiClient):
|
|
|
2097
2283
|
query['ClientToken'] = request.client_token
|
|
2098
2284
|
if not UtilClient.is_unset(request.dbinstance_class):
|
|
2099
2285
|
query['DBInstanceClass'] = request.dbinstance_class
|
|
2286
|
+
if not UtilClient.is_unset(request.dbinstance_description):
|
|
2287
|
+
query['DBInstanceDescription'] = request.dbinstance_description
|
|
2100
2288
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
2101
2289
|
query['DBInstanceId'] = request.dbinstance_id
|
|
2102
2290
|
if not UtilClient.is_unset(request.dbinstance_storage):
|
|
@@ -2528,14 +2716,22 @@ class Client(OpenApiClient):
|
|
|
2528
2716
|
"""
|
|
2529
2717
|
UtilClient.validate_model(request)
|
|
2530
2718
|
query = {}
|
|
2719
|
+
if not UtilClient.is_unset(request.dbinstance_name):
|
|
2720
|
+
query['DBInstanceName'] = request.dbinstance_name
|
|
2721
|
+
if not UtilClient.is_unset(request.dst_dbname):
|
|
2722
|
+
query['DstDBName'] = request.dst_dbname
|
|
2531
2723
|
if not UtilClient.is_unset(request.owner_id):
|
|
2532
2724
|
query['OwnerId'] = request.owner_id
|
|
2725
|
+
if not UtilClient.is_unset(request.reserve_account):
|
|
2726
|
+
query['ReserveAccount'] = request.reserve_account
|
|
2533
2727
|
if not UtilClient.is_unset(request.resource_group_id):
|
|
2534
2728
|
query['ResourceGroupId'] = request.resource_group_id
|
|
2535
2729
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
2536
2730
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
2537
2731
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
2538
2732
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
2733
|
+
if not UtilClient.is_unset(request.src_dbname):
|
|
2734
|
+
query['SrcDBName'] = request.src_dbname
|
|
2539
2735
|
req = open_api_models.OpenApiRequest(
|
|
2540
2736
|
query=OpenApiUtilClient.query(query)
|
|
2541
2737
|
)
|
|
@@ -2571,14 +2767,22 @@ class Client(OpenApiClient):
|
|
|
2571
2767
|
"""
|
|
2572
2768
|
UtilClient.validate_model(request)
|
|
2573
2769
|
query = {}
|
|
2770
|
+
if not UtilClient.is_unset(request.dbinstance_name):
|
|
2771
|
+
query['DBInstanceName'] = request.dbinstance_name
|
|
2772
|
+
if not UtilClient.is_unset(request.dst_dbname):
|
|
2773
|
+
query['DstDBName'] = request.dst_dbname
|
|
2574
2774
|
if not UtilClient.is_unset(request.owner_id):
|
|
2575
2775
|
query['OwnerId'] = request.owner_id
|
|
2776
|
+
if not UtilClient.is_unset(request.reserve_account):
|
|
2777
|
+
query['ReserveAccount'] = request.reserve_account
|
|
2576
2778
|
if not UtilClient.is_unset(request.resource_group_id):
|
|
2577
2779
|
query['ResourceGroupId'] = request.resource_group_id
|
|
2578
2780
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
2579
2781
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
2580
2782
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
2581
2783
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
2784
|
+
if not UtilClient.is_unset(request.src_dbname):
|
|
2785
|
+
query['SrcDBName'] = request.src_dbname
|
|
2582
2786
|
req = open_api_models.OpenApiRequest(
|
|
2583
2787
|
query=OpenApiUtilClient.query(query)
|
|
2584
2788
|
)
|
|
@@ -2965,13 +3169,13 @@ class Client(OpenApiClient):
|
|
|
2965
3169
|
PostgreSQL
|
|
2966
3170
|
SQL Server
|
|
2967
3171
|
MariaDB
|
|
2968
|
-
### [](#)
|
|
2969
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
2970
|
-
### [](#)
|
|
3172
|
+
### [](#)Feature description
|
|
3173
|
+
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also call an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function](https://help.aliyun.com/document_detail/2402073.html).
|
|
3174
|
+
### [](#)Prerequisites
|
|
2971
3175
|
Before you call this operation, make sure that the following requirements are met:
|
|
2972
3176
|
The instance is in the Running state.
|
|
2973
3177
|
The instance does not have ongoing backup tasks.
|
|
2974
|
-
The number of backup
|
|
3178
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
2975
3179
|
### [](#)References
|
|
2976
3180
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
2977
3181
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3028,13 +3232,13 @@ class Client(OpenApiClient):
|
|
|
3028
3232
|
PostgreSQL
|
|
3029
3233
|
SQL Server
|
|
3030
3234
|
MariaDB
|
|
3031
|
-
### [](#)
|
|
3032
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3033
|
-
### [](#)
|
|
3235
|
+
### [](#)Feature description
|
|
3236
|
+
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also call an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function](https://help.aliyun.com/document_detail/2402073.html).
|
|
3237
|
+
### [](#)Prerequisites
|
|
3034
3238
|
Before you call this operation, make sure that the following requirements are met:
|
|
3035
3239
|
The instance is in the Running state.
|
|
3036
3240
|
The instance does not have ongoing backup tasks.
|
|
3037
|
-
The number of backup
|
|
3241
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3038
3242
|
### [](#)References
|
|
3039
3243
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3040
3244
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3090,13 +3294,13 @@ class Client(OpenApiClient):
|
|
|
3090
3294
|
PostgreSQL
|
|
3091
3295
|
SQL Server
|
|
3092
3296
|
MariaDB
|
|
3093
|
-
### [](#)
|
|
3094
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3095
|
-
### [](#)
|
|
3297
|
+
### [](#)Feature description
|
|
3298
|
+
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also call an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function](https://help.aliyun.com/document_detail/2402073.html).
|
|
3299
|
+
### [](#)Prerequisites
|
|
3096
3300
|
Before you call this operation, make sure that the following requirements are met:
|
|
3097
3301
|
The instance is in the Running state.
|
|
3098
3302
|
The instance does not have ongoing backup tasks.
|
|
3099
|
-
The number of backup
|
|
3303
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3100
3304
|
### [](#)References
|
|
3101
3305
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3102
3306
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3121,13 +3325,13 @@ class Client(OpenApiClient):
|
|
|
3121
3325
|
PostgreSQL
|
|
3122
3326
|
SQL Server
|
|
3123
3327
|
MariaDB
|
|
3124
|
-
### [](#)
|
|
3125
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3126
|
-
### [](#)
|
|
3328
|
+
### [](#)Feature description
|
|
3329
|
+
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also call an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function](https://help.aliyun.com/document_detail/2402073.html).
|
|
3330
|
+
### [](#)Prerequisites
|
|
3127
3331
|
Before you call this operation, make sure that the following requirements are met:
|
|
3128
3332
|
The instance is in the Running state.
|
|
3129
3333
|
The instance does not have ongoing backup tasks.
|
|
3130
|
-
The number of backup
|
|
3334
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3131
3335
|
### [](#)References
|
|
3132
3336
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3133
3337
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -6702,7 +6906,7 @@ class Client(OpenApiClient):
|
|
|
6702
6906
|
runtime: util_models.RuntimeOptions,
|
|
6703
6907
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6704
6908
|
"""
|
|
6705
|
-
@summary
|
|
6909
|
+
@summary Creates a deployment set for an RDS Custom instance in a region. Before you call this operation, you must specify parameters such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy.
|
|
6706
6910
|
|
|
6707
6911
|
@param request: CreateRCDeploymentSetRequest
|
|
6708
6912
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -6749,7 +6953,7 @@ class Client(OpenApiClient):
|
|
|
6749
6953
|
runtime: util_models.RuntimeOptions,
|
|
6750
6954
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6751
6955
|
"""
|
|
6752
|
-
@summary
|
|
6956
|
+
@summary Creates a deployment set for an RDS Custom instance in a region. Before you call this operation, you must specify parameters such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy.
|
|
6753
6957
|
|
|
6754
6958
|
@param request: CreateRCDeploymentSetRequest
|
|
6755
6959
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -6795,7 +6999,7 @@ class Client(OpenApiClient):
|
|
|
6795
6999
|
request: rds_20140815_models.CreateRCDeploymentSetRequest,
|
|
6796
7000
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6797
7001
|
"""
|
|
6798
|
-
@summary
|
|
7002
|
+
@summary Creates a deployment set for an RDS Custom instance in a region. Before you call this operation, you must specify parameters such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy.
|
|
6799
7003
|
|
|
6800
7004
|
@param request: CreateRCDeploymentSetRequest
|
|
6801
7005
|
@return: CreateRCDeploymentSetResponse
|
|
@@ -6808,7 +7012,7 @@ class Client(OpenApiClient):
|
|
|
6808
7012
|
request: rds_20140815_models.CreateRCDeploymentSetRequest,
|
|
6809
7013
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6810
7014
|
"""
|
|
6811
|
-
@summary
|
|
7015
|
+
@summary Creates a deployment set for an RDS Custom instance in a region. Before you call this operation, you must specify parameters such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy.
|
|
6812
7016
|
|
|
6813
7017
|
@param request: CreateRCDeploymentSetRequest
|
|
6814
7018
|
@return: CreateRCDeploymentSetResponse
|
|
@@ -9974,7 +10178,7 @@ class Client(OpenApiClient):
|
|
|
9974
10178
|
runtime: util_models.RuntimeOptions,
|
|
9975
10179
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
9976
10180
|
"""
|
|
9977
|
-
@summary
|
|
10181
|
+
@summary Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
9978
10182
|
|
|
9979
10183
|
@param request: DeleteRCDeploymentSetRequest
|
|
9980
10184
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10011,7 +10215,7 @@ class Client(OpenApiClient):
|
|
|
10011
10215
|
runtime: util_models.RuntimeOptions,
|
|
10012
10216
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10013
10217
|
"""
|
|
10014
|
-
@summary
|
|
10218
|
+
@summary Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
10015
10219
|
|
|
10016
10220
|
@param request: DeleteRCDeploymentSetRequest
|
|
10017
10221
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10047,7 +10251,7 @@ class Client(OpenApiClient):
|
|
|
10047
10251
|
request: rds_20140815_models.DeleteRCDeploymentSetRequest,
|
|
10048
10252
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10049
10253
|
"""
|
|
10050
|
-
@summary
|
|
10254
|
+
@summary Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
10051
10255
|
|
|
10052
10256
|
@param request: DeleteRCDeploymentSetRequest
|
|
10053
10257
|
@return: DeleteRCDeploymentSetResponse
|
|
@@ -10060,7 +10264,7 @@ class Client(OpenApiClient):
|
|
|
10060
10264
|
request: rds_20140815_models.DeleteRCDeploymentSetRequest,
|
|
10061
10265
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10062
10266
|
"""
|
|
10063
|
-
@summary
|
|
10267
|
+
@summary Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
10064
10268
|
|
|
10065
10269
|
@param request: DeleteRCDeploymentSetRequest
|
|
10066
10270
|
@return: DeleteRCDeploymentSetResponse
|
|
@@ -10178,7 +10382,9 @@ class Client(OpenApiClient):
|
|
|
10178
10382
|
runtime: util_models.RuntimeOptions,
|
|
10179
10383
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10180
10384
|
"""
|
|
10181
|
-
@summary
|
|
10385
|
+
@summary Releases a subscription RDS Custom instance.
|
|
10386
|
+
|
|
10387
|
+
@description After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
10182
10388
|
|
|
10183
10389
|
@param tmp_req: DeleteRCInstancesRequest
|
|
10184
10390
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10225,7 +10431,9 @@ class Client(OpenApiClient):
|
|
|
10225
10431
|
runtime: util_models.RuntimeOptions,
|
|
10226
10432
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10227
10433
|
"""
|
|
10228
|
-
@summary
|
|
10434
|
+
@summary Releases a subscription RDS Custom instance.
|
|
10435
|
+
|
|
10436
|
+
@description After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
10229
10437
|
|
|
10230
10438
|
@param tmp_req: DeleteRCInstancesRequest
|
|
10231
10439
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10271,7 +10479,9 @@ class Client(OpenApiClient):
|
|
|
10271
10479
|
request: rds_20140815_models.DeleteRCInstancesRequest,
|
|
10272
10480
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10273
10481
|
"""
|
|
10274
|
-
@summary
|
|
10482
|
+
@summary Releases a subscription RDS Custom instance.
|
|
10483
|
+
|
|
10484
|
+
@description After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
10275
10485
|
|
|
10276
10486
|
@param request: DeleteRCInstancesRequest
|
|
10277
10487
|
@return: DeleteRCInstancesResponse
|
|
@@ -10284,7 +10494,9 @@ class Client(OpenApiClient):
|
|
|
10284
10494
|
request: rds_20140815_models.DeleteRCInstancesRequest,
|
|
10285
10495
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10286
10496
|
"""
|
|
10287
|
-
@summary
|
|
10497
|
+
@summary Releases a subscription RDS Custom instance.
|
|
10498
|
+
|
|
10499
|
+
@description After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
10288
10500
|
|
|
10289
10501
|
@param request: DeleteRCInstancesRequest
|
|
10290
10502
|
@return: DeleteRCInstancesResponse
|
|
@@ -20722,7 +20934,7 @@ class Client(OpenApiClient):
|
|
|
20722
20934
|
runtime: util_models.RuntimeOptions,
|
|
20723
20935
|
) -> rds_20140815_models.DescribeHistoryEventsResponse:
|
|
20724
20936
|
"""
|
|
20725
|
-
@summary
|
|
20937
|
+
@summary Queries historical events in the event center.
|
|
20726
20938
|
|
|
20727
20939
|
@param request: DescribeHistoryEventsRequest
|
|
20728
20940
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -20787,7 +20999,7 @@ class Client(OpenApiClient):
|
|
|
20787
20999
|
runtime: util_models.RuntimeOptions,
|
|
20788
21000
|
) -> rds_20140815_models.DescribeHistoryEventsResponse:
|
|
20789
21001
|
"""
|
|
20790
|
-
@summary
|
|
21002
|
+
@summary Queries historical events in the event center.
|
|
20791
21003
|
|
|
20792
21004
|
@param request: DescribeHistoryEventsRequest
|
|
20793
21005
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -20851,7 +21063,7 @@ class Client(OpenApiClient):
|
|
|
20851
21063
|
request: rds_20140815_models.DescribeHistoryEventsRequest,
|
|
20852
21064
|
) -> rds_20140815_models.DescribeHistoryEventsResponse:
|
|
20853
21065
|
"""
|
|
20854
|
-
@summary
|
|
21066
|
+
@summary Queries historical events in the event center.
|
|
20855
21067
|
|
|
20856
21068
|
@param request: DescribeHistoryEventsRequest
|
|
20857
21069
|
@return: DescribeHistoryEventsResponse
|
|
@@ -20864,7 +21076,7 @@ class Client(OpenApiClient):
|
|
|
20864
21076
|
request: rds_20140815_models.DescribeHistoryEventsRequest,
|
|
20865
21077
|
) -> rds_20140815_models.DescribeHistoryEventsResponse:
|
|
20866
21078
|
"""
|
|
20867
|
-
@summary
|
|
21079
|
+
@summary Queries historical events in the event center.
|
|
20868
21080
|
|
|
20869
21081
|
@param request: DescribeHistoryEventsRequest
|
|
20870
21082
|
@return: DescribeHistoryEventsResponse
|
|
@@ -20878,7 +21090,7 @@ class Client(OpenApiClient):
|
|
|
20878
21090
|
runtime: util_models.RuntimeOptions,
|
|
20879
21091
|
) -> rds_20140815_models.DescribeHistoryEventsStatResponse:
|
|
20880
21092
|
"""
|
|
20881
|
-
@summary Queries
|
|
21093
|
+
@summary Queries the statistics of historical events in the event center.
|
|
20882
21094
|
|
|
20883
21095
|
@param request: DescribeHistoryEventsStatRequest
|
|
20884
21096
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -20921,7 +21133,7 @@ class Client(OpenApiClient):
|
|
|
20921
21133
|
runtime: util_models.RuntimeOptions,
|
|
20922
21134
|
) -> rds_20140815_models.DescribeHistoryEventsStatResponse:
|
|
20923
21135
|
"""
|
|
20924
|
-
@summary Queries
|
|
21136
|
+
@summary Queries the statistics of historical events in the event center.
|
|
20925
21137
|
|
|
20926
21138
|
@param request: DescribeHistoryEventsStatRequest
|
|
20927
21139
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -20963,7 +21175,7 @@ class Client(OpenApiClient):
|
|
|
20963
21175
|
request: rds_20140815_models.DescribeHistoryEventsStatRequest,
|
|
20964
21176
|
) -> rds_20140815_models.DescribeHistoryEventsStatResponse:
|
|
20965
21177
|
"""
|
|
20966
|
-
@summary Queries
|
|
21178
|
+
@summary Queries the statistics of historical events in the event center.
|
|
20967
21179
|
|
|
20968
21180
|
@param request: DescribeHistoryEventsStatRequest
|
|
20969
21181
|
@return: DescribeHistoryEventsStatResponse
|
|
@@ -20976,7 +21188,7 @@ class Client(OpenApiClient):
|
|
|
20976
21188
|
request: rds_20140815_models.DescribeHistoryEventsStatRequest,
|
|
20977
21189
|
) -> rds_20140815_models.DescribeHistoryEventsStatResponse:
|
|
20978
21190
|
"""
|
|
20979
|
-
@summary Queries
|
|
21191
|
+
@summary Queries the statistics of historical events in the event center.
|
|
20980
21192
|
|
|
20981
21193
|
@param request: DescribeHistoryEventsStatRequest
|
|
20982
21194
|
@return: DescribeHistoryEventsStatResponse
|
|
@@ -24946,7 +25158,7 @@ class Client(OpenApiClient):
|
|
|
24946
25158
|
runtime: util_models.RuntimeOptions,
|
|
24947
25159
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
24948
25160
|
"""
|
|
24949
|
-
@summary
|
|
25161
|
+
@summary Queries the details of one or more deployment sets for RDS Custom instances. Before you call this operation, you must specify parameters such as DeploymentSetIds, Strategy, and DeploymentSetName.
|
|
24950
25162
|
|
|
24951
25163
|
@param request: DescribeRCDeploymentSetsRequest
|
|
24952
25164
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -24979,7 +25191,7 @@ class Client(OpenApiClient):
|
|
|
24979
25191
|
runtime: util_models.RuntimeOptions,
|
|
24980
25192
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
24981
25193
|
"""
|
|
24982
|
-
@summary
|
|
25194
|
+
@summary Queries the details of one or more deployment sets for RDS Custom instances. Before you call this operation, you must specify parameters such as DeploymentSetIds, Strategy, and DeploymentSetName.
|
|
24983
25195
|
|
|
24984
25196
|
@param request: DescribeRCDeploymentSetsRequest
|
|
24985
25197
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25011,7 +25223,7 @@ class Client(OpenApiClient):
|
|
|
25011
25223
|
request: rds_20140815_models.DescribeRCDeploymentSetsRequest,
|
|
25012
25224
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
25013
25225
|
"""
|
|
25014
|
-
@summary
|
|
25226
|
+
@summary Queries the details of one or more deployment sets for RDS Custom instances. Before you call this operation, you must specify parameters such as DeploymentSetIds, Strategy, and DeploymentSetName.
|
|
25015
25227
|
|
|
25016
25228
|
@param request: DescribeRCDeploymentSetsRequest
|
|
25017
25229
|
@return: DescribeRCDeploymentSetsResponse
|
|
@@ -25024,7 +25236,7 @@ class Client(OpenApiClient):
|
|
|
25024
25236
|
request: rds_20140815_models.DescribeRCDeploymentSetsRequest,
|
|
25025
25237
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
25026
25238
|
"""
|
|
25027
|
-
@summary
|
|
25239
|
+
@summary Queries the details of one or more deployment sets for RDS Custom instances. Before you call this operation, you must specify parameters such as DeploymentSetIds, Strategy, and DeploymentSetName.
|
|
25028
25240
|
|
|
25029
25241
|
@param request: DescribeRCDeploymentSetsRequest
|
|
25030
25242
|
@return: DescribeRCDeploymentSetsResponse
|
|
@@ -25038,7 +25250,7 @@ class Client(OpenApiClient):
|
|
|
25038
25250
|
runtime: util_models.RuntimeOptions,
|
|
25039
25251
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25040
25252
|
"""
|
|
25041
|
-
@summary
|
|
25253
|
+
@summary Queries custom images that can be used to create an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId.
|
|
25042
25254
|
|
|
25043
25255
|
@param request: DescribeRCImageListRequest
|
|
25044
25256
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25071,7 +25283,7 @@ class Client(OpenApiClient):
|
|
|
25071
25283
|
runtime: util_models.RuntimeOptions,
|
|
25072
25284
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25073
25285
|
"""
|
|
25074
|
-
@summary
|
|
25286
|
+
@summary Queries custom images that can be used to create an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId.
|
|
25075
25287
|
|
|
25076
25288
|
@param request: DescribeRCImageListRequest
|
|
25077
25289
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25103,7 +25315,7 @@ class Client(OpenApiClient):
|
|
|
25103
25315
|
request: rds_20140815_models.DescribeRCImageListRequest,
|
|
25104
25316
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25105
25317
|
"""
|
|
25106
|
-
@summary
|
|
25318
|
+
@summary Queries custom images that can be used to create an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId.
|
|
25107
25319
|
|
|
25108
25320
|
@param request: DescribeRCImageListRequest
|
|
25109
25321
|
@return: DescribeRCImageListResponse
|
|
@@ -25116,7 +25328,7 @@ class Client(OpenApiClient):
|
|
|
25116
25328
|
request: rds_20140815_models.DescribeRCImageListRequest,
|
|
25117
25329
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25118
25330
|
"""
|
|
25119
|
-
@summary
|
|
25331
|
+
@summary Queries custom images that can be used to create an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId.
|
|
25120
25332
|
|
|
25121
25333
|
@param request: DescribeRCImageListRequest
|
|
25122
25334
|
@return: DescribeRCImageListResponse
|
|
@@ -25130,7 +25342,7 @@ class Client(OpenApiClient):
|
|
|
25130
25342
|
runtime: util_models.RuntimeOptions,
|
|
25131
25343
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25132
25344
|
"""
|
|
25133
|
-
@summary
|
|
25345
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25134
25346
|
|
|
25135
25347
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25136
25348
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25163,7 +25375,7 @@ class Client(OpenApiClient):
|
|
|
25163
25375
|
runtime: util_models.RuntimeOptions,
|
|
25164
25376
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25165
25377
|
"""
|
|
25166
|
-
@summary
|
|
25378
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25167
25379
|
|
|
25168
25380
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25169
25381
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25195,7 +25407,7 @@ class Client(OpenApiClient):
|
|
|
25195
25407
|
request: rds_20140815_models.DescribeRCInstanceAttributeRequest,
|
|
25196
25408
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25197
25409
|
"""
|
|
25198
|
-
@summary
|
|
25410
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25199
25411
|
|
|
25200
25412
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25201
25413
|
@return: DescribeRCInstanceAttributeResponse
|
|
@@ -25208,7 +25420,7 @@ class Client(OpenApiClient):
|
|
|
25208
25420
|
request: rds_20140815_models.DescribeRCInstanceAttributeRequest,
|
|
25209
25421
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25210
25422
|
"""
|
|
25211
|
-
@summary
|
|
25423
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25212
25424
|
|
|
25213
25425
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25214
25426
|
@return: DescribeRCInstanceAttributeResponse
|
|
@@ -25222,7 +25434,7 @@ class Client(OpenApiClient):
|
|
|
25222
25434
|
runtime: util_models.RuntimeOptions,
|
|
25223
25435
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25224
25436
|
"""
|
|
25225
|
-
@summary
|
|
25437
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25226
25438
|
|
|
25227
25439
|
@param request: DescribeRCInstancesRequest
|
|
25228
25440
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25265,7 +25477,7 @@ class Client(OpenApiClient):
|
|
|
25265
25477
|
runtime: util_models.RuntimeOptions,
|
|
25266
25478
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25267
25479
|
"""
|
|
25268
|
-
@summary
|
|
25480
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25269
25481
|
|
|
25270
25482
|
@param request: DescribeRCInstancesRequest
|
|
25271
25483
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25307,7 +25519,7 @@ class Client(OpenApiClient):
|
|
|
25307
25519
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25308
25520
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25309
25521
|
"""
|
|
25310
|
-
@summary
|
|
25522
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25311
25523
|
|
|
25312
25524
|
@param request: DescribeRCInstancesRequest
|
|
25313
25525
|
@return: DescribeRCInstancesResponse
|
|
@@ -25320,7 +25532,7 @@ class Client(OpenApiClient):
|
|
|
25320
25532
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25321
25533
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25322
25534
|
"""
|
|
25323
|
-
@summary
|
|
25535
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25324
25536
|
|
|
25325
25537
|
@param request: DescribeRCInstancesRequest
|
|
25326
25538
|
@return: DescribeRCInstancesResponse
|
|
@@ -25334,7 +25546,7 @@ class Client(OpenApiClient):
|
|
|
25334
25546
|
runtime: util_models.RuntimeOptions,
|
|
25335
25547
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25336
25548
|
"""
|
|
25337
|
-
@summary
|
|
25549
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25338
25550
|
|
|
25339
25551
|
@param request: DescribeRCMetricListRequest
|
|
25340
25552
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25367,7 +25579,7 @@ class Client(OpenApiClient):
|
|
|
25367
25579
|
runtime: util_models.RuntimeOptions,
|
|
25368
25580
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25369
25581
|
"""
|
|
25370
|
-
@summary
|
|
25582
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25371
25583
|
|
|
25372
25584
|
@param request: DescribeRCMetricListRequest
|
|
25373
25585
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25399,7 +25611,7 @@ class Client(OpenApiClient):
|
|
|
25399
25611
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25400
25612
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25401
25613
|
"""
|
|
25402
|
-
@summary
|
|
25614
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25403
25615
|
|
|
25404
25616
|
@param request: DescribeRCMetricListRequest
|
|
25405
25617
|
@return: DescribeRCMetricListResponse
|
|
@@ -25412,7 +25624,7 @@ class Client(OpenApiClient):
|
|
|
25412
25624
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25413
25625
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25414
25626
|
"""
|
|
25415
|
-
@summary
|
|
25627
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25416
25628
|
|
|
25417
25629
|
@param request: DescribeRCMetricListRequest
|
|
25418
25630
|
@return: DescribeRCMetricListResponse
|
|
@@ -26122,7 +26334,7 @@ class Client(OpenApiClient):
|
|
|
26122
26334
|
runtime: util_models.RuntimeOptions,
|
|
26123
26335
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26124
26336
|
"""
|
|
26125
|
-
@summary Queries the
|
|
26337
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26126
26338
|
|
|
26127
26339
|
@description ### [](#)Supported database engine
|
|
26128
26340
|
PostgreSQL
|
|
@@ -26170,7 +26382,7 @@ class Client(OpenApiClient):
|
|
|
26170
26382
|
runtime: util_models.RuntimeOptions,
|
|
26171
26383
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26172
26384
|
"""
|
|
26173
|
-
@summary Queries the
|
|
26385
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26174
26386
|
|
|
26175
26387
|
@description ### [](#)Supported database engine
|
|
26176
26388
|
PostgreSQL
|
|
@@ -26217,7 +26429,7 @@ class Client(OpenApiClient):
|
|
|
26217
26429
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26218
26430
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26219
26431
|
"""
|
|
26220
|
-
@summary Queries the
|
|
26432
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26221
26433
|
|
|
26222
26434
|
@description ### [](#)Supported database engine
|
|
26223
26435
|
PostgreSQL
|
|
@@ -26233,7 +26445,7 @@ class Client(OpenApiClient):
|
|
|
26233
26445
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26234
26446
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26235
26447
|
"""
|
|
26236
|
-
@summary Queries the
|
|
26448
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26237
26449
|
|
|
26238
26450
|
@description ### [](#)Supported database engine
|
|
26239
26451
|
PostgreSQL
|
|
@@ -27914,14 +28126,16 @@ class Client(OpenApiClient):
|
|
|
27914
28126
|
|
|
27915
28127
|
@description ### [](#)Supported database engines
|
|
27916
28128
|
MySQL
|
|
27917
|
-
|
|
28129
|
+
*\
|
|
28130
|
+
*Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
27918
28131
|
SQL Server
|
|
27919
|
-
|
|
28132
|
+
*\
|
|
28133
|
+
*Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
27920
28134
|
MariaDB
|
|
27921
|
-
### [](#)
|
|
28135
|
+
### [](#)Prerequisites
|
|
27922
28136
|
Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
27923
28137
|
If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
27924
|
-
Starting from
|
|
28138
|
+
Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
27925
28139
|
|
|
27926
28140
|
@param request: DescribeSlowLogsRequest
|
|
27927
28141
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -27980,14 +28194,16 @@ class Client(OpenApiClient):
|
|
|
27980
28194
|
|
|
27981
28195
|
@description ### [](#)Supported database engines
|
|
27982
28196
|
MySQL
|
|
27983
|
-
|
|
28197
|
+
*\
|
|
28198
|
+
*Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
27984
28199
|
SQL Server
|
|
27985
|
-
|
|
28200
|
+
*\
|
|
28201
|
+
*Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
27986
28202
|
MariaDB
|
|
27987
|
-
### [](#)
|
|
28203
|
+
### [](#)Prerequisites
|
|
27988
28204
|
Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
27989
28205
|
If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
27990
|
-
Starting from
|
|
28206
|
+
Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
27991
28207
|
|
|
27992
28208
|
@param request: DescribeSlowLogsRequest
|
|
27993
28209
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -28045,14 +28261,16 @@ class Client(OpenApiClient):
|
|
|
28045
28261
|
|
|
28046
28262
|
@description ### [](#)Supported database engines
|
|
28047
28263
|
MySQL
|
|
28048
|
-
|
|
28264
|
+
*\
|
|
28265
|
+
*Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
28049
28266
|
SQL Server
|
|
28050
|
-
|
|
28267
|
+
*\
|
|
28268
|
+
*Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
28051
28269
|
MariaDB
|
|
28052
|
-
### [](#)
|
|
28270
|
+
### [](#)Prerequisites
|
|
28053
28271
|
Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
28054
28272
|
If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
28055
|
-
Starting from
|
|
28273
|
+
Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
28056
28274
|
|
|
28057
28275
|
@param request: DescribeSlowLogsRequest
|
|
28058
28276
|
@return: DescribeSlowLogsResponse
|
|
@@ -28069,14 +28287,16 @@ class Client(OpenApiClient):
|
|
|
28069
28287
|
|
|
28070
28288
|
@description ### [](#)Supported database engines
|
|
28071
28289
|
MySQL
|
|
28072
|
-
|
|
28290
|
+
*\
|
|
28291
|
+
*Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
28073
28292
|
SQL Server
|
|
28074
|
-
|
|
28293
|
+
*\
|
|
28294
|
+
*Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
28075
28295
|
MariaDB
|
|
28076
|
-
### [](#)
|
|
28296
|
+
### [](#)Prerequisites
|
|
28077
28297
|
Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
28078
28298
|
If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
28079
|
-
Starting from
|
|
28299
|
+
Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
28080
28300
|
|
|
28081
28301
|
@param request: DescribeSlowLogsRequest
|
|
28082
28302
|
@return: DescribeSlowLogsResponse
|
|
@@ -30482,6 +30702,8 @@ class Client(OpenApiClient):
|
|
|
30482
30702
|
query['CommodityCode'] = request.commodity_code
|
|
30483
30703
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30484
30704
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30705
|
+
if not UtilClient.is_unset(request.engine):
|
|
30706
|
+
query['Engine'] = request.engine
|
|
30485
30707
|
if not UtilClient.is_unset(request.order_type):
|
|
30486
30708
|
query['OrderType'] = request.order_type
|
|
30487
30709
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -30537,6 +30759,8 @@ class Client(OpenApiClient):
|
|
|
30537
30759
|
query['CommodityCode'] = request.commodity_code
|
|
30538
30760
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30539
30761
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30762
|
+
if not UtilClient.is_unset(request.engine):
|
|
30763
|
+
query['Engine'] = request.engine
|
|
30540
30764
|
if not UtilClient.is_unset(request.order_type):
|
|
30541
30765
|
query['OrderType'] = request.order_type
|
|
30542
30766
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -31844,6 +32068,146 @@ class Client(OpenApiClient):
|
|
|
31844
32068
|
runtime = util_models.RuntimeOptions()
|
|
31845
32069
|
return await self.modify_adinfo_with_options_async(request, runtime)
|
|
31846
32070
|
|
|
32071
|
+
def modify_account_check_policy_with_options(
|
|
32072
|
+
self,
|
|
32073
|
+
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
32074
|
+
runtime: util_models.RuntimeOptions,
|
|
32075
|
+
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
32076
|
+
"""
|
|
32077
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32078
|
+
|
|
32079
|
+
@description ### [](#)Supported database engine
|
|
32080
|
+
SQL Server
|
|
32081
|
+
|
|
32082
|
+
@param request: ModifyAccountCheckPolicyRequest
|
|
32083
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
32084
|
+
@return: ModifyAccountCheckPolicyResponse
|
|
32085
|
+
"""
|
|
32086
|
+
UtilClient.validate_model(request)
|
|
32087
|
+
query = {}
|
|
32088
|
+
if not UtilClient.is_unset(request.account_name):
|
|
32089
|
+
query['AccountName'] = request.account_name
|
|
32090
|
+
if not UtilClient.is_unset(request.check_policy):
|
|
32091
|
+
query['CheckPolicy'] = request.check_policy
|
|
32092
|
+
if not UtilClient.is_unset(request.client_token):
|
|
32093
|
+
query['ClientToken'] = request.client_token
|
|
32094
|
+
if not UtilClient.is_unset(request.dbinstance_id):
|
|
32095
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
32096
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
32097
|
+
query['OwnerAccount'] = request.owner_account
|
|
32098
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
32099
|
+
query['OwnerId'] = request.owner_id
|
|
32100
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
32101
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
32102
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32103
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32104
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
32105
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
32106
|
+
req = open_api_models.OpenApiRequest(
|
|
32107
|
+
query=OpenApiUtilClient.query(query)
|
|
32108
|
+
)
|
|
32109
|
+
params = open_api_models.Params(
|
|
32110
|
+
action='ModifyAccountCheckPolicy',
|
|
32111
|
+
version='2014-08-15',
|
|
32112
|
+
protocol='HTTPS',
|
|
32113
|
+
pathname='/',
|
|
32114
|
+
method='POST',
|
|
32115
|
+
auth_type='AK',
|
|
32116
|
+
style='RPC',
|
|
32117
|
+
req_body_type='formData',
|
|
32118
|
+
body_type='json'
|
|
32119
|
+
)
|
|
32120
|
+
return TeaCore.from_map(
|
|
32121
|
+
rds_20140815_models.ModifyAccountCheckPolicyResponse(),
|
|
32122
|
+
self.call_api(params, req, runtime)
|
|
32123
|
+
)
|
|
32124
|
+
|
|
32125
|
+
async def modify_account_check_policy_with_options_async(
|
|
32126
|
+
self,
|
|
32127
|
+
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
32128
|
+
runtime: util_models.RuntimeOptions,
|
|
32129
|
+
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
32130
|
+
"""
|
|
32131
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32132
|
+
|
|
32133
|
+
@description ### [](#)Supported database engine
|
|
32134
|
+
SQL Server
|
|
32135
|
+
|
|
32136
|
+
@param request: ModifyAccountCheckPolicyRequest
|
|
32137
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
32138
|
+
@return: ModifyAccountCheckPolicyResponse
|
|
32139
|
+
"""
|
|
32140
|
+
UtilClient.validate_model(request)
|
|
32141
|
+
query = {}
|
|
32142
|
+
if not UtilClient.is_unset(request.account_name):
|
|
32143
|
+
query['AccountName'] = request.account_name
|
|
32144
|
+
if not UtilClient.is_unset(request.check_policy):
|
|
32145
|
+
query['CheckPolicy'] = request.check_policy
|
|
32146
|
+
if not UtilClient.is_unset(request.client_token):
|
|
32147
|
+
query['ClientToken'] = request.client_token
|
|
32148
|
+
if not UtilClient.is_unset(request.dbinstance_id):
|
|
32149
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
32150
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
32151
|
+
query['OwnerAccount'] = request.owner_account
|
|
32152
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
32153
|
+
query['OwnerId'] = request.owner_id
|
|
32154
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
32155
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
32156
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32157
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32158
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
32159
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
32160
|
+
req = open_api_models.OpenApiRequest(
|
|
32161
|
+
query=OpenApiUtilClient.query(query)
|
|
32162
|
+
)
|
|
32163
|
+
params = open_api_models.Params(
|
|
32164
|
+
action='ModifyAccountCheckPolicy',
|
|
32165
|
+
version='2014-08-15',
|
|
32166
|
+
protocol='HTTPS',
|
|
32167
|
+
pathname='/',
|
|
32168
|
+
method='POST',
|
|
32169
|
+
auth_type='AK',
|
|
32170
|
+
style='RPC',
|
|
32171
|
+
req_body_type='formData',
|
|
32172
|
+
body_type='json'
|
|
32173
|
+
)
|
|
32174
|
+
return TeaCore.from_map(
|
|
32175
|
+
rds_20140815_models.ModifyAccountCheckPolicyResponse(),
|
|
32176
|
+
await self.call_api_async(params, req, runtime)
|
|
32177
|
+
)
|
|
32178
|
+
|
|
32179
|
+
def modify_account_check_policy(
|
|
32180
|
+
self,
|
|
32181
|
+
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
32182
|
+
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
32183
|
+
"""
|
|
32184
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32185
|
+
|
|
32186
|
+
@description ### [](#)Supported database engine
|
|
32187
|
+
SQL Server
|
|
32188
|
+
|
|
32189
|
+
@param request: ModifyAccountCheckPolicyRequest
|
|
32190
|
+
@return: ModifyAccountCheckPolicyResponse
|
|
32191
|
+
"""
|
|
32192
|
+
runtime = util_models.RuntimeOptions()
|
|
32193
|
+
return self.modify_account_check_policy_with_options(request, runtime)
|
|
32194
|
+
|
|
32195
|
+
async def modify_account_check_policy_async(
|
|
32196
|
+
self,
|
|
32197
|
+
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
32198
|
+
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
32199
|
+
"""
|
|
32200
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32201
|
+
|
|
32202
|
+
@description ### [](#)Supported database engine
|
|
32203
|
+
SQL Server
|
|
32204
|
+
|
|
32205
|
+
@param request: ModifyAccountCheckPolicyRequest
|
|
32206
|
+
@return: ModifyAccountCheckPolicyResponse
|
|
32207
|
+
"""
|
|
32208
|
+
runtime = util_models.RuntimeOptions()
|
|
32209
|
+
return await self.modify_account_check_policy_with_options_async(request, runtime)
|
|
32210
|
+
|
|
31847
32211
|
def modify_account_description_with_options(
|
|
31848
32212
|
self,
|
|
31849
32213
|
request: rds_20140815_models.ModifyAccountDescriptionRequest,
|
|
@@ -32010,6 +32374,8 @@ class Client(OpenApiClient):
|
|
|
32010
32374
|
query['OwnerId'] = request.owner_id
|
|
32011
32375
|
if not UtilClient.is_unset(request.privilege):
|
|
32012
32376
|
query['Privilege'] = request.privilege
|
|
32377
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32378
|
+
query['RegionId'] = request.region_id
|
|
32013
32379
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32014
32380
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32015
32381
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32057,6 +32423,8 @@ class Client(OpenApiClient):
|
|
|
32057
32423
|
query['OwnerId'] = request.owner_id
|
|
32058
32424
|
if not UtilClient.is_unset(request.privilege):
|
|
32059
32425
|
query['Privilege'] = request.privilege
|
|
32426
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32427
|
+
query['RegionId'] = request.region_id
|
|
32060
32428
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32061
32429
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32062
32430
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32108,6 +32476,154 @@ class Client(OpenApiClient):
|
|
|
32108
32476
|
runtime = util_models.RuntimeOptions()
|
|
32109
32477
|
return await self.modify_account_masking_privilege_with_options_async(request, runtime)
|
|
32110
32478
|
|
|
32479
|
+
def modify_account_security_policy_with_options(
|
|
32480
|
+
self,
|
|
32481
|
+
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32482
|
+
runtime: util_models.RuntimeOptions,
|
|
32483
|
+
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32484
|
+
"""
|
|
32485
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32486
|
+
|
|
32487
|
+
@description ### [](#)Supported database engines
|
|
32488
|
+
SQL Server (This parameter is unavailable for ApsaraDB RDS for SQL Server instances that belong to the shared instance family and run SQL Server 2008 R2.)
|
|
32489
|
+
### [](#)References
|
|
32490
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32491
|
+
[Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
32492
|
+
|
|
32493
|
+
@param request: ModifyAccountSecurityPolicyRequest
|
|
32494
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
32495
|
+
@return: ModifyAccountSecurityPolicyResponse
|
|
32496
|
+
"""
|
|
32497
|
+
UtilClient.validate_model(request)
|
|
32498
|
+
query = {}
|
|
32499
|
+
if not UtilClient.is_unset(request.client_token):
|
|
32500
|
+
query['ClientToken'] = request.client_token
|
|
32501
|
+
if not UtilClient.is_unset(request.dbinstance_id):
|
|
32502
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
32503
|
+
if not UtilClient.is_unset(request.group_policy):
|
|
32504
|
+
query['GroupPolicy'] = request.group_policy
|
|
32505
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
32506
|
+
query['OwnerAccount'] = request.owner_account
|
|
32507
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
32508
|
+
query['OwnerId'] = request.owner_id
|
|
32509
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
32510
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
32511
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32512
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32513
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
32514
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
32515
|
+
req = open_api_models.OpenApiRequest(
|
|
32516
|
+
query=OpenApiUtilClient.query(query)
|
|
32517
|
+
)
|
|
32518
|
+
params = open_api_models.Params(
|
|
32519
|
+
action='ModifyAccountSecurityPolicy',
|
|
32520
|
+
version='2014-08-15',
|
|
32521
|
+
protocol='HTTPS',
|
|
32522
|
+
pathname='/',
|
|
32523
|
+
method='POST',
|
|
32524
|
+
auth_type='AK',
|
|
32525
|
+
style='RPC',
|
|
32526
|
+
req_body_type='formData',
|
|
32527
|
+
body_type='json'
|
|
32528
|
+
)
|
|
32529
|
+
return TeaCore.from_map(
|
|
32530
|
+
rds_20140815_models.ModifyAccountSecurityPolicyResponse(),
|
|
32531
|
+
self.call_api(params, req, runtime)
|
|
32532
|
+
)
|
|
32533
|
+
|
|
32534
|
+
async def modify_account_security_policy_with_options_async(
|
|
32535
|
+
self,
|
|
32536
|
+
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32537
|
+
runtime: util_models.RuntimeOptions,
|
|
32538
|
+
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32539
|
+
"""
|
|
32540
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32541
|
+
|
|
32542
|
+
@description ### [](#)Supported database engines
|
|
32543
|
+
SQL Server (This parameter is unavailable for ApsaraDB RDS for SQL Server instances that belong to the shared instance family and run SQL Server 2008 R2.)
|
|
32544
|
+
### [](#)References
|
|
32545
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32546
|
+
[Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
32547
|
+
|
|
32548
|
+
@param request: ModifyAccountSecurityPolicyRequest
|
|
32549
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
32550
|
+
@return: ModifyAccountSecurityPolicyResponse
|
|
32551
|
+
"""
|
|
32552
|
+
UtilClient.validate_model(request)
|
|
32553
|
+
query = {}
|
|
32554
|
+
if not UtilClient.is_unset(request.client_token):
|
|
32555
|
+
query['ClientToken'] = request.client_token
|
|
32556
|
+
if not UtilClient.is_unset(request.dbinstance_id):
|
|
32557
|
+
query['DBInstanceId'] = request.dbinstance_id
|
|
32558
|
+
if not UtilClient.is_unset(request.group_policy):
|
|
32559
|
+
query['GroupPolicy'] = request.group_policy
|
|
32560
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
32561
|
+
query['OwnerAccount'] = request.owner_account
|
|
32562
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
32563
|
+
query['OwnerId'] = request.owner_id
|
|
32564
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
32565
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
32566
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32567
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32568
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
32569
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
32570
|
+
req = open_api_models.OpenApiRequest(
|
|
32571
|
+
query=OpenApiUtilClient.query(query)
|
|
32572
|
+
)
|
|
32573
|
+
params = open_api_models.Params(
|
|
32574
|
+
action='ModifyAccountSecurityPolicy',
|
|
32575
|
+
version='2014-08-15',
|
|
32576
|
+
protocol='HTTPS',
|
|
32577
|
+
pathname='/',
|
|
32578
|
+
method='POST',
|
|
32579
|
+
auth_type='AK',
|
|
32580
|
+
style='RPC',
|
|
32581
|
+
req_body_type='formData',
|
|
32582
|
+
body_type='json'
|
|
32583
|
+
)
|
|
32584
|
+
return TeaCore.from_map(
|
|
32585
|
+
rds_20140815_models.ModifyAccountSecurityPolicyResponse(),
|
|
32586
|
+
await self.call_api_async(params, req, runtime)
|
|
32587
|
+
)
|
|
32588
|
+
|
|
32589
|
+
def modify_account_security_policy(
|
|
32590
|
+
self,
|
|
32591
|
+
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32592
|
+
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32593
|
+
"""
|
|
32594
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32595
|
+
|
|
32596
|
+
@description ### [](#)Supported database engines
|
|
32597
|
+
SQL Server (This parameter is unavailable for ApsaraDB RDS for SQL Server instances that belong to the shared instance family and run SQL Server 2008 R2.)
|
|
32598
|
+
### [](#)References
|
|
32599
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32600
|
+
[Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
32601
|
+
|
|
32602
|
+
@param request: ModifyAccountSecurityPolicyRequest
|
|
32603
|
+
@return: ModifyAccountSecurityPolicyResponse
|
|
32604
|
+
"""
|
|
32605
|
+
runtime = util_models.RuntimeOptions()
|
|
32606
|
+
return self.modify_account_security_policy_with_options(request, runtime)
|
|
32607
|
+
|
|
32608
|
+
async def modify_account_security_policy_async(
|
|
32609
|
+
self,
|
|
32610
|
+
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32611
|
+
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32612
|
+
"""
|
|
32613
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32614
|
+
|
|
32615
|
+
@description ### [](#)Supported database engines
|
|
32616
|
+
SQL Server (This parameter is unavailable for ApsaraDB RDS for SQL Server instances that belong to the shared instance family and run SQL Server 2008 R2.)
|
|
32617
|
+
### [](#)References
|
|
32618
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32619
|
+
[Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
32620
|
+
|
|
32621
|
+
@param request: ModifyAccountSecurityPolicyRequest
|
|
32622
|
+
@return: ModifyAccountSecurityPolicyResponse
|
|
32623
|
+
"""
|
|
32624
|
+
runtime = util_models.RuntimeOptions()
|
|
32625
|
+
return await self.modify_account_security_policy_with_options_async(request, runtime)
|
|
32626
|
+
|
|
32111
32627
|
def modify_action_event_policy_with_options(
|
|
32112
32628
|
self,
|
|
32113
32629
|
request: rds_20140815_models.ModifyActionEventPolicyRequest,
|
|
@@ -36342,7 +36858,7 @@ class Client(OpenApiClient):
|
|
|
36342
36858
|
|
|
36343
36859
|
def modify_dbproxy_with_options(
|
|
36344
36860
|
self,
|
|
36345
|
-
|
|
36861
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36346
36862
|
runtime: util_models.RuntimeOptions,
|
|
36347
36863
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36348
36864
|
"""
|
|
@@ -36357,11 +36873,15 @@ class Client(OpenApiClient):
|
|
|
36357
36873
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36358
36874
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36359
36875
|
|
|
36360
|
-
@param
|
|
36876
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36361
36877
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36362
36878
|
@return: ModifyDBProxyResponse
|
|
36363
36879
|
"""
|
|
36364
|
-
UtilClient.validate_model(
|
|
36880
|
+
UtilClient.validate_model(tmp_req)
|
|
36881
|
+
request = rds_20140815_models.ModifyDBProxyShrinkRequest()
|
|
36882
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
36883
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
36884
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
36365
36885
|
query = {}
|
|
36366
36886
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36367
36887
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36375,6 +36895,8 @@ class Client(OpenApiClient):
|
|
|
36375
36895
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36376
36896
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36377
36897
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36898
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36899
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36378
36900
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36379
36901
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36380
36902
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36414,7 +36936,7 @@ class Client(OpenApiClient):
|
|
|
36414
36936
|
|
|
36415
36937
|
async def modify_dbproxy_with_options_async(
|
|
36416
36938
|
self,
|
|
36417
|
-
|
|
36939
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36418
36940
|
runtime: util_models.RuntimeOptions,
|
|
36419
36941
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36420
36942
|
"""
|
|
@@ -36429,11 +36951,15 @@ class Client(OpenApiClient):
|
|
|
36429
36951
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36430
36952
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36431
36953
|
|
|
36432
|
-
@param
|
|
36954
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36433
36955
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36434
36956
|
@return: ModifyDBProxyResponse
|
|
36435
36957
|
"""
|
|
36436
|
-
UtilClient.validate_model(
|
|
36958
|
+
UtilClient.validate_model(tmp_req)
|
|
36959
|
+
request = rds_20140815_models.ModifyDBProxyShrinkRequest()
|
|
36960
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
36961
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
36962
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
36437
36963
|
query = {}
|
|
36438
36964
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36439
36965
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36447,6 +36973,8 @@ class Client(OpenApiClient):
|
|
|
36447
36973
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36448
36974
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36449
36975
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36976
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36977
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36450
36978
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36451
36979
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36452
36980
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36568,6 +37096,10 @@ class Client(OpenApiClient):
|
|
|
36568
37096
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36569
37097
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36570
37098
|
query['DbEndpointType'] = request.db_endpoint_type
|
|
37099
|
+
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37100
|
+
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37101
|
+
if not UtilClient.is_unset(request.effective_time):
|
|
37102
|
+
query['EffectiveTime'] = request.effective_time
|
|
36571
37103
|
if not UtilClient.is_unset(request.owner_id):
|
|
36572
37104
|
query['OwnerId'] = request.owner_id
|
|
36573
37105
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36582,6 +37114,8 @@ class Client(OpenApiClient):
|
|
|
36582
37114
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36583
37115
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36584
37116
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37117
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37118
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36585
37119
|
req = open_api_models.OpenApiRequest(
|
|
36586
37120
|
query=OpenApiUtilClient.query(query)
|
|
36587
37121
|
)
|
|
@@ -36641,6 +37175,10 @@ class Client(OpenApiClient):
|
|
|
36641
37175
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36642
37176
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36643
37177
|
query['DbEndpointType'] = request.db_endpoint_type
|
|
37178
|
+
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37179
|
+
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37180
|
+
if not UtilClient.is_unset(request.effective_time):
|
|
37181
|
+
query['EffectiveTime'] = request.effective_time
|
|
36644
37182
|
if not UtilClient.is_unset(request.owner_id):
|
|
36645
37183
|
query['OwnerId'] = request.owner_id
|
|
36646
37184
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36655,6 +37193,8 @@ class Client(OpenApiClient):
|
|
|
36655
37193
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36656
37194
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36657
37195
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37196
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37197
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36658
37198
|
req = open_api_models.OpenApiRequest(
|
|
36659
37199
|
query=OpenApiUtilClient.query(query)
|
|
36660
37200
|
)
|
|
@@ -36882,7 +37422,7 @@ class Client(OpenApiClient):
|
|
|
36882
37422
|
|
|
36883
37423
|
def modify_dbproxy_instance_with_options(
|
|
36884
37424
|
self,
|
|
36885
|
-
|
|
37425
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
36886
37426
|
runtime: util_models.RuntimeOptions,
|
|
36887
37427
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
36888
37428
|
"""
|
|
@@ -36893,11 +37433,17 @@ class Client(OpenApiClient):
|
|
|
36893
37433
|
PostgreSQL
|
|
36894
37434
|
> Starting October 17, 2023, ApsaraDB RDS for MySQL instances that run RDS Cluster Edition offer one free-of-charge dedicated database proxy for each unit in phases. For more information, see [[Special offers/Price changes\\] One dedicated proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
|
|
36895
37435
|
|
|
36896
|
-
@param
|
|
37436
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
36897
37437
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36898
37438
|
@return: ModifyDBProxyInstanceResponse
|
|
36899
37439
|
"""
|
|
36900
|
-
UtilClient.validate_model(
|
|
37440
|
+
UtilClient.validate_model(tmp_req)
|
|
37441
|
+
request = rds_20140815_models.ModifyDBProxyInstanceShrinkRequest()
|
|
37442
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
37443
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
37444
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
37445
|
+
if not UtilClient.is_unset(tmp_req.migrate_az):
|
|
37446
|
+
request.migrate_azshrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.migrate_az, 'MigrateAZ', 'json')
|
|
36901
37447
|
query = {}
|
|
36902
37448
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
36903
37449
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -36909,10 +37455,14 @@ class Client(OpenApiClient):
|
|
|
36909
37455
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36910
37456
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36911
37457
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37458
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37459
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36912
37460
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
36913
37461
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
36914
37462
|
if not UtilClient.is_unset(request.effective_time):
|
|
36915
37463
|
query['EffectiveTime'] = request.effective_time
|
|
37464
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37465
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
36916
37466
|
if not UtilClient.is_unset(request.owner_id):
|
|
36917
37467
|
query['OwnerId'] = request.owner_id
|
|
36918
37468
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -36944,7 +37494,7 @@ class Client(OpenApiClient):
|
|
|
36944
37494
|
|
|
36945
37495
|
async def modify_dbproxy_instance_with_options_async(
|
|
36946
37496
|
self,
|
|
36947
|
-
|
|
37497
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
36948
37498
|
runtime: util_models.RuntimeOptions,
|
|
36949
37499
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
36950
37500
|
"""
|
|
@@ -36955,11 +37505,17 @@ class Client(OpenApiClient):
|
|
|
36955
37505
|
PostgreSQL
|
|
36956
37506
|
> Starting October 17, 2023, ApsaraDB RDS for MySQL instances that run RDS Cluster Edition offer one free-of-charge dedicated database proxy for each unit in phases. For more information, see [[Special offers/Price changes\\] One dedicated proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
|
|
36957
37507
|
|
|
36958
|
-
@param
|
|
37508
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
36959
37509
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36960
37510
|
@return: ModifyDBProxyInstanceResponse
|
|
36961
37511
|
"""
|
|
36962
|
-
UtilClient.validate_model(
|
|
37512
|
+
UtilClient.validate_model(tmp_req)
|
|
37513
|
+
request = rds_20140815_models.ModifyDBProxyInstanceShrinkRequest()
|
|
37514
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
37515
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
37516
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
37517
|
+
if not UtilClient.is_unset(tmp_req.migrate_az):
|
|
37518
|
+
request.migrate_azshrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.migrate_az, 'MigrateAZ', 'json')
|
|
36963
37519
|
query = {}
|
|
36964
37520
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
36965
37521
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -36971,10 +37527,14 @@ class Client(OpenApiClient):
|
|
|
36971
37527
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36972
37528
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36973
37529
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37530
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37531
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36974
37532
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
36975
37533
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
36976
37534
|
if not UtilClient.is_unset(request.effective_time):
|
|
36977
37535
|
query['EffectiveTime'] = request.effective_time
|
|
37536
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37537
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
36978
37538
|
if not UtilClient.is_unset(request.owner_id):
|
|
36979
37539
|
query['OwnerId'] = request.owner_id
|
|
36980
37540
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -37646,7 +38206,7 @@ class Client(OpenApiClient):
|
|
|
37646
38206
|
runtime: util_models.RuntimeOptions,
|
|
37647
38207
|
) -> rds_20140815_models.ModifyEventInfoResponse:
|
|
37648
38208
|
"""
|
|
37649
|
-
@summary
|
|
38209
|
+
@summary Modifies information about the events in the event center.
|
|
37650
38210
|
|
|
37651
38211
|
@param request: ModifyEventInfoRequest
|
|
37652
38212
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -37689,7 +38249,7 @@ class Client(OpenApiClient):
|
|
|
37689
38249
|
runtime: util_models.RuntimeOptions,
|
|
37690
38250
|
) -> rds_20140815_models.ModifyEventInfoResponse:
|
|
37691
38251
|
"""
|
|
37692
|
-
@summary
|
|
38252
|
+
@summary Modifies information about the events in the event center.
|
|
37693
38253
|
|
|
37694
38254
|
@param request: ModifyEventInfoRequest
|
|
37695
38255
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -37731,7 +38291,7 @@ class Client(OpenApiClient):
|
|
|
37731
38291
|
request: rds_20140815_models.ModifyEventInfoRequest,
|
|
37732
38292
|
) -> rds_20140815_models.ModifyEventInfoResponse:
|
|
37733
38293
|
"""
|
|
37734
|
-
@summary
|
|
38294
|
+
@summary Modifies information about the events in the event center.
|
|
37735
38295
|
|
|
37736
38296
|
@param request: ModifyEventInfoRequest
|
|
37737
38297
|
@return: ModifyEventInfoResponse
|
|
@@ -37744,7 +38304,7 @@ class Client(OpenApiClient):
|
|
|
37744
38304
|
request: rds_20140815_models.ModifyEventInfoRequest,
|
|
37745
38305
|
) -> rds_20140815_models.ModifyEventInfoResponse:
|
|
37746
38306
|
"""
|
|
37747
|
-
@summary
|
|
38307
|
+
@summary Modifies information about the events in the event center.
|
|
37748
38308
|
|
|
37749
38309
|
@param request: ModifyEventInfoRequest
|
|
37750
38310
|
@return: ModifyEventInfoResponse
|
|
@@ -38452,6 +39012,8 @@ class Client(OpenApiClient):
|
|
|
38452
39012
|
query['MaskingAlgo'] = request.masking_algo
|
|
38453
39013
|
if not UtilClient.is_unset(request.owner_id):
|
|
38454
39014
|
query['OwnerId'] = request.owner_id
|
|
39015
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39016
|
+
query['RegionId'] = request.region_id
|
|
38455
39017
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38456
39018
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38457
39019
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -38507,6 +39069,8 @@ class Client(OpenApiClient):
|
|
|
38507
39069
|
query['MaskingAlgo'] = request.masking_algo
|
|
38508
39070
|
if not UtilClient.is_unset(request.owner_id):
|
|
38509
39071
|
query['OwnerId'] = request.owner_id
|
|
39072
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39073
|
+
query['RegionId'] = request.region_id
|
|
38510
39074
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38511
39075
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38512
39076
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -39066,7 +39630,15 @@ class Client(OpenApiClient):
|
|
|
39066
39630
|
runtime: util_models.RuntimeOptions,
|
|
39067
39631
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39068
39632
|
"""
|
|
39069
|
-
@summary
|
|
39633
|
+
@summary Upgrades or downgrades the instance type of a subscription RDS Custom instance. The new instance type takes effect for the remaining lifecycle of the instance.
|
|
39634
|
+
|
|
39635
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39636
|
+
Before you call this operation, take note of the following items:
|
|
39637
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39638
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39639
|
+
The instance must be in the Stopped state.
|
|
39640
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39641
|
+
The operation is asynchronous. Wait 5 to 10 seconds for the instance type change to complete. Then, restart the instance by calling the RebootInstance operation or by using the console for the instance type change to take effect. If you restart only the operating system of the instance, the instance type change does not take effect. If the instance is in the Stopped state, you need only to start the instance. You do not need to restart the instance after it enters the Running state.
|
|
39070
39642
|
|
|
39071
39643
|
@param request: ModifyRCInstanceRequest
|
|
39072
39644
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39111,7 +39683,15 @@ class Client(OpenApiClient):
|
|
|
39111
39683
|
runtime: util_models.RuntimeOptions,
|
|
39112
39684
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39113
39685
|
"""
|
|
39114
|
-
@summary
|
|
39686
|
+
@summary Upgrades or downgrades the instance type of a subscription RDS Custom instance. The new instance type takes effect for the remaining lifecycle of the instance.
|
|
39687
|
+
|
|
39688
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39689
|
+
Before you call this operation, take note of the following items:
|
|
39690
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39691
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39692
|
+
The instance must be in the Stopped state.
|
|
39693
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39694
|
+
The operation is asynchronous. Wait 5 to 10 seconds for the instance type change to complete. Then, restart the instance by calling the RebootInstance operation or by using the console for the instance type change to take effect. If you restart only the operating system of the instance, the instance type change does not take effect. If the instance is in the Stopped state, you need only to start the instance. You do not need to restart the instance after it enters the Running state.
|
|
39115
39695
|
|
|
39116
39696
|
@param request: ModifyRCInstanceRequest
|
|
39117
39697
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39155,7 +39735,15 @@ class Client(OpenApiClient):
|
|
|
39155
39735
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39156
39736
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39157
39737
|
"""
|
|
39158
|
-
@summary
|
|
39738
|
+
@summary Upgrades or downgrades the instance type of a subscription RDS Custom instance. The new instance type takes effect for the remaining lifecycle of the instance.
|
|
39739
|
+
|
|
39740
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39741
|
+
Before you call this operation, take note of the following items:
|
|
39742
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39743
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39744
|
+
The instance must be in the Stopped state.
|
|
39745
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39746
|
+
The operation is asynchronous. Wait 5 to 10 seconds for the instance type change to complete. Then, restart the instance by calling the RebootInstance operation or by using the console for the instance type change to take effect. If you restart only the operating system of the instance, the instance type change does not take effect. If the instance is in the Stopped state, you need only to start the instance. You do not need to restart the instance after it enters the Running state.
|
|
39159
39747
|
|
|
39160
39748
|
@param request: ModifyRCInstanceRequest
|
|
39161
39749
|
@return: ModifyRCInstanceResponse
|
|
@@ -39168,7 +39756,15 @@ class Client(OpenApiClient):
|
|
|
39168
39756
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39169
39757
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39170
39758
|
"""
|
|
39171
|
-
@summary
|
|
39759
|
+
@summary Upgrades or downgrades the instance type of a subscription RDS Custom instance. The new instance type takes effect for the remaining lifecycle of the instance.
|
|
39760
|
+
|
|
39761
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39762
|
+
Before you call this operation, take note of the following items:
|
|
39763
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39764
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39765
|
+
The instance must be in the Stopped state.
|
|
39766
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39767
|
+
The operation is asynchronous. Wait 5 to 10 seconds for the instance type change to complete. Then, restart the instance by calling the RebootInstance operation or by using the console for the instance type change to take effect. If you restart only the operating system of the instance, the instance type change does not take effect. If the instance is in the Stopped state, you need only to start the instance. You do not need to restart the instance after it enters the Running state.
|
|
39172
39768
|
|
|
39173
39769
|
@param request: ModifyRCInstanceRequest
|
|
39174
39770
|
@return: ModifyRCInstanceResponse
|
|
@@ -40422,7 +41018,7 @@ class Client(OpenApiClient):
|
|
|
40422
41018
|
runtime: util_models.RuntimeOptions,
|
|
40423
41019
|
) -> rds_20140815_models.ModifyTaskInfoResponse:
|
|
40424
41020
|
"""
|
|
40425
|
-
@summary Modifies the
|
|
41021
|
+
@summary Modifies information about the historical tasks in the task center.
|
|
40426
41022
|
|
|
40427
41023
|
@param request: ModifyTaskInfoRequest
|
|
40428
41024
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -40471,7 +41067,7 @@ class Client(OpenApiClient):
|
|
|
40471
41067
|
runtime: util_models.RuntimeOptions,
|
|
40472
41068
|
) -> rds_20140815_models.ModifyTaskInfoResponse:
|
|
40473
41069
|
"""
|
|
40474
|
-
@summary Modifies the
|
|
41070
|
+
@summary Modifies information about the historical tasks in the task center.
|
|
40475
41071
|
|
|
40476
41072
|
@param request: ModifyTaskInfoRequest
|
|
40477
41073
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -40519,7 +41115,7 @@ class Client(OpenApiClient):
|
|
|
40519
41115
|
request: rds_20140815_models.ModifyTaskInfoRequest,
|
|
40520
41116
|
) -> rds_20140815_models.ModifyTaskInfoResponse:
|
|
40521
41117
|
"""
|
|
40522
|
-
@summary Modifies the
|
|
41118
|
+
@summary Modifies information about the historical tasks in the task center.
|
|
40523
41119
|
|
|
40524
41120
|
@param request: ModifyTaskInfoRequest
|
|
40525
41121
|
@return: ModifyTaskInfoResponse
|
|
@@ -40532,7 +41128,7 @@ class Client(OpenApiClient):
|
|
|
40532
41128
|
request: rds_20140815_models.ModifyTaskInfoRequest,
|
|
40533
41129
|
) -> rds_20140815_models.ModifyTaskInfoResponse:
|
|
40534
41130
|
"""
|
|
40535
|
-
@summary Modifies the
|
|
41131
|
+
@summary Modifies information about the historical tasks in the task center.
|
|
40536
41132
|
|
|
40537
41133
|
@param request: ModifyTaskInfoRequest
|
|
40538
41134
|
@return: ModifyTaskInfoResponse
|
|
@@ -41254,7 +41850,7 @@ class Client(OpenApiClient):
|
|
|
41254
41850
|
runtime: util_models.RuntimeOptions,
|
|
41255
41851
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41256
41852
|
"""
|
|
41257
|
-
@summary
|
|
41853
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41258
41854
|
|
|
41259
41855
|
@param request: RebootRCInstanceRequest
|
|
41260
41856
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41295,7 +41891,7 @@ class Client(OpenApiClient):
|
|
|
41295
41891
|
runtime: util_models.RuntimeOptions,
|
|
41296
41892
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41297
41893
|
"""
|
|
41298
|
-
@summary
|
|
41894
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41299
41895
|
|
|
41300
41896
|
@param request: RebootRCInstanceRequest
|
|
41301
41897
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41335,7 +41931,7 @@ class Client(OpenApiClient):
|
|
|
41335
41931
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41336
41932
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41337
41933
|
"""
|
|
41338
|
-
@summary
|
|
41934
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41339
41935
|
|
|
41340
41936
|
@param request: RebootRCInstanceRequest
|
|
41341
41937
|
@return: RebootRCInstanceResponse
|
|
@@ -41348,7 +41944,7 @@ class Client(OpenApiClient):
|
|
|
41348
41944
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41349
41945
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41350
41946
|
"""
|
|
41351
|
-
@summary
|
|
41947
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41352
41948
|
|
|
41353
41949
|
@param request: RebootRCInstanceRequest
|
|
41354
41950
|
@return: RebootRCInstanceResponse
|
|
@@ -43066,7 +43662,7 @@ class Client(OpenApiClient):
|
|
|
43066
43662
|
runtime: util_models.RuntimeOptions,
|
|
43067
43663
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43068
43664
|
"""
|
|
43069
|
-
@summary
|
|
43665
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43070
43666
|
|
|
43071
43667
|
@param request: ResizeRCInstanceDiskRequest
|
|
43072
43668
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43111,7 +43707,7 @@ class Client(OpenApiClient):
|
|
|
43111
43707
|
runtime: util_models.RuntimeOptions,
|
|
43112
43708
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43113
43709
|
"""
|
|
43114
|
-
@summary
|
|
43710
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43115
43711
|
|
|
43116
43712
|
@param request: ResizeRCInstanceDiskRequest
|
|
43117
43713
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43155,7 +43751,7 @@ class Client(OpenApiClient):
|
|
|
43155
43751
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43156
43752
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43157
43753
|
"""
|
|
43158
|
-
@summary
|
|
43754
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43159
43755
|
|
|
43160
43756
|
@param request: ResizeRCInstanceDiskRequest
|
|
43161
43757
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -43168,7 +43764,7 @@ class Client(OpenApiClient):
|
|
|
43168
43764
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43169
43765
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43170
43766
|
"""
|
|
43171
|
-
@summary
|
|
43767
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43172
43768
|
|
|
43173
43769
|
@param request: ResizeRCInstanceDiskRequest
|
|
43174
43770
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -43352,12 +43948,12 @@ class Client(OpenApiClient):
|
|
|
43352
43948
|
"""
|
|
43353
43949
|
@summary Restores data to an existing instance across regions.
|
|
43354
43950
|
|
|
43355
|
-
@description > Before restoration, you can call the
|
|
43356
|
-
### [](#)Supported database
|
|
43951
|
+
@description > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
43952
|
+
### [](#)Supported database engines
|
|
43357
43953
|
MySQL
|
|
43358
43954
|
### [](#)References
|
|
43359
|
-
>
|
|
43360
|
-
[
|
|
43955
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
43956
|
+
[Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
43361
43957
|
[Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
43362
43958
|
|
|
43363
43959
|
@param request: RestoreDdrTableRequest
|
|
@@ -43419,12 +44015,12 @@ class Client(OpenApiClient):
|
|
|
43419
44015
|
"""
|
|
43420
44016
|
@summary Restores data to an existing instance across regions.
|
|
43421
44017
|
|
|
43422
|
-
@description > Before restoration, you can call the
|
|
43423
|
-
### [](#)Supported database
|
|
44018
|
+
@description > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
44019
|
+
### [](#)Supported database engines
|
|
43424
44020
|
MySQL
|
|
43425
44021
|
### [](#)References
|
|
43426
|
-
>
|
|
43427
|
-
[
|
|
44022
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44023
|
+
[Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
43428
44024
|
[Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
43429
44025
|
|
|
43430
44026
|
@param request: RestoreDdrTableRequest
|
|
@@ -43485,12 +44081,12 @@ class Client(OpenApiClient):
|
|
|
43485
44081
|
"""
|
|
43486
44082
|
@summary Restores data to an existing instance across regions.
|
|
43487
44083
|
|
|
43488
|
-
@description > Before restoration, you can call the
|
|
43489
|
-
### [](#)Supported database
|
|
44084
|
+
@description > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
44085
|
+
### [](#)Supported database engines
|
|
43490
44086
|
MySQL
|
|
43491
44087
|
### [](#)References
|
|
43492
|
-
>
|
|
43493
|
-
[
|
|
44088
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44089
|
+
[Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
43494
44090
|
[Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
43495
44091
|
|
|
43496
44092
|
@param request: RestoreDdrTableRequest
|
|
@@ -43506,12 +44102,12 @@ class Client(OpenApiClient):
|
|
|
43506
44102
|
"""
|
|
43507
44103
|
@summary Restores data to an existing instance across regions.
|
|
43508
44104
|
|
|
43509
|
-
@description > Before restoration, you can call the
|
|
43510
|
-
### [](#)Supported database
|
|
44105
|
+
@description > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
44106
|
+
### [](#)Supported database engines
|
|
43511
44107
|
MySQL
|
|
43512
44108
|
### [](#)References
|
|
43513
|
-
>
|
|
43514
|
-
[
|
|
44109
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
44110
|
+
[Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
43515
44111
|
[Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
43516
44112
|
|
|
43517
44113
|
@param request: RestoreDdrTableRequest
|
|
@@ -43998,7 +44594,11 @@ class Client(OpenApiClient):
|
|
|
43998
44594
|
runtime: util_models.RuntimeOptions,
|
|
43999
44595
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44000
44596
|
"""
|
|
44001
|
-
@summary
|
|
44597
|
+
@summary Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
44598
|
+
|
|
44599
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44600
|
+
You can create only subscription RDS Custom instances.
|
|
44601
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44002
44602
|
|
|
44003
44603
|
@param tmp_req: RunRCInstancesRequest
|
|
44004
44604
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44087,7 +44687,11 @@ class Client(OpenApiClient):
|
|
|
44087
44687
|
runtime: util_models.RuntimeOptions,
|
|
44088
44688
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44089
44689
|
"""
|
|
44090
|
-
@summary
|
|
44690
|
+
@summary Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
44691
|
+
|
|
44692
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44693
|
+
You can create only subscription RDS Custom instances.
|
|
44694
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44091
44695
|
|
|
44092
44696
|
@param tmp_req: RunRCInstancesRequest
|
|
44093
44697
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44175,7 +44779,11 @@ class Client(OpenApiClient):
|
|
|
44175
44779
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44176
44780
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44177
44781
|
"""
|
|
44178
|
-
@summary
|
|
44782
|
+
@summary Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
44783
|
+
|
|
44784
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44785
|
+
You can create only subscription RDS Custom instances.
|
|
44786
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44179
44787
|
|
|
44180
44788
|
@param request: RunRCInstancesRequest
|
|
44181
44789
|
@return: RunRCInstancesResponse
|
|
@@ -44188,7 +44796,11 @@ class Client(OpenApiClient):
|
|
|
44188
44796
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44189
44797
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44190
44798
|
"""
|
|
44191
|
-
@summary
|
|
44799
|
+
@summary Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
44800
|
+
|
|
44801
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44802
|
+
You can create only subscription RDS Custom instances.
|
|
44803
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44192
44804
|
|
|
44193
44805
|
@param request: RunRCInstancesRequest
|
|
44194
44806
|
@return: RunRCInstancesResponse
|
|
@@ -44402,7 +45014,7 @@ class Client(OpenApiClient):
|
|
|
44402
45014
|
runtime: util_models.RuntimeOptions,
|
|
44403
45015
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44404
45016
|
"""
|
|
44405
|
-
@summary
|
|
45017
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44406
45018
|
|
|
44407
45019
|
@param request: StartRCInstanceRequest
|
|
44408
45020
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44439,7 +45051,7 @@ class Client(OpenApiClient):
|
|
|
44439
45051
|
runtime: util_models.RuntimeOptions,
|
|
44440
45052
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44441
45053
|
"""
|
|
44442
|
-
@summary
|
|
45054
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44443
45055
|
|
|
44444
45056
|
@param request: StartRCInstanceRequest
|
|
44445
45057
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44475,7 +45087,7 @@ class Client(OpenApiClient):
|
|
|
44475
45087
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44476
45088
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44477
45089
|
"""
|
|
44478
|
-
@summary
|
|
45090
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44479
45091
|
|
|
44480
45092
|
@param request: StartRCInstanceRequest
|
|
44481
45093
|
@return: StartRCInstanceResponse
|
|
@@ -44488,7 +45100,7 @@ class Client(OpenApiClient):
|
|
|
44488
45100
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44489
45101
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44490
45102
|
"""
|
|
44491
|
-
@summary
|
|
45103
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44492
45104
|
|
|
44493
45105
|
@param request: StartRCInstanceRequest
|
|
44494
45106
|
@return: StartRCInstanceResponse
|
|
@@ -44654,7 +45266,7 @@ class Client(OpenApiClient):
|
|
|
44654
45266
|
runtime: util_models.RuntimeOptions,
|
|
44655
45267
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44656
45268
|
"""
|
|
44657
|
-
@summary
|
|
45269
|
+
@summary Stops an RDS Custom instance that is in the Running state. After the operation is successfully called, the status of the RDS Custom instance changes from Stopping to Stopped.
|
|
44658
45270
|
|
|
44659
45271
|
@param request: StopRCInstanceRequest
|
|
44660
45272
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44693,7 +45305,7 @@ class Client(OpenApiClient):
|
|
|
44693
45305
|
runtime: util_models.RuntimeOptions,
|
|
44694
45306
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44695
45307
|
"""
|
|
44696
|
-
@summary
|
|
45308
|
+
@summary Stops an RDS Custom instance that is in the Running state. After the operation is successfully called, the status of the RDS Custom instance changes from Stopping to Stopped.
|
|
44697
45309
|
|
|
44698
45310
|
@param request: StopRCInstanceRequest
|
|
44699
45311
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44731,7 +45343,7 @@ class Client(OpenApiClient):
|
|
|
44731
45343
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
44732
45344
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44733
45345
|
"""
|
|
44734
|
-
@summary
|
|
45346
|
+
@summary Stops an RDS Custom instance that is in the Running state. After the operation is successfully called, the status of the RDS Custom instance changes from Stopping to Stopped.
|
|
44735
45347
|
|
|
44736
45348
|
@param request: StopRCInstanceRequest
|
|
44737
45349
|
@return: StopRCInstanceResponse
|
|
@@ -44744,7 +45356,7 @@ class Client(OpenApiClient):
|
|
|
44744
45356
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
44745
45357
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44746
45358
|
"""
|
|
44747
|
-
@summary
|
|
45359
|
+
@summary Stops an RDS Custom instance that is in the Running state. After the operation is successfully called, the status of the RDS Custom instance changes from Stopping to Stopped.
|
|
44748
45360
|
|
|
44749
45361
|
@param request: StopRCInstanceRequest
|
|
44750
45362
|
@return: StopRCInstanceResponse
|
|
@@ -45254,7 +45866,7 @@ class Client(OpenApiClient):
|
|
|
45254
45866
|
runtime: util_models.RuntimeOptions,
|
|
45255
45867
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45256
45868
|
"""
|
|
45257
|
-
@summary
|
|
45869
|
+
@summary Synchronizes a custom key pair to an RDS Custom instance. If you change the key pair that you created for your RDS Custom instance and you want the change to immediately take effect on the RDS Custom instance, you can call this operation to synchronize the new key pair to the RDS Custom instance. For example, you delete a key pair that has the same name as another key pair and recreate the key pair.
|
|
45258
45870
|
|
|
45259
45871
|
@param request: SyncRCKeyPairRequest
|
|
45260
45872
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45266,6 +45878,8 @@ class Client(OpenApiClient):
|
|
|
45266
45878
|
query['KeyPairName'] = request.key_pair_name
|
|
45267
45879
|
if not UtilClient.is_unset(request.region_id):
|
|
45268
45880
|
query['RegionId'] = request.region_id
|
|
45881
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45882
|
+
query['SyncMode'] = request.sync_mode
|
|
45269
45883
|
req = open_api_models.OpenApiRequest(
|
|
45270
45884
|
query=OpenApiUtilClient.query(query)
|
|
45271
45885
|
)
|
|
@@ -45291,7 +45905,7 @@ class Client(OpenApiClient):
|
|
|
45291
45905
|
runtime: util_models.RuntimeOptions,
|
|
45292
45906
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45293
45907
|
"""
|
|
45294
|
-
@summary
|
|
45908
|
+
@summary Synchronizes a custom key pair to an RDS Custom instance. If you change the key pair that you created for your RDS Custom instance and you want the change to immediately take effect on the RDS Custom instance, you can call this operation to synchronize the new key pair to the RDS Custom instance. For example, you delete a key pair that has the same name as another key pair and recreate the key pair.
|
|
45295
45909
|
|
|
45296
45910
|
@param request: SyncRCKeyPairRequest
|
|
45297
45911
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45303,6 +45917,8 @@ class Client(OpenApiClient):
|
|
|
45303
45917
|
query['KeyPairName'] = request.key_pair_name
|
|
45304
45918
|
if not UtilClient.is_unset(request.region_id):
|
|
45305
45919
|
query['RegionId'] = request.region_id
|
|
45920
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45921
|
+
query['SyncMode'] = request.sync_mode
|
|
45306
45922
|
req = open_api_models.OpenApiRequest(
|
|
45307
45923
|
query=OpenApiUtilClient.query(query)
|
|
45308
45924
|
)
|
|
@@ -45327,7 +45943,7 @@ class Client(OpenApiClient):
|
|
|
45327
45943
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45328
45944
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45329
45945
|
"""
|
|
45330
|
-
@summary
|
|
45946
|
+
@summary Synchronizes a custom key pair to an RDS Custom instance. If you change the key pair that you created for your RDS Custom instance and you want the change to immediately take effect on the RDS Custom instance, you can call this operation to synchronize the new key pair to the RDS Custom instance. For example, you delete a key pair that has the same name as another key pair and recreate the key pair.
|
|
45331
45947
|
|
|
45332
45948
|
@param request: SyncRCKeyPairRequest
|
|
45333
45949
|
@return: SyncRCKeyPairResponse
|
|
@@ -45340,7 +45956,7 @@ class Client(OpenApiClient):
|
|
|
45340
45956
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45341
45957
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45342
45958
|
"""
|
|
45343
|
-
@summary
|
|
45959
|
+
@summary Synchronizes a custom key pair to an RDS Custom instance. If you change the key pair that you created for your RDS Custom instance and you want the change to immediately take effect on the RDS Custom instance, you can call this operation to synchronize the new key pair to the RDS Custom instance. For example, you delete a key pair that has the same name as another key pair and recreate the key pair.
|
|
45344
45960
|
|
|
45345
45961
|
@param request: SyncRCKeyPairRequest
|
|
45346
45962
|
@return: SyncRCKeyPairResponse
|