alibabacloud-rds20140815 7.2.0__py3-none-any.whl → 7.3.1__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 +472 -104
- alibabacloud_rds20140815/models.py +1717 -118
- {alibabacloud_rds20140815-7.2.0.dist-info → alibabacloud_rds20140815-7.3.1.dist-info}/METADATA +3 -3
- alibabacloud_rds20140815-7.3.1.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.1.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-7.2.0.dist-info → alibabacloud_rds20140815-7.3.1.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-7.2.0.dist-info → alibabacloud_rds20140815-7.3.1.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
|
|
@@ -25254,6 +25450,8 @@ class Client(OpenApiClient):
|
|
|
25254
25450
|
query['PageSize'] = request.page_size
|
|
25255
25451
|
if not UtilClient.is_unset(request.region_id):
|
|
25256
25452
|
query['RegionId'] = request.region_id
|
|
25453
|
+
if not UtilClient.is_unset(request.tag):
|
|
25454
|
+
query['Tag'] = request.tag
|
|
25257
25455
|
if not UtilClient.is_unset(request.vpc_id):
|
|
25258
25456
|
query['VpcId'] = request.vpc_id
|
|
25259
25457
|
req = open_api_models.OpenApiRequest(
|
|
@@ -25281,7 +25479,7 @@ class Client(OpenApiClient):
|
|
|
25281
25479
|
runtime: util_models.RuntimeOptions,
|
|
25282
25480
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25283
25481
|
"""
|
|
25284
|
-
@summary
|
|
25482
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25285
25483
|
|
|
25286
25484
|
@param request: DescribeRCInstancesRequest
|
|
25287
25485
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25297,6 +25495,8 @@ class Client(OpenApiClient):
|
|
|
25297
25495
|
query['PageSize'] = request.page_size
|
|
25298
25496
|
if not UtilClient.is_unset(request.region_id):
|
|
25299
25497
|
query['RegionId'] = request.region_id
|
|
25498
|
+
if not UtilClient.is_unset(request.tag):
|
|
25499
|
+
query['Tag'] = request.tag
|
|
25300
25500
|
if not UtilClient.is_unset(request.vpc_id):
|
|
25301
25501
|
query['VpcId'] = request.vpc_id
|
|
25302
25502
|
req = open_api_models.OpenApiRequest(
|
|
@@ -25323,7 +25523,7 @@ class Client(OpenApiClient):
|
|
|
25323
25523
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25324
25524
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25325
25525
|
"""
|
|
25326
|
-
@summary
|
|
25526
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25327
25527
|
|
|
25328
25528
|
@param request: DescribeRCInstancesRequest
|
|
25329
25529
|
@return: DescribeRCInstancesResponse
|
|
@@ -25336,7 +25536,7 @@ class Client(OpenApiClient):
|
|
|
25336
25536
|
request: rds_20140815_models.DescribeRCInstancesRequest,
|
|
25337
25537
|
) -> rds_20140815_models.DescribeRCInstancesResponse:
|
|
25338
25538
|
"""
|
|
25339
|
-
@summary
|
|
25539
|
+
@summary Queries the details of an RDS Custom instance.
|
|
25340
25540
|
|
|
25341
25541
|
@param request: DescribeRCInstancesRequest
|
|
25342
25542
|
@return: DescribeRCInstancesResponse
|
|
@@ -25350,7 +25550,7 @@ class Client(OpenApiClient):
|
|
|
25350
25550
|
runtime: util_models.RuntimeOptions,
|
|
25351
25551
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25352
25552
|
"""
|
|
25353
|
-
@summary
|
|
25553
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25354
25554
|
|
|
25355
25555
|
@param request: DescribeRCMetricListRequest
|
|
25356
25556
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25383,7 +25583,7 @@ class Client(OpenApiClient):
|
|
|
25383
25583
|
runtime: util_models.RuntimeOptions,
|
|
25384
25584
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25385
25585
|
"""
|
|
25386
|
-
@summary
|
|
25586
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25387
25587
|
|
|
25388
25588
|
@param request: DescribeRCMetricListRequest
|
|
25389
25589
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -25415,7 +25615,7 @@ class Client(OpenApiClient):
|
|
|
25415
25615
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25416
25616
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25417
25617
|
"""
|
|
25418
|
-
@summary
|
|
25618
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25419
25619
|
|
|
25420
25620
|
@param request: DescribeRCMetricListRequest
|
|
25421
25621
|
@return: DescribeRCMetricListResponse
|
|
@@ -25428,7 +25628,7 @@ class Client(OpenApiClient):
|
|
|
25428
25628
|
request: rds_20140815_models.DescribeRCMetricListRequest,
|
|
25429
25629
|
) -> rds_20140815_models.DescribeRCMetricListResponse:
|
|
25430
25630
|
"""
|
|
25431
|
-
@summary
|
|
25631
|
+
@summary Queries the monitoring data of a metric for an RDS Custom instance.
|
|
25432
25632
|
|
|
25433
25633
|
@param request: DescribeRCMetricListRequest
|
|
25434
25634
|
@return: DescribeRCMetricListResponse
|
|
@@ -26138,7 +26338,7 @@ class Client(OpenApiClient):
|
|
|
26138
26338
|
runtime: util_models.RuntimeOptions,
|
|
26139
26339
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26140
26340
|
"""
|
|
26141
|
-
@summary Queries the
|
|
26341
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26142
26342
|
|
|
26143
26343
|
@description ### [](#)Supported database engine
|
|
26144
26344
|
PostgreSQL
|
|
@@ -26186,7 +26386,7 @@ class Client(OpenApiClient):
|
|
|
26186
26386
|
runtime: util_models.RuntimeOptions,
|
|
26187
26387
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26188
26388
|
"""
|
|
26189
|
-
@summary Queries the
|
|
26389
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26190
26390
|
|
|
26191
26391
|
@description ### [](#)Supported database engine
|
|
26192
26392
|
PostgreSQL
|
|
@@ -26233,7 +26433,7 @@ class Client(OpenApiClient):
|
|
|
26233
26433
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26234
26434
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26235
26435
|
"""
|
|
26236
|
-
@summary Queries the
|
|
26436
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26237
26437
|
|
|
26238
26438
|
@description ### [](#)Supported database engine
|
|
26239
26439
|
PostgreSQL
|
|
@@ -26249,7 +26449,7 @@ class Client(OpenApiClient):
|
|
|
26249
26449
|
request: rds_20140815_models.DescribeReplicationLinkLogsRequest,
|
|
26250
26450
|
) -> rds_20140815_models.DescribeReplicationLinkLogsResponse:
|
|
26251
26451
|
"""
|
|
26252
|
-
@summary Queries the
|
|
26452
|
+
@summary Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
26253
26453
|
|
|
26254
26454
|
@description ### [](#)Supported database engine
|
|
26255
26455
|
PostgreSQL
|
|
@@ -30506,6 +30706,8 @@ class Client(OpenApiClient):
|
|
|
30506
30706
|
query['CommodityCode'] = request.commodity_code
|
|
30507
30707
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30508
30708
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30709
|
+
if not UtilClient.is_unset(request.engine):
|
|
30710
|
+
query['Engine'] = request.engine
|
|
30509
30711
|
if not UtilClient.is_unset(request.order_type):
|
|
30510
30712
|
query['OrderType'] = request.order_type
|
|
30511
30713
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -30561,6 +30763,8 @@ class Client(OpenApiClient):
|
|
|
30561
30763
|
query['CommodityCode'] = request.commodity_code
|
|
30562
30764
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
30563
30765
|
query['DBInstanceId'] = request.dbinstance_id
|
|
30766
|
+
if not UtilClient.is_unset(request.engine):
|
|
30767
|
+
query['Engine'] = request.engine
|
|
30564
30768
|
if not UtilClient.is_unset(request.order_type):
|
|
30565
30769
|
query['OrderType'] = request.order_type
|
|
30566
30770
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -31874,7 +32078,10 @@ class Client(OpenApiClient):
|
|
|
31874
32078
|
runtime: util_models.RuntimeOptions,
|
|
31875
32079
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31876
32080
|
"""
|
|
31877
|
-
@summary
|
|
32081
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32082
|
+
|
|
32083
|
+
@description ### [](#)Supported database engine
|
|
32084
|
+
SQL Server
|
|
31878
32085
|
|
|
31879
32086
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31880
32087
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31925,7 +32132,10 @@ class Client(OpenApiClient):
|
|
|
31925
32132
|
runtime: util_models.RuntimeOptions,
|
|
31926
32133
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31927
32134
|
"""
|
|
31928
|
-
@summary
|
|
32135
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32136
|
+
|
|
32137
|
+
@description ### [](#)Supported database engine
|
|
32138
|
+
SQL Server
|
|
31929
32139
|
|
|
31930
32140
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31931
32141
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31975,7 +32185,10 @@ class Client(OpenApiClient):
|
|
|
31975
32185
|
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
31976
32186
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31977
32187
|
"""
|
|
31978
|
-
@summary
|
|
32188
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32189
|
+
|
|
32190
|
+
@description ### [](#)Supported database engine
|
|
32191
|
+
SQL Server
|
|
31979
32192
|
|
|
31980
32193
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31981
32194
|
@return: ModifyAccountCheckPolicyResponse
|
|
@@ -31988,7 +32201,10 @@ class Client(OpenApiClient):
|
|
|
31988
32201
|
request: rds_20140815_models.ModifyAccountCheckPolicyRequest,
|
|
31989
32202
|
) -> rds_20140815_models.ModifyAccountCheckPolicyResponse:
|
|
31990
32203
|
"""
|
|
31991
|
-
@summary
|
|
32204
|
+
@summary Checks whether a password policy is applied to an account.
|
|
32205
|
+
|
|
32206
|
+
@description ### [](#)Supported database engine
|
|
32207
|
+
SQL Server
|
|
31992
32208
|
|
|
31993
32209
|
@param request: ModifyAccountCheckPolicyRequest
|
|
31994
32210
|
@return: ModifyAccountCheckPolicyResponse
|
|
@@ -32162,6 +32378,8 @@ class Client(OpenApiClient):
|
|
|
32162
32378
|
query['OwnerId'] = request.owner_id
|
|
32163
32379
|
if not UtilClient.is_unset(request.privilege):
|
|
32164
32380
|
query['Privilege'] = request.privilege
|
|
32381
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32382
|
+
query['RegionId'] = request.region_id
|
|
32165
32383
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32166
32384
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32167
32385
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32209,6 +32427,8 @@ class Client(OpenApiClient):
|
|
|
32209
32427
|
query['OwnerId'] = request.owner_id
|
|
32210
32428
|
if not UtilClient.is_unset(request.privilege):
|
|
32211
32429
|
query['Privilege'] = request.privilege
|
|
32430
|
+
if not UtilClient.is_unset(request.region_id):
|
|
32431
|
+
query['RegionId'] = request.region_id
|
|
32212
32432
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
32213
32433
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
32214
32434
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -32266,7 +32486,13 @@ class Client(OpenApiClient):
|
|
|
32266
32486
|
runtime: util_models.RuntimeOptions,
|
|
32267
32487
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32268
32488
|
"""
|
|
32269
|
-
@summary
|
|
32489
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32490
|
+
|
|
32491
|
+
@description ### [](#)Supported database engines
|
|
32492
|
+
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.)
|
|
32493
|
+
### [](#)References
|
|
32494
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32495
|
+
[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
32496
|
|
|
32271
32497
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32272
32498
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32315,7 +32541,13 @@ class Client(OpenApiClient):
|
|
|
32315
32541
|
runtime: util_models.RuntimeOptions,
|
|
32316
32542
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32317
32543
|
"""
|
|
32318
|
-
@summary
|
|
32544
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32545
|
+
|
|
32546
|
+
@description ### [](#)Supported database engines
|
|
32547
|
+
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.)
|
|
32548
|
+
### [](#)References
|
|
32549
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32550
|
+
[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
32551
|
|
|
32320
32552
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32321
32553
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32363,7 +32595,13 @@ class Client(OpenApiClient):
|
|
|
32363
32595
|
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32364
32596
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32365
32597
|
"""
|
|
32366
|
-
@summary
|
|
32598
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32599
|
+
|
|
32600
|
+
@description ### [](#)Supported database engines
|
|
32601
|
+
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.)
|
|
32602
|
+
### [](#)References
|
|
32603
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32604
|
+
[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
32605
|
|
|
32368
32606
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32369
32607
|
@return: ModifyAccountSecurityPolicyResponse
|
|
@@ -32376,7 +32614,13 @@ class Client(OpenApiClient):
|
|
|
32376
32614
|
request: rds_20140815_models.ModifyAccountSecurityPolicyRequest,
|
|
32377
32615
|
) -> rds_20140815_models.ModifyAccountSecurityPolicyResponse:
|
|
32378
32616
|
"""
|
|
32379
|
-
@summary
|
|
32617
|
+
@summary Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
32618
|
+
|
|
32619
|
+
@description ### [](#)Supported database engines
|
|
32620
|
+
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.)
|
|
32621
|
+
### [](#)References
|
|
32622
|
+
> Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
32623
|
+
[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
32624
|
|
|
32381
32625
|
@param request: ModifyAccountSecurityPolicyRequest
|
|
32382
32626
|
@return: ModifyAccountSecurityPolicyResponse
|
|
@@ -36060,6 +36304,8 @@ class Client(OpenApiClient):
|
|
|
36060
36304
|
query['OwnerId'] = request.owner_id
|
|
36061
36305
|
if not UtilClient.is_unset(request.pay_type):
|
|
36062
36306
|
query['PayType'] = request.pay_type
|
|
36307
|
+
if not UtilClient.is_unset(request.read_only_dbinstance_class):
|
|
36308
|
+
query['ReadOnlyDBInstanceClass'] = request.read_only_dbinstance_class
|
|
36063
36309
|
if not UtilClient.is_unset(request.resource_group_id):
|
|
36064
36310
|
query['ResourceGroupId'] = request.resource_group_id
|
|
36065
36311
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
@@ -36165,6 +36411,8 @@ class Client(OpenApiClient):
|
|
|
36165
36411
|
query['OwnerId'] = request.owner_id
|
|
36166
36412
|
if not UtilClient.is_unset(request.pay_type):
|
|
36167
36413
|
query['PayType'] = request.pay_type
|
|
36414
|
+
if not UtilClient.is_unset(request.read_only_dbinstance_class):
|
|
36415
|
+
query['ReadOnlyDBInstanceClass'] = request.read_only_dbinstance_class
|
|
36168
36416
|
if not UtilClient.is_unset(request.resource_group_id):
|
|
36169
36417
|
query['ResourceGroupId'] = request.resource_group_id
|
|
36170
36418
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
@@ -36618,7 +36866,7 @@ class Client(OpenApiClient):
|
|
|
36618
36866
|
|
|
36619
36867
|
def modify_dbproxy_with_options(
|
|
36620
36868
|
self,
|
|
36621
|
-
|
|
36869
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36622
36870
|
runtime: util_models.RuntimeOptions,
|
|
36623
36871
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36624
36872
|
"""
|
|
@@ -36633,11 +36881,15 @@ class Client(OpenApiClient):
|
|
|
36633
36881
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36634
36882
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36635
36883
|
|
|
36636
|
-
@param
|
|
36884
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36637
36885
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36638
36886
|
@return: ModifyDBProxyResponse
|
|
36639
36887
|
"""
|
|
36640
|
-
UtilClient.validate_model(
|
|
36888
|
+
UtilClient.validate_model(tmp_req)
|
|
36889
|
+
request = rds_20140815_models.ModifyDBProxyShrinkRequest()
|
|
36890
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
36891
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
36892
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
36641
36893
|
query = {}
|
|
36642
36894
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36643
36895
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36651,6 +36903,8 @@ class Client(OpenApiClient):
|
|
|
36651
36903
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36652
36904
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36653
36905
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36906
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36907
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36654
36908
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36655
36909
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36656
36910
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36690,7 +36944,7 @@ class Client(OpenApiClient):
|
|
|
36690
36944
|
|
|
36691
36945
|
async def modify_dbproxy_with_options_async(
|
|
36692
36946
|
self,
|
|
36693
|
-
|
|
36947
|
+
tmp_req: rds_20140815_models.ModifyDBProxyRequest,
|
|
36694
36948
|
runtime: util_models.RuntimeOptions,
|
|
36695
36949
|
) -> rds_20140815_models.ModifyDBProxyResponse:
|
|
36696
36950
|
"""
|
|
@@ -36705,11 +36959,15 @@ class Client(OpenApiClient):
|
|
|
36705
36959
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
36706
36960
|
[Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
36707
36961
|
|
|
36708
|
-
@param
|
|
36962
|
+
@param tmp_req: ModifyDBProxyRequest
|
|
36709
36963
|
@param runtime: runtime options for this request RuntimeOptions
|
|
36710
36964
|
@return: ModifyDBProxyResponse
|
|
36711
36965
|
"""
|
|
36712
|
-
UtilClient.validate_model(
|
|
36966
|
+
UtilClient.validate_model(tmp_req)
|
|
36967
|
+
request = rds_20140815_models.ModifyDBProxyShrinkRequest()
|
|
36968
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
36969
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
36970
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
36713
36971
|
query = {}
|
|
36714
36972
|
if not UtilClient.is_unset(request.config_dbproxy_service):
|
|
36715
36973
|
query['ConfigDBProxyService'] = request.config_dbproxy_service
|
|
@@ -36723,6 +36981,8 @@ class Client(OpenApiClient):
|
|
|
36723
36981
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
36724
36982
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
36725
36983
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
36984
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
36985
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
36726
36986
|
if not UtilClient.is_unset(request.instance_network_type):
|
|
36727
36987
|
query['InstanceNetworkType'] = request.instance_network_type
|
|
36728
36988
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -36844,6 +37104,10 @@ class Client(OpenApiClient):
|
|
|
36844
37104
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36845
37105
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36846
37106
|
query['DbEndpointType'] = request.db_endpoint_type
|
|
37107
|
+
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37108
|
+
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37109
|
+
if not UtilClient.is_unset(request.effective_time):
|
|
37110
|
+
query['EffectiveTime'] = request.effective_time
|
|
36847
37111
|
if not UtilClient.is_unset(request.owner_id):
|
|
36848
37112
|
query['OwnerId'] = request.owner_id
|
|
36849
37113
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36858,6 +37122,8 @@ class Client(OpenApiClient):
|
|
|
36858
37122
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36859
37123
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36860
37124
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37125
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37126
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36861
37127
|
req = open_api_models.OpenApiRequest(
|
|
36862
37128
|
query=OpenApiUtilClient.query(query)
|
|
36863
37129
|
)
|
|
@@ -36917,6 +37183,10 @@ class Client(OpenApiClient):
|
|
|
36917
37183
|
query['DbEndpointReadWriteMode'] = request.db_endpoint_read_write_mode
|
|
36918
37184
|
if not UtilClient.is_unset(request.db_endpoint_type):
|
|
36919
37185
|
query['DbEndpointType'] = request.db_endpoint_type
|
|
37186
|
+
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37187
|
+
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37188
|
+
if not UtilClient.is_unset(request.effective_time):
|
|
37189
|
+
query['EffectiveTime'] = request.effective_time
|
|
36920
37190
|
if not UtilClient.is_unset(request.owner_id):
|
|
36921
37191
|
query['OwnerId'] = request.owner_id
|
|
36922
37192
|
if not UtilClient.is_unset(request.read_only_instance_distribution_type):
|
|
@@ -36931,6 +37201,8 @@ class Client(OpenApiClient):
|
|
|
36931
37201
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
36932
37202
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
36933
37203
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
37204
|
+
if not UtilClient.is_unset(request.v_switch_id):
|
|
37205
|
+
query['VSwitchId'] = request.v_switch_id
|
|
36934
37206
|
req = open_api_models.OpenApiRequest(
|
|
36935
37207
|
query=OpenApiUtilClient.query(query)
|
|
36936
37208
|
)
|
|
@@ -37158,7 +37430,7 @@ class Client(OpenApiClient):
|
|
|
37158
37430
|
|
|
37159
37431
|
def modify_dbproxy_instance_with_options(
|
|
37160
37432
|
self,
|
|
37161
|
-
|
|
37433
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
37162
37434
|
runtime: util_models.RuntimeOptions,
|
|
37163
37435
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
37164
37436
|
"""
|
|
@@ -37169,11 +37441,17 @@ class Client(OpenApiClient):
|
|
|
37169
37441
|
PostgreSQL
|
|
37170
37442
|
> 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
37443
|
|
|
37172
|
-
@param
|
|
37444
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
37173
37445
|
@param runtime: runtime options for this request RuntimeOptions
|
|
37174
37446
|
@return: ModifyDBProxyInstanceResponse
|
|
37175
37447
|
"""
|
|
37176
|
-
UtilClient.validate_model(
|
|
37448
|
+
UtilClient.validate_model(tmp_req)
|
|
37449
|
+
request = rds_20140815_models.ModifyDBProxyInstanceShrinkRequest()
|
|
37450
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
37451
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
37452
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
37453
|
+
if not UtilClient.is_unset(tmp_req.migrate_az):
|
|
37454
|
+
request.migrate_azshrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.migrate_az, 'MigrateAZ', 'json')
|
|
37177
37455
|
query = {}
|
|
37178
37456
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
37179
37457
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -37185,10 +37463,14 @@ class Client(OpenApiClient):
|
|
|
37185
37463
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
37186
37464
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
37187
37465
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37466
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37467
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
37188
37468
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37189
37469
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37190
37470
|
if not UtilClient.is_unset(request.effective_time):
|
|
37191
37471
|
query['EffectiveTime'] = request.effective_time
|
|
37472
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37473
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
37192
37474
|
if not UtilClient.is_unset(request.owner_id):
|
|
37193
37475
|
query['OwnerId'] = request.owner_id
|
|
37194
37476
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -37220,7 +37502,7 @@ class Client(OpenApiClient):
|
|
|
37220
37502
|
|
|
37221
37503
|
async def modify_dbproxy_instance_with_options_async(
|
|
37222
37504
|
self,
|
|
37223
|
-
|
|
37505
|
+
tmp_req: rds_20140815_models.ModifyDBProxyInstanceRequest,
|
|
37224
37506
|
runtime: util_models.RuntimeOptions,
|
|
37225
37507
|
) -> rds_20140815_models.ModifyDBProxyInstanceResponse:
|
|
37226
37508
|
"""
|
|
@@ -37231,11 +37513,17 @@ class Client(OpenApiClient):
|
|
|
37231
37513
|
PostgreSQL
|
|
37232
37514
|
> 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
37515
|
|
|
37234
|
-
@param
|
|
37516
|
+
@param tmp_req: ModifyDBProxyInstanceRequest
|
|
37235
37517
|
@param runtime: runtime options for this request RuntimeOptions
|
|
37236
37518
|
@return: ModifyDBProxyInstanceResponse
|
|
37237
37519
|
"""
|
|
37238
|
-
UtilClient.validate_model(
|
|
37520
|
+
UtilClient.validate_model(tmp_req)
|
|
37521
|
+
request = rds_20140815_models.ModifyDBProxyInstanceShrinkRequest()
|
|
37522
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
37523
|
+
if not UtilClient.is_unset(tmp_req.dbproxy_nodes):
|
|
37524
|
+
request.dbproxy_nodes_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbproxy_nodes, 'DBProxyNodes', 'json')
|
|
37525
|
+
if not UtilClient.is_unset(tmp_req.migrate_az):
|
|
37526
|
+
request.migrate_azshrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.migrate_az, 'MigrateAZ', 'json')
|
|
37239
37527
|
query = {}
|
|
37240
37528
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
37241
37529
|
query['DBInstanceId'] = request.dbinstance_id
|
|
@@ -37247,10 +37535,14 @@ class Client(OpenApiClient):
|
|
|
37247
37535
|
query['DBProxyInstanceNum'] = request.dbproxy_instance_num
|
|
37248
37536
|
if not UtilClient.is_unset(request.dbproxy_instance_type):
|
|
37249
37537
|
query['DBProxyInstanceType'] = request.dbproxy_instance_type
|
|
37538
|
+
if not UtilClient.is_unset(request.dbproxy_nodes_shrink):
|
|
37539
|
+
query['DBProxyNodes'] = request.dbproxy_nodes_shrink
|
|
37250
37540
|
if not UtilClient.is_unset(request.effective_specific_time):
|
|
37251
37541
|
query['EffectiveSpecificTime'] = request.effective_specific_time
|
|
37252
37542
|
if not UtilClient.is_unset(request.effective_time):
|
|
37253
37543
|
query['EffectiveTime'] = request.effective_time
|
|
37544
|
+
if not UtilClient.is_unset(request.migrate_azshrink):
|
|
37545
|
+
query['MigrateAZ'] = request.migrate_azshrink
|
|
37254
37546
|
if not UtilClient.is_unset(request.owner_id):
|
|
37255
37547
|
query['OwnerId'] = request.owner_id
|
|
37256
37548
|
if not UtilClient.is_unset(request.region_id):
|
|
@@ -37635,7 +37927,8 @@ class Client(OpenApiClient):
|
|
|
37635
37927
|
@description ### [](#)Supported database engines
|
|
37636
37928
|
SQL Server
|
|
37637
37929
|
### [](#)References
|
|
37638
|
-
You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
37930
|
+
<props="china">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
37931
|
+
<props="intl">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html).
|
|
37639
37932
|
> : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
37640
37933
|
|
|
37641
37934
|
@param request: ModifyDatabaseConfigRequest
|
|
@@ -37690,7 +37983,8 @@ class Client(OpenApiClient):
|
|
|
37690
37983
|
@description ### [](#)Supported database engines
|
|
37691
37984
|
SQL Server
|
|
37692
37985
|
### [](#)References
|
|
37693
|
-
You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
37986
|
+
<props="china">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
37987
|
+
<props="intl">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html).
|
|
37694
37988
|
> : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
37695
37989
|
|
|
37696
37990
|
@param request: ModifyDatabaseConfigRequest
|
|
@@ -37744,7 +38038,8 @@ class Client(OpenApiClient):
|
|
|
37744
38038
|
@description ### [](#)Supported database engines
|
|
37745
38039
|
SQL Server
|
|
37746
38040
|
### [](#)References
|
|
37747
|
-
You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
38041
|
+
<props="china">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
38042
|
+
<props="intl">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html).
|
|
37748
38043
|
> : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
37749
38044
|
|
|
37750
38045
|
@param request: ModifyDatabaseConfigRequest
|
|
@@ -37763,7 +38058,8 @@ class Client(OpenApiClient):
|
|
|
37763
38058
|
@description ### [](#)Supported database engines
|
|
37764
38059
|
SQL Server
|
|
37765
38060
|
### [](#)References
|
|
37766
|
-
You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
38061
|
+
<props="china">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html) and [Archive cloud disk data to an OSS bucket](https://help.aliyun.com/document_detail/2767189.html).
|
|
38062
|
+
<props="intl">You can call this operation to modify the database properties of an ApsaraDB RDS for SQL Server instance and archive data from an instance that uses general Enterprise SSDs (ESSDs) to an Object Storage Service (OSS) bucket. Before you call this operation to archive data to an OSS bucket, you must enable the data archiving feature in the ApsaraDB RDS console. For more information, see [Modify database properties](https://help.aliyun.com/document_detail/2401398.html).
|
|
37767
38063
|
> : Before you call this operation, read the preceding topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
37768
38064
|
|
|
37769
38065
|
@param request: ModifyDatabaseConfigRequest
|
|
@@ -38728,6 +39024,8 @@ class Client(OpenApiClient):
|
|
|
38728
39024
|
query['MaskingAlgo'] = request.masking_algo
|
|
38729
39025
|
if not UtilClient.is_unset(request.owner_id):
|
|
38730
39026
|
query['OwnerId'] = request.owner_id
|
|
39027
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39028
|
+
query['RegionId'] = request.region_id
|
|
38731
39029
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38732
39030
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38733
39031
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -38783,6 +39081,8 @@ class Client(OpenApiClient):
|
|
|
38783
39081
|
query['MaskingAlgo'] = request.masking_algo
|
|
38784
39082
|
if not UtilClient.is_unset(request.owner_id):
|
|
38785
39083
|
query['OwnerId'] = request.owner_id
|
|
39084
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39085
|
+
query['RegionId'] = request.region_id
|
|
38786
39086
|
if not UtilClient.is_unset(request.resource_owner_account):
|
|
38787
39087
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
38788
39088
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
@@ -39342,7 +39642,15 @@ class Client(OpenApiClient):
|
|
|
39342
39642
|
runtime: util_models.RuntimeOptions,
|
|
39343
39643
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39344
39644
|
"""
|
|
39345
|
-
@summary
|
|
39645
|
+
@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.
|
|
39646
|
+
|
|
39647
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39648
|
+
Before you call this operation, take note of the following items:
|
|
39649
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39650
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39651
|
+
The instance must be in the Stopped state.
|
|
39652
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39653
|
+
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
39654
|
|
|
39347
39655
|
@param request: ModifyRCInstanceRequest
|
|
39348
39656
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39387,7 +39695,15 @@ class Client(OpenApiClient):
|
|
|
39387
39695
|
runtime: util_models.RuntimeOptions,
|
|
39388
39696
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39389
39697
|
"""
|
|
39390
|
-
@summary
|
|
39698
|
+
@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.
|
|
39699
|
+
|
|
39700
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39701
|
+
Before you call this operation, take note of the following items:
|
|
39702
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39703
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39704
|
+
The instance must be in the Stopped state.
|
|
39705
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39706
|
+
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
39707
|
|
|
39392
39708
|
@param request: ModifyRCInstanceRequest
|
|
39393
39709
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -39431,7 +39747,15 @@ class Client(OpenApiClient):
|
|
|
39431
39747
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39432
39748
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39433
39749
|
"""
|
|
39434
|
-
@summary
|
|
39750
|
+
@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.
|
|
39751
|
+
|
|
39752
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39753
|
+
Before you call this operation, take note of the following items:
|
|
39754
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39755
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39756
|
+
The instance must be in the Stopped state.
|
|
39757
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39758
|
+
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
39759
|
|
|
39436
39760
|
@param request: ModifyRCInstanceRequest
|
|
39437
39761
|
@return: ModifyRCInstanceResponse
|
|
@@ -39444,7 +39768,15 @@ class Client(OpenApiClient):
|
|
|
39444
39768
|
request: rds_20140815_models.ModifyRCInstanceRequest,
|
|
39445
39769
|
) -> rds_20140815_models.ModifyRCInstanceResponse:
|
|
39446
39770
|
"""
|
|
39447
|
-
@summary
|
|
39771
|
+
@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.
|
|
39772
|
+
|
|
39773
|
+
@description Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
39774
|
+
Before you call this operation, take note of the following items:
|
|
39775
|
+
You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
39776
|
+
When you downgrade the instance type of an instance, take note of the following items:
|
|
39777
|
+
The instance must be in the Stopped state.
|
|
39778
|
+
The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
39779
|
+
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
39780
|
|
|
39449
39781
|
@param request: ModifyRCInstanceRequest
|
|
39450
39782
|
@return: ModifyRCInstanceResponse
|
|
@@ -41530,7 +41862,7 @@ class Client(OpenApiClient):
|
|
|
41530
41862
|
runtime: util_models.RuntimeOptions,
|
|
41531
41863
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41532
41864
|
"""
|
|
41533
|
-
@summary
|
|
41865
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41534
41866
|
|
|
41535
41867
|
@param request: RebootRCInstanceRequest
|
|
41536
41868
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41571,7 +41903,7 @@ class Client(OpenApiClient):
|
|
|
41571
41903
|
runtime: util_models.RuntimeOptions,
|
|
41572
41904
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41573
41905
|
"""
|
|
41574
|
-
@summary
|
|
41906
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41575
41907
|
|
|
41576
41908
|
@param request: RebootRCInstanceRequest
|
|
41577
41909
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -41611,7 +41943,7 @@ class Client(OpenApiClient):
|
|
|
41611
41943
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41612
41944
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41613
41945
|
"""
|
|
41614
|
-
@summary
|
|
41946
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41615
41947
|
|
|
41616
41948
|
@param request: RebootRCInstanceRequest
|
|
41617
41949
|
@return: RebootRCInstanceResponse
|
|
@@ -41624,7 +41956,7 @@ class Client(OpenApiClient):
|
|
|
41624
41956
|
request: rds_20140815_models.RebootRCInstanceRequest,
|
|
41625
41957
|
) -> rds_20140815_models.RebootRCInstanceResponse:
|
|
41626
41958
|
"""
|
|
41627
|
-
@summary
|
|
41959
|
+
@summary Restarts an RDS Custom instance that is in the Running state.
|
|
41628
41960
|
|
|
41629
41961
|
@param request: RebootRCInstanceRequest
|
|
41630
41962
|
@return: RebootRCInstanceResponse
|
|
@@ -43342,7 +43674,7 @@ class Client(OpenApiClient):
|
|
|
43342
43674
|
runtime: util_models.RuntimeOptions,
|
|
43343
43675
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43344
43676
|
"""
|
|
43345
|
-
@summary
|
|
43677
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43346
43678
|
|
|
43347
43679
|
@param request: ResizeRCInstanceDiskRequest
|
|
43348
43680
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43387,7 +43719,7 @@ class Client(OpenApiClient):
|
|
|
43387
43719
|
runtime: util_models.RuntimeOptions,
|
|
43388
43720
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43389
43721
|
"""
|
|
43390
|
-
@summary
|
|
43722
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43391
43723
|
|
|
43392
43724
|
@param request: ResizeRCInstanceDiskRequest
|
|
43393
43725
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -43431,7 +43763,7 @@ class Client(OpenApiClient):
|
|
|
43431
43763
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43432
43764
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43433
43765
|
"""
|
|
43434
|
-
@summary
|
|
43766
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43435
43767
|
|
|
43436
43768
|
@param request: ResizeRCInstanceDiskRequest
|
|
43437
43769
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -43444,7 +43776,7 @@ class Client(OpenApiClient):
|
|
|
43444
43776
|
request: rds_20140815_models.ResizeRCInstanceDiskRequest,
|
|
43445
43777
|
) -> rds_20140815_models.ResizeRCInstanceDiskResponse:
|
|
43446
43778
|
"""
|
|
43447
|
-
@summary
|
|
43779
|
+
@summary Expand the storage capacity of an RDS Custom instance.
|
|
43448
43780
|
|
|
43449
43781
|
@param request: ResizeRCInstanceDiskRequest
|
|
43450
43782
|
@return: ResizeRCInstanceDiskResponse
|
|
@@ -44274,7 +44606,11 @@ class Client(OpenApiClient):
|
|
|
44274
44606
|
runtime: util_models.RuntimeOptions,
|
|
44275
44607
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44276
44608
|
"""
|
|
44277
|
-
@summary
|
|
44609
|
+
@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.
|
|
44610
|
+
|
|
44611
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44612
|
+
You can create only subscription RDS Custom instances.
|
|
44613
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44278
44614
|
|
|
44279
44615
|
@param tmp_req: RunRCInstancesRequest
|
|
44280
44616
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44296,6 +44632,8 @@ class Client(OpenApiClient):
|
|
|
44296
44632
|
query['AutoRenew'] = request.auto_renew
|
|
44297
44633
|
if not UtilClient.is_unset(request.client_token):
|
|
44298
44634
|
query['ClientToken'] = request.client_token
|
|
44635
|
+
if not UtilClient.is_unset(request.create_mode):
|
|
44636
|
+
query['CreateMode'] = request.create_mode
|
|
44299
44637
|
if not UtilClient.is_unset(request.data_disk_shrink):
|
|
44300
44638
|
query['DataDisk'] = request.data_disk_shrink
|
|
44301
44639
|
if not UtilClient.is_unset(request.deployment_set_id):
|
|
@@ -44304,6 +44642,8 @@ class Client(OpenApiClient):
|
|
|
44304
44642
|
query['Description'] = request.description
|
|
44305
44643
|
if not UtilClient.is_unset(request.dry_run):
|
|
44306
44644
|
query['DryRun'] = request.dry_run
|
|
44645
|
+
if not UtilClient.is_unset(request.host_name):
|
|
44646
|
+
query['HostName'] = request.host_name
|
|
44307
44647
|
if not UtilClient.is_unset(request.image_id):
|
|
44308
44648
|
query['ImageId'] = request.image_id
|
|
44309
44649
|
if not UtilClient.is_unset(request.instance_charge_type):
|
|
@@ -44328,12 +44668,16 @@ class Client(OpenApiClient):
|
|
|
44328
44668
|
query['PeriodUnit'] = request.period_unit
|
|
44329
44669
|
if not UtilClient.is_unset(request.region_id):
|
|
44330
44670
|
query['RegionId'] = request.region_id
|
|
44671
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
44672
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
44331
44673
|
if not UtilClient.is_unset(request.security_enhancement_strategy):
|
|
44332
44674
|
query['SecurityEnhancementStrategy'] = request.security_enhancement_strategy
|
|
44333
44675
|
if not UtilClient.is_unset(request.security_group_id):
|
|
44334
44676
|
query['SecurityGroupId'] = request.security_group_id
|
|
44335
44677
|
if not UtilClient.is_unset(request.system_disk_shrink):
|
|
44336
44678
|
query['SystemDisk'] = request.system_disk_shrink
|
|
44679
|
+
if not UtilClient.is_unset(request.tag):
|
|
44680
|
+
query['Tag'] = request.tag
|
|
44337
44681
|
if not UtilClient.is_unset(request.v_switch_id):
|
|
44338
44682
|
query['VSwitchId'] = request.v_switch_id
|
|
44339
44683
|
if not UtilClient.is_unset(request.zone_id):
|
|
@@ -44363,7 +44707,11 @@ class Client(OpenApiClient):
|
|
|
44363
44707
|
runtime: util_models.RuntimeOptions,
|
|
44364
44708
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44365
44709
|
"""
|
|
44366
|
-
@summary
|
|
44710
|
+
@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.
|
|
44711
|
+
|
|
44712
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44713
|
+
You can create only subscription RDS Custom instances.
|
|
44714
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44367
44715
|
|
|
44368
44716
|
@param tmp_req: RunRCInstancesRequest
|
|
44369
44717
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44385,6 +44733,8 @@ class Client(OpenApiClient):
|
|
|
44385
44733
|
query['AutoRenew'] = request.auto_renew
|
|
44386
44734
|
if not UtilClient.is_unset(request.client_token):
|
|
44387
44735
|
query['ClientToken'] = request.client_token
|
|
44736
|
+
if not UtilClient.is_unset(request.create_mode):
|
|
44737
|
+
query['CreateMode'] = request.create_mode
|
|
44388
44738
|
if not UtilClient.is_unset(request.data_disk_shrink):
|
|
44389
44739
|
query['DataDisk'] = request.data_disk_shrink
|
|
44390
44740
|
if not UtilClient.is_unset(request.deployment_set_id):
|
|
@@ -44393,6 +44743,8 @@ class Client(OpenApiClient):
|
|
|
44393
44743
|
query['Description'] = request.description
|
|
44394
44744
|
if not UtilClient.is_unset(request.dry_run):
|
|
44395
44745
|
query['DryRun'] = request.dry_run
|
|
44746
|
+
if not UtilClient.is_unset(request.host_name):
|
|
44747
|
+
query['HostName'] = request.host_name
|
|
44396
44748
|
if not UtilClient.is_unset(request.image_id):
|
|
44397
44749
|
query['ImageId'] = request.image_id
|
|
44398
44750
|
if not UtilClient.is_unset(request.instance_charge_type):
|
|
@@ -44417,12 +44769,16 @@ class Client(OpenApiClient):
|
|
|
44417
44769
|
query['PeriodUnit'] = request.period_unit
|
|
44418
44770
|
if not UtilClient.is_unset(request.region_id):
|
|
44419
44771
|
query['RegionId'] = request.region_id
|
|
44772
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
44773
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
44420
44774
|
if not UtilClient.is_unset(request.security_enhancement_strategy):
|
|
44421
44775
|
query['SecurityEnhancementStrategy'] = request.security_enhancement_strategy
|
|
44422
44776
|
if not UtilClient.is_unset(request.security_group_id):
|
|
44423
44777
|
query['SecurityGroupId'] = request.security_group_id
|
|
44424
44778
|
if not UtilClient.is_unset(request.system_disk_shrink):
|
|
44425
44779
|
query['SystemDisk'] = request.system_disk_shrink
|
|
44780
|
+
if not UtilClient.is_unset(request.tag):
|
|
44781
|
+
query['Tag'] = request.tag
|
|
44426
44782
|
if not UtilClient.is_unset(request.v_switch_id):
|
|
44427
44783
|
query['VSwitchId'] = request.v_switch_id
|
|
44428
44784
|
if not UtilClient.is_unset(request.zone_id):
|
|
@@ -44451,7 +44807,11 @@ class Client(OpenApiClient):
|
|
|
44451
44807
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44452
44808
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44453
44809
|
"""
|
|
44454
|
-
@summary
|
|
44810
|
+
@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.
|
|
44811
|
+
|
|
44812
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44813
|
+
You can create only subscription RDS Custom instances.
|
|
44814
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44455
44815
|
|
|
44456
44816
|
@param request: RunRCInstancesRequest
|
|
44457
44817
|
@return: RunRCInstancesResponse
|
|
@@ -44464,7 +44824,11 @@ class Client(OpenApiClient):
|
|
|
44464
44824
|
request: rds_20140815_models.RunRCInstancesRequest,
|
|
44465
44825
|
) -> rds_20140815_models.RunRCInstancesResponse:
|
|
44466
44826
|
"""
|
|
44467
|
-
@summary
|
|
44827
|
+
@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.
|
|
44828
|
+
|
|
44829
|
+
@description Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
44830
|
+
You can create only subscription RDS Custom instances.
|
|
44831
|
+
Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
44468
44832
|
|
|
44469
44833
|
@param request: RunRCInstancesRequest
|
|
44470
44834
|
@return: RunRCInstancesResponse
|
|
@@ -44678,7 +45042,7 @@ class Client(OpenApiClient):
|
|
|
44678
45042
|
runtime: util_models.RuntimeOptions,
|
|
44679
45043
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44680
45044
|
"""
|
|
44681
|
-
@summary
|
|
45045
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44682
45046
|
|
|
44683
45047
|
@param request: StartRCInstanceRequest
|
|
44684
45048
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44715,7 +45079,7 @@ class Client(OpenApiClient):
|
|
|
44715
45079
|
runtime: util_models.RuntimeOptions,
|
|
44716
45080
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44717
45081
|
"""
|
|
44718
|
-
@summary
|
|
45082
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44719
45083
|
|
|
44720
45084
|
@param request: StartRCInstanceRequest
|
|
44721
45085
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44751,7 +45115,7 @@ class Client(OpenApiClient):
|
|
|
44751
45115
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44752
45116
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44753
45117
|
"""
|
|
44754
|
-
@summary
|
|
45118
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44755
45119
|
|
|
44756
45120
|
@param request: StartRCInstanceRequest
|
|
44757
45121
|
@return: StartRCInstanceResponse
|
|
@@ -44764,7 +45128,7 @@ class Client(OpenApiClient):
|
|
|
44764
45128
|
request: rds_20140815_models.StartRCInstanceRequest,
|
|
44765
45129
|
) -> rds_20140815_models.StartRCInstanceResponse:
|
|
44766
45130
|
"""
|
|
44767
|
-
@summary
|
|
45131
|
+
@summary Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
44768
45132
|
|
|
44769
45133
|
@param request: StartRCInstanceRequest
|
|
44770
45134
|
@return: StartRCInstanceResponse
|
|
@@ -44930,7 +45294,7 @@ class Client(OpenApiClient):
|
|
|
44930
45294
|
runtime: util_models.RuntimeOptions,
|
|
44931
45295
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44932
45296
|
"""
|
|
44933
|
-
@summary
|
|
45297
|
+
@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
45298
|
|
|
44935
45299
|
@param request: StopRCInstanceRequest
|
|
44936
45300
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -44969,7 +45333,7 @@ class Client(OpenApiClient):
|
|
|
44969
45333
|
runtime: util_models.RuntimeOptions,
|
|
44970
45334
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
44971
45335
|
"""
|
|
44972
|
-
@summary
|
|
45336
|
+
@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
45337
|
|
|
44974
45338
|
@param request: StopRCInstanceRequest
|
|
44975
45339
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45007,7 +45371,7 @@ class Client(OpenApiClient):
|
|
|
45007
45371
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
45008
45372
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
45009
45373
|
"""
|
|
45010
|
-
@summary
|
|
45374
|
+
@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
45375
|
|
|
45012
45376
|
@param request: StopRCInstanceRequest
|
|
45013
45377
|
@return: StopRCInstanceResponse
|
|
@@ -45020,7 +45384,7 @@ class Client(OpenApiClient):
|
|
|
45020
45384
|
request: rds_20140815_models.StopRCInstanceRequest,
|
|
45021
45385
|
) -> rds_20140815_models.StopRCInstanceResponse:
|
|
45022
45386
|
"""
|
|
45023
|
-
@summary
|
|
45387
|
+
@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
45388
|
|
|
45025
45389
|
@param request: StopRCInstanceRequest
|
|
45026
45390
|
@return: StopRCInstanceResponse
|
|
@@ -45530,7 +45894,7 @@ class Client(OpenApiClient):
|
|
|
45530
45894
|
runtime: util_models.RuntimeOptions,
|
|
45531
45895
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45532
45896
|
"""
|
|
45533
|
-
@summary
|
|
45897
|
+
@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
45898
|
|
|
45535
45899
|
@param request: SyncRCKeyPairRequest
|
|
45536
45900
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45542,6 +45906,8 @@ class Client(OpenApiClient):
|
|
|
45542
45906
|
query['KeyPairName'] = request.key_pair_name
|
|
45543
45907
|
if not UtilClient.is_unset(request.region_id):
|
|
45544
45908
|
query['RegionId'] = request.region_id
|
|
45909
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45910
|
+
query['SyncMode'] = request.sync_mode
|
|
45545
45911
|
req = open_api_models.OpenApiRequest(
|
|
45546
45912
|
query=OpenApiUtilClient.query(query)
|
|
45547
45913
|
)
|
|
@@ -45567,7 +45933,7 @@ class Client(OpenApiClient):
|
|
|
45567
45933
|
runtime: util_models.RuntimeOptions,
|
|
45568
45934
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45569
45935
|
"""
|
|
45570
|
-
@summary
|
|
45936
|
+
@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
45937
|
|
|
45572
45938
|
@param request: SyncRCKeyPairRequest
|
|
45573
45939
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -45579,6 +45945,8 @@ class Client(OpenApiClient):
|
|
|
45579
45945
|
query['KeyPairName'] = request.key_pair_name
|
|
45580
45946
|
if not UtilClient.is_unset(request.region_id):
|
|
45581
45947
|
query['RegionId'] = request.region_id
|
|
45948
|
+
if not UtilClient.is_unset(request.sync_mode):
|
|
45949
|
+
query['SyncMode'] = request.sync_mode
|
|
45582
45950
|
req = open_api_models.OpenApiRequest(
|
|
45583
45951
|
query=OpenApiUtilClient.query(query)
|
|
45584
45952
|
)
|
|
@@ -45603,7 +45971,7 @@ class Client(OpenApiClient):
|
|
|
45603
45971
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45604
45972
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45605
45973
|
"""
|
|
45606
|
-
@summary
|
|
45974
|
+
@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
45975
|
|
|
45608
45976
|
@param request: SyncRCKeyPairRequest
|
|
45609
45977
|
@return: SyncRCKeyPairResponse
|
|
@@ -45616,7 +45984,7 @@ class Client(OpenApiClient):
|
|
|
45616
45984
|
request: rds_20140815_models.SyncRCKeyPairRequest,
|
|
45617
45985
|
) -> rds_20140815_models.SyncRCKeyPairResponse:
|
|
45618
45986
|
"""
|
|
45619
|
-
@summary
|
|
45987
|
+
@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
45988
|
|
|
45621
45989
|
@param request: SyncRCKeyPairRequest
|
|
45622
45990
|
@return: SyncRCKeyPairResponse
|