alibabacloud-rds20140815 7.2.0__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 +440 -100
- alibabacloud_rds20140815/models.py +1543 -117
- {alibabacloud_rds20140815-7.2.0.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.2.0.dist-info/RECORD +0 -8
- {alibabacloud_rds20140815-7.2.0.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-7.2.0.dist-info → alibabacloud_rds20140815-7.3.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-7.2.0.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):
|
|
@@ -2981,13 +3169,13 @@ class Client(OpenApiClient):
|
|
|
2981
3169
|
PostgreSQL
|
|
2982
3170
|
SQL Server
|
|
2983
3171
|
MariaDB
|
|
2984
|
-
### [](#)
|
|
2985
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
2986
|
-
### [](#)
|
|
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
|
|
2987
3175
|
Before you call this operation, make sure that the following requirements are met:
|
|
2988
3176
|
The instance is in the Running state.
|
|
2989
3177
|
The instance does not have ongoing backup tasks.
|
|
2990
|
-
The number of backup
|
|
3178
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
2991
3179
|
### [](#)References
|
|
2992
3180
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
2993
3181
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3044,13 +3232,13 @@ class Client(OpenApiClient):
|
|
|
3044
3232
|
PostgreSQL
|
|
3045
3233
|
SQL Server
|
|
3046
3234
|
MariaDB
|
|
3047
|
-
### [](#)
|
|
3048
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3049
|
-
### [](#)
|
|
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
|
|
3050
3238
|
Before you call this operation, make sure that the following requirements are met:
|
|
3051
3239
|
The instance is in the Running state.
|
|
3052
3240
|
The instance does not have ongoing backup tasks.
|
|
3053
|
-
The number of backup
|
|
3241
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3054
3242
|
### [](#)References
|
|
3055
3243
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3056
3244
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3106,13 +3294,13 @@ class Client(OpenApiClient):
|
|
|
3106
3294
|
PostgreSQL
|
|
3107
3295
|
SQL Server
|
|
3108
3296
|
MariaDB
|
|
3109
|
-
### [](#)
|
|
3110
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3111
|
-
### [](#)
|
|
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
|
|
3112
3300
|
Before you call this operation, make sure that the following requirements are met:
|
|
3113
3301
|
The instance is in the Running state.
|
|
3114
3302
|
The instance does not have ongoing backup tasks.
|
|
3115
|
-
The number of backup
|
|
3303
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3116
3304
|
### [](#)References
|
|
3117
3305
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3118
3306
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -3137,13 +3325,13 @@ class Client(OpenApiClient):
|
|
|
3137
3325
|
PostgreSQL
|
|
3138
3326
|
SQL Server
|
|
3139
3327
|
MariaDB
|
|
3140
|
-
### [](#)
|
|
3141
|
-
This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
3142
|
-
### [](#)
|
|
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
|
|
3143
3331
|
Before you call this operation, make sure that the following requirements are met:
|
|
3144
3332
|
The instance is in the Running state.
|
|
3145
3333
|
The instance does not have ongoing backup tasks.
|
|
3146
|
-
The number of backup
|
|
3334
|
+
The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
3147
3335
|
### [](#)References
|
|
3148
3336
|
[Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
3149
3337
|
[Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -6718,7 +6906,7 @@ class Client(OpenApiClient):
|
|
|
6718
6906
|
runtime: util_models.RuntimeOptions,
|
|
6719
6907
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6720
6908
|
"""
|
|
6721
|
-
@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.
|
|
6722
6910
|
|
|
6723
6911
|
@param request: CreateRCDeploymentSetRequest
|
|
6724
6912
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -6765,7 +6953,7 @@ class Client(OpenApiClient):
|
|
|
6765
6953
|
runtime: util_models.RuntimeOptions,
|
|
6766
6954
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6767
6955
|
"""
|
|
6768
|
-
@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.
|
|
6769
6957
|
|
|
6770
6958
|
@param request: CreateRCDeploymentSetRequest
|
|
6771
6959
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -6811,7 +6999,7 @@ class Client(OpenApiClient):
|
|
|
6811
6999
|
request: rds_20140815_models.CreateRCDeploymentSetRequest,
|
|
6812
7000
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6813
7001
|
"""
|
|
6814
|
-
@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.
|
|
6815
7003
|
|
|
6816
7004
|
@param request: CreateRCDeploymentSetRequest
|
|
6817
7005
|
@return: CreateRCDeploymentSetResponse
|
|
@@ -6824,7 +7012,7 @@ class Client(OpenApiClient):
|
|
|
6824
7012
|
request: rds_20140815_models.CreateRCDeploymentSetRequest,
|
|
6825
7013
|
) -> rds_20140815_models.CreateRCDeploymentSetResponse:
|
|
6826
7014
|
"""
|
|
6827
|
-
@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.
|
|
6828
7016
|
|
|
6829
7017
|
@param request: CreateRCDeploymentSetRequest
|
|
6830
7018
|
@return: CreateRCDeploymentSetResponse
|
|
@@ -9990,7 +10178,7 @@ class Client(OpenApiClient):
|
|
|
9990
10178
|
runtime: util_models.RuntimeOptions,
|
|
9991
10179
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
9992
10180
|
"""
|
|
9993
|
-
@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.
|
|
9994
10182
|
|
|
9995
10183
|
@param request: DeleteRCDeploymentSetRequest
|
|
9996
10184
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10027,7 +10215,7 @@ class Client(OpenApiClient):
|
|
|
10027
10215
|
runtime: util_models.RuntimeOptions,
|
|
10028
10216
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10029
10217
|
"""
|
|
10030
|
-
@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.
|
|
10031
10219
|
|
|
10032
10220
|
@param request: DeleteRCDeploymentSetRequest
|
|
10033
10221
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10063,7 +10251,7 @@ class Client(OpenApiClient):
|
|
|
10063
10251
|
request: rds_20140815_models.DeleteRCDeploymentSetRequest,
|
|
10064
10252
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10065
10253
|
"""
|
|
10066
|
-
@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.
|
|
10067
10255
|
|
|
10068
10256
|
@param request: DeleteRCDeploymentSetRequest
|
|
10069
10257
|
@return: DeleteRCDeploymentSetResponse
|
|
@@ -10076,7 +10264,7 @@ class Client(OpenApiClient):
|
|
|
10076
10264
|
request: rds_20140815_models.DeleteRCDeploymentSetRequest,
|
|
10077
10265
|
) -> rds_20140815_models.DeleteRCDeploymentSetResponse:
|
|
10078
10266
|
"""
|
|
10079
|
-
@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.
|
|
10080
10268
|
|
|
10081
10269
|
@param request: DeleteRCDeploymentSetRequest
|
|
10082
10270
|
@return: DeleteRCDeploymentSetResponse
|
|
@@ -10194,7 +10382,9 @@ class Client(OpenApiClient):
|
|
|
10194
10382
|
runtime: util_models.RuntimeOptions,
|
|
10195
10383
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10196
10384
|
"""
|
|
10197
|
-
@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.
|
|
10198
10388
|
|
|
10199
10389
|
@param tmp_req: DeleteRCInstancesRequest
|
|
10200
10390
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10241,7 +10431,9 @@ class Client(OpenApiClient):
|
|
|
10241
10431
|
runtime: util_models.RuntimeOptions,
|
|
10242
10432
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10243
10433
|
"""
|
|
10244
|
-
@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.
|
|
10245
10437
|
|
|
10246
10438
|
@param tmp_req: DeleteRCInstancesRequest
|
|
10247
10439
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -10287,7 +10479,9 @@ class Client(OpenApiClient):
|
|
|
10287
10479
|
request: rds_20140815_models.DeleteRCInstancesRequest,
|
|
10288
10480
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10289
10481
|
"""
|
|
10290
|
-
@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.
|
|
10291
10485
|
|
|
10292
10486
|
@param request: DeleteRCInstancesRequest
|
|
10293
10487
|
@return: DeleteRCInstancesResponse
|
|
@@ -10300,7 +10494,9 @@ class Client(OpenApiClient):
|
|
|
10300
10494
|
request: rds_20140815_models.DeleteRCInstancesRequest,
|
|
10301
10495
|
) -> rds_20140815_models.DeleteRCInstancesResponse:
|
|
10302
10496
|
"""
|
|
10303
|
-
@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.
|
|
10304
10500
|
|
|
10305
10501
|
@param request: DeleteRCInstancesRequest
|
|
10306
10502
|
@return: DeleteRCInstancesResponse
|
|
@@ -24962,7 +25158,7 @@ class Client(OpenApiClient):
|
|
|
24962
25158
|
runtime: util_models.RuntimeOptions,
|
|
24963
25159
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
24964
25160
|
"""
|
|
24965
|
-
@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.
|
|
24966
25162
|
|
|
24967
25163
|
@param request: DescribeRCDeploymentSetsRequest
|
|
24968
25164
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -24995,7 +25191,7 @@ class Client(OpenApiClient):
|
|
|
24995
25191
|
runtime: util_models.RuntimeOptions,
|
|
24996
25192
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
24997
25193
|
"""
|
|
24998
|
-
@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.
|
|
24999
25195
|
|
|
25000
25196
|
@param request: DescribeRCDeploymentSetsRequest
|
|
25001
25197
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25027,7 +25223,7 @@ class Client(OpenApiClient):
|
|
|
25027
25223
|
request: rds_20140815_models.DescribeRCDeploymentSetsRequest,
|
|
25028
25224
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
25029
25225
|
"""
|
|
25030
|
-
@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.
|
|
25031
25227
|
|
|
25032
25228
|
@param request: DescribeRCDeploymentSetsRequest
|
|
25033
25229
|
@return: DescribeRCDeploymentSetsResponse
|
|
@@ -25040,7 +25236,7 @@ class Client(OpenApiClient):
|
|
|
25040
25236
|
request: rds_20140815_models.DescribeRCDeploymentSetsRequest,
|
|
25041
25237
|
) -> rds_20140815_models.DescribeRCDeploymentSetsResponse:
|
|
25042
25238
|
"""
|
|
25043
|
-
@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.
|
|
25044
25240
|
|
|
25045
25241
|
@param request: DescribeRCDeploymentSetsRequest
|
|
25046
25242
|
@return: DescribeRCDeploymentSetsResponse
|
|
@@ -25054,7 +25250,7 @@ class Client(OpenApiClient):
|
|
|
25054
25250
|
runtime: util_models.RuntimeOptions,
|
|
25055
25251
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25056
25252
|
"""
|
|
25057
|
-
@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.
|
|
25058
25254
|
|
|
25059
25255
|
@param request: DescribeRCImageListRequest
|
|
25060
25256
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25087,7 +25283,7 @@ class Client(OpenApiClient):
|
|
|
25087
25283
|
runtime: util_models.RuntimeOptions,
|
|
25088
25284
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25089
25285
|
"""
|
|
25090
|
-
@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.
|
|
25091
25287
|
|
|
25092
25288
|
@param request: DescribeRCImageListRequest
|
|
25093
25289
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25119,7 +25315,7 @@ class Client(OpenApiClient):
|
|
|
25119
25315
|
request: rds_20140815_models.DescribeRCImageListRequest,
|
|
25120
25316
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25121
25317
|
"""
|
|
25122
|
-
@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.
|
|
25123
25319
|
|
|
25124
25320
|
@param request: DescribeRCImageListRequest
|
|
25125
25321
|
@return: DescribeRCImageListResponse
|
|
@@ -25132,7 +25328,7 @@ class Client(OpenApiClient):
|
|
|
25132
25328
|
request: rds_20140815_models.DescribeRCImageListRequest,
|
|
25133
25329
|
) -> rds_20140815_models.DescribeRCImageListResponse:
|
|
25134
25330
|
"""
|
|
25135
|
-
@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.
|
|
25136
25332
|
|
|
25137
25333
|
@param request: DescribeRCImageListRequest
|
|
25138
25334
|
@return: DescribeRCImageListResponse
|
|
@@ -25146,7 +25342,7 @@ class Client(OpenApiClient):
|
|
|
25146
25342
|
runtime: util_models.RuntimeOptions,
|
|
25147
25343
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25148
25344
|
"""
|
|
25149
|
-
@summary
|
|
25345
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25150
25346
|
|
|
25151
25347
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25152
25348
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25179,7 +25375,7 @@ class Client(OpenApiClient):
|
|
|
25179
25375
|
runtime: util_models.RuntimeOptions,
|
|
25180
25376
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25181
25377
|
"""
|
|
25182
|
-
@summary
|
|
25378
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25183
25379
|
|
|
25184
25380
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25185
25381
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25211,7 +25407,7 @@ class Client(OpenApiClient):
|
|
|
25211
25407
|
request: rds_20140815_models.DescribeRCInstanceAttributeRequest,
|
|
25212
25408
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25213
25409
|
"""
|
|
25214
|
-
@summary
|
|
25410
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25215
25411
|
|
|
25216
25412
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25217
25413
|
@return: DescribeRCInstanceAttributeResponse
|
|
@@ -25224,7 +25420,7 @@ class Client(OpenApiClient):
|
|
|
25224
25420
|
request: rds_20140815_models.DescribeRCInstanceAttributeRequest,
|
|
25225
25421
|
) -> rds_20140815_models.DescribeRCInstanceAttributeResponse:
|
|
25226
25422
|
"""
|
|
25227
|
-
@summary
|
|
25423
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25228
25424
|
|
|
25229
25425
|
@param request: DescribeRCInstanceAttributeRequest
|
|
25230
25426
|
@return: DescribeRCInstanceAttributeResponse
|
|
@@ -25238,7 +25434,7 @@ class Client(OpenApiClient):
|
|
|
25238
25434
|
runtime: util_models.RuntimeOptions,
|
|
25239
25435
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25240
25436
|
"""
|
|
25241
|
-
@summary
|
|
25437
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25242
25438
|
|
|
25243
25439
|
@param request: DescribeRCInstancesRequest
|
|
25244
25440
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25281,7 +25477,7 @@ class Client(OpenApiClient):
|
|
|
25281
25477
|
runtime: util_models.RuntimeOptions,
|
|
25282
25478
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25283
25479
|
"""
|
|
25284
|
-
@summary
|
|
25480
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25285
25481
|
|
|
25286
25482
|
@param request: DescribeRCInstancesRequest
|
|
25287
25483
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25323,7 +25519,7 @@ class Client(OpenApiClient):
|
|
|
25323
25519
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25324
25520
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25325
25521
|
"""
|
|
25326
|
-
@summary
|
|
25522
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25327
25523
|
|
|
25328
25524
|
@param request: DescribeRCInstancesRequest
|
|
25329
25525
|
@return: DescribeRCInstancesResponse
|
|
@@ -25336,7 +25532,7 @@ class Client(OpenApiClient):
|
|
|
25336
25532
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25337
25533
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25338
25534
|
"""
|
|
25339
|
-
@summary
|
|
25535
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25340
25536
|
|
|
25341
25537
|
@param request: DescribeRCInstancesRequest
|
|
25342
25538
|
@return: DescribeRCInstancesResponse
|
|
@@ -25350,7 +25546,7 @@ class Client(OpenApiClient):
|
|
|
25350
25546
|
runtime: util_models.RuntimeOptions,
|
|
25351
25547
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25352
25548
|
"""
|
|
25353
|
-
@summary
|
|
25549
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25354
25550
|
|
|
25355
25551
|
@param request: DescribeRCMetricListRequest
|
|
25356
25552
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25383,7 +25579,7 @@ class Client(OpenApiClient):
|
|
|
25383
25579
|
runtime: util_models.RuntimeOptions,
|
|
25384
25580
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25385
25581
|
"""
|
|
25386
|
-
@summary
|
|
25582
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25387
25583
|
|
|
25388
25584
|
@param request: DescribeRCMetricListRequest
|
|
25389
25585
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25415,7 +25611,7 @@ class Client(OpenApiClient):
|
|
|
25415
25611
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25416
25612
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25417
25613
|
"""
|
|
25418
|
-
@summary
|
|
25614
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25419
25615
|
|
|
25420
25616
|
@param request: DescribeRCMetricListRequest
|
|
25421
25617
|
@return: DescribeRCMetricListResponse
|
|
@@ -25428,7 +25624,7 @@ class Client(OpenApiClient):
|
|
|
25428
25624
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25429
25625
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25430
25626
|
"""
|
|
25431
|
-
@summary
|
|
25627
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25432
25628
|
|
|
25433
25629
|
@param request: DescribeRCMetricListRequest
|
|
25434
25630
|
@return: DescribeRCMetricListResponse
|
|
@@ -26138,7 +26334,7 @@ class Client(OpenApiClient):
|
|
|
26138
26334
|
runtime: util_models.RuntimeOptions,
|
|
26139
26335
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26140
26336
|
"""
|
|
26141
|
-
@summary Queries the
|
|
26337
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26142
26338
|
|
|
26143
26339
|
@description ### [](#)Supported database engine
|
|
26144
26340
|
PostgreSQL
|
|
@@ -26186,7 +26382,7 @@ class Client(OpenApiClient):
|
|
|
26186
26382
|
runtime: util_models.RuntimeOptions,
|
|
26187
26383
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26188
26384
|
"""
|
|
26189
|
-
@summary Queries the
|
|
26385
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26190
26386
|
|
|
26191
26387
|
@description ### [](#)Supported database engine
|
|
26192
26388
|
PostgreSQL
|
|
@@ -26233,7 +26429,7 @@ class Client(OpenApiClient):
|
|
|
26233
26429
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26234
26430
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26235
26431
|
"""
|
|
26236
|
-
@summary Queries the
|
|
26432
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26237
26433
|
|
|
26238
26434
|
@description ### [](#)Supported database engine
|
|
26239
26435
|
PostgreSQL
|
|
@@ -26249,7 +26445,7 @@ class Client(OpenApiClient):
|
|
|
26249
26445
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26250
26446
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26251
26447
|
"""
|
|
26252
|
-
@summary Queries the
|
|
26448
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26253
26449
|
|
|
26254
26450
|
@description ### [](#)Supported database engine
|
|
26255
26451
|
PostgreSQL
|
|
@@ -30506,6 +30702,8 @@ class Client(OpenApiClient):
|
|
|
30506
30702
|
query['CommodityCode'] = request.commodity_code
|
|
30507
30703
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30508
30704
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30705
|
+
if not UtilClient.is_unset(request.engine):
|
|
30706
|
+
query['Engine'] = request.engine
|
|
30509
30707
|
if not UtilClient.is_unset(request.order_type):
|
|
30510
30708
|
query['OrderType'] = request.order_type
|
|
30511
30709
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -30561,6 +30759,8 @@ class Client(OpenApiClient):
|
|
|
30561
30759
|
query['CommodityCode'] = request.commodity_code
|
|
30562
30760
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30563
30761
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30762
|
+
if not UtilClient.is_unset(request.engine):
|
|
30763
|
+
query['Engine'] = request.engine
|
|
30564
30764
|
if not UtilClient.is_unset(request.order_type):
|
|
30565
30765
|
query['OrderType'] = request.order_type
|
|
30566
30766
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -31874,7 +32074,10 @@ class Client(OpenApiClient):
|
|
|
31874
32074
|
runtime: util_models.RuntimeOptions,
|
|
31875
32075
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31876
32076
|
"""
|
|
31877
|
-
@summary
|
|
32077
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32078
|
+
|
|
32079
|
+
@description ### [](#)Supported database engine
|
|
32080
|
+
SQL Server
|
|
31878
32081
|
|
|
31879
32082
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31880
32083
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31925,7 +32128,10 @@ class Client(OpenApiClient):
|
|
|
31925
32128
|
runtime: util_models.RuntimeOptions,
|
|
31926
32129
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31927
32130
|
"""
|
|
31928
|
-
@summary
|
|
32131
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32132
|
+
|
|
32133
|
+
@description ### [](#)Supported database engine
|
|
32134
|
+
SQL Server
|
|
31929
32135
|
|
|
31930
32136
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31931
32137
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31975,7 +32181,10 @@ class Client(OpenApiClient):
|
|
|
31975
32181
|
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
31976
32182
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31977
32183
|
"""
|
|
31978
|
-
@summary
|
|
32184
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32185
|
+
|
|
32186
|
+
@description ### [](#)Supported database engine
|
|
32187
|
+
SQL Server
|
|
31979
32188
|
|
|
31980
32189
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31981
32190
|
@return: ModifyAccountCheckPolicyResponse
|
|
@@ -31988,7 +32197,10 @@ class Client(OpenApiClient):
|
|
|
31988
32197
|
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
31989
32198
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31990
32199
|
"""
|
|
31991
|
-
@summary
|
|
32200
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32201
|
+
|
|
32202
|
+
@description ### [](#)Supported database engine
|
|
32203
|
+
SQL Server
|
|
31992
32204
|
|
|
31993
32205
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31994
32206
|
@return: ModifyAccountCheckPolicyResponse
|
|
@@ -32162,6 +32374,8 @@ class Client(OpenApiClient):
|
|
|
32162
32374
|
query['OwnerId'] = request.owner_id
|
|
32163
32375
|
if not UtilClient.is_unset(request.privilege):
|
|
32164
32376
|
query['Privilege'] = request.privilege
|
|
32377
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32378
|
+
query['RegionId'] = request.region_id
|
|
32165
32379
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32166
32380
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32167
32381
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32209,6 +32423,8 @@ class Client(OpenApiClient):
|
|
|
32209
32423
|
query['OwnerId'] = request.owner_id
|
|
32210
32424
|
if not UtilClient.is_unset(request.privilege):
|
|
32211
32425
|
query['Privilege'] = request.privilege
|
|
32426
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32427
|
+
query['RegionId'] = request.region_id
|
|
32212
32428
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32213
32429
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32214
32430
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32266,7 +32482,13 @@ class Client(OpenApiClient):
|
|
|
32266
32482
|
runtime: util_models.RuntimeOptions,
|
|
32267
32483
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32268
32484
|
"""
|
|
32269
|
-
@summary
|
|
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)
|
|
32270
32492
|
|
|
32271
32493
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32272
32494
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32315,7 +32537,13 @@ class Client(OpenApiClient):
|
|
|
32315
32537
|
runtime: util_models.RuntimeOptions,
|
|
32316
32538
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32317
32539
|
"""
|
|
32318
|
-
@summary
|
|
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)
|
|
32319
32547
|
|
|
32320
32548
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32321
32549
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32363,7 +32591,13 @@ class Client(OpenApiClient):
|
|
|
32363
32591
|
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32364
32592
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32365
32593
|
"""
|
|
32366
|
-
@summary
|
|
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)
|
|
32367
32601
|
|
|
32368
32602
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32369
32603
|
@return: ModifyAccountSecurityPolicyResponse
|
|
@@ -32376,7 +32610,13 @@ class Client(OpenApiClient):
|
|
|
32376
32610
|
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32377
32611
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32378
32612
|
"""
|
|
32379
|
-
@summary
|
|
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)
|
|
32380
32620
|
|
|
32381
32621
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32382
32622
|
@return: ModifyAccountSecurityPolicyResponse
|
|
@@ -36618,7 +36858,7 @@ class Client(OpenApiClient):
|
|
|
36618
36858
|
|
|
36619
36859
|
def modify_dbproxy_with_options(
|
|
36620
36860
|
self,
|
|
36621
|
-
|
|
36861
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36622
36862
|
runtime: util_models.RuntimeOptions,
|
|
36623
36863
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36624
36864
|
"""
|
|
@@ -36633,11 +36873,15 @@ class Client(OpenApiClient):
|
|
|
36633
36873
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36634
36874
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36635
36875
|
|
|
36636
|
-
@param
|
|
36876
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36637
36877
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36638
36878
|
@return: ModifyDBProxyResponse
|
|
36639
36879
|
"""
|
|
36640
|
-
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')
|
|
36641
36885
|
query = {}
|
|
36642
36886
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36643
36887
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36651,6 +36895,8 @@ class Client(OpenApiClient):
|
|
|
36651
36895
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36652
36896
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36653
36897
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36898
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36899
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36654
36900
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36655
36901
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36656
36902
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36690,7 +36936,7 @@ class Client(OpenApiClient):
|
|
|
36690
36936
|
|
|
36691
36937
|
async def modify_dbproxy_with_options_async(
|
|
36692
36938
|
self,
|
|
36693
|
-
|
|
36939
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36694
36940
|
runtime: util_models.RuntimeOptions,
|
|
36695
36941
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36696
36942
|
"""
|
|
@@ -36705,11 +36951,15 @@ class Client(OpenApiClient):
|
|
|
36705
36951
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36706
36952
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36707
36953
|
|
|
36708
|
-
@param
|
|
36954
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36709
36955
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36710
36956
|
@return: ModifyDBProxyResponse
|
|
36711
36957
|
"""
|
|
36712
|
-
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')
|
|
36713
36963
|
query = {}
|
|
36714
36964
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36715
36965
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36723,6 +36973,8 @@ class Client(OpenApiClient):
|
|
|
36723
36973
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36724
36974
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36725
36975
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36976
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36977
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36726
36978
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36727
36979
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36728
36980
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36844,6 +37096,10 @@ class Client(OpenApiClient):
|
|
|
36844
37096
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36845
37097
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36846
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
|
|
36847
37103
|
if not UtilClient.is_unset(request.owner_id):
|
|
36848
37104
|
query['OwnerId'] = request.owner_id
|
|
36849
37105
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36858,6 +37114,8 @@ class Client(OpenApiClient):
|
|
|
36858
37114
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36859
37115
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36860
37116
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37117
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37118
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36861
37119
|
req = open_api_models.OpenApiRequest(
|
|
36862
37120
|
query=OpenApiUtilClient.query(query)
|
|
36863
37121
|
)
|
|
@@ -36917,6 +37175,10 @@ class Client(OpenApiClient):
|
|
|
36917
37175
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36918
37176
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36919
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
|
|
36920
37182
|
if not UtilClient.is_unset(request.owner_id):
|
|
36921
37183
|
query['OwnerId'] = request.owner_id
|
|
36922
37184
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36931,6 +37193,8 @@ class Client(OpenApiClient):
|
|
|
36931
37193
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36932
37194
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36933
37195
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37196
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37197
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36934
37198
|
req = open_api_models.OpenApiRequest(
|
|
36935
37199
|
query=OpenApiUtilClient.query(query)
|
|
36936
37200
|
)
|
|
@@ -37158,7 +37422,7 @@ class Client(OpenApiClient):
|
|
|
37158
37422
|
|
|
37159
37423
|
def modify_dbproxy_instance_with_options(
|
|
37160
37424
|
self,
|
|
37161
|
-
|
|
37425
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
37162
37426
|
runtime: util_models.RuntimeOptions,
|
|
37163
37427
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
37164
37428
|
"""
|
|
@@ -37169,11 +37433,17 @@ class Client(OpenApiClient):
|
|
|
37169
37433
|
PostgreSQL
|
|
37170
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~~).
|
|
37171
37435
|
|
|
37172
|
-
@param
|
|
37436
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
37173
37437
|
@param runtime: runtime options for this request RuntimeOptions
|
|
37174
37438
|
@return: ModifyDBProxyInstanceResponse
|
|
37175
37439
|
"""
|
|
37176
|
-
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')
|
|
37177
37447
|
query = {}
|
|
37178
37448
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
37179
37449
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -37185,10 +37455,14 @@ class Client(OpenApiClient):
|
|
|
37185
37455
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
37186
37456
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
37187
37457
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37458
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37459
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
37188
37460
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37189
37461
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37190
37462
|
if not UtilClient.is_unset(request.effective_time):
|
|
37191
37463
|
query['EffectiveTime'] = request.effective_time
|
|
37464
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37465
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
37192
37466
|
if not UtilClient.is_unset(request.owner_id):
|
|
37193
37467
|
query['OwnerId'] = request.owner_id
|
|
37194
37468
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -37220,7 +37494,7 @@ class Client(OpenApiClient):
|
|
|
37220
37494
|
|
|
37221
37495
|
async def modify_dbproxy_instance_with_options_async(
|
|
37222
37496
|
self,
|
|
37223
|
-
|
|
37497
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
37224
37498
|
runtime: util_models.RuntimeOptions,
|
|
37225
37499
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
37226
37500
|
"""
|
|
@@ -37231,11 +37505,17 @@ class Client(OpenApiClient):
|
|
|
37231
37505
|
PostgreSQL
|
|
37232
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~~).
|
|
37233
37507
|
|
|
37234
|
-
@param
|
|
37508
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
37235
37509
|
@param runtime: runtime options for this request RuntimeOptions
|
|
37236
37510
|
@return: ModifyDBProxyInstanceResponse
|
|
37237
37511
|
"""
|
|
37238
|
-
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')
|
|
37239
37519
|
query = {}
|
|
37240
37520
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
37241
37521
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -37247,10 +37527,14 @@ class Client(OpenApiClient):
|
|
|
37247
37527
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
37248
37528
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
37249
37529
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37530
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37531
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
37250
37532
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37251
37533
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37252
37534
|
if not UtilClient.is_unset(request.effective_time):
|
|
37253
37535
|
query['EffectiveTime'] = request.effective_time
|
|
37536
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37537
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
37254
37538
|
if not UtilClient.is_unset(request.owner_id):
|
|
37255
37539
|
query['OwnerId'] = request.owner_id
|
|
37256
37540
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -38728,6 +39012,8 @@ class Client(OpenApiClient):
|
|
|
38728
39012
|
query['MaskingAlgo'] = request.masking_algo
|
|
38729
39013
|
if not UtilClient.is_unset(request.owner_id):
|
|
38730
39014
|
query['OwnerId'] = request.owner_id
|
|
39015
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39016
|
+
query['RegionId'] = request.region_id
|
|
38731
39017
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38732
39018
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38733
39019
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -38783,6 +39069,8 @@ class Client(OpenApiClient):
|
|
|
38783
39069
|
query['MaskingAlgo'] = request.masking_algo
|
|
38784
39070
|
if not UtilClient.is_unset(request.owner_id):
|
|
38785
39071
|
query['OwnerId'] = request.owner_id
|
|
39072
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39073
|
+
query['RegionId'] = request.region_id
|
|
38786
39074
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38787
39075
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38788
39076
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -39342,7 +39630,15 @@ class Client(OpenApiClient):
|
|
|
39342
39630
|
runtime: util_models.RuntimeOptions,
|
|
39343
39631
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39344
39632
|
"""
|
|
39345
|
-
@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.
|
|
39346
39642
|
|
|
39347
39643
|
@param request: ModifyRCInstanceRequest
|
|
39348
39644
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39387,7 +39683,15 @@ class Client(OpenApiClient):
|
|
|
39387
39683
|
runtime: util_models.RuntimeOptions,
|
|
39388
39684
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39389
39685
|
"""
|
|
39390
|
-
@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.
|
|
39391
39695
|
|
|
39392
39696
|
@param request: ModifyRCInstanceRequest
|
|
39393
39697
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39431,7 +39735,15 @@ class Client(OpenApiClient):
|
|
|
39431
39735
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39432
39736
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39433
39737
|
"""
|
|
39434
|
-
@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.
|
|
39435
39747
|
|
|
39436
39748
|
@param request: ModifyRCInstanceRequest
|
|
39437
39749
|
@return: ModifyRCInstanceResponse
|
|
@@ -39444,7 +39756,15 @@ class Client(OpenApiClient):
|
|
|
39444
39756
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39445
39757
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39446
39758
|
"""
|
|
39447
|
-
@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.
|
|
39448
39768
|
|
|
39449
39769
|
@param request: ModifyRCInstanceRequest
|
|
39450
39770
|
@return: ModifyRCInstanceResponse
|
|
@@ -41530,7 +41850,7 @@ class Client(OpenApiClient):
|
|
|
41530
41850
|
runtime: util_models.RuntimeOptions,
|
|
41531
41851
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41532
41852
|
"""
|
|
41533
|
-
@summary
|
|
41853
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41534
41854
|
|
|
41535
41855
|
@param request: RebootRCInstanceRequest
|
|
41536
41856
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41571,7 +41891,7 @@ class Client(OpenApiClient):
|
|
|
41571
41891
|
runtime: util_models.RuntimeOptions,
|
|
41572
41892
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41573
41893
|
"""
|
|
41574
|
-
@summary
|
|
41894
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41575
41895
|
|
|
41576
41896
|
@param request: RebootRCInstanceRequest
|
|
41577
41897
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41611,7 +41931,7 @@ class Client(OpenApiClient):
|
|
|
41611
41931
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41612
41932
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41613
41933
|
"""
|
|
41614
|
-
@summary
|
|
41934
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41615
41935
|
|
|
41616
41936
|
@param request: RebootRCInstanceRequest
|
|
41617
41937
|
@return: RebootRCInstanceResponse
|
|
@@ -41624,7 +41944,7 @@ class Client(OpenApiClient):
|
|
|
41624
41944
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41625
41945
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41626
41946
|
"""
|
|
41627
|
-
@summary
|
|
41947
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41628
41948
|
|
|
41629
41949
|
@param request: RebootRCInstanceRequest
|
|
41630
41950
|
@return: RebootRCInstanceResponse
|
|
@@ -43342,7 +43662,7 @@ class Client(OpenApiClient):
|
|
|
43342
43662
|
runtime: util_models.RuntimeOptions,
|
|
43343
43663
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43344
43664
|
"""
|
|
43345
|
-
@summary
|
|
43665
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43346
43666
|
|
|
43347
43667
|
@param request: ResizeRCInstanceDiskRequest
|
|
43348
43668
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43387,7 +43707,7 @@ class Client(OpenApiClient):
|
|
|
43387
43707
|
runtime: util_models.RuntimeOptions,
|
|
43388
43708
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43389
43709
|
"""
|
|
43390
|
-
@summary
|
|
43710
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43391
43711
|
|
|
43392
43712
|
@param request: ResizeRCInstanceDiskRequest
|
|
43393
43713
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43431,7 +43751,7 @@ class Client(OpenApiClient):
|
|
|
43431
43751
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43432
43752
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43433
43753
|
"""
|
|
43434
|
-
@summary
|
|
43754
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43435
43755
|
|
|
43436
43756
|
@param request: ResizeRCInstanceDiskRequest
|
|
43437
43757
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -43444,7 +43764,7 @@ class Client(OpenApiClient):
|
|
|
43444
43764
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43445
43765
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43446
43766
|
"""
|
|
43447
|
-
@summary
|
|
43767
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43448
43768
|
|
|
43449
43769
|
@param request: ResizeRCInstanceDiskRequest
|
|
43450
43770
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -44274,7 +44594,11 @@ class Client(OpenApiClient):
|
|
|
44274
44594
|
runtime: util_models.RuntimeOptions,
|
|
44275
44595
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44276
44596
|
"""
|
|
44277
|
-
@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.
|
|
44278
44602
|
|
|
44279
44603
|
@param tmp_req: RunRCInstancesRequest
|
|
44280
44604
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44363,7 +44687,11 @@ class Client(OpenApiClient):
|
|
|
44363
44687
|
runtime: util_models.RuntimeOptions,
|
|
44364
44688
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44365
44689
|
"""
|
|
44366
|
-
@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.
|
|
44367
44695
|
|
|
44368
44696
|
@param tmp_req: RunRCInstancesRequest
|
|
44369
44697
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44451,7 +44779,11 @@ class Client(OpenApiClient):
|
|
|
44451
44779
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44452
44780
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44453
44781
|
"""
|
|
44454
|
-
@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.
|
|
44455
44787
|
|
|
44456
44788
|
@param request: RunRCInstancesRequest
|
|
44457
44789
|
@return: RunRCInstancesResponse
|
|
@@ -44464,7 +44796,11 @@ class Client(OpenApiClient):
|
|
|
44464
44796
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44465
44797
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44466
44798
|
"""
|
|
44467
|
-
@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.
|
|
44468
44804
|
|
|
44469
44805
|
@param request: RunRCInstancesRequest
|
|
44470
44806
|
@return: RunRCInstancesResponse
|
|
@@ -44678,7 +45014,7 @@ class Client(OpenApiClient):
|
|
|
44678
45014
|
runtime: util_models.RuntimeOptions,
|
|
44679
45015
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44680
45016
|
"""
|
|
44681
|
-
@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.
|
|
44682
45018
|
|
|
44683
45019
|
@param request: StartRCInstanceRequest
|
|
44684
45020
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44715,7 +45051,7 @@ class Client(OpenApiClient):
|
|
|
44715
45051
|
runtime: util_models.RuntimeOptions,
|
|
44716
45052
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44717
45053
|
"""
|
|
44718
|
-
@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.
|
|
44719
45055
|
|
|
44720
45056
|
@param request: StartRCInstanceRequest
|
|
44721
45057
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44751,7 +45087,7 @@ class Client(OpenApiClient):
|
|
|
44751
45087
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44752
45088
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44753
45089
|
"""
|
|
44754
|
-
@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.
|
|
44755
45091
|
|
|
44756
45092
|
@param request: StartRCInstanceRequest
|
|
44757
45093
|
@return: StartRCInstanceResponse
|
|
@@ -44764,7 +45100,7 @@ class Client(OpenApiClient):
|
|
|
44764
45100
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44765
45101
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44766
45102
|
"""
|
|
44767
|
-
@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.
|
|
44768
45104
|
|
|
44769
45105
|
@param request: StartRCInstanceRequest
|
|
44770
45106
|
@return: StartRCInstanceResponse
|
|
@@ -44930,7 +45266,7 @@ class Client(OpenApiClient):
|
|
|
44930
45266
|
runtime: util_models.RuntimeOptions,
|
|
44931
45267
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44932
45268
|
"""
|
|
44933
|
-
@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.
|
|
44934
45270
|
|
|
44935
45271
|
@param request: StopRCInstanceRequest
|
|
44936
45272
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44969,7 +45305,7 @@ class Client(OpenApiClient):
|
|
|
44969
45305
|
runtime: util_models.RuntimeOptions,
|
|
44970
45306
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44971
45307
|
"""
|
|
44972
|
-
@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.
|
|
44973
45309
|
|
|
44974
45310
|
@param request: StopRCInstanceRequest
|
|
44975
45311
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45007,7 +45343,7 @@ class Client(OpenApiClient):
|
|
|
45007
45343
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
45008
45344
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
45009
45345
|
"""
|
|
45010
|
-
@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.
|
|
45011
45347
|
|
|
45012
45348
|
@param request: StopRCInstanceRequest
|
|
45013
45349
|
@return: StopRCInstanceResponse
|
|
@@ -45020,7 +45356,7 @@ class Client(OpenApiClient):
|
|
|
45020
45356
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
45021
45357
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
45022
45358
|
"""
|
|
45023
|
-
@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.
|
|
45024
45360
|
|
|
45025
45361
|
@param request: StopRCInstanceRequest
|
|
45026
45362
|
@return: StopRCInstanceResponse
|
|
@@ -45530,7 +45866,7 @@ class Client(OpenApiClient):
|
|
|
45530
45866
|
runtime: util_models.RuntimeOptions,
|
|
45531
45867
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45532
45868
|
"""
|
|
45533
|
-
@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.
|
|
45534
45870
|
|
|
45535
45871
|
@param request: SyncRCKeyPairRequest
|
|
45536
45872
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45542,6 +45878,8 @@ class Client(OpenApiClient):
|
|
|
45542
45878
|
query['KeyPairName'] = request.key_pair_name
|
|
45543
45879
|
if not UtilClient.is_unset(request.region_id):
|
|
45544
45880
|
query['RegionId'] = request.region_id
|
|
45881
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45882
|
+
query['SyncMode'] = request.sync_mode
|
|
45545
45883
|
req = open_api_models.OpenApiRequest(
|
|
45546
45884
|
query=OpenApiUtilClient.query(query)
|
|
45547
45885
|
)
|
|
@@ -45567,7 +45905,7 @@ class Client(OpenApiClient):
|
|
|
45567
45905
|
runtime: util_models.RuntimeOptions,
|
|
45568
45906
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45569
45907
|
"""
|
|
45570
|
-
@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.
|
|
45571
45909
|
|
|
45572
45910
|
@param request: SyncRCKeyPairRequest
|
|
45573
45911
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45579,6 +45917,8 @@ class Client(OpenApiClient):
|
|
|
45579
45917
|
query['KeyPairName'] = request.key_pair_name
|
|
45580
45918
|
if not UtilClient.is_unset(request.region_id):
|
|
45581
45919
|
query['RegionId'] = request.region_id
|
|
45920
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45921
|
+
query['SyncMode'] = request.sync_mode
|
|
45582
45922
|
req = open_api_models.OpenApiRequest(
|
|
45583
45923
|
query=OpenApiUtilClient.query(query)
|
|
45584
45924
|
)
|
|
@@ -45603,7 +45943,7 @@ class Client(OpenApiClient):
|
|
|
45603
45943
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45604
45944
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45605
45945
|
"""
|
|
45606
|
-
@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.
|
|
45607
45947
|
|
|
45608
45948
|
@param request: SyncRCKeyPairRequest
|
|
45609
45949
|
@return: SyncRCKeyPairResponse
|
|
@@ -45616,7 +45956,7 @@ class Client(OpenApiClient):
|
|
|
45616
45956
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45617
45957
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45618
45958
|
"""
|
|
45619
|
-
@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.
|
|
45620
45960
|
|
|
45621
45961
|
@param request: SyncRCKeyPairRequest
|
|
45622
45962
|
@return: SyncRCKeyPairResponse
|