@alicloud/rds20140815 7.1.4 → 7.2.1
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.
- package/dist/client.d.ts +2990 -206
- package/dist/client.js +722 -83
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +3441 -208
package/dist/client.d.ts
CHANGED
|
@@ -1363,6 +1363,16 @@ export declare class CloneDBInstanceRequest extends $tea.Model {
|
|
|
1363
1363
|
* mysql.n1.micro.1
|
|
1364
1364
|
*/
|
|
1365
1365
|
DBInstanceClass?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* @remarks
|
|
1368
|
+
* The instance name. The value must be 2 to 255 characters in length The value can contain letters, digits, underscores (_), and hyphens (-), and must start with a letter.
|
|
1369
|
+
*
|
|
1370
|
+
* > The value cannot start with http:// or https://.
|
|
1371
|
+
*
|
|
1372
|
+
* @example
|
|
1373
|
+
* testInstance
|
|
1374
|
+
*/
|
|
1375
|
+
DBInstanceDescription?: string;
|
|
1366
1376
|
/**
|
|
1367
1377
|
* @remarks
|
|
1368
1378
|
* The instance ID.
|
|
@@ -1688,6 +1698,16 @@ export declare class CloneDBInstanceShrinkRequest extends $tea.Model {
|
|
|
1688
1698
|
* mysql.n1.micro.1
|
|
1689
1699
|
*/
|
|
1690
1700
|
DBInstanceClass?: string;
|
|
1701
|
+
/**
|
|
1702
|
+
* @remarks
|
|
1703
|
+
* The instance name. The value must be 2 to 255 characters in length The value can contain letters, digits, underscores (_), and hyphens (-), and must start with a letter.
|
|
1704
|
+
*
|
|
1705
|
+
* > The value cannot start with http:// or https://.
|
|
1706
|
+
*
|
|
1707
|
+
* @example
|
|
1708
|
+
* testInstance
|
|
1709
|
+
*/
|
|
1710
|
+
DBInstanceDescription?: string;
|
|
1691
1711
|
/**
|
|
1692
1712
|
* @remarks
|
|
1693
1713
|
* The instance ID.
|
|
@@ -2174,7 +2194,31 @@ export declare class ConfirmNotifyResponse extends $tea.Model {
|
|
|
2174
2194
|
});
|
|
2175
2195
|
}
|
|
2176
2196
|
export declare class CopyDatabaseRequest extends $tea.Model {
|
|
2197
|
+
/**
|
|
2198
|
+
* @remarks
|
|
2199
|
+
* The instance name.
|
|
2200
|
+
*
|
|
2201
|
+
* @example
|
|
2202
|
+
* rm-uf6wjk5******
|
|
2203
|
+
*/
|
|
2204
|
+
DBInstanceName?: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* @remarks
|
|
2207
|
+
* The destination database name.
|
|
2208
|
+
*
|
|
2209
|
+
* @example
|
|
2210
|
+
* db2***
|
|
2211
|
+
*/
|
|
2212
|
+
dstDBName?: string;
|
|
2177
2213
|
ownerId?: number;
|
|
2214
|
+
/**
|
|
2215
|
+
* @remarks
|
|
2216
|
+
* The reserved account.
|
|
2217
|
+
*
|
|
2218
|
+
* @example
|
|
2219
|
+
* 1
|
|
2220
|
+
*/
|
|
2221
|
+
reserveAccount?: number;
|
|
2178
2222
|
/**
|
|
2179
2223
|
* @remarks
|
|
2180
2224
|
* The ID of the resource group.
|
|
@@ -2185,6 +2229,14 @@ export declare class CopyDatabaseRequest extends $tea.Model {
|
|
|
2185
2229
|
resourceGroupId?: string;
|
|
2186
2230
|
resourceOwnerAccount?: string;
|
|
2187
2231
|
resourceOwnerId?: number;
|
|
2232
|
+
/**
|
|
2233
|
+
* @remarks
|
|
2234
|
+
* The source database name.
|
|
2235
|
+
*
|
|
2236
|
+
* @example
|
|
2237
|
+
* db1***
|
|
2238
|
+
*/
|
|
2239
|
+
srcDBName?: string;
|
|
2188
2240
|
static names(): {
|
|
2189
2241
|
[key: string]: string;
|
|
2190
2242
|
};
|
|
@@ -2440,6 +2492,19 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
2440
2492
|
* Normal
|
|
2441
2493
|
*/
|
|
2442
2494
|
accountType?: string;
|
|
2495
|
+
/**
|
|
2496
|
+
* @remarks
|
|
2497
|
+
* Specifies whether to use a password policy.
|
|
2498
|
+
*
|
|
2499
|
+
* >
|
|
2500
|
+
*
|
|
2501
|
+
* * This parameter is available only for ApsaraDB RDS for SQL Server instances that do not belong to the shared instance family and do not run SQL Server 2008 R2.
|
|
2502
|
+
*
|
|
2503
|
+
* * Before you call this operation, you must configure a password policy for the account of your instance. For more information, see [Configure a password policy for the account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/2848317.html).
|
|
2504
|
+
*
|
|
2505
|
+
* @example
|
|
2506
|
+
* true
|
|
2507
|
+
*/
|
|
2443
2508
|
checkPolicy?: boolean;
|
|
2444
2509
|
/**
|
|
2445
2510
|
* @remarks
|
|
@@ -2930,10 +2995,10 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
2930
2995
|
amount?: number;
|
|
2931
2996
|
/**
|
|
2932
2997
|
* @remarks
|
|
2933
|
-
* Specifies whether to automatically create a proxy. Valid values:
|
|
2998
|
+
* Specifies whether to automatically create a database proxy. Valid values:
|
|
2934
2999
|
*
|
|
2935
|
-
* * **true**: automatically creates a proxy. By default, general-purpose
|
|
2936
|
-
* * **false**: does not automatically create a proxy.
|
|
3000
|
+
* * **true**: automatically creates a database proxy. By default, a general-purpose database proxy is created.
|
|
3001
|
+
* * **false**: does not automatically create a database proxy.
|
|
2937
3002
|
*
|
|
2938
3003
|
* @example
|
|
2939
3004
|
* false
|
|
@@ -2943,10 +3008,10 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
2943
3008
|
* @remarks
|
|
2944
3009
|
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
2945
3010
|
*
|
|
2946
|
-
* * **true**: enables the feature.
|
|
3011
|
+
* * **true**: enables the feature. You must make sure that your account balance is sufficient.
|
|
2947
3012
|
* * **false**: disables the feature. An unpaid order is generated.
|
|
2948
3013
|
*
|
|
2949
|
-
* >
|
|
3014
|
+
* > Default value: true. If your account balance is insufficient, you can set the AutoPay parameter to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
2950
3015
|
*
|
|
2951
3016
|
* @example
|
|
2952
3017
|
* true
|
|
@@ -3313,9 +3378,13 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3313
3378
|
* * **VPC**: virtual private cloud (VPC)
|
|
3314
3379
|
* * **Classic**: the classic network
|
|
3315
3380
|
*
|
|
3316
|
-
* >
|
|
3317
|
-
*
|
|
3318
|
-
*
|
|
3381
|
+
* >
|
|
3382
|
+
*
|
|
3383
|
+
* * If the instance runs MySQL and uses cloud disks, you must set this parameter to **VPC**.
|
|
3384
|
+
*
|
|
3385
|
+
* * If the instance runs PostgreSQL or MariaDB, you must set this parameter to **VPC**.
|
|
3386
|
+
*
|
|
3387
|
+
* * If the instance runs SQL Server Basic or SQL Server Web, you can set this parameter to VPC or Classic. If the instance runs other database engine, you must set this parameter to **VPC**.
|
|
3319
3388
|
*
|
|
3320
3389
|
* @example
|
|
3321
3390
|
* Classic
|
|
@@ -3357,7 +3426,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3357
3426
|
* * **Year**
|
|
3358
3427
|
* * **Month**
|
|
3359
3428
|
*
|
|
3360
|
-
* > If you set the PayType parameter to **Prepaid**, you must specify this parameter.
|
|
3429
|
+
* > If you set the PayType parameter to **Prepaid**, you must also specify this parameter.
|
|
3361
3430
|
*
|
|
3362
3431
|
* @example
|
|
3363
3432
|
* Year
|
|
@@ -3431,7 +3500,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3431
3500
|
serverlessConfig?: CreateDBInstanceRequestServerlessConfig;
|
|
3432
3501
|
/**
|
|
3433
3502
|
* @remarks
|
|
3434
|
-
* Specifies whether to enable the automatic storage expansion feature for the instance.
|
|
3503
|
+
* Specifies whether to enable the automatic storage expansion feature for the instance. If the instance runs MySQL or PostgreSQL, this feature is supported. Valid values:
|
|
3435
3504
|
*
|
|
3436
3505
|
* * **Enable**
|
|
3437
3506
|
* * **Disable** (default)
|
|
@@ -3452,7 +3521,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3452
3521
|
* * **40**
|
|
3453
3522
|
* * **50**
|
|
3454
3523
|
*
|
|
3455
|
-
* > If you set the **StorageAutoScale** parameter to **Enable**, you must specify this parameter.
|
|
3524
|
+
* > If you set the **StorageAutoScale** parameter to **Enable**, you must also specify this parameter.
|
|
3456
3525
|
*
|
|
3457
3526
|
* @example
|
|
3458
3527
|
* 50
|
|
@@ -3546,12 +3615,12 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3546
3615
|
targetMinorVersion?: string;
|
|
3547
3616
|
/**
|
|
3548
3617
|
* @remarks
|
|
3549
|
-
* The subscription duration of the instance.
|
|
3618
|
+
* The subscription duration of the instance. Valid values:
|
|
3550
3619
|
*
|
|
3551
3620
|
* * If you set the **Period** parameter to **Year**, the value of the **UsedTime** parameter ranges from **1 to 5**.
|
|
3552
3621
|
* * If you set the **Period** parameter to **Month**, the value of the **UsedTime** parameter ranges from **1 to 11**.
|
|
3553
3622
|
*
|
|
3554
|
-
* > If you set the PayType parameter to **Prepaid**, you must specify this parameter.
|
|
3623
|
+
* > If you set the PayType parameter to **Prepaid**, you must also specify this parameter.
|
|
3555
3624
|
*
|
|
3556
3625
|
* @example
|
|
3557
3626
|
* 2
|
|
@@ -3661,10 +3730,10 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
3661
3730
|
amount?: number;
|
|
3662
3731
|
/**
|
|
3663
3732
|
* @remarks
|
|
3664
|
-
* Specifies whether to automatically create a proxy. Valid values:
|
|
3733
|
+
* Specifies whether to automatically create a database proxy. Valid values:
|
|
3665
3734
|
*
|
|
3666
|
-
* * **true**: automatically creates a proxy. By default, general-purpose
|
|
3667
|
-
* * **false**: does not automatically create a proxy.
|
|
3735
|
+
* * **true**: automatically creates a database proxy. By default, a general-purpose database proxy is created.
|
|
3736
|
+
* * **false**: does not automatically create a database proxy.
|
|
3668
3737
|
*
|
|
3669
3738
|
* @example
|
|
3670
3739
|
* false
|
|
@@ -3674,10 +3743,10 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
3674
3743
|
* @remarks
|
|
3675
3744
|
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
3676
3745
|
*
|
|
3677
|
-
* * **true**: enables the feature.
|
|
3746
|
+
* * **true**: enables the feature. You must make sure that your account balance is sufficient.
|
|
3678
3747
|
* * **false**: disables the feature. An unpaid order is generated.
|
|
3679
3748
|
*
|
|
3680
|
-
* >
|
|
3749
|
+
* > Default value: true. If your account balance is insufficient, you can set the AutoPay parameter to false to generate an unpaid order. Then, you can log on to the ApsaraDB RDS console to complete the payment.
|
|
3681
3750
|
*
|
|
3682
3751
|
* @example
|
|
3683
3752
|
* true
|
|
@@ -4044,9 +4113,13 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4044
4113
|
* * **VPC**: virtual private cloud (VPC)
|
|
4045
4114
|
* * **Classic**: the classic network
|
|
4046
4115
|
*
|
|
4047
|
-
* >
|
|
4048
|
-
*
|
|
4049
|
-
*
|
|
4116
|
+
* >
|
|
4117
|
+
*
|
|
4118
|
+
* * If the instance runs MySQL and uses cloud disks, you must set this parameter to **VPC**.
|
|
4119
|
+
*
|
|
4120
|
+
* * If the instance runs PostgreSQL or MariaDB, you must set this parameter to **VPC**.
|
|
4121
|
+
*
|
|
4122
|
+
* * If the instance runs SQL Server Basic or SQL Server Web, you can set this parameter to VPC or Classic. If the instance runs other database engine, you must set this parameter to **VPC**.
|
|
4050
4123
|
*
|
|
4051
4124
|
* @example
|
|
4052
4125
|
* Classic
|
|
@@ -4088,7 +4161,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4088
4161
|
* * **Year**
|
|
4089
4162
|
* * **Month**
|
|
4090
4163
|
*
|
|
4091
|
-
* > If you set the PayType parameter to **Prepaid**, you must specify this parameter.
|
|
4164
|
+
* > If you set the PayType parameter to **Prepaid**, you must also specify this parameter.
|
|
4092
4165
|
*
|
|
4093
4166
|
* @example
|
|
4094
4167
|
* Year
|
|
@@ -4162,7 +4235,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4162
4235
|
serverlessConfigShrink?: string;
|
|
4163
4236
|
/**
|
|
4164
4237
|
* @remarks
|
|
4165
|
-
* Specifies whether to enable the automatic storage expansion feature for the instance.
|
|
4238
|
+
* Specifies whether to enable the automatic storage expansion feature for the instance. If the instance runs MySQL or PostgreSQL, this feature is supported. Valid values:
|
|
4166
4239
|
*
|
|
4167
4240
|
* * **Enable**
|
|
4168
4241
|
* * **Disable** (default)
|
|
@@ -4183,7 +4256,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4183
4256
|
* * **40**
|
|
4184
4257
|
* * **50**
|
|
4185
4258
|
*
|
|
4186
|
-
* > If you set the **StorageAutoScale** parameter to **Enable**, you must specify this parameter.
|
|
4259
|
+
* > If you set the **StorageAutoScale** parameter to **Enable**, you must also specify this parameter.
|
|
4187
4260
|
*
|
|
4188
4261
|
* @example
|
|
4189
4262
|
* 50
|
|
@@ -4277,12 +4350,12 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4277
4350
|
targetMinorVersion?: string;
|
|
4278
4351
|
/**
|
|
4279
4352
|
* @remarks
|
|
4280
|
-
* The subscription duration of the instance.
|
|
4353
|
+
* The subscription duration of the instance. Valid values:
|
|
4281
4354
|
*
|
|
4282
4355
|
* * If you set the **Period** parameter to **Year**, the value of the **UsedTime** parameter ranges from **1 to 5**.
|
|
4283
4356
|
* * If you set the **Period** parameter to **Month**, the value of the **UsedTime** parameter ranges from **1 to 11**.
|
|
4284
4357
|
*
|
|
4285
|
-
* > If you set the PayType parameter to **Prepaid**, you must specify this parameter.
|
|
4358
|
+
* > If you set the PayType parameter to **Prepaid**, you must also specify this parameter.
|
|
4286
4359
|
*
|
|
4287
4360
|
* @example
|
|
4288
4361
|
* 2
|
|
@@ -5778,10 +5851,15 @@ export declare class CreateDdrInstanceRequest extends $tea.Model {
|
|
|
5778
5851
|
DBInstanceStorageType?: string;
|
|
5779
5852
|
/**
|
|
5780
5853
|
* @remarks
|
|
5781
|
-
*
|
|
5854
|
+
* The ID of the customer master key (CMK) for cloud disk encryption. If this parameter is specified, cloud disk encryption is enabled and you must also specify the **RoleARN** parameter. Cloud disk encryption cannot be disabled after it is enabled. You can obtain the ID of the key in the KMS console or create a key. For more information, see [Create a key](https://help.aliyun.com/document_detail/181610.html).
|
|
5782
5855
|
*
|
|
5783
|
-
*
|
|
5784
|
-
*
|
|
5856
|
+
* **
|
|
5857
|
+
*
|
|
5858
|
+
* **Notes**
|
|
5859
|
+
*
|
|
5860
|
+
* * This parameter is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
5861
|
+
*
|
|
5862
|
+
* * You can leave this parameter empty. If you do not specify this parameter, you only need to specify the **RoleARN** to use the service key that is managed by ApsaraDB RDS to encrypt cloud disks.
|
|
5785
5863
|
*
|
|
5786
5864
|
* @example
|
|
5787
5865
|
* 749c1df7-****-****-****-****
|
|
@@ -5911,9 +5989,9 @@ export declare class CreateDdrInstanceRequest extends $tea.Model {
|
|
|
5911
5989
|
restoreType?: string;
|
|
5912
5990
|
/**
|
|
5913
5991
|
* @remarks
|
|
5914
|
-
* The
|
|
5992
|
+
* The Alibaba Cloud Resource Name (ARN) that is provided by your Alibaba Cloud account for Resource Access Management (RAM) users. RAM users can use the ARN to connect to ApsaraDB RDS to Key Management Service (KMS). You can call the [CheckCloudResourceAuthorized](https://help.aliyun.com/document_detail/2628797.html) operation to query the ARN.
|
|
5915
5993
|
*
|
|
5916
|
-
* >
|
|
5994
|
+
* > This parameter is applicable only to ApsaraDB RDS for SQL Server instances.
|
|
5917
5995
|
*
|
|
5918
5996
|
* @example
|
|
5919
5997
|
* acs:ram::1406****:role/aliyunrdsinstanceencryptiondefaultrole
|
|
@@ -7418,16 +7496,78 @@ export declare class CreatePostgresExtensionsResponse extends $tea.Model {
|
|
|
7418
7496
|
});
|
|
7419
7497
|
}
|
|
7420
7498
|
export declare class CreateRCDeploymentSetRequest extends $tea.Model {
|
|
7499
|
+
/**
|
|
7500
|
+
* @remarks
|
|
7501
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
7502
|
+
*
|
|
7503
|
+
* @example
|
|
7504
|
+
* ETnLKlblzczshOTUbOCz****
|
|
7505
|
+
*/
|
|
7421
7506
|
clientToken?: string;
|
|
7507
|
+
/**
|
|
7508
|
+
* @remarks
|
|
7509
|
+
* The deployment set name. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, colons (.), underscores (_), and hyphens (-).
|
|
7510
|
+
*
|
|
7511
|
+
* @example
|
|
7512
|
+
* deployment_test
|
|
7513
|
+
*/
|
|
7422
7514
|
deploymentSetName?: string;
|
|
7515
|
+
/**
|
|
7516
|
+
* @remarks
|
|
7517
|
+
* The description of the deployment set. The value must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
7518
|
+
*
|
|
7519
|
+
* @example
|
|
7520
|
+
* test
|
|
7521
|
+
*/
|
|
7423
7522
|
description?: string;
|
|
7523
|
+
/**
|
|
7524
|
+
* @remarks
|
|
7525
|
+
* The number of groups in the deployment set. Valid values: 1 to 7.
|
|
7526
|
+
*
|
|
7527
|
+
* Default value: 3.
|
|
7528
|
+
*
|
|
7529
|
+
* > This parameter takes effect only when `Strategy is set to AvailabilityGroup`.
|
|
7530
|
+
*
|
|
7531
|
+
* @example
|
|
7532
|
+
* 3
|
|
7533
|
+
*/
|
|
7424
7534
|
groupCount?: number;
|
|
7535
|
+
/**
|
|
7536
|
+
* @remarks
|
|
7537
|
+
* The emergency solution to use in the scenario in which instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:
|
|
7538
|
+
*
|
|
7539
|
+
* * **CancelMembershipAndStart**: removes the instances from the deployment set and restarts the instances immediately after the failover is complete.
|
|
7540
|
+
* * **KeepStopped**: does not remove the instances from the deployment set and keeps the instances in the Stopped state.
|
|
7541
|
+
*
|
|
7542
|
+
* Default value: CancelMembershipAndStart.
|
|
7543
|
+
*
|
|
7544
|
+
* @example
|
|
7545
|
+
* CancelMembershipAndStart
|
|
7546
|
+
*/
|
|
7425
7547
|
onUnableToRedeployFailedInstance?: string;
|
|
7426
7548
|
/**
|
|
7427
7549
|
* @remarks
|
|
7550
|
+
* The region ID.
|
|
7551
|
+
*
|
|
7428
7552
|
* This parameter is required.
|
|
7553
|
+
*
|
|
7554
|
+
* @example
|
|
7555
|
+
* cn-hangzhou
|
|
7429
7556
|
*/
|
|
7430
7557
|
regionId?: string;
|
|
7558
|
+
/**
|
|
7559
|
+
* @remarks
|
|
7560
|
+
* The deployment strategy. Valid values:
|
|
7561
|
+
*
|
|
7562
|
+
* * **Availability**: high-availability strategy
|
|
7563
|
+
* * **AvailabilityGroup**: high-availability group strategy
|
|
7564
|
+
* * **LowLatency**: low latency strategy
|
|
7565
|
+
*
|
|
7566
|
+
* Default value: Availability.
|
|
7567
|
+
*
|
|
7568
|
+
* @example
|
|
7569
|
+
* Availability
|
|
7570
|
+
*/
|
|
7431
7571
|
strategy?: string;
|
|
7432
7572
|
static names(): {
|
|
7433
7573
|
[key: string]: string;
|
|
@@ -7440,7 +7580,21 @@ export declare class CreateRCDeploymentSetRequest extends $tea.Model {
|
|
|
7440
7580
|
});
|
|
7441
7581
|
}
|
|
7442
7582
|
export declare class CreateRCDeploymentSetResponseBody extends $tea.Model {
|
|
7583
|
+
/**
|
|
7584
|
+
* @remarks
|
|
7585
|
+
* The deployment set ID.
|
|
7586
|
+
*
|
|
7587
|
+
* @example
|
|
7588
|
+
* ds-uf6c8qerk019bj1l****
|
|
7589
|
+
*/
|
|
7443
7590
|
deploymentSetId?: string;
|
|
7591
|
+
/**
|
|
7592
|
+
* @remarks
|
|
7593
|
+
* The request ID.
|
|
7594
|
+
*
|
|
7595
|
+
* @example
|
|
7596
|
+
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
7597
|
+
*/
|
|
7444
7598
|
requestId?: string;
|
|
7445
7599
|
static names(): {
|
|
7446
7600
|
[key: string]: string;
|
|
@@ -7946,7 +8100,7 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7946
8100
|
* @remarks
|
|
7947
8101
|
* The name of the source instance.
|
|
7948
8102
|
*
|
|
7949
|
-
* >
|
|
8103
|
+
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
7950
8104
|
*
|
|
7951
8105
|
* @example
|
|
7952
8106
|
* testInstance
|
|
@@ -7954,9 +8108,9 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7954
8108
|
sourceInstanceName?: string;
|
|
7955
8109
|
/**
|
|
7956
8110
|
* @remarks
|
|
7957
|
-
* The ID of the
|
|
8111
|
+
* The region ID of the source instance.
|
|
7958
8112
|
*
|
|
7959
|
-
* >
|
|
8113
|
+
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
7960
8114
|
*
|
|
7961
8115
|
* @example
|
|
7962
8116
|
* cn-hangzhou
|
|
@@ -7964,7 +8118,7 @@ export declare class CreateReplicationLinkRequest extends $tea.Model {
|
|
|
7964
8118
|
sourceInstanceRegionId?: string;
|
|
7965
8119
|
/**
|
|
7966
8120
|
* @remarks
|
|
7967
|
-
* The port
|
|
8121
|
+
* The port of the source instance.
|
|
7968
8122
|
*
|
|
7969
8123
|
* @example
|
|
7970
8124
|
* 5432
|
|
@@ -8713,11 +8867,8 @@ export declare class DeleteBackupFileRequest extends $tea.Model {
|
|
|
8713
8867
|
* @remarks
|
|
8714
8868
|
* The backup set ID. You can specify the IDs of up to 100 backup sets at a time. Separate the IDs with commas (,).
|
|
8715
8869
|
*
|
|
8716
|
-
* >
|
|
8717
|
-
*
|
|
8718
|
-
* * If the instance runs SQL Server, only the ID of the backup set for an individual database is supported.
|
|
8719
|
-
*
|
|
8720
|
-
* * You can call the DescribeBackups operation to query the backup set ID.
|
|
8870
|
+
* > * If the instance runs SQL Server, only the ID of the backup set for an individual database is supported.
|
|
8871
|
+
* > * You can call the DescribeBackups operation to query the backup set ID.
|
|
8721
8872
|
*
|
|
8722
8873
|
* @example
|
|
8723
8874
|
* 29304****
|
|
@@ -9798,12 +9949,22 @@ export declare class DeletePostgresExtensionsResponse extends $tea.Model {
|
|
|
9798
9949
|
export declare class DeleteRCDeploymentSetRequest extends $tea.Model {
|
|
9799
9950
|
/**
|
|
9800
9951
|
* @remarks
|
|
9952
|
+
* The deployment set ID.
|
|
9953
|
+
*
|
|
9801
9954
|
* This parameter is required.
|
|
9955
|
+
*
|
|
9956
|
+
* @example
|
|
9957
|
+
* ds-uf6c8qerk019bj1l****
|
|
9802
9958
|
*/
|
|
9803
9959
|
deploymentSetId?: string;
|
|
9804
9960
|
/**
|
|
9805
9961
|
* @remarks
|
|
9962
|
+
* The region ID.
|
|
9963
|
+
*
|
|
9806
9964
|
* This parameter is required.
|
|
9965
|
+
*
|
|
9966
|
+
* @example
|
|
9967
|
+
* cn-hangzhou
|
|
9807
9968
|
*/
|
|
9808
9969
|
regionId?: string;
|
|
9809
9970
|
static names(): {
|
|
@@ -9817,6 +9978,13 @@ export declare class DeleteRCDeploymentSetRequest extends $tea.Model {
|
|
|
9817
9978
|
});
|
|
9818
9979
|
}
|
|
9819
9980
|
export declare class DeleteRCDeploymentSetResponseBody extends $tea.Model {
|
|
9981
|
+
/**
|
|
9982
|
+
* @remarks
|
|
9983
|
+
* The request ID.
|
|
9984
|
+
*
|
|
9985
|
+
* @example
|
|
9986
|
+
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
9987
|
+
*/
|
|
9820
9988
|
requestId?: string;
|
|
9821
9989
|
static names(): {
|
|
9822
9990
|
[key: string]: string;
|
|
@@ -9895,14 +10063,53 @@ export declare class DeleteRCInstanceResponse extends $tea.Model {
|
|
|
9895
10063
|
});
|
|
9896
10064
|
}
|
|
9897
10065
|
export declare class DeleteRCInstancesRequest extends $tea.Model {
|
|
10066
|
+
/**
|
|
10067
|
+
* @remarks
|
|
10068
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
10069
|
+
*
|
|
10070
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors.
|
|
10071
|
+
* * **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, the instance is created.
|
|
10072
|
+
*
|
|
10073
|
+
* @example
|
|
10074
|
+
* true
|
|
10075
|
+
*/
|
|
9898
10076
|
dryRun?: boolean;
|
|
10077
|
+
/**
|
|
10078
|
+
* @remarks
|
|
10079
|
+
* Specifies whether to forcefully release a running instance. Valid values:
|
|
10080
|
+
*
|
|
10081
|
+
* * **Yes**
|
|
10082
|
+
* * **No** (default)
|
|
10083
|
+
*
|
|
10084
|
+
* @example
|
|
10085
|
+
* Yes
|
|
10086
|
+
*/
|
|
9899
10087
|
force?: boolean;
|
|
9900
10088
|
/**
|
|
9901
10089
|
* @remarks
|
|
10090
|
+
* The details of the instance.
|
|
10091
|
+
*
|
|
9902
10092
|
* This parameter is required.
|
|
9903
10093
|
*/
|
|
9904
10094
|
instanceId?: string[];
|
|
10095
|
+
/**
|
|
10096
|
+
* @remarks
|
|
10097
|
+
* The region ID of the instance.
|
|
10098
|
+
*
|
|
10099
|
+
* @example
|
|
10100
|
+
* cn-hangzhou
|
|
10101
|
+
*/
|
|
9905
10102
|
regionId?: string;
|
|
10103
|
+
/**
|
|
10104
|
+
* @remarks
|
|
10105
|
+
* Specifies whether to release an expired subscription instance. Valid values:
|
|
10106
|
+
*
|
|
10107
|
+
* * **true**
|
|
10108
|
+
* * **false** (default)
|
|
10109
|
+
*
|
|
10110
|
+
* @example
|
|
10111
|
+
* true
|
|
10112
|
+
*/
|
|
9906
10113
|
terminateSubscription?: boolean;
|
|
9907
10114
|
static names(): {
|
|
9908
10115
|
[key: string]: string;
|
|
@@ -9915,14 +10122,53 @@ export declare class DeleteRCInstancesRequest extends $tea.Model {
|
|
|
9915
10122
|
});
|
|
9916
10123
|
}
|
|
9917
10124
|
export declare class DeleteRCInstancesShrinkRequest extends $tea.Model {
|
|
10125
|
+
/**
|
|
10126
|
+
* @remarks
|
|
10127
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
10128
|
+
*
|
|
10129
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors.
|
|
10130
|
+
* * **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, the instance is created.
|
|
10131
|
+
*
|
|
10132
|
+
* @example
|
|
10133
|
+
* true
|
|
10134
|
+
*/
|
|
9918
10135
|
dryRun?: boolean;
|
|
10136
|
+
/**
|
|
10137
|
+
* @remarks
|
|
10138
|
+
* Specifies whether to forcefully release a running instance. Valid values:
|
|
10139
|
+
*
|
|
10140
|
+
* * **Yes**
|
|
10141
|
+
* * **No** (default)
|
|
10142
|
+
*
|
|
10143
|
+
* @example
|
|
10144
|
+
* Yes
|
|
10145
|
+
*/
|
|
9919
10146
|
force?: boolean;
|
|
9920
10147
|
/**
|
|
9921
10148
|
* @remarks
|
|
10149
|
+
* The details of the instance.
|
|
10150
|
+
*
|
|
9922
10151
|
* This parameter is required.
|
|
9923
10152
|
*/
|
|
9924
10153
|
instanceIdShrink?: string;
|
|
10154
|
+
/**
|
|
10155
|
+
* @remarks
|
|
10156
|
+
* The region ID of the instance.
|
|
10157
|
+
*
|
|
10158
|
+
* @example
|
|
10159
|
+
* cn-hangzhou
|
|
10160
|
+
*/
|
|
9925
10161
|
regionId?: string;
|
|
10162
|
+
/**
|
|
10163
|
+
* @remarks
|
|
10164
|
+
* Specifies whether to release an expired subscription instance. Valid values:
|
|
10165
|
+
*
|
|
10166
|
+
* * **true**
|
|
10167
|
+
* * **false** (default)
|
|
10168
|
+
*
|
|
10169
|
+
* @example
|
|
10170
|
+
* true
|
|
10171
|
+
*/
|
|
9926
10172
|
terminateSubscription?: boolean;
|
|
9927
10173
|
static names(): {
|
|
9928
10174
|
[key: string]: string;
|
|
@@ -9935,6 +10181,13 @@ export declare class DeleteRCInstancesShrinkRequest extends $tea.Model {
|
|
|
9935
10181
|
});
|
|
9936
10182
|
}
|
|
9937
10183
|
export declare class DeleteRCInstancesResponseBody extends $tea.Model {
|
|
10184
|
+
/**
|
|
10185
|
+
* @remarks
|
|
10186
|
+
* The request ID.
|
|
10187
|
+
*
|
|
10188
|
+
* @example
|
|
10189
|
+
* E9DD55F4-1A5F-48CA-BA57-DFB3CA8C4C34
|
|
10190
|
+
*/
|
|
9938
10191
|
requestId?: string;
|
|
9939
10192
|
static names(): {
|
|
9940
10193
|
[key: string]: string;
|
|
@@ -10248,8 +10501,8 @@ export declare class DeleteSlotRequest extends $tea.Model {
|
|
|
10248
10501
|
* @remarks
|
|
10249
10502
|
* The status of the replication slot. You can call the DescribeSlots operation to query the status of the replication slot. Valid values:
|
|
10250
10503
|
*
|
|
10251
|
-
* * ACTIVE
|
|
10252
|
-
* * INACTIVE
|
|
10504
|
+
* * **ACTIVE**
|
|
10505
|
+
* * **INACTIVE**
|
|
10253
10506
|
*
|
|
10254
10507
|
* This parameter is required.
|
|
10255
10508
|
*
|
|
@@ -10764,7 +11017,7 @@ export declare class DescribeAccountsRequest extends $tea.Model {
|
|
|
10764
11017
|
pageNumber?: number;
|
|
10765
11018
|
/**
|
|
10766
11019
|
* @remarks
|
|
10767
|
-
* The number of entries
|
|
11020
|
+
* The number of entries per page. Valid values: **30 to 200**. Default value: **30**.
|
|
10768
11021
|
*
|
|
10769
11022
|
* @example
|
|
10770
11023
|
* 30
|
|
@@ -10785,7 +11038,7 @@ export declare class DescribeAccountsRequest extends $tea.Model {
|
|
|
10785
11038
|
export declare class DescribeAccountsResponseBody extends $tea.Model {
|
|
10786
11039
|
/**
|
|
10787
11040
|
* @remarks
|
|
10788
|
-
* The
|
|
11041
|
+
* The information about the account.
|
|
10789
11042
|
*/
|
|
10790
11043
|
accounts?: DescribeAccountsResponseBodyAccounts;
|
|
10791
11044
|
/**
|
|
@@ -11431,11 +11684,11 @@ export declare class DescribeAvailableClassesRequest extends $tea.Model {
|
|
|
11431
11684
|
*
|
|
11432
11685
|
* * **local_ssd**: local SSD. This is the recommended storage type.
|
|
11433
11686
|
* * **cloud_ssd**: standard SSD.
|
|
11434
|
-
* * **cloud_essd**:
|
|
11435
|
-
* * **cloud_essd2**:
|
|
11436
|
-
* * **cloud_essd3**: ESSD
|
|
11687
|
+
* * **cloud_essd**: performance level 1 (PL1) Enterprise SSD (ESSD)
|
|
11688
|
+
* * **cloud_essd2**: PL2 ESSD
|
|
11689
|
+
* * **cloud_essd3**: PL3 ESSD
|
|
11437
11690
|
*
|
|
11438
|
-
* >
|
|
11691
|
+
* > Serverless instances use only PL1 ESSDs. If you want to create a serverless instance, you must set this parameter to **cloud_essd**.
|
|
11439
11692
|
*
|
|
11440
11693
|
* This parameter is required.
|
|
11441
11694
|
*
|
|
@@ -11499,7 +11752,7 @@ export declare class DescribeAvailableClassesRequest extends $tea.Model {
|
|
|
11499
11752
|
instanceChargeType?: string;
|
|
11500
11753
|
/**
|
|
11501
11754
|
* @remarks
|
|
11502
|
-
* The type of
|
|
11755
|
+
* The type of order. Set the value to **BUY**
|
|
11503
11756
|
*
|
|
11504
11757
|
* @example
|
|
11505
11758
|
* BUY
|
|
@@ -12452,9 +12705,10 @@ export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
12452
12705
|
supportVolumeShadowCopy?: number;
|
|
12453
12706
|
/**
|
|
12454
12707
|
* @remarks
|
|
12455
|
-
*
|
|
12456
|
-
*
|
|
12457
|
-
*
|
|
12708
|
+
* Indicates whether log backups for SQL Server are performed verery five minutes.
|
|
12709
|
+
*
|
|
12710
|
+
* * 0: No
|
|
12711
|
+
* * 1: Yes
|
|
12458
12712
|
*
|
|
12459
12713
|
* @example
|
|
12460
12714
|
* 0
|
|
@@ -17919,6 +18173,8 @@ export declare class DescribeDBProxyResponseBody extends $tea.Model {
|
|
|
17919
18173
|
* 2
|
|
17920
18174
|
*/
|
|
17921
18175
|
DBProxyInstanceType?: string;
|
|
18176
|
+
DBProxyKindCode?: string;
|
|
18177
|
+
DBProxyNodes?: DescribeDBProxyResponseBodyDBProxyNodes;
|
|
17922
18178
|
/**
|
|
17923
18179
|
* @remarks
|
|
17924
18180
|
* Connection Persistence State.
|
|
@@ -18105,6 +18361,7 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18105
18361
|
* TransactionReadSqlRouteOptimizeStatus:1;ConnectionPersist:0;ReadWriteSpliting:1
|
|
18106
18362
|
*/
|
|
18107
18363
|
DBProxyFeatures?: string;
|
|
18364
|
+
DBProxyNodes?: DescribeDBProxyEndpointResponseBodyDBProxyNodes;
|
|
18108
18365
|
/**
|
|
18109
18366
|
* @remarks
|
|
18110
18367
|
* The description of the proxy terminal.
|
|
@@ -18124,6 +18381,8 @@ export declare class DescribeDBProxyEndpointResponseBody extends $tea.Model {
|
|
|
18124
18381
|
* ReadWrite
|
|
18125
18382
|
*/
|
|
18126
18383
|
dbProxyEndpointReadWriteMode?: string;
|
|
18384
|
+
dbProxyEndpointVswitchId?: string;
|
|
18385
|
+
dbProxyEndpointZoneId?: string;
|
|
18127
18386
|
/**
|
|
18128
18387
|
* @remarks
|
|
18129
18388
|
* An array that consists of the information about the proxy endpoint.
|
|
@@ -19931,17 +20190,17 @@ export declare class DescribeHistoryTasksRequest extends $tea.Model {
|
|
|
19931
20190
|
securityToken?: string;
|
|
19932
20191
|
/**
|
|
19933
20192
|
* @remarks
|
|
19934
|
-
* The status
|
|
20193
|
+
* The task status. Valid values:
|
|
19935
20194
|
*
|
|
19936
|
-
* * Scheduled
|
|
19937
|
-
* * Running
|
|
19938
|
-
* * Succeed
|
|
19939
|
-
* * Failed
|
|
19940
|
-
* * Cancelling
|
|
19941
|
-
* * Canceled
|
|
19942
|
-
* * Waiting
|
|
20195
|
+
* * **Scheduled**
|
|
20196
|
+
* * **Running**
|
|
20197
|
+
* * **Succeed**
|
|
20198
|
+
* * **Failed**
|
|
20199
|
+
* * **Cancelling**
|
|
20200
|
+
* * **Canceled**
|
|
20201
|
+
* * **Waiting**
|
|
19943
20202
|
*
|
|
19944
|
-
* Separate multiple
|
|
20203
|
+
* Separate multiple values with commas (,). By default, this parameter is left empty, which indicates that tasks in all statuses are queried.
|
|
19945
20204
|
*
|
|
19946
20205
|
* @example
|
|
19947
20206
|
* Scheduled
|
|
@@ -19949,7 +20208,7 @@ export declare class DescribeHistoryTasksRequest extends $tea.Model {
|
|
|
19949
20208
|
status?: string;
|
|
19950
20209
|
/**
|
|
19951
20210
|
* @remarks
|
|
19952
|
-
* The task ID.
|
|
20211
|
+
* The task ID. You can call the DescribeTasks operation to query the task ID. If multiple task IDs exist, separate them with commas (,). You can specify up to 30 task IDs. By default, this parameter is left empty, which indicates that all tasks are queried.
|
|
19953
20212
|
*
|
|
19954
20213
|
* @example
|
|
19955
20214
|
* t-83br18hloy3faf****
|
|
@@ -19999,7 +20258,7 @@ export declare class DescribeHistoryTasksResponseBody extends $tea.Model {
|
|
|
19999
20258
|
items?: DescribeHistoryTasksResponseBodyItems[];
|
|
20000
20259
|
/**
|
|
20001
20260
|
* @remarks
|
|
20002
|
-
* The page number.
|
|
20261
|
+
* The page number.
|
|
20003
20262
|
*
|
|
20004
20263
|
* @example
|
|
20005
20264
|
* 1
|
|
@@ -20007,7 +20266,7 @@ export declare class DescribeHistoryTasksResponseBody extends $tea.Model {
|
|
|
20007
20266
|
pageNumber?: number;
|
|
20008
20267
|
/**
|
|
20009
20268
|
* @remarks
|
|
20010
|
-
* The number of entries per page.
|
|
20269
|
+
* The number of entries per page.
|
|
20011
20270
|
*
|
|
20012
20271
|
* @example
|
|
20013
20272
|
* 10
|
|
@@ -22148,7 +22407,7 @@ export declare class DescribeModifyParameterLogRequest extends $tea.Model {
|
|
|
22148
22407
|
ownerId?: number;
|
|
22149
22408
|
/**
|
|
22150
22409
|
* @remarks
|
|
22151
|
-
* The page number. Pages start from
|
|
22410
|
+
* The page number. Pages start from 1.
|
|
22152
22411
|
*
|
|
22153
22412
|
* Default value: **1**.
|
|
22154
22413
|
*
|
|
@@ -22219,7 +22478,7 @@ export declare class DescribeModifyParameterLogResponseBody extends $tea.Model {
|
|
|
22219
22478
|
engineVersion?: string;
|
|
22220
22479
|
/**
|
|
22221
22480
|
* @remarks
|
|
22222
|
-
*
|
|
22481
|
+
* The log entries.
|
|
22223
22482
|
*/
|
|
22224
22483
|
items?: DescribeModifyParameterLogResponseBodyItems;
|
|
22225
22484
|
/**
|
|
@@ -23652,15 +23911,68 @@ export declare class DescribeQuickSaleConfigResponse extends $tea.Model {
|
|
|
23652
23911
|
});
|
|
23653
23912
|
}
|
|
23654
23913
|
export declare class DescribeRCDeploymentSetsRequest extends $tea.Model {
|
|
23914
|
+
/**
|
|
23915
|
+
* @remarks
|
|
23916
|
+
* The IDs of the deployment sets. The value can be a JSON array that consists of deployment set IDs in the format of `["ds-xxxxxxxxx", "ds-yyyyyyyyy", ... "ds-zzzzzzzzz"]`. You can specify up to 100 deployment set IDs in each request. Separate the deployment set IDs with commas (,).
|
|
23917
|
+
*
|
|
23918
|
+
* @example
|
|
23919
|
+
* ["ds-2zeeuw16zo2gr9e6****"]
|
|
23920
|
+
*/
|
|
23655
23921
|
deploymentSetIds?: string;
|
|
23922
|
+
/**
|
|
23923
|
+
* @remarks
|
|
23924
|
+
* The deployment set name. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
|
|
23925
|
+
*
|
|
23926
|
+
* @example
|
|
23927
|
+
* deployment_test
|
|
23928
|
+
*/
|
|
23656
23929
|
deploymentSetName?: string;
|
|
23930
|
+
/**
|
|
23931
|
+
* @remarks
|
|
23932
|
+
* The page number.
|
|
23933
|
+
*
|
|
23934
|
+
* Pages start from page 1.
|
|
23935
|
+
*
|
|
23936
|
+
* Default value: 1.
|
|
23937
|
+
*
|
|
23938
|
+
* @example
|
|
23939
|
+
* 1
|
|
23940
|
+
*/
|
|
23657
23941
|
pageNumber?: number;
|
|
23942
|
+
/**
|
|
23943
|
+
* @remarks
|
|
23944
|
+
* The number of entries per page.
|
|
23945
|
+
*
|
|
23946
|
+
* Maximum value: 50.
|
|
23947
|
+
*
|
|
23948
|
+
* Default value: 10.
|
|
23949
|
+
*
|
|
23950
|
+
* @example
|
|
23951
|
+
* 10
|
|
23952
|
+
*/
|
|
23658
23953
|
pageSize?: number;
|
|
23659
23954
|
/**
|
|
23660
23955
|
* @remarks
|
|
23956
|
+
* The region ID.
|
|
23957
|
+
*
|
|
23661
23958
|
* This parameter is required.
|
|
23959
|
+
*
|
|
23960
|
+
* @example
|
|
23961
|
+
* cn-hangzhou
|
|
23662
23962
|
*/
|
|
23663
23963
|
regionId?: string;
|
|
23964
|
+
/**
|
|
23965
|
+
* @remarks
|
|
23966
|
+
* The deployment strategy. Valid values:
|
|
23967
|
+
*
|
|
23968
|
+
* * **Availability**: high availability strategy
|
|
23969
|
+
* * **AvailabilityGroup**: high availability group strategy
|
|
23970
|
+
*
|
|
23971
|
+
* Default value: Availability.
|
|
23972
|
+
*
|
|
23973
|
+
* @example
|
|
23974
|
+
* Availability
|
|
23975
|
+
*/
|
|
23664
23976
|
strategy?: string;
|
|
23665
23977
|
static names(): {
|
|
23666
23978
|
[key: string]: string;
|
|
@@ -23673,11 +23985,50 @@ export declare class DescribeRCDeploymentSetsRequest extends $tea.Model {
|
|
|
23673
23985
|
});
|
|
23674
23986
|
}
|
|
23675
23987
|
export declare class DescribeRCDeploymentSetsResponseBody extends $tea.Model {
|
|
23988
|
+
/**
|
|
23989
|
+
* @remarks
|
|
23990
|
+
* The details of the deployment set.
|
|
23991
|
+
*/
|
|
23676
23992
|
deploymentSets?: DescribeRCDeploymentSetsResponseBodyDeploymentSets;
|
|
23993
|
+
/**
|
|
23994
|
+
* @remarks
|
|
23995
|
+
* The page number.
|
|
23996
|
+
*
|
|
23997
|
+
* @example
|
|
23998
|
+
* 1
|
|
23999
|
+
*/
|
|
23677
24000
|
pageNumber?: number;
|
|
24001
|
+
/**
|
|
24002
|
+
* @remarks
|
|
24003
|
+
* The number of entries returned per page.
|
|
24004
|
+
*
|
|
24005
|
+
* @example
|
|
24006
|
+
* 10
|
|
24007
|
+
*/
|
|
23678
24008
|
pageSize?: number;
|
|
24009
|
+
/**
|
|
24010
|
+
* @remarks
|
|
24011
|
+
* The region ID.
|
|
24012
|
+
*
|
|
24013
|
+
* @example
|
|
24014
|
+
* cn-hangzhou
|
|
24015
|
+
*/
|
|
23679
24016
|
regionId?: string;
|
|
24017
|
+
/**
|
|
24018
|
+
* @remarks
|
|
24019
|
+
* The request ID.
|
|
24020
|
+
*
|
|
24021
|
+
* @example
|
|
24022
|
+
* 39265F46-EC77-4036-8AC4-F035F32F6BE2
|
|
24023
|
+
*/
|
|
23680
24024
|
requestId?: string;
|
|
24025
|
+
/**
|
|
24026
|
+
* @remarks
|
|
24027
|
+
* The total number of entries returned.
|
|
24028
|
+
*
|
|
24029
|
+
* @example
|
|
24030
|
+
* 2
|
|
24031
|
+
*/
|
|
23681
24032
|
totalCount?: number;
|
|
23682
24033
|
static names(): {
|
|
23683
24034
|
[key: string]: string;
|
|
@@ -23706,14 +24057,50 @@ export declare class DescribeRCDeploymentSetsResponse extends $tea.Model {
|
|
|
23706
24057
|
});
|
|
23707
24058
|
}
|
|
23708
24059
|
export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
24060
|
+
/**
|
|
24061
|
+
* @remarks
|
|
24062
|
+
* The image architecture. Valid values:
|
|
24063
|
+
*
|
|
24064
|
+
* * x86_64
|
|
24065
|
+
* * arm64
|
|
24066
|
+
*
|
|
24067
|
+
* @example
|
|
24068
|
+
* x86_64
|
|
24069
|
+
*/
|
|
23709
24070
|
architecture?: string;
|
|
24071
|
+
/**
|
|
24072
|
+
* @remarks
|
|
24073
|
+
* The page number.
|
|
24074
|
+
*
|
|
24075
|
+
* @example
|
|
24076
|
+
* 1
|
|
24077
|
+
*/
|
|
23710
24078
|
pageNumber?: number;
|
|
24079
|
+
/**
|
|
24080
|
+
* @remarks
|
|
24081
|
+
* The number of entries per page.
|
|
24082
|
+
*
|
|
24083
|
+
* @example
|
|
24084
|
+
* 30
|
|
24085
|
+
*/
|
|
23711
24086
|
pageSize?: number;
|
|
23712
24087
|
/**
|
|
23713
24088
|
* @remarks
|
|
24089
|
+
* The region ID.
|
|
24090
|
+
*
|
|
23714
24091
|
* This parameter is required.
|
|
24092
|
+
*
|
|
24093
|
+
* @example
|
|
24094
|
+
* cn-hangzhou
|
|
23715
24095
|
*/
|
|
23716
24096
|
regionId?: string;
|
|
24097
|
+
/**
|
|
24098
|
+
* @remarks
|
|
24099
|
+
* The image type. Set the value to **self**.
|
|
24100
|
+
*
|
|
24101
|
+
* @example
|
|
24102
|
+
* self
|
|
24103
|
+
*/
|
|
23717
24104
|
type?: string;
|
|
23718
24105
|
static names(): {
|
|
23719
24106
|
[key: string]: string;
|
|
@@ -23726,11 +24113,50 @@ export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
|
23726
24113
|
});
|
|
23727
24114
|
}
|
|
23728
24115
|
export declare class DescribeRCImageListResponseBody extends $tea.Model {
|
|
24116
|
+
/**
|
|
24117
|
+
* @remarks
|
|
24118
|
+
* The information about the images.
|
|
24119
|
+
*/
|
|
23729
24120
|
images?: DescribeRCImageListResponseBodyImages[];
|
|
24121
|
+
/**
|
|
24122
|
+
* @remarks
|
|
24123
|
+
* The page number.
|
|
24124
|
+
*
|
|
24125
|
+
* @example
|
|
24126
|
+
* 1
|
|
24127
|
+
*/
|
|
23730
24128
|
pageNumber?: number;
|
|
24129
|
+
/**
|
|
24130
|
+
* @remarks
|
|
24131
|
+
* The number of entries returned per page.
|
|
24132
|
+
*
|
|
24133
|
+
* @example
|
|
24134
|
+
* 5
|
|
24135
|
+
*/
|
|
23731
24136
|
pageSize?: number;
|
|
24137
|
+
/**
|
|
24138
|
+
* @remarks
|
|
24139
|
+
* The region ID.
|
|
24140
|
+
*
|
|
24141
|
+
* @example
|
|
24142
|
+
* cn-hangzhou
|
|
24143
|
+
*/
|
|
23732
24144
|
regionId?: string;
|
|
24145
|
+
/**
|
|
24146
|
+
* @remarks
|
|
24147
|
+
* The request ID.
|
|
24148
|
+
*
|
|
24149
|
+
* @example
|
|
24150
|
+
* 2553A660-E4EB-4AF4-A402-8AFF70A49143
|
|
24151
|
+
*/
|
|
23733
24152
|
requestId?: string;
|
|
24153
|
+
/**
|
|
24154
|
+
* @remarks
|
|
24155
|
+
* The total number of images.
|
|
24156
|
+
*
|
|
24157
|
+
* @example
|
|
24158
|
+
* 2
|
|
24159
|
+
*/
|
|
23734
24160
|
totalCount?: number;
|
|
23735
24161
|
static names(): {
|
|
23736
24162
|
[key: string]: string;
|
|
@@ -23761,9 +24187,21 @@ export declare class DescribeRCImageListResponse extends $tea.Model {
|
|
|
23761
24187
|
export declare class DescribeRCInstanceAttributeRequest extends $tea.Model {
|
|
23762
24188
|
/**
|
|
23763
24189
|
* @remarks
|
|
24190
|
+
* The instance ID.
|
|
24191
|
+
*
|
|
23764
24192
|
* This parameter is required.
|
|
24193
|
+
*
|
|
24194
|
+
* @example
|
|
24195
|
+
* rc-dh2jf9n6j4s14926****
|
|
23765
24196
|
*/
|
|
23766
24197
|
instanceId?: string;
|
|
24198
|
+
/**
|
|
24199
|
+
* @remarks
|
|
24200
|
+
* The region ID.
|
|
24201
|
+
*
|
|
24202
|
+
* @example
|
|
24203
|
+
* cn-hangzhou
|
|
24204
|
+
*/
|
|
23767
24205
|
regionId?: string;
|
|
23768
24206
|
static names(): {
|
|
23769
24207
|
[key: string]: string;
|
|
@@ -23776,51 +24214,322 @@ export declare class DescribeRCInstanceAttributeRequest extends $tea.Model {
|
|
|
23776
24214
|
});
|
|
23777
24215
|
}
|
|
23778
24216
|
export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model {
|
|
24217
|
+
/**
|
|
24218
|
+
* @remarks
|
|
24219
|
+
* The ID of the cluster to which the instance belongs.
|
|
24220
|
+
*
|
|
24221
|
+
* > This parameter will be deprecated. We recommend that you use other parameters to ensure compatibility.
|
|
24222
|
+
*
|
|
24223
|
+
* @example
|
|
24224
|
+
* None
|
|
24225
|
+
*/
|
|
23779
24226
|
clusterId?: string;
|
|
24227
|
+
/**
|
|
24228
|
+
* @remarks
|
|
24229
|
+
* The number of CPU cores.
|
|
24230
|
+
*
|
|
24231
|
+
* @example
|
|
24232
|
+
* 4
|
|
24233
|
+
*/
|
|
23780
24234
|
cpu?: number;
|
|
24235
|
+
/**
|
|
24236
|
+
* @remarks
|
|
24237
|
+
* The time when the instance was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time is displayed in UTC.
|
|
24238
|
+
*
|
|
24239
|
+
* @example
|
|
24240
|
+
* 2024-04-22T06:52:23Z
|
|
24241
|
+
*/
|
|
23781
24242
|
creationTime?: string;
|
|
24243
|
+
/**
|
|
24244
|
+
* @remarks
|
|
24245
|
+
* The performance mode of the burstable instance.
|
|
24246
|
+
*
|
|
24247
|
+
* @example
|
|
24248
|
+
* None
|
|
24249
|
+
*/
|
|
23782
24250
|
creditSpecification?: string;
|
|
24251
|
+
/**
|
|
24252
|
+
* @remarks
|
|
24253
|
+
* The details of the data disk.
|
|
24254
|
+
*/
|
|
23783
24255
|
dataDisks?: DescribeRCInstanceAttributeResponseBodyDataDisks;
|
|
23784
24256
|
/**
|
|
24257
|
+
* @remarks
|
|
24258
|
+
* The attributes of the dedicated hosts.
|
|
24259
|
+
*
|
|
23785
24260
|
* **if can be null:**
|
|
23786
24261
|
* true
|
|
23787
24262
|
*/
|
|
23788
24263
|
dedicatedHostAttribute?: DescribeRCInstanceAttributeResponseBodyDedicatedHostAttribute;
|
|
24264
|
+
/**
|
|
24265
|
+
* @remarks
|
|
24266
|
+
* The ID of the deployment set.
|
|
24267
|
+
*
|
|
24268
|
+
* @example
|
|
24269
|
+
* ds-uf6c8qerk019bj1l****
|
|
24270
|
+
*/
|
|
23789
24271
|
deploymentSetId?: string;
|
|
24272
|
+
/**
|
|
24273
|
+
* @remarks
|
|
24274
|
+
* The instance description.
|
|
24275
|
+
*
|
|
24276
|
+
* @example
|
|
24277
|
+
* test
|
|
24278
|
+
*/
|
|
23790
24279
|
description?: string;
|
|
24280
|
+
/**
|
|
24281
|
+
* @remarks
|
|
24282
|
+
* The reserved parameter.
|
|
24283
|
+
*
|
|
24284
|
+
* @example
|
|
24285
|
+
* None
|
|
24286
|
+
*/
|
|
23791
24287
|
diskType?: string;
|
|
24288
|
+
/**
|
|
24289
|
+
* @remarks
|
|
24290
|
+
* The Elastic Compute Service (ECS) instance family.
|
|
24291
|
+
*
|
|
24292
|
+
* @example
|
|
24293
|
+
* ecs.g6.2xlarge
|
|
24294
|
+
*/
|
|
23792
24295
|
ecsInstanceType?: string;
|
|
24296
|
+
/**
|
|
24297
|
+
* @remarks
|
|
24298
|
+
* The elastic IP address (EIP) associated with the instance.
|
|
24299
|
+
*/
|
|
23793
24300
|
eipAddress?: DescribeRCInstanceAttributeResponseBodyEipAddress;
|
|
24301
|
+
/**
|
|
24302
|
+
* @remarks
|
|
24303
|
+
* Indicates whether the Jumbo Frame feature is enabled for the instance. Valid values:
|
|
24304
|
+
*
|
|
24305
|
+
* * **true**
|
|
24306
|
+
* * **false**
|
|
24307
|
+
*
|
|
24308
|
+
* @example
|
|
24309
|
+
* false
|
|
24310
|
+
*/
|
|
23794
24311
|
enableJumboFrame?: boolean;
|
|
24312
|
+
/**
|
|
24313
|
+
* @remarks
|
|
24314
|
+
* The expiration time. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time is displayed in UTC.
|
|
24315
|
+
*
|
|
24316
|
+
* @example
|
|
24317
|
+
* 2024-08-10T00:00:00Z
|
|
24318
|
+
*/
|
|
23795
24319
|
expiredTime?: string;
|
|
24320
|
+
/**
|
|
24321
|
+
* @remarks
|
|
24322
|
+
* The instance hostname.
|
|
24323
|
+
*
|
|
24324
|
+
* @example
|
|
24325
|
+
* iZ2zej1n3cin51rlmby****
|
|
24326
|
+
*/
|
|
23796
24327
|
hostName?: string;
|
|
24328
|
+
/**
|
|
24329
|
+
* @remarks
|
|
24330
|
+
* The storage type of the host. Valid values:
|
|
24331
|
+
*
|
|
24332
|
+
* * **dhg_cloud_ssd**: ESSD
|
|
24333
|
+
* * **dhg_local_ssd**: local SSD
|
|
24334
|
+
*
|
|
24335
|
+
* @example
|
|
24336
|
+
* dhg_cloud_ssd
|
|
24337
|
+
*/
|
|
23797
24338
|
hostType?: string;
|
|
24339
|
+
/**
|
|
24340
|
+
* @remarks
|
|
24341
|
+
* The image ID of the instance.
|
|
24342
|
+
*
|
|
24343
|
+
* @example
|
|
24344
|
+
* m-2oqiu973jwcxe****
|
|
24345
|
+
*/
|
|
23798
24346
|
imageId?: string;
|
|
24347
|
+
/**
|
|
24348
|
+
* @remarks
|
|
24349
|
+
* The private IP addresses of the instance in the classic network.
|
|
24350
|
+
*/
|
|
23799
24351
|
innerIpAddress?: DescribeRCInstanceAttributeResponseBodyInnerIpAddress;
|
|
24352
|
+
/**
|
|
24353
|
+
* @remarks
|
|
24354
|
+
* The instance ID.
|
|
24355
|
+
*
|
|
24356
|
+
* @example
|
|
24357
|
+
* rc-dh2jf9n6j4s14926****
|
|
24358
|
+
*/
|
|
23800
24359
|
instanceId?: string;
|
|
24360
|
+
/**
|
|
24361
|
+
* @remarks
|
|
24362
|
+
* The instance name.
|
|
24363
|
+
*
|
|
24364
|
+
* @example
|
|
24365
|
+
* test
|
|
24366
|
+
*/
|
|
23801
24367
|
instanceName?: string;
|
|
24368
|
+
/**
|
|
24369
|
+
* @remarks
|
|
24370
|
+
* The network type. Valid values:
|
|
24371
|
+
*
|
|
24372
|
+
* * **classic**
|
|
24373
|
+
* * **vpc**
|
|
24374
|
+
*
|
|
24375
|
+
* @example
|
|
24376
|
+
* vpc
|
|
24377
|
+
*/
|
|
23802
24378
|
instanceNetworkType?: string;
|
|
24379
|
+
/**
|
|
24380
|
+
* @remarks
|
|
24381
|
+
* The instance type of the instance.
|
|
24382
|
+
*
|
|
24383
|
+
* @example
|
|
24384
|
+
* mysql.x4.xlarge.6cm
|
|
24385
|
+
*/
|
|
23803
24386
|
instanceType?: string;
|
|
24387
|
+
/**
|
|
24388
|
+
* @remarks
|
|
24389
|
+
* The billing method for network usage. Valid values:
|
|
24390
|
+
*
|
|
24391
|
+
* * **PayByBandwidth**: pay-by-bandwidth
|
|
24392
|
+
* * **PayByTraffic**: pay-by-data-transfer
|
|
24393
|
+
*
|
|
24394
|
+
* > If the **pay-by-traffic** billing method is used for network usage, the maximum inbound and outbound bandwidths are used as the upper limits of bandwidths instead of guaranteed performance specifications. In scenarios in which demands exceed resource supplies, the maximum bandwidths may not be reached. If you want guaranteed bandwidths for your instance, use the **pay-by-bandwidth** billing method for network usage.
|
|
24395
|
+
*
|
|
24396
|
+
* @example
|
|
24397
|
+
* PayByTraffic
|
|
24398
|
+
*/
|
|
23804
24399
|
internetChargeType?: string;
|
|
24400
|
+
/**
|
|
24401
|
+
* @remarks
|
|
24402
|
+
* The maximum inbound bandwidth from the Internet. Unit: Mbit/s.
|
|
24403
|
+
*
|
|
24404
|
+
* @example
|
|
24405
|
+
* 1
|
|
24406
|
+
*/
|
|
23805
24407
|
internetMaxBandwidthIn?: number;
|
|
24408
|
+
/**
|
|
24409
|
+
* @remarks
|
|
24410
|
+
* The maximum outbound bandwidth to the Internet. Unit: Mbit/s.
|
|
24411
|
+
*
|
|
24412
|
+
* @example
|
|
24413
|
+
* 5
|
|
24414
|
+
*/
|
|
23806
24415
|
internetMaxBandwidthOut?: number;
|
|
24416
|
+
/**
|
|
24417
|
+
* @remarks
|
|
24418
|
+
* Indicates whether the instance is I/O optimized.
|
|
24419
|
+
*
|
|
24420
|
+
* * **optimized**: The instance is I/O optimized.
|
|
24421
|
+
* * **none**: The instance is not I/O optimized.
|
|
24422
|
+
*
|
|
24423
|
+
* @example
|
|
24424
|
+
* optimized
|
|
24425
|
+
*/
|
|
23807
24426
|
ioOptimized?: string;
|
|
24427
|
+
/**
|
|
24428
|
+
* @remarks
|
|
24429
|
+
* The name of the key pair.
|
|
24430
|
+
*
|
|
24431
|
+
* @example
|
|
24432
|
+
* test_01
|
|
24433
|
+
*/
|
|
23808
24434
|
keyPairName?: string;
|
|
24435
|
+
/**
|
|
24436
|
+
* @remarks
|
|
24437
|
+
* The memory capacity of the instance. Unit: MiB.
|
|
24438
|
+
*
|
|
24439
|
+
* @example
|
|
24440
|
+
* 8192
|
|
24441
|
+
*/
|
|
23809
24442
|
memory?: number;
|
|
24443
|
+
/**
|
|
24444
|
+
* @remarks
|
|
24445
|
+
* The reasons why the instance is locked.
|
|
24446
|
+
*/
|
|
23810
24447
|
operationLocks?: DescribeRCInstanceAttributeResponseBodyOperationLocks;
|
|
24448
|
+
/**
|
|
24449
|
+
* @remarks
|
|
24450
|
+
* The public IP address of the instance.
|
|
24451
|
+
*/
|
|
23811
24452
|
publicIpAddress?: DescribeRCInstanceAttributeResponseBodyPublicIpAddress;
|
|
24453
|
+
/**
|
|
24454
|
+
* @remarks
|
|
24455
|
+
* The region ID.
|
|
24456
|
+
*
|
|
24457
|
+
* @example
|
|
24458
|
+
* cn-hangzhou
|
|
24459
|
+
*/
|
|
23812
24460
|
regionId?: string;
|
|
24461
|
+
/**
|
|
24462
|
+
* @remarks
|
|
24463
|
+
* The request ID.
|
|
24464
|
+
*
|
|
24465
|
+
* @example
|
|
24466
|
+
* EA2D4F34-01A7-46EB-A339-D80882135206
|
|
24467
|
+
*/
|
|
23813
24468
|
requestId?: string;
|
|
24469
|
+
/**
|
|
24470
|
+
* @remarks
|
|
24471
|
+
* The security groups.
|
|
24472
|
+
*/
|
|
23814
24473
|
securityGroupIds?: DescribeRCInstanceAttributeResponseBodySecurityGroupIds;
|
|
24474
|
+
/**
|
|
24475
|
+
* @remarks
|
|
24476
|
+
* The serial number of the instance.
|
|
24477
|
+
*
|
|
24478
|
+
* @example
|
|
24479
|
+
* b076f6ff-46d1-4234-a608-4e951ed6****
|
|
24480
|
+
*/
|
|
23815
24481
|
serialNumber?: string;
|
|
24482
|
+
/**
|
|
24483
|
+
* @remarks
|
|
24484
|
+
* The instance status. Valid values:
|
|
24485
|
+
*
|
|
24486
|
+
* * **Pending**
|
|
24487
|
+
* * **Running**
|
|
24488
|
+
* * **Starting**
|
|
24489
|
+
* * **Stopping**
|
|
24490
|
+
* * **Stopped**
|
|
24491
|
+
*
|
|
24492
|
+
* @example
|
|
24493
|
+
* Running
|
|
24494
|
+
*/
|
|
23816
24495
|
status?: string;
|
|
24496
|
+
/**
|
|
24497
|
+
* @remarks
|
|
24498
|
+
* Indicates whether the billing of the instance continues after the instance is stopped. Valid values:
|
|
24499
|
+
*
|
|
24500
|
+
* * **KeepCharging**: The billing of the instance continues after the instance is stopped, and resources are retained for the instance.
|
|
24501
|
+
* * **StopCharging**: The billing of the instance stops after the instance is stopped. After the instance is stopped, resources such as CPU cores, memory resources, and public IP address are released. The instance may be unable to restart if some required resources are out of stock in the current region.
|
|
24502
|
+
* * **Not-applicable**: The No Fees for Stopped Instances feature is not supported for the instance.
|
|
24503
|
+
*
|
|
24504
|
+
* @example
|
|
24505
|
+
* Not-applicable
|
|
24506
|
+
*/
|
|
23817
24507
|
stoppedMode?: string;
|
|
24508
|
+
/**
|
|
24509
|
+
* @remarks
|
|
24510
|
+
* The virtual LAN (VLAN) ID of the instance.
|
|
24511
|
+
*
|
|
24512
|
+
* > This parameter will be deprecated. We recommend that you use other parameters to ensure compatibility.
|
|
24513
|
+
*
|
|
24514
|
+
* @example
|
|
24515
|
+
* None
|
|
24516
|
+
*/
|
|
23818
24517
|
vlanId?: string;
|
|
23819
24518
|
/**
|
|
24519
|
+
* @remarks
|
|
24520
|
+
* The virtual private cloud (VPC) attributes of the instance.
|
|
24521
|
+
*
|
|
23820
24522
|
* **if can be null:**
|
|
23821
24523
|
* true
|
|
23822
24524
|
*/
|
|
23823
24525
|
vpcAttributes?: DescribeRCInstanceAttributeResponseBodyVpcAttributes;
|
|
24526
|
+
/**
|
|
24527
|
+
* @remarks
|
|
24528
|
+
* The zone ID.
|
|
24529
|
+
*
|
|
24530
|
+
* @example
|
|
24531
|
+
* cn-hangzhou-b
|
|
24532
|
+
*/
|
|
23824
24533
|
zoneId?: string;
|
|
23825
24534
|
static names(): {
|
|
23826
24535
|
[key: string]: string;
|
|
@@ -23849,10 +24558,53 @@ export declare class DescribeRCInstanceAttributeResponse extends $tea.Model {
|
|
|
23849
24558
|
});
|
|
23850
24559
|
}
|
|
23851
24560
|
export declare class DescribeRCInstancesRequest extends $tea.Model {
|
|
24561
|
+
/**
|
|
24562
|
+
* @remarks
|
|
24563
|
+
* The instance ID.
|
|
24564
|
+
*
|
|
24565
|
+
* @example
|
|
24566
|
+
* rm-2ze704f*****
|
|
24567
|
+
*/
|
|
23852
24568
|
instanceId?: string;
|
|
24569
|
+
/**
|
|
24570
|
+
* @remarks
|
|
24571
|
+
* The page number.
|
|
24572
|
+
*
|
|
24573
|
+
* Page starts from page 1.
|
|
24574
|
+
*
|
|
24575
|
+
* Default value: 1.
|
|
24576
|
+
*
|
|
24577
|
+
* @example
|
|
24578
|
+
* 1
|
|
24579
|
+
*/
|
|
23853
24580
|
pageNumber?: number;
|
|
24581
|
+
/**
|
|
24582
|
+
* @remarks
|
|
24583
|
+
* The number of entries per page.
|
|
24584
|
+
*
|
|
24585
|
+
* Maximum value: 100.
|
|
24586
|
+
*
|
|
24587
|
+
* Default value: 10.
|
|
24588
|
+
*
|
|
24589
|
+
* @example
|
|
24590
|
+
* 10
|
|
24591
|
+
*/
|
|
23854
24592
|
pageSize?: number;
|
|
24593
|
+
/**
|
|
24594
|
+
* @remarks
|
|
24595
|
+
* The region ID.
|
|
24596
|
+
*
|
|
24597
|
+
* @example
|
|
24598
|
+
* cn-hangzhou
|
|
24599
|
+
*/
|
|
23855
24600
|
regionId?: string;
|
|
24601
|
+
/**
|
|
24602
|
+
* @remarks
|
|
24603
|
+
* The virtual private cloud (VPC) ID.
|
|
24604
|
+
*
|
|
24605
|
+
* @example
|
|
24606
|
+
* vpc-uf6f7l4fg90****
|
|
24607
|
+
*/
|
|
23856
24608
|
vpcId?: string;
|
|
23857
24609
|
static names(): {
|
|
23858
24610
|
[key: string]: string;
|
|
@@ -23865,10 +24617,42 @@ export declare class DescribeRCInstancesRequest extends $tea.Model {
|
|
|
23865
24617
|
});
|
|
23866
24618
|
}
|
|
23867
24619
|
export declare class DescribeRCInstancesResponseBody extends $tea.Model {
|
|
24620
|
+
/**
|
|
24621
|
+
* @remarks
|
|
24622
|
+
* The page number.
|
|
24623
|
+
*
|
|
24624
|
+
* @example
|
|
24625
|
+
* 1
|
|
24626
|
+
*/
|
|
23868
24627
|
pageNumber?: number;
|
|
24628
|
+
/**
|
|
24629
|
+
* @remarks
|
|
24630
|
+
* The number of entries per page.
|
|
24631
|
+
*
|
|
24632
|
+
* @example
|
|
24633
|
+
* 10
|
|
24634
|
+
*/
|
|
23869
24635
|
pageSize?: number;
|
|
24636
|
+
/**
|
|
24637
|
+
* @remarks
|
|
24638
|
+
* The details of the instance.
|
|
24639
|
+
*/
|
|
23870
24640
|
RCInstances?: DescribeRCInstancesResponseBodyRCInstances[];
|
|
24641
|
+
/**
|
|
24642
|
+
* @remarks
|
|
24643
|
+
* The request ID.
|
|
24644
|
+
*
|
|
24645
|
+
* @example
|
|
24646
|
+
* E9DD55F4-1A5F-48CA-BA57-DFB3CA8C4C34
|
|
24647
|
+
*/
|
|
23871
24648
|
requestId?: string;
|
|
24649
|
+
/**
|
|
24650
|
+
* @remarks
|
|
24651
|
+
* The total number of entries returned.
|
|
24652
|
+
*
|
|
24653
|
+
* @example
|
|
24654
|
+
* 2
|
|
24655
|
+
*/
|
|
23872
24656
|
totalCount?: number;
|
|
23873
24657
|
static names(): {
|
|
23874
24658
|
[key: string]: string;
|
|
@@ -23897,18 +24681,89 @@ export declare class DescribeRCInstancesResponse extends $tea.Model {
|
|
|
23897
24681
|
});
|
|
23898
24682
|
}
|
|
23899
24683
|
export declare class DescribeRCMetricListRequest extends $tea.Model {
|
|
24684
|
+
/**
|
|
24685
|
+
* @remarks
|
|
24686
|
+
* The end of the time range to query. The end time must be later than the start time. Example: `2024-08-06 10:15:00`.
|
|
24687
|
+
*
|
|
24688
|
+
* @example
|
|
24689
|
+
* 2024-08-06 10:15:00
|
|
24690
|
+
*/
|
|
23900
24691
|
endTime?: string;
|
|
24692
|
+
/**
|
|
24693
|
+
* @remarks
|
|
24694
|
+
* The reserved parameter.
|
|
24695
|
+
*
|
|
24696
|
+
* @example
|
|
24697
|
+
* None
|
|
24698
|
+
*/
|
|
23901
24699
|
express?: string;
|
|
24700
|
+
/**
|
|
24701
|
+
* @remarks
|
|
24702
|
+
* The instance ID.
|
|
24703
|
+
*
|
|
24704
|
+
* @example
|
|
24705
|
+
* rc-dh2jf9n6j4s14926****
|
|
24706
|
+
*/
|
|
23902
24707
|
instanceId?: string;
|
|
24708
|
+
/**
|
|
24709
|
+
* @remarks
|
|
24710
|
+
* The number of entries per page.
|
|
24711
|
+
*
|
|
24712
|
+
* Default value: 1000.
|
|
24713
|
+
*
|
|
24714
|
+
* > The maximum value of the Length parameter in a request is 1440.
|
|
24715
|
+
*
|
|
24716
|
+
* @example
|
|
24717
|
+
* 1000
|
|
24718
|
+
*/
|
|
23903
24719
|
length?: string;
|
|
23904
24720
|
/**
|
|
23905
24721
|
* @remarks
|
|
24722
|
+
* The metric that you want to use. For more information, see [CloudMonitor metrics](javascript:void\\(0\\)).
|
|
24723
|
+
*
|
|
23906
24724
|
* This parameter is required.
|
|
24725
|
+
*
|
|
24726
|
+
* @example
|
|
24727
|
+
* CPUUtilization
|
|
23907
24728
|
*/
|
|
23908
24729
|
metricName?: string;
|
|
24730
|
+
/**
|
|
24731
|
+
* @remarks
|
|
24732
|
+
* The pagination token.
|
|
24733
|
+
*
|
|
24734
|
+
* @example
|
|
24735
|
+
* 6178f1825f9fb76ce0b5e8707e68181f
|
|
24736
|
+
*/
|
|
23909
24737
|
nextToken?: string;
|
|
24738
|
+
/**
|
|
24739
|
+
* @remarks
|
|
24740
|
+
* The statistical period of the monitoring data.
|
|
24741
|
+
*
|
|
24742
|
+
* Set the value to 60 or an integer multiple of 60.
|
|
24743
|
+
*
|
|
24744
|
+
* Unit: seconds.
|
|
24745
|
+
*
|
|
24746
|
+
* Default value: 60.
|
|
24747
|
+
*
|
|
24748
|
+
* @example
|
|
24749
|
+
* 60
|
|
24750
|
+
*/
|
|
23910
24751
|
period?: string;
|
|
24752
|
+
/**
|
|
24753
|
+
* @remarks
|
|
24754
|
+
* The region ID.
|
|
24755
|
+
*
|
|
24756
|
+
* @example
|
|
24757
|
+
* cn-hangzhou
|
|
24758
|
+
*/
|
|
23911
24759
|
regionId?: string;
|
|
24760
|
+
/**
|
|
24761
|
+
* @remarks
|
|
24762
|
+
* The beginning of the time range to query. Example: `2024-08-06 10:05:00`.
|
|
24763
|
+
*
|
|
24764
|
+
* @example
|
|
24765
|
+
* 2024-08-06 10:05:00
|
|
24766
|
+
*/
|
|
23912
24767
|
startTime?: string;
|
|
23913
24768
|
static names(): {
|
|
23914
24769
|
[key: string]: string;
|
|
@@ -23921,12 +24776,66 @@ export declare class DescribeRCMetricListRequest extends $tea.Model {
|
|
|
23921
24776
|
});
|
|
23922
24777
|
}
|
|
23923
24778
|
export declare class DescribeRCMetricListResponseBody extends $tea.Model {
|
|
24779
|
+
/**
|
|
24780
|
+
* @remarks
|
|
24781
|
+
* The HTTP status code returned.
|
|
24782
|
+
*
|
|
24783
|
+
* @example
|
|
24784
|
+
* 200
|
|
24785
|
+
*/
|
|
23924
24786
|
code?: string;
|
|
24787
|
+
/**
|
|
24788
|
+
* @remarks
|
|
24789
|
+
* The monitoring data.
|
|
24790
|
+
*
|
|
24791
|
+
* @example
|
|
24792
|
+
* [{\\"timestamp\\":1722909960000,\\"instanceId\\":\\"rc-dh2jf9n6j4s14926****\\",\\"userId\\":\\"1695619988087373\\",\\"Minimum\\":0.097,\\"Maximum\\":0.097,\\"Average\\":0.097},{\\"timestamp\\":1722910020000,\\"instanceId\\":\\"rc-dh2jf9n6j4s14926****\\",\\"userId\\":\\"1695619988087373\\",\\"Minimum\\":0.093,\\"Maximum\\":0.093,\\"Average\\":0.093}]
|
|
24793
|
+
*/
|
|
23925
24794
|
datapoints?: string;
|
|
24795
|
+
/**
|
|
24796
|
+
* @remarks
|
|
24797
|
+
* The message that is returned for the request.
|
|
24798
|
+
*
|
|
24799
|
+
* > If the request is successful, **Successful** is returned. If the request fails, an error message that contains information such as an error code is returned.
|
|
24800
|
+
*
|
|
24801
|
+
* @example
|
|
24802
|
+
* successful
|
|
24803
|
+
*/
|
|
23926
24804
|
message?: string;
|
|
24805
|
+
/**
|
|
24806
|
+
* @remarks
|
|
24807
|
+
* The pagination token.
|
|
24808
|
+
*
|
|
24809
|
+
* @example
|
|
24810
|
+
* 6178f1825f9fb76ce0b5e8707e68181f
|
|
24811
|
+
*/
|
|
23927
24812
|
nextToken?: string;
|
|
24813
|
+
/**
|
|
24814
|
+
* @remarks
|
|
24815
|
+
* The statistical period of the monitoring data.
|
|
24816
|
+
*
|
|
24817
|
+
* @example
|
|
24818
|
+
* 60
|
|
24819
|
+
*/
|
|
23928
24820
|
period?: string;
|
|
24821
|
+
/**
|
|
24822
|
+
* @remarks
|
|
24823
|
+
* The request ID.
|
|
24824
|
+
*
|
|
24825
|
+
* @example
|
|
24826
|
+
* EA2D4F34-01A7-46EB-A339-D80882135206
|
|
24827
|
+
*/
|
|
23929
24828
|
requestId?: string;
|
|
24829
|
+
/**
|
|
24830
|
+
* @remarks
|
|
24831
|
+
* Indicates whether the request was successful. Valid values:
|
|
24832
|
+
*
|
|
24833
|
+
* * **true**
|
|
24834
|
+
* * **false**
|
|
24835
|
+
*
|
|
24836
|
+
* @example
|
|
24837
|
+
* true
|
|
24838
|
+
*/
|
|
23930
24839
|
success?: boolean;
|
|
23931
24840
|
static names(): {
|
|
23932
24841
|
[key: string]: string;
|
|
@@ -24437,7 +25346,7 @@ export declare class DescribeReplicationLinkLogsRequest extends $tea.Model {
|
|
|
24437
25346
|
pageSize?: number;
|
|
24438
25347
|
/**
|
|
24439
25348
|
* @remarks
|
|
24440
|
-
* The ID of the task
|
|
25349
|
+
* The task ID. You must set this parameter to the ID of the task that you create by calling the **CreateReplicationLink** operation for the disaster recovery instance.
|
|
24441
25350
|
*
|
|
24442
25351
|
* @example
|
|
24443
25352
|
* 8413252
|
|
@@ -24445,7 +25354,7 @@ export declare class DescribeReplicationLinkLogsRequest extends $tea.Model {
|
|
|
24445
25354
|
taskId?: number;
|
|
24446
25355
|
/**
|
|
24447
25356
|
* @remarks
|
|
24448
|
-
* The name
|
|
25357
|
+
* The task name. You must set this parameter to the name of the task that you create by calling the **CreateReplicationLink** operation for the disaster recovery instance.
|
|
24449
25358
|
*
|
|
24450
25359
|
* @example
|
|
24451
25360
|
* test01
|
|
@@ -26830,7 +27739,7 @@ export declare class DescribeVSwitchesRequest extends $tea.Model {
|
|
|
26830
27739
|
securityToken?: string;
|
|
26831
27740
|
/**
|
|
26832
27741
|
* @remarks
|
|
26833
|
-
* The ID of the VPC to which the
|
|
27742
|
+
* The ID of the VPC to which the vSwitch belongs.
|
|
26834
27743
|
*
|
|
26835
27744
|
* > You must configure this parameter or **DedicatedHostGroupId**.
|
|
26836
27745
|
*
|
|
@@ -26840,7 +27749,7 @@ export declare class DescribeVSwitchesRequest extends $tea.Model {
|
|
|
26840
27749
|
vpcId?: string;
|
|
26841
27750
|
/**
|
|
26842
27751
|
* @remarks
|
|
26843
|
-
* The ID of the zone to which the
|
|
27752
|
+
* The ID of the zone to which the vSwitch belongs. You can call the DescribeAvailableZones operation to query zone IDs. If you specify this parameter, the query results are filtered based on the value of this parameter and only the details of the VSwitch that is deployed in the specified zone are returned.
|
|
26844
27753
|
*
|
|
26845
27754
|
* @example
|
|
26846
27755
|
* cn-hangzhou-i
|
|
@@ -28102,6 +29011,19 @@ export declare class ListClassesRequest extends $tea.Model {
|
|
|
28102
29011
|
* rm-uf6wjk5xxxxxxx
|
|
28103
29012
|
*/
|
|
28104
29013
|
DBInstanceId?: string;
|
|
29014
|
+
/**
|
|
29015
|
+
* @remarks
|
|
29016
|
+
* The database engine of the instance. Valid values:
|
|
29017
|
+
*
|
|
29018
|
+
* * **MySQL**
|
|
29019
|
+
* * **SQLServer**
|
|
29020
|
+
* * **PostgreSQL**
|
|
29021
|
+
* * **MariaDB**
|
|
29022
|
+
*
|
|
29023
|
+
* @example
|
|
29024
|
+
* MySQL
|
|
29025
|
+
*/
|
|
29026
|
+
engine?: string;
|
|
28105
29027
|
/**
|
|
28106
29028
|
* @remarks
|
|
28107
29029
|
* The type of order that you want to query. Valid values:
|
|
@@ -29128,6 +30050,102 @@ export declare class ModifyADInfoResponse extends $tea.Model {
|
|
|
29128
30050
|
[key: string]: any;
|
|
29129
30051
|
});
|
|
29130
30052
|
}
|
|
30053
|
+
export declare class ModifyAccountCheckPolicyRequest extends $tea.Model {
|
|
30054
|
+
/**
|
|
30055
|
+
* @remarks
|
|
30056
|
+
* The account username.
|
|
30057
|
+
*
|
|
30058
|
+
* This parameter is required.
|
|
30059
|
+
*
|
|
30060
|
+
* @example
|
|
30061
|
+
* DatabaseTest
|
|
30062
|
+
*/
|
|
30063
|
+
accountName?: string;
|
|
30064
|
+
/**
|
|
30065
|
+
* @remarks
|
|
30066
|
+
* Specifies whether to apply the password policy
|
|
30067
|
+
*
|
|
30068
|
+
* This parameter is required.
|
|
30069
|
+
*
|
|
30070
|
+
* @example
|
|
30071
|
+
* true
|
|
30072
|
+
*/
|
|
30073
|
+
checkPolicy?: boolean;
|
|
30074
|
+
/**
|
|
30075
|
+
* @remarks
|
|
30076
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters. If you do not specify this parameter, the system automatically uses the request ID as the client token. The request ID may be different for each request.
|
|
30077
|
+
*
|
|
30078
|
+
* @example
|
|
30079
|
+
* ETnLKlblzczshOTUbOC****
|
|
30080
|
+
*/
|
|
30081
|
+
clientToken?: string;
|
|
30082
|
+
/**
|
|
30083
|
+
* @remarks
|
|
30084
|
+
* The instance ID.
|
|
30085
|
+
*
|
|
30086
|
+
* This parameter is required.
|
|
30087
|
+
*
|
|
30088
|
+
* @example
|
|
30089
|
+
* rm-uf6wjk5xxxxxxxxxx
|
|
30090
|
+
*/
|
|
30091
|
+
DBInstanceId?: string;
|
|
30092
|
+
ownerAccount?: string;
|
|
30093
|
+
ownerId?: number;
|
|
30094
|
+
/**
|
|
30095
|
+
* @remarks
|
|
30096
|
+
* The resource group ID. For more information about resource groups, see related documentation.
|
|
30097
|
+
*
|
|
30098
|
+
* @example
|
|
30099
|
+
* rg-acfmy****
|
|
30100
|
+
*/
|
|
30101
|
+
resourceGroupId?: string;
|
|
30102
|
+
resourceOwnerAccount?: string;
|
|
30103
|
+
resourceOwnerId?: number;
|
|
30104
|
+
static names(): {
|
|
30105
|
+
[key: string]: string;
|
|
30106
|
+
};
|
|
30107
|
+
static types(): {
|
|
30108
|
+
[key: string]: any;
|
|
30109
|
+
};
|
|
30110
|
+
constructor(map?: {
|
|
30111
|
+
[key: string]: any;
|
|
30112
|
+
});
|
|
30113
|
+
}
|
|
30114
|
+
export declare class ModifyAccountCheckPolicyResponseBody extends $tea.Model {
|
|
30115
|
+
/**
|
|
30116
|
+
* @remarks
|
|
30117
|
+
* Id of the request
|
|
30118
|
+
*
|
|
30119
|
+
* @example
|
|
30120
|
+
* 866F5EB8-4650-4061-87F0-379F6F968BCE
|
|
30121
|
+
*/
|
|
30122
|
+
requestId?: string;
|
|
30123
|
+
static names(): {
|
|
30124
|
+
[key: string]: string;
|
|
30125
|
+
};
|
|
30126
|
+
static types(): {
|
|
30127
|
+
[key: string]: any;
|
|
30128
|
+
};
|
|
30129
|
+
constructor(map?: {
|
|
30130
|
+
[key: string]: any;
|
|
30131
|
+
});
|
|
30132
|
+
}
|
|
30133
|
+
export declare class ModifyAccountCheckPolicyResponse extends $tea.Model {
|
|
30134
|
+
headers?: {
|
|
30135
|
+
[key: string]: string;
|
|
30136
|
+
};
|
|
30137
|
+
statusCode?: number;
|
|
30138
|
+
body?: ModifyAccountCheckPolicyResponseBody;
|
|
30139
|
+
static names(): {
|
|
30140
|
+
[key: string]: string;
|
|
30141
|
+
};
|
|
30142
|
+
static types(): {
|
|
30143
|
+
[key: string]: any;
|
|
30144
|
+
};
|
|
30145
|
+
constructor(map?: {
|
|
30146
|
+
[key: string]: any;
|
|
30147
|
+
});
|
|
30148
|
+
}
|
|
29131
30149
|
export declare class ModifyAccountDescriptionRequest extends $tea.Model {
|
|
29132
30150
|
/**
|
|
29133
30151
|
* @remarks
|
|
@@ -29223,6 +30241,7 @@ export declare class ModifyAccountMaskingPrivilegeRequest extends $tea.Model {
|
|
|
29223
30241
|
* This parameter is required.
|
|
29224
30242
|
*/
|
|
29225
30243
|
privilege?: string;
|
|
30244
|
+
regionId?: string;
|
|
29226
30245
|
resourceOwnerAccount?: string;
|
|
29227
30246
|
resourceOwnerId?: number;
|
|
29228
30247
|
/**
|
|
@@ -29273,6 +30292,98 @@ export declare class ModifyAccountMaskingPrivilegeResponse extends $tea.Model {
|
|
|
29273
30292
|
[key: string]: any;
|
|
29274
30293
|
});
|
|
29275
30294
|
}
|
|
30295
|
+
export declare class ModifyAccountSecurityPolicyRequest extends $tea.Model {
|
|
30296
|
+
/**
|
|
30297
|
+
* @remarks
|
|
30298
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
30299
|
+
*
|
|
30300
|
+
* @example
|
|
30301
|
+
* ETnLKlblzczshOTUbOCz****
|
|
30302
|
+
*/
|
|
30303
|
+
clientToken?: string;
|
|
30304
|
+
/**
|
|
30305
|
+
* @remarks
|
|
30306
|
+
* The instance ID. You can call the [DescribeDBInstances](https://help.aliyun.com/document_detail/2628785.html) operation to query the instance ID.
|
|
30307
|
+
*
|
|
30308
|
+
* This parameter is required.
|
|
30309
|
+
*
|
|
30310
|
+
* @example
|
|
30311
|
+
* rm-bp1ibu****
|
|
30312
|
+
*/
|
|
30313
|
+
DBInstanceId?: string;
|
|
30314
|
+
/**
|
|
30315
|
+
* @remarks
|
|
30316
|
+
* The custom password policy for the account of the ApsaraDB RDS for SQL Server instance. The following policies are supported:
|
|
30317
|
+
*
|
|
30318
|
+
* * `{"account security policy": {"MaximumPasswordAge": Specify the maximum password age}}`: You can configure only the maximum password age. After the maximum password age is reached, you must change the password.
|
|
30319
|
+
* * `{"accountSecurityPolicy": {"MaximumPasswordAge": Specify the minimum password age}}`: You can configure only the minimum password age. During the specified period, you cannot change the password.
|
|
30320
|
+
* * `{"accountSecurityPolicy": {"MaximumPasswordAge": Specify the maximum password age, "MinimumPasswordAge": Specify the minimum password age}}`: You can configure the maximum and minimum password age at the same time.
|
|
30321
|
+
*
|
|
30322
|
+
* > The minimum password age cannot be greater than the maximum password age. Valid values for the minimum password age: 0 to 998. Valid values for the maximum password age: 0 to 999.
|
|
30323
|
+
*
|
|
30324
|
+
* This parameter is required.
|
|
30325
|
+
*
|
|
30326
|
+
* @example
|
|
30327
|
+
* {"accountSecurityPolicy": {"MaximumPasswordAge": 30, "MinimumPasswordAge": 20}}
|
|
30328
|
+
*/
|
|
30329
|
+
groupPolicy?: string;
|
|
30330
|
+
ownerAccount?: string;
|
|
30331
|
+
ownerId?: number;
|
|
30332
|
+
/**
|
|
30333
|
+
* @remarks
|
|
30334
|
+
* The resource group ID.
|
|
30335
|
+
*
|
|
30336
|
+
* @example
|
|
30337
|
+
* rg-acfmy****
|
|
30338
|
+
*/
|
|
30339
|
+
resourceGroupId?: string;
|
|
30340
|
+
resourceOwnerAccount?: string;
|
|
30341
|
+
resourceOwnerId?: number;
|
|
30342
|
+
static names(): {
|
|
30343
|
+
[key: string]: string;
|
|
30344
|
+
};
|
|
30345
|
+
static types(): {
|
|
30346
|
+
[key: string]: any;
|
|
30347
|
+
};
|
|
30348
|
+
constructor(map?: {
|
|
30349
|
+
[key: string]: any;
|
|
30350
|
+
});
|
|
30351
|
+
}
|
|
30352
|
+
export declare class ModifyAccountSecurityPolicyResponseBody extends $tea.Model {
|
|
30353
|
+
/**
|
|
30354
|
+
* @remarks
|
|
30355
|
+
* The request ID.
|
|
30356
|
+
*
|
|
30357
|
+
* @example
|
|
30358
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
30359
|
+
*/
|
|
30360
|
+
requestId?: string;
|
|
30361
|
+
static names(): {
|
|
30362
|
+
[key: string]: string;
|
|
30363
|
+
};
|
|
30364
|
+
static types(): {
|
|
30365
|
+
[key: string]: any;
|
|
30366
|
+
};
|
|
30367
|
+
constructor(map?: {
|
|
30368
|
+
[key: string]: any;
|
|
30369
|
+
});
|
|
30370
|
+
}
|
|
30371
|
+
export declare class ModifyAccountSecurityPolicyResponse extends $tea.Model {
|
|
30372
|
+
headers?: {
|
|
30373
|
+
[key: string]: string;
|
|
30374
|
+
};
|
|
30375
|
+
statusCode?: number;
|
|
30376
|
+
body?: ModifyAccountSecurityPolicyResponseBody;
|
|
30377
|
+
static names(): {
|
|
30378
|
+
[key: string]: string;
|
|
30379
|
+
};
|
|
30380
|
+
static types(): {
|
|
30381
|
+
[key: string]: any;
|
|
30382
|
+
};
|
|
30383
|
+
constructor(map?: {
|
|
30384
|
+
[key: string]: any;
|
|
30385
|
+
});
|
|
30386
|
+
}
|
|
29276
30387
|
export declare class ModifyActionEventPolicyRequest extends $tea.Model {
|
|
29277
30388
|
/**
|
|
29278
30389
|
* @remarks
|
|
@@ -32039,6 +33150,18 @@ export declare class ModifyDBInstanceSecurityGroupRuleResponse extends $tea.Mode
|
|
|
32039
33150
|
});
|
|
32040
33151
|
}
|
|
32041
33152
|
export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
33153
|
+
/**
|
|
33154
|
+
* @remarks
|
|
33155
|
+
* Specifies whether to upgrade the major engine version of the instance. Valid values:
|
|
33156
|
+
*
|
|
33157
|
+
* * **true**
|
|
33158
|
+
* * **false** (default)
|
|
33159
|
+
*
|
|
33160
|
+
* >When you upgrade the major engine version of an ApsaraDB RDS for SQL Server instance, set this parameter to true. When you upgrade the major engine version, you must also specify required parameters such as DBInstanceId, EngineVersion, DBInstanceClass, and Category, and optional parameters such as ZoneId, ZoneIdSlave1, and VSwitchId.
|
|
33161
|
+
*
|
|
33162
|
+
* @example
|
|
33163
|
+
* false
|
|
33164
|
+
*/
|
|
32042
33165
|
allowMajorVersionUpgrade?: boolean;
|
|
32043
33166
|
/**
|
|
32044
33167
|
* @remarks
|
|
@@ -32076,9 +33199,9 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32076
33199
|
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
32077
33200
|
* * **serverless_ha**: RDS High-availability Edition for ApsaraDB RDS for SQL Server.
|
|
32078
33201
|
*
|
|
32079
|
-
* **
|
|
32080
33202
|
*
|
|
32081
|
-
*
|
|
33203
|
+
*
|
|
33204
|
+
* > If you set the **EngineVersion** parameter to an SQL Server version number, you must also specify this parameter.
|
|
32082
33205
|
*
|
|
32083
33206
|
* @example
|
|
32084
33207
|
* HighAvailability
|
|
@@ -32157,9 +33280,9 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32157
33280
|
* * **Up** (default): upgrades a subscription instance, or upgrades or downgrades a pay-as-you-go instance.
|
|
32158
33281
|
* * **Down**: downgrades a subscription instance.
|
|
32159
33282
|
* * **TempUpgrade**: performs auto scaling on a subscription instance that runs SQL Server. This value is required for auto scaling.
|
|
32160
|
-
* * **Serverless**: modifies the auto scaling settings of a serverless instance.
|
|
33283
|
+
* * **Serverless**: modifies the auto scaling settings of a serverless instance.
|
|
32161
33284
|
*
|
|
32162
|
-
* > If you specify only **DBInstanceStorageType**, you can leave Direction empty. For example, if you want to change only the storage type of the instance from standard SSD to ESSD, you do not need to specify Direction.
|
|
33285
|
+
* > If you specify only **DBInstanceStorageType**, you can leave Direction empty. For example, if you want to change only the storage type of the instance from standard SSD to Enterprise SSD (ESSD), you do not need to specify Direction.
|
|
32163
33286
|
*
|
|
32164
33287
|
* @example
|
|
32165
33288
|
* Up
|
|
@@ -32171,7 +33294,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32171
33294
|
*
|
|
32172
33295
|
* * **Immediate** (default): The effective time immediately takes effect.
|
|
32173
33296
|
* * **MaintainTime**: The effective time is within the maintenance window. For more information, see ModifyDBInstanceMaintainTime.
|
|
32174
|
-
* * **ScheduleTime**: The effective time takes effect at the point in time that you specify. The
|
|
33297
|
+
* * **ScheduleTime**: The effective time takes effect at the point in time that you specify. The value of ScheduleTime must be a specific point in time that is 12 hours later than the current time. In this case, The value of EffectiveTime is calculated by using the following formula: EffectiveTime = ScheduleTime + SwitchTime.
|
|
32175
33298
|
*
|
|
32176
33299
|
* @example
|
|
32177
33300
|
* MaintainTime
|
|
@@ -32275,6 +33398,18 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32275
33398
|
* 3
|
|
32276
33399
|
*/
|
|
32277
33400
|
usedTime?: number;
|
|
33401
|
+
/**
|
|
33402
|
+
* @remarks
|
|
33403
|
+
* The vSwitch ID. The vSwitch must belong to the zone that is specified by **ZoneId**.
|
|
33404
|
+
*
|
|
33405
|
+
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
33406
|
+
* * If you specify ZoneSlaveId1, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
33407
|
+
*
|
|
33408
|
+
* > When you upgrade the major engine version, if you want to specify a vSwitch or change the vSwitch for the RDS instance, you must also specify this parameter.
|
|
33409
|
+
*
|
|
33410
|
+
* @example
|
|
33411
|
+
* vsw-bp1oxflciovg9l7163lr7
|
|
33412
|
+
*/
|
|
32278
33413
|
vSwitchId?: string;
|
|
32279
33414
|
/**
|
|
32280
33415
|
* @remarks
|
|
@@ -32291,6 +33426,15 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32291
33426
|
* cn-hangzhou-b
|
|
32292
33427
|
*/
|
|
32293
33428
|
zoneId?: string;
|
|
33429
|
+
/**
|
|
33430
|
+
* @remarks
|
|
33431
|
+
* The zone ID of the secondary instance. If you set this parameter to the same value as the **ZoneId** parameter, the single-zone deployment method is used. If you set this parameter to a different value from the **ZoneId** parameter, the multi-zone deployment method is used.
|
|
33432
|
+
*
|
|
33433
|
+
* > If you must specify a secondary zone or change the secondary zone to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance, you must also specify this parameter.
|
|
33434
|
+
*
|
|
33435
|
+
* @example
|
|
33436
|
+
* cn-hangzhou-c
|
|
33437
|
+
*/
|
|
32294
33438
|
zoneIdSlave1?: string;
|
|
32295
33439
|
static names(): {
|
|
32296
33440
|
[key: string]: string;
|
|
@@ -32303,6 +33447,18 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
32303
33447
|
});
|
|
32304
33448
|
}
|
|
32305
33449
|
export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
33450
|
+
/**
|
|
33451
|
+
* @remarks
|
|
33452
|
+
* Specifies whether to upgrade the major engine version of the instance. Valid values:
|
|
33453
|
+
*
|
|
33454
|
+
* * **true**
|
|
33455
|
+
* * **false** (default)
|
|
33456
|
+
*
|
|
33457
|
+
* >When you upgrade the major engine version of an ApsaraDB RDS for SQL Server instance, set this parameter to true. When you upgrade the major engine version, you must also specify required parameters such as DBInstanceId, EngineVersion, DBInstanceClass, and Category, and optional parameters such as ZoneId, ZoneIdSlave1, and VSwitchId.
|
|
33458
|
+
*
|
|
33459
|
+
* @example
|
|
33460
|
+
* false
|
|
33461
|
+
*/
|
|
32306
33462
|
allowMajorVersionUpgrade?: boolean;
|
|
32307
33463
|
/**
|
|
32308
33464
|
* @remarks
|
|
@@ -32340,9 +33496,9 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32340
33496
|
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
32341
33497
|
* * **serverless_ha**: RDS High-availability Edition for ApsaraDB RDS for SQL Server.
|
|
32342
33498
|
*
|
|
32343
|
-
* **
|
|
32344
33499
|
*
|
|
32345
|
-
*
|
|
33500
|
+
*
|
|
33501
|
+
* > If you set the **EngineVersion** parameter to an SQL Server version number, you must also specify this parameter.
|
|
32346
33502
|
*
|
|
32347
33503
|
* @example
|
|
32348
33504
|
* HighAvailability
|
|
@@ -32421,9 +33577,9 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32421
33577
|
* * **Up** (default): upgrades a subscription instance, or upgrades or downgrades a pay-as-you-go instance.
|
|
32422
33578
|
* * **Down**: downgrades a subscription instance.
|
|
32423
33579
|
* * **TempUpgrade**: performs auto scaling on a subscription instance that runs SQL Server. This value is required for auto scaling.
|
|
32424
|
-
* * **Serverless**: modifies the auto scaling settings of a serverless instance.
|
|
33580
|
+
* * **Serverless**: modifies the auto scaling settings of a serverless instance.
|
|
32425
33581
|
*
|
|
32426
|
-
* > If you specify only **DBInstanceStorageType**, you can leave Direction empty. For example, if you want to change only the storage type of the instance from standard SSD to ESSD, you do not need to specify Direction.
|
|
33582
|
+
* > If you specify only **DBInstanceStorageType**, you can leave Direction empty. For example, if you want to change only the storage type of the instance from standard SSD to Enterprise SSD (ESSD), you do not need to specify Direction.
|
|
32427
33583
|
*
|
|
32428
33584
|
* @example
|
|
32429
33585
|
* Up
|
|
@@ -32435,7 +33591,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32435
33591
|
*
|
|
32436
33592
|
* * **Immediate** (default): The effective time immediately takes effect.
|
|
32437
33593
|
* * **MaintainTime**: The effective time is within the maintenance window. For more information, see ModifyDBInstanceMaintainTime.
|
|
32438
|
-
* * **ScheduleTime**: The effective time takes effect at the point in time that you specify. The
|
|
33594
|
+
* * **ScheduleTime**: The effective time takes effect at the point in time that you specify. The value of ScheduleTime must be a specific point in time that is 12 hours later than the current time. In this case, The value of EffectiveTime is calculated by using the following formula: EffectiveTime = ScheduleTime + SwitchTime.
|
|
32439
33595
|
*
|
|
32440
33596
|
* @example
|
|
32441
33597
|
* MaintainTime
|
|
@@ -32539,6 +33695,18 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32539
33695
|
* 3
|
|
32540
33696
|
*/
|
|
32541
33697
|
usedTime?: number;
|
|
33698
|
+
/**
|
|
33699
|
+
* @remarks
|
|
33700
|
+
* The vSwitch ID. The vSwitch must belong to the zone that is specified by **ZoneId**.
|
|
33701
|
+
*
|
|
33702
|
+
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
33703
|
+
* * If you specify ZoneSlaveId1, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
33704
|
+
*
|
|
33705
|
+
* > When you upgrade the major engine version, if you want to specify a vSwitch or change the vSwitch for the RDS instance, you must also specify this parameter.
|
|
33706
|
+
*
|
|
33707
|
+
* @example
|
|
33708
|
+
* vsw-bp1oxflciovg9l7163lr7
|
|
33709
|
+
*/
|
|
32542
33710
|
vSwitchId?: string;
|
|
32543
33711
|
/**
|
|
32544
33712
|
* @remarks
|
|
@@ -32555,6 +33723,15 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
32555
33723
|
* cn-hangzhou-b
|
|
32556
33724
|
*/
|
|
32557
33725
|
zoneId?: string;
|
|
33726
|
+
/**
|
|
33727
|
+
* @remarks
|
|
33728
|
+
* The zone ID of the secondary instance. If you set this parameter to the same value as the **ZoneId** parameter, the single-zone deployment method is used. If you set this parameter to a different value from the **ZoneId** parameter, the multi-zone deployment method is used.
|
|
33729
|
+
*
|
|
33730
|
+
* > If you must specify a secondary zone or change the secondary zone to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance, you must also specify this parameter.
|
|
33731
|
+
*
|
|
33732
|
+
* @example
|
|
33733
|
+
* cn-hangzhou-c
|
|
33734
|
+
*/
|
|
32558
33735
|
zoneIdSlave1?: string;
|
|
32559
33736
|
static names(): {
|
|
32560
33737
|
[key: string]: string;
|
|
@@ -33101,6 +34278,131 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
33101
34278
|
* common
|
|
33102
34279
|
*/
|
|
33103
34280
|
DBProxyInstanceType?: string;
|
|
34281
|
+
DBProxyNodes?: ModifyDBProxyRequestDBProxyNodes[];
|
|
34282
|
+
/**
|
|
34283
|
+
* @remarks
|
|
34284
|
+
* The network type of the instance. Set the value to **VPC**.
|
|
34285
|
+
*
|
|
34286
|
+
* > This parameter is required if you enable the database proxy feature for an ApsaraDB RDS for MySQL instance that uses cloud disks or an ApsaraDB RDS for PostgreSQL instance.
|
|
34287
|
+
*
|
|
34288
|
+
* @example
|
|
34289
|
+
* VPC
|
|
34290
|
+
*/
|
|
34291
|
+
instanceNetworkType?: string;
|
|
34292
|
+
ownerId?: number;
|
|
34293
|
+
/**
|
|
34294
|
+
* @remarks
|
|
34295
|
+
* Whether to enable connection keep. Valid values:
|
|
34296
|
+
*
|
|
34297
|
+
* - Enabled: enables connection keeping
|
|
34298
|
+
* - Disabled: disables connection hold
|
|
34299
|
+
*
|
|
34300
|
+
* > - This parameter is supported only for an ApsaraDB RDS for MySQL.
|
|
34301
|
+
* > - When you modify the connection persistence state, the value of **ConfigDBProxyService** is modify.
|
|
34302
|
+
*
|
|
34303
|
+
* @example
|
|
34304
|
+
* Enabled
|
|
34305
|
+
*/
|
|
34306
|
+
persistentConnectionStatus?: string;
|
|
34307
|
+
/**
|
|
34308
|
+
* @remarks
|
|
34309
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
34310
|
+
*
|
|
34311
|
+
* @example
|
|
34312
|
+
* cn-hangzhou
|
|
34313
|
+
*/
|
|
34314
|
+
regionId?: string;
|
|
34315
|
+
/**
|
|
34316
|
+
* @remarks
|
|
34317
|
+
* The resource group ID.
|
|
34318
|
+
*
|
|
34319
|
+
* @example
|
|
34320
|
+
* rg-acfmy*****
|
|
34321
|
+
*/
|
|
34322
|
+
resourceGroupId?: string;
|
|
34323
|
+
resourceOwnerAccount?: string;
|
|
34324
|
+
resourceOwnerId?: number;
|
|
34325
|
+
/**
|
|
34326
|
+
* @remarks
|
|
34327
|
+
* The ID of the virtual private cloud (VPC) to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the VPC ID.
|
|
34328
|
+
*
|
|
34329
|
+
* > This parameter is required if you enable the database proxy feature for an ApsaraDB RDS for MySQL instance that uses cloud disks or an ApsaraDB RDS for PostgreSQL instance.
|
|
34330
|
+
*
|
|
34331
|
+
* @example
|
|
34332
|
+
* vpc-xxxxxxxxxxxx
|
|
34333
|
+
*/
|
|
34334
|
+
VPCId?: string;
|
|
34335
|
+
/**
|
|
34336
|
+
* @remarks
|
|
34337
|
+
* The vSwitch ID of the instance. You can call the DescribeDBInstanceAttribute operation to query the vSwitch ID.
|
|
34338
|
+
*
|
|
34339
|
+
* > This parameter is required if you enable the database proxy feature for an ApsaraDB RDS for MySQL instance that uses cloud disks or an ApsaraDB RDS for PostgreSQL instance.
|
|
34340
|
+
*
|
|
34341
|
+
* @example
|
|
34342
|
+
* vsw-xxxxxxxxxxxx
|
|
34343
|
+
*/
|
|
34344
|
+
vSwitchId?: string;
|
|
34345
|
+
static names(): {
|
|
34346
|
+
[key: string]: string;
|
|
34347
|
+
};
|
|
34348
|
+
static types(): {
|
|
34349
|
+
[key: string]: any;
|
|
34350
|
+
};
|
|
34351
|
+
constructor(map?: {
|
|
34352
|
+
[key: string]: any;
|
|
34353
|
+
});
|
|
34354
|
+
}
|
|
34355
|
+
export declare class ModifyDBProxyShrinkRequest extends $tea.Model {
|
|
34356
|
+
/**
|
|
34357
|
+
* @remarks
|
|
34358
|
+
* Specifies whether to enable or disable the database proxy feature. Valid values:
|
|
34359
|
+
*
|
|
34360
|
+
* * **Startup**: enables the database proxy feature.
|
|
34361
|
+
* * **Shutdown**: disables the database proxy feature.
|
|
34362
|
+
*
|
|
34363
|
+
* This parameter is required.
|
|
34364
|
+
*
|
|
34365
|
+
* @example
|
|
34366
|
+
* Startup
|
|
34367
|
+
*/
|
|
34368
|
+
configDBProxyService?: string;
|
|
34369
|
+
/**
|
|
34370
|
+
* @remarks
|
|
34371
|
+
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
34372
|
+
*
|
|
34373
|
+
* This parameter is required.
|
|
34374
|
+
*
|
|
34375
|
+
* @example
|
|
34376
|
+
* rm-uf6wjk5xxxxxxx
|
|
34377
|
+
*/
|
|
34378
|
+
DBInstanceId?: string;
|
|
34379
|
+
/**
|
|
34380
|
+
* @remarks
|
|
34381
|
+
* A reserved parameter. You do not need to specify this parameter.
|
|
34382
|
+
*
|
|
34383
|
+
* @example
|
|
34384
|
+
* normal
|
|
34385
|
+
*/
|
|
34386
|
+
DBProxyEngineType?: string;
|
|
34387
|
+
/**
|
|
34388
|
+
* @remarks
|
|
34389
|
+
* The number of proxy instances that are enabled. Valid values: **1** to **16**. Default value: **1**.
|
|
34390
|
+
*
|
|
34391
|
+
* > The capability of the database proxy to process requests increases with the number of proxy instances that are enabled. You can monitor the load on the instance and specify an appropriate number of proxy instances based on the load monitoring data.
|
|
34392
|
+
*
|
|
34393
|
+
* @example
|
|
34394
|
+
* 1
|
|
34395
|
+
*/
|
|
34396
|
+
DBProxyInstanceNum?: string;
|
|
34397
|
+
/**
|
|
34398
|
+
* @remarks
|
|
34399
|
+
* This parameter is reserved. You do not need to specify this parameter.
|
|
34400
|
+
*
|
|
34401
|
+
* @example
|
|
34402
|
+
* common
|
|
34403
|
+
*/
|
|
34404
|
+
DBProxyInstanceType?: string;
|
|
34405
|
+
DBProxyNodesShrink?: string;
|
|
33104
34406
|
/**
|
|
33105
34407
|
* @remarks
|
|
33106
34408
|
* The network type of the instance. Set the value to **VPC**.
|
|
@@ -33302,6 +34604,8 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
33302
34604
|
* RWSplit
|
|
33303
34605
|
*/
|
|
33304
34606
|
dbEndpointType?: string;
|
|
34607
|
+
effectiveSpecificTime?: string;
|
|
34608
|
+
effectiveTime?: string;
|
|
33305
34609
|
ownerId?: number;
|
|
33306
34610
|
/**
|
|
33307
34611
|
* @remarks
|
|
@@ -33354,6 +34658,11 @@ export declare class ModifyDBProxyEndpointRequest extends $tea.Model {
|
|
|
33354
34658
|
regionId?: string;
|
|
33355
34659
|
resourceOwnerAccount?: string;
|
|
33356
34660
|
resourceOwnerId?: number;
|
|
34661
|
+
/**
|
|
34662
|
+
* @example
|
|
34663
|
+
* vsw-uf6adz52c2p****
|
|
34664
|
+
*/
|
|
34665
|
+
vSwitchId?: string;
|
|
33357
34666
|
static names(): {
|
|
33358
34667
|
[key: string]: string;
|
|
33359
34668
|
};
|
|
@@ -33556,6 +34865,108 @@ export declare class ModifyDBProxyInstanceRequest extends $tea.Model {
|
|
|
33556
34865
|
* DedicatedProxy
|
|
33557
34866
|
*/
|
|
33558
34867
|
DBProxyInstanceType?: string;
|
|
34868
|
+
DBProxyNodes?: ModifyDBProxyInstanceRequestDBProxyNodes[];
|
|
34869
|
+
/**
|
|
34870
|
+
* @remarks
|
|
34871
|
+
* The point in time that you want to specify. Specify the time in the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm:ss*Z format. The time must be in UTC.
|
|
34872
|
+
*
|
|
34873
|
+
* > If the **EffectiveTime** parameter is set to **SpecificTime**, you must specify this parameter.
|
|
34874
|
+
*
|
|
34875
|
+
* @example
|
|
34876
|
+
* 2019-07-10T13:15:12Z
|
|
34877
|
+
*/
|
|
34878
|
+
effectiveSpecificTime?: string;
|
|
34879
|
+
/**
|
|
34880
|
+
* @remarks
|
|
34881
|
+
* The effective time. Valid values:
|
|
34882
|
+
*
|
|
34883
|
+
* * **Immediate**: The effective time is immediate.
|
|
34884
|
+
* * **MaintainTime**: The effective time is within the maintenance window. For more information, see ModifyDBInstanceMaintainTime.
|
|
34885
|
+
* * **SpecificTime**: The effective time is a specified point in time.
|
|
34886
|
+
*
|
|
34887
|
+
* Default value: **MaintainTime**.
|
|
34888
|
+
*
|
|
34889
|
+
* @example
|
|
34890
|
+
* MaintainTime
|
|
34891
|
+
*/
|
|
34892
|
+
effectiveTime?: string;
|
|
34893
|
+
migrateAZ?: ModifyDBProxyInstanceRequestMigrateAZ[];
|
|
34894
|
+
ownerId?: number;
|
|
34895
|
+
/**
|
|
34896
|
+
* @remarks
|
|
34897
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
34898
|
+
*
|
|
34899
|
+
* @example
|
|
34900
|
+
* cn-hangzhou
|
|
34901
|
+
*/
|
|
34902
|
+
regionId?: string;
|
|
34903
|
+
resourceOwnerAccount?: string;
|
|
34904
|
+
resourceOwnerId?: number;
|
|
34905
|
+
/**
|
|
34906
|
+
* @remarks
|
|
34907
|
+
* The ID of the vSwitch in the destination zone. You can call the [DescribeVSwitches](https://help.aliyun.com/document_detail/610431.html) operation to query existing vSwitches.
|
|
34908
|
+
*
|
|
34909
|
+
* > Only database proxies for ApsaraDB RDS for MySQL instances that use cloud disks can be migrated to different zones.
|
|
34910
|
+
*
|
|
34911
|
+
* @example
|
|
34912
|
+
* vsw-uf6adz52c2p****
|
|
34913
|
+
*/
|
|
34914
|
+
vSwitchIds?: string;
|
|
34915
|
+
static names(): {
|
|
34916
|
+
[key: string]: string;
|
|
34917
|
+
};
|
|
34918
|
+
static types(): {
|
|
34919
|
+
[key: string]: any;
|
|
34920
|
+
};
|
|
34921
|
+
constructor(map?: {
|
|
34922
|
+
[key: string]: any;
|
|
34923
|
+
});
|
|
34924
|
+
}
|
|
34925
|
+
export declare class ModifyDBProxyInstanceShrinkRequest extends $tea.Model {
|
|
34926
|
+
/**
|
|
34927
|
+
* @remarks
|
|
34928
|
+
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
34929
|
+
*
|
|
34930
|
+
* This parameter is required.
|
|
34931
|
+
*
|
|
34932
|
+
* @example
|
|
34933
|
+
* rm-t4n3a****
|
|
34934
|
+
*/
|
|
34935
|
+
DBInstanceId?: string;
|
|
34936
|
+
/**
|
|
34937
|
+
* @remarks
|
|
34938
|
+
* A deprecated parameter. You do not need to specify this parameter.
|
|
34939
|
+
*
|
|
34940
|
+
* @example
|
|
34941
|
+
* normal
|
|
34942
|
+
*/
|
|
34943
|
+
DBProxyEngineType?: string;
|
|
34944
|
+
/**
|
|
34945
|
+
* @remarks
|
|
34946
|
+
* The number of database proxies. If you set this parameter to 0, the database proxy feature is disabled for the instance. Valid values: **1** to **16**.
|
|
34947
|
+
*
|
|
34948
|
+
* > The capability of the database proxy feature to process requests increases with the number of database proxies that are enabled. You can monitor the load on the instance and specify an appropriate number of database proxies based on the load monitoring data.
|
|
34949
|
+
*
|
|
34950
|
+
* This parameter is required.
|
|
34951
|
+
*
|
|
34952
|
+
* @example
|
|
34953
|
+
* 2
|
|
34954
|
+
*/
|
|
34955
|
+
DBProxyInstanceNum?: string;
|
|
34956
|
+
/**
|
|
34957
|
+
* @remarks
|
|
34958
|
+
* The database proxy type. Valid values:
|
|
34959
|
+
*
|
|
34960
|
+
* * **common**: general-purpose database proxy
|
|
34961
|
+
* * **exclusive** (default): dedicated database proxy
|
|
34962
|
+
*
|
|
34963
|
+
* This parameter is required.
|
|
34964
|
+
*
|
|
34965
|
+
* @example
|
|
34966
|
+
* DedicatedProxy
|
|
34967
|
+
*/
|
|
34968
|
+
DBProxyInstanceType?: string;
|
|
34969
|
+
DBProxyNodesShrink?: string;
|
|
33559
34970
|
/**
|
|
33560
34971
|
* @remarks
|
|
33561
34972
|
* The point in time that you want to specify. Specify the time in the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm:ss*Z format. The time must be in UTC.
|
|
@@ -33580,6 +34991,7 @@ export declare class ModifyDBProxyInstanceRequest extends $tea.Model {
|
|
|
33580
34991
|
* MaintainTime
|
|
33581
34992
|
*/
|
|
33582
34993
|
effectiveTime?: string;
|
|
34994
|
+
migrateAZShrink?: string;
|
|
33583
34995
|
ownerId?: number;
|
|
33584
34996
|
/**
|
|
33585
34997
|
* @remarks
|
|
@@ -34100,7 +35512,7 @@ export declare class ModifyDbProxyInstanceSslResponse extends $tea.Model {
|
|
|
34100
35512
|
export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
34101
35513
|
/**
|
|
34102
35514
|
* @remarks
|
|
34103
|
-
* The action
|
|
35515
|
+
* The action-related parameters. You can add action-related parameters based on your business requirements. The parameter value varies with the value of the TaskAction parameter.
|
|
34104
35516
|
*
|
|
34105
35517
|
* @example
|
|
34106
35518
|
* {\\"recoverTime\\":\\"2023-04-17T14:02:35Z\\",\\"recoverMode\\":\\"timePoint\\"}
|
|
@@ -34108,7 +35520,12 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34108
35520
|
actionParams?: string;
|
|
34109
35521
|
/**
|
|
34110
35522
|
* @remarks
|
|
34111
|
-
* The event handling action.
|
|
35523
|
+
* The event handling action. Valid values:
|
|
35524
|
+
*
|
|
35525
|
+
* * **archive**
|
|
35526
|
+
* * **undo**
|
|
35527
|
+
*
|
|
35528
|
+
* > This parameter is required.
|
|
34112
35529
|
*
|
|
34113
35530
|
* @example
|
|
34114
35531
|
* archive
|
|
@@ -34116,7 +35533,7 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34116
35533
|
eventAction?: string;
|
|
34117
35534
|
/**
|
|
34118
35535
|
* @remarks
|
|
34119
|
-
* The event ID. Separate multiple event IDs with commas (,). You can
|
|
35536
|
+
* The event ID. You can call the DescribeEvents operation to obtain the IDs of the events. Separate multiple event IDs with commas (,). You can specify up to 20 event IDs.
|
|
34120
35537
|
*
|
|
34121
35538
|
* This parameter is required.
|
|
34122
35539
|
*
|
|
@@ -34126,7 +35543,7 @@ export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
|
34126
35543
|
eventId?: string;
|
|
34127
35544
|
/**
|
|
34128
35545
|
* @remarks
|
|
34129
|
-
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
35546
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/610399.html) operation to query the most recent region list.
|
|
34130
35547
|
*
|
|
34131
35548
|
* This parameter is required.
|
|
34132
35549
|
*
|
|
@@ -34692,6 +36109,7 @@ export declare class ModifyMaskingRulesRequest extends $tea.Model {
|
|
|
34692
36109
|
enabled?: string;
|
|
34693
36110
|
maskingAlgo?: string;
|
|
34694
36111
|
ownerId?: string;
|
|
36112
|
+
regionId?: string;
|
|
34695
36113
|
resourceOwnerAccount?: string;
|
|
34696
36114
|
resourceOwnerId?: number;
|
|
34697
36115
|
ruleConfig?: ModifyMaskingRulesRequestRuleConfig;
|
|
@@ -34720,6 +36138,7 @@ export declare class ModifyMaskingRulesShrinkRequest extends $tea.Model {
|
|
|
34720
36138
|
enabled?: string;
|
|
34721
36139
|
maskingAlgo?: string;
|
|
34722
36140
|
ownerId?: string;
|
|
36141
|
+
regionId?: string;
|
|
34723
36142
|
resourceOwnerAccount?: string;
|
|
34724
36143
|
resourceOwnerId?: number;
|
|
34725
36144
|
ruleConfigShrink?: string;
|
|
@@ -35124,11 +36543,66 @@ export declare class ModifyParameterGroupResponse extends $tea.Model {
|
|
|
35124
36543
|
});
|
|
35125
36544
|
}
|
|
35126
36545
|
export declare class ModifyRCInstanceRequest extends $tea.Model {
|
|
36546
|
+
/**
|
|
36547
|
+
* @remarks
|
|
36548
|
+
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
36549
|
+
*
|
|
36550
|
+
* * **true** (default): enables the feature. You must make sure that your account balance is sufficient.
|
|
36551
|
+
* * **false**: disables the feature. An unpaid order is generated.
|
|
36552
|
+
*
|
|
36553
|
+
* > If your account balance is insufficient, you can set AutoPay to false. In this case, an unpaid order is generated. You can complete the payment in the Expenses and Costs console.
|
|
36554
|
+
*
|
|
36555
|
+
* @example
|
|
36556
|
+
* true
|
|
36557
|
+
*/
|
|
35127
36558
|
autoPay?: boolean;
|
|
36559
|
+
/**
|
|
36560
|
+
* @remarks
|
|
36561
|
+
* The type of the change that you want to perform on the instance. Valid values:
|
|
36562
|
+
*
|
|
36563
|
+
* > This parameter is optional. The system can automatically determine whether the instance change is an upgrade or a downgrade. If you want to specify this parameter, take note of the following items:
|
|
36564
|
+
*
|
|
36565
|
+
* * **Upgrade** (default): upgrades the instance type. Make sure that your account balance is sufficient.
|
|
36566
|
+
* * **Down**: downgrades the instance type. If the new instance type specified by InstanceType has lower specifications than the current instance type, set Direction to Down.
|
|
36567
|
+
*
|
|
36568
|
+
* @example
|
|
36569
|
+
* Up
|
|
36570
|
+
*/
|
|
35128
36571
|
direction?: string;
|
|
36572
|
+
/**
|
|
36573
|
+
* @remarks
|
|
36574
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
36575
|
+
*
|
|
36576
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and resource inventory.
|
|
36577
|
+
* * **false**: performs a dry run and performs the actual request. If the request passes the dry run, the operation is performed.
|
|
36578
|
+
*
|
|
36579
|
+
* @example
|
|
36580
|
+
* true
|
|
36581
|
+
*/
|
|
35129
36582
|
dryRun?: boolean;
|
|
36583
|
+
/**
|
|
36584
|
+
* @remarks
|
|
36585
|
+
* The instance ID.
|
|
36586
|
+
*
|
|
36587
|
+
* @example
|
|
36588
|
+
* rm-uf62br2491p5l****
|
|
36589
|
+
*/
|
|
35130
36590
|
instanceId?: string;
|
|
36591
|
+
/**
|
|
36592
|
+
* @remarks
|
|
36593
|
+
* The new instance type. For more information about the instance types that are supported by RDS Custom instances, see [Instance types of RDS Custom instances](https://help.aliyun.com/document_detail/2844823.html).
|
|
36594
|
+
*
|
|
36595
|
+
* @example
|
|
36596
|
+
* mysql.i8.large.2cm
|
|
36597
|
+
*/
|
|
35131
36598
|
instanceType?: string;
|
|
36599
|
+
/**
|
|
36600
|
+
* @remarks
|
|
36601
|
+
* The region ID of the instance.
|
|
36602
|
+
*
|
|
36603
|
+
* @example
|
|
36604
|
+
* cn-hagnzhou
|
|
36605
|
+
*/
|
|
35132
36606
|
regionId?: string;
|
|
35133
36607
|
static names(): {
|
|
35134
36608
|
[key: string]: string;
|
|
@@ -35141,7 +36615,21 @@ export declare class ModifyRCInstanceRequest extends $tea.Model {
|
|
|
35141
36615
|
});
|
|
35142
36616
|
}
|
|
35143
36617
|
export declare class ModifyRCInstanceResponseBody extends $tea.Model {
|
|
36618
|
+
/**
|
|
36619
|
+
* @remarks
|
|
36620
|
+
* The order ID.
|
|
36621
|
+
*
|
|
36622
|
+
* @example
|
|
36623
|
+
* 100789370230206
|
|
36624
|
+
*/
|
|
35144
36625
|
orderId?: number;
|
|
36626
|
+
/**
|
|
36627
|
+
* @remarks
|
|
36628
|
+
* The request ID.
|
|
36629
|
+
*
|
|
36630
|
+
* @example
|
|
36631
|
+
* 6EF82B07-28D2-48D1-B5D6-7E78FED277C7
|
|
36632
|
+
*/
|
|
35145
36633
|
requestId?: string;
|
|
35146
36634
|
static names(): {
|
|
35147
36635
|
[key: string]: string;
|
|
@@ -35830,7 +37318,7 @@ export declare class ModifySecurityIpsRequest extends $tea.Model {
|
|
|
35830
37318
|
resourceOwnerId?: number;
|
|
35831
37319
|
/**
|
|
35832
37320
|
* @remarks
|
|
35833
|
-
* The
|
|
37321
|
+
* The IP address type. The value is fixed as IPv4.
|
|
35834
37322
|
*
|
|
35835
37323
|
* @example
|
|
35836
37324
|
* IPv4
|
|
@@ -35927,7 +37415,15 @@ export declare class ModifySecurityIpsResponse extends $tea.Model {
|
|
|
35927
37415
|
export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
35928
37416
|
/**
|
|
35929
37417
|
* @remarks
|
|
35930
|
-
* The action parameter
|
|
37418
|
+
* The action-related parameters. You can add action-related parameters based on your business requirements. If you set the TaskAction parameter to modifySwitchTime, you must set this parameter to `{"recoverMode": "xxx", "recoverTime": "xxx"}`.
|
|
37419
|
+
*
|
|
37420
|
+
* The recoverMode field specifies the task restoration mode. valid values:
|
|
37421
|
+
*
|
|
37422
|
+
* * **timePoint**: The task is executed at a specified point in time.
|
|
37423
|
+
* * **Immediate**: The task is executed immediately.
|
|
37424
|
+
* * **maintainTime**: The task is executed based on the O\\&M time.
|
|
37425
|
+
*
|
|
37426
|
+
* The recoverTime field specifies restoration time. Specify the time in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If you set the recoverMode field to timePoint, you must also specify the recoverTime field.
|
|
35931
37427
|
*
|
|
35932
37428
|
* @example
|
|
35933
37429
|
* {\\"recoverTime\\":\\"2023-04-12T18:30:00Z\\",\\"recoverMode\\":\\"timePoint\\"}
|
|
@@ -35956,12 +37452,7 @@ export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
|
35956
37452
|
stepName?: string;
|
|
35957
37453
|
/**
|
|
35958
37454
|
* @remarks
|
|
35959
|
-
* The
|
|
35960
|
-
*
|
|
35961
|
-
* * ImportImage
|
|
35962
|
-
* * ExportImage
|
|
35963
|
-
* * RedeployInstance
|
|
35964
|
-
* * ModifyDiskSpec
|
|
37455
|
+
* The task action. Set the value to modifySwitchTime. The value specifies that you want to change the switching time or restoration time.
|
|
35965
37456
|
*
|
|
35966
37457
|
* @example
|
|
35967
37458
|
* ImportImage
|
|
@@ -35969,7 +37460,7 @@ export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
|
35969
37460
|
taskAction?: string;
|
|
35970
37461
|
/**
|
|
35971
37462
|
* @remarks
|
|
35972
|
-
* The task ID.
|
|
37463
|
+
* The task ID. You can call the DescribeTasks operation to query task IDs.
|
|
35973
37464
|
*
|
|
35974
37465
|
* This parameter is required.
|
|
35975
37466
|
*
|
|
@@ -36768,13 +38259,47 @@ export declare class QueryRecommendByCodeResponse extends $tea.Model {
|
|
|
36768
38259
|
});
|
|
36769
38260
|
}
|
|
36770
38261
|
export declare class RebootRCInstanceRequest extends $tea.Model {
|
|
38262
|
+
/**
|
|
38263
|
+
* @remarks
|
|
38264
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
38265
|
+
*
|
|
38266
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors. If the request passes the dry run, the DryRunOperation error code is returned. Otherwise, an error message is returned.
|
|
38267
|
+
* * **false**: performs a dry run and performs the actual request. If the request passes the dry run, the instance is restarted.
|
|
38268
|
+
*
|
|
38269
|
+
* Default value: false
|
|
38270
|
+
*
|
|
38271
|
+
* @example
|
|
38272
|
+
* false
|
|
38273
|
+
*/
|
|
36771
38274
|
dryRun?: boolean;
|
|
38275
|
+
/**
|
|
38276
|
+
* @remarks
|
|
38277
|
+
* Specifies whether to forcefully stop the instance before you restart the instance Valid values:
|
|
38278
|
+
*
|
|
38279
|
+
* * **true**: forcefully stops the instance. This operation is equivalent to the typical power-off operation. Cache data that is not written to storage devices on the instance is lost.
|
|
38280
|
+
* * **false** (default): normally stops the instance.
|
|
38281
|
+
*
|
|
38282
|
+
* @example
|
|
38283
|
+
* false
|
|
38284
|
+
*/
|
|
36772
38285
|
forceStop?: boolean;
|
|
36773
38286
|
/**
|
|
36774
38287
|
* @remarks
|
|
38288
|
+
* The instance ID.
|
|
38289
|
+
*
|
|
36775
38290
|
* This parameter is required.
|
|
38291
|
+
*
|
|
38292
|
+
* @example
|
|
38293
|
+
* rc-m5sc1271fv344a1r****
|
|
36776
38294
|
*/
|
|
36777
38295
|
instanceId?: string;
|
|
38296
|
+
/**
|
|
38297
|
+
* @remarks
|
|
38298
|
+
* The region ID.
|
|
38299
|
+
*
|
|
38300
|
+
* @example
|
|
38301
|
+
* cn-hangzhou
|
|
38302
|
+
*/
|
|
36778
38303
|
regionId?: string;
|
|
36779
38304
|
static names(): {
|
|
36780
38305
|
[key: string]: string;
|
|
@@ -36787,6 +38312,13 @@ export declare class RebootRCInstanceRequest extends $tea.Model {
|
|
|
36787
38312
|
});
|
|
36788
38313
|
}
|
|
36789
38314
|
export declare class RebootRCInstanceResponseBody extends $tea.Model {
|
|
38315
|
+
/**
|
|
38316
|
+
* @remarks
|
|
38317
|
+
* The request ID.
|
|
38318
|
+
*
|
|
38319
|
+
* @example
|
|
38320
|
+
* 3E36DB6E-AE3B-53B6-A703-85F883FD1B2C
|
|
38321
|
+
*/
|
|
36790
38322
|
requestId?: string;
|
|
36791
38323
|
static names(): {
|
|
36792
38324
|
[key: string]: string;
|
|
@@ -37923,11 +39455,64 @@ export declare class ResetAccountPasswordResponse extends $tea.Model {
|
|
|
37923
39455
|
});
|
|
37924
39456
|
}
|
|
37925
39457
|
export declare class ResizeRCInstanceDiskRequest extends $tea.Model {
|
|
39458
|
+
/**
|
|
39459
|
+
* @remarks
|
|
39460
|
+
* Specifies whether to enable the automatic payment feature for the instance. Valid values:
|
|
39461
|
+
*
|
|
39462
|
+
* * **true** (default): enables the feature. Make sure that your account balance is sufficient.
|
|
39463
|
+
* * **false**: disables the feature. An unpaid order is generated.
|
|
39464
|
+
*
|
|
39465
|
+
* > If your account balance is insufficient, you can set AutoPay to false. In this case, an unpaid order is generated. You can complete the payment in the Expenses and Costs console.
|
|
39466
|
+
*
|
|
39467
|
+
* @example
|
|
39468
|
+
* false
|
|
39469
|
+
*/
|
|
37926
39470
|
autoPay?: boolean;
|
|
39471
|
+
/**
|
|
39472
|
+
* @remarks
|
|
39473
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
39474
|
+
*
|
|
39475
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors.
|
|
39476
|
+
* * **false**: performs a dry run and performs the actual request. If the request passes the dry run, the instance is created.
|
|
39477
|
+
*
|
|
39478
|
+
* @example
|
|
39479
|
+
* false
|
|
39480
|
+
*/
|
|
37927
39481
|
dryRun?: boolean;
|
|
39482
|
+
/**
|
|
39483
|
+
* @remarks
|
|
39484
|
+
* The instance ID.
|
|
39485
|
+
*
|
|
39486
|
+
* @example
|
|
39487
|
+
* rm-uf62br2491p5l****
|
|
39488
|
+
*/
|
|
37928
39489
|
instanceId?: string;
|
|
39490
|
+
/**
|
|
39491
|
+
* @remarks
|
|
39492
|
+
* The new disk size. Unit: GiB.
|
|
39493
|
+
*
|
|
39494
|
+
* @example
|
|
39495
|
+
* 100
|
|
39496
|
+
*/
|
|
37929
39497
|
newSize?: number;
|
|
39498
|
+
/**
|
|
39499
|
+
* @remarks
|
|
39500
|
+
* The region ID of the instance.
|
|
39501
|
+
*
|
|
39502
|
+
* @example
|
|
39503
|
+
* cn-hangzhou
|
|
39504
|
+
*/
|
|
37930
39505
|
regionId?: string;
|
|
39506
|
+
/**
|
|
39507
|
+
* @remarks
|
|
39508
|
+
* The method that you want to use to resize the disk. Valid values:
|
|
39509
|
+
*
|
|
39510
|
+
* * **offline** (default): resizes disks offline. After you resize a disk offline, you must restart the instance for the resizing operation to take effect.
|
|
39511
|
+
* * **online**: resizes disks online. After you resize a disk online, the resizing operation takes effect immediately and you do not need to restart the instance.
|
|
39512
|
+
*
|
|
39513
|
+
* @example
|
|
39514
|
+
* online
|
|
39515
|
+
*/
|
|
37931
39516
|
type?: string;
|
|
37932
39517
|
static names(): {
|
|
37933
39518
|
[key: string]: string;
|
|
@@ -37940,7 +39525,21 @@ export declare class ResizeRCInstanceDiskRequest extends $tea.Model {
|
|
|
37940
39525
|
});
|
|
37941
39526
|
}
|
|
37942
39527
|
export declare class ResizeRCInstanceDiskResponseBody extends $tea.Model {
|
|
39528
|
+
/**
|
|
39529
|
+
* @remarks
|
|
39530
|
+
* The order ID.
|
|
39531
|
+
*
|
|
39532
|
+
* @example
|
|
39533
|
+
* 230546833080102
|
|
39534
|
+
*/
|
|
37943
39535
|
orderId?: number;
|
|
39536
|
+
/**
|
|
39537
|
+
* @remarks
|
|
39538
|
+
* The request ID.
|
|
39539
|
+
*
|
|
39540
|
+
* @example
|
|
39541
|
+
* 1E43AAE0-BEE8-43DA-860D-EAF2AA0724DC
|
|
39542
|
+
*/
|
|
37944
39543
|
requestId?: string;
|
|
37945
39544
|
static names(): {
|
|
37946
39545
|
[key: string]: string;
|
|
@@ -38457,44 +40056,227 @@ export declare class RevokeOperatorPermissionResponse extends $tea.Model {
|
|
|
38457
40056
|
export declare class RunRCInstancesRequest extends $tea.Model {
|
|
38458
40057
|
/**
|
|
38459
40058
|
* @remarks
|
|
40059
|
+
* The number of RDS Custom instances that you want to create. The parameter is available if you want to create multiple RDS Custom instances at a time.
|
|
40060
|
+
*
|
|
40061
|
+
* Valid values: **1** to **10**. Default value: **1**.
|
|
40062
|
+
*
|
|
38460
40063
|
* This parameter is required.
|
|
40064
|
+
*
|
|
40065
|
+
* @example
|
|
40066
|
+
* 1
|
|
38461
40067
|
*/
|
|
38462
40068
|
amount?: number;
|
|
40069
|
+
/**
|
|
40070
|
+
* @remarks
|
|
40071
|
+
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
40072
|
+
*
|
|
40073
|
+
* * **true** (default): enables the feature. Make sure that your account balance is sufficient.
|
|
40074
|
+
* * **false**: disables the feature. An unpaid order is generated.
|
|
40075
|
+
*
|
|
40076
|
+
* > If your account balance is insufficient, you can set the AutoPay parameter to false. In this case, an unpaid order is generated. You can complete the payment in the Expenses and Costs console.
|
|
40077
|
+
*
|
|
40078
|
+
* @example
|
|
40079
|
+
* false
|
|
40080
|
+
*/
|
|
38463
40081
|
autoPay?: boolean;
|
|
40082
|
+
/**
|
|
40083
|
+
* @remarks
|
|
40084
|
+
* Specifies whether to enable auto-renewal for the instance. Valid values:
|
|
40085
|
+
*
|
|
40086
|
+
* * **true** (default)
|
|
40087
|
+
* * **false**
|
|
40088
|
+
*
|
|
40089
|
+
* @example
|
|
40090
|
+
* false
|
|
40091
|
+
*/
|
|
38464
40092
|
autoRenew?: boolean;
|
|
40093
|
+
/**
|
|
40094
|
+
* @remarks
|
|
40095
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
40096
|
+
*
|
|
40097
|
+
* @example
|
|
40098
|
+
* ETnLKlblzczshOTUbOCz****
|
|
40099
|
+
*/
|
|
38465
40100
|
clientToken?: string;
|
|
40101
|
+
/**
|
|
40102
|
+
* @remarks
|
|
40103
|
+
* The information about the data disks.
|
|
40104
|
+
*/
|
|
38466
40105
|
dataDisk?: RunRCInstancesRequestDataDisk[];
|
|
40106
|
+
/**
|
|
40107
|
+
* @remarks
|
|
40108
|
+
* The deployment set ID.
|
|
40109
|
+
*
|
|
40110
|
+
* @example
|
|
40111
|
+
* ds-uf6670sipmph5j5b6ke4
|
|
40112
|
+
*/
|
|
38467
40113
|
deploymentSetId?: string;
|
|
40114
|
+
/**
|
|
40115
|
+
* @remarks
|
|
40116
|
+
* The instance description. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
40117
|
+
*
|
|
40118
|
+
* @example
|
|
40119
|
+
* Instance_Description
|
|
40120
|
+
*/
|
|
38468
40121
|
description?: string;
|
|
40122
|
+
/**
|
|
40123
|
+
* @remarks
|
|
40124
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
40125
|
+
*
|
|
40126
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors.
|
|
40127
|
+
* * **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, the instance is directly created.
|
|
40128
|
+
*
|
|
40129
|
+
* @example
|
|
40130
|
+
* false
|
|
40131
|
+
*/
|
|
38469
40132
|
dryRun?: boolean;
|
|
40133
|
+
/**
|
|
40134
|
+
* @remarks
|
|
40135
|
+
* The ID of the image used by the instance.
|
|
40136
|
+
*
|
|
40137
|
+
* @example
|
|
40138
|
+
* image-dsvjzw2ii8n4fvr6de
|
|
40139
|
+
*/
|
|
38470
40140
|
imageId?: string;
|
|
40141
|
+
/**
|
|
40142
|
+
* @remarks
|
|
40143
|
+
* The billing method of the instance. Set the value to **Prepaid**, which indicates the subscription billing method.
|
|
40144
|
+
*
|
|
40145
|
+
* @example
|
|
40146
|
+
* Prepaid
|
|
40147
|
+
*/
|
|
38471
40148
|
instanceChargeType?: string;
|
|
40149
|
+
/**
|
|
40150
|
+
* @remarks
|
|
40151
|
+
* The instance name.
|
|
40152
|
+
*
|
|
40153
|
+
* @example
|
|
40154
|
+
* ceshi
|
|
40155
|
+
*/
|
|
38472
40156
|
instanceName?: string;
|
|
38473
40157
|
/**
|
|
38474
40158
|
* @remarks
|
|
40159
|
+
* The instance type. For more information about the instance types that are supported by RDS Custom instances, see [Instance types for RDS Custom instances](https://help.aliyun.com/document_detail/2844823.html).
|
|
40160
|
+
*
|
|
38475
40161
|
* This parameter is required.
|
|
40162
|
+
*
|
|
40163
|
+
* @example
|
|
40164
|
+
* mysql.i8.large.2cm
|
|
38476
40165
|
*/
|
|
38477
40166
|
instanceType?: string;
|
|
40167
|
+
/**
|
|
40168
|
+
* @remarks
|
|
40169
|
+
* The reserved parameter. This parameter is not supported.
|
|
40170
|
+
*
|
|
40171
|
+
* @example
|
|
40172
|
+
* null
|
|
40173
|
+
*/
|
|
38478
40174
|
internetChargeType?: string;
|
|
40175
|
+
/**
|
|
40176
|
+
* @remarks
|
|
40177
|
+
* The reserved parameter. This parameter is not supported.
|
|
40178
|
+
*
|
|
40179
|
+
* @example
|
|
40180
|
+
* null
|
|
40181
|
+
*/
|
|
38479
40182
|
internetMaxBandwidthOut?: number;
|
|
40183
|
+
/**
|
|
40184
|
+
* @remarks
|
|
40185
|
+
* The reserved parameter. This parameter is not supported.
|
|
40186
|
+
*
|
|
40187
|
+
* @example
|
|
40188
|
+
* null
|
|
40189
|
+
*/
|
|
38480
40190
|
ioOptimized?: string;
|
|
40191
|
+
/**
|
|
40192
|
+
* @remarks
|
|
40193
|
+
* The name of the AccessKey pair. You can specify only one name.
|
|
40194
|
+
*
|
|
40195
|
+
* @example
|
|
40196
|
+
* dell5502
|
|
40197
|
+
*/
|
|
38481
40198
|
keyPairName?: string;
|
|
40199
|
+
/**
|
|
40200
|
+
* @remarks
|
|
40201
|
+
* The password of the account that is used to log on to the instance.
|
|
40202
|
+
*
|
|
40203
|
+
* @example
|
|
40204
|
+
* 2F9e9@a69c!e18b569c8
|
|
40205
|
+
*/
|
|
38482
40206
|
password?: string;
|
|
40207
|
+
/**
|
|
40208
|
+
* @remarks
|
|
40209
|
+
* The subscription duration of the instance. Default value: **1**.
|
|
40210
|
+
*
|
|
40211
|
+
* @example
|
|
40212
|
+
* 1
|
|
40213
|
+
*/
|
|
38483
40214
|
period?: number;
|
|
40215
|
+
/**
|
|
40216
|
+
* @remarks
|
|
40217
|
+
* The unit of the subscription duration. Valid values:
|
|
40218
|
+
*
|
|
40219
|
+
* * **Year**
|
|
40220
|
+
* * **Month** (default)
|
|
40221
|
+
*
|
|
40222
|
+
* @example
|
|
40223
|
+
* Year
|
|
40224
|
+
*/
|
|
38484
40225
|
periodUnit?: string;
|
|
38485
40226
|
/**
|
|
38486
40227
|
* @remarks
|
|
40228
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
40229
|
+
*
|
|
38487
40230
|
* This parameter is required.
|
|
40231
|
+
*
|
|
40232
|
+
* @example
|
|
40233
|
+
* cn-beijing
|
|
38488
40234
|
*/
|
|
38489
40235
|
regionId?: string;
|
|
40236
|
+
/**
|
|
40237
|
+
* @remarks
|
|
40238
|
+
* The reserved parameter. This parameter is not supported.
|
|
40239
|
+
*
|
|
40240
|
+
* @example
|
|
40241
|
+
* null
|
|
40242
|
+
*/
|
|
38490
40243
|
securityEnhancementStrategy?: string;
|
|
40244
|
+
/**
|
|
40245
|
+
* @remarks
|
|
40246
|
+
* The ID of the security group to which you want to add the new instance. Instances in the same security group can communicate with each other. The maximum number of instances allowed in a security group varies based on the type of the security group. For more information, see the "Security group limits" section in [Limits](https://help.aliyun.com/document_detail/25412.html).
|
|
40247
|
+
*
|
|
40248
|
+
* > The network type of the instance is determined by the security group specified by the SecurityGroupId parameter. For example, if the network type of the specified security group is VPC, the instance is a VPC-type instance. In this case, you must specify the VSwitchId parameter.
|
|
40249
|
+
*
|
|
40250
|
+
* @example
|
|
40251
|
+
* sg-uf6av412xaxixuezol6w
|
|
40252
|
+
*/
|
|
38491
40253
|
securityGroupId?: string;
|
|
40254
|
+
/**
|
|
40255
|
+
* @remarks
|
|
40256
|
+
* The specification of the system disk.
|
|
40257
|
+
*/
|
|
38492
40258
|
systemDisk?: RunRCInstancesRequestSystemDisk;
|
|
38493
40259
|
/**
|
|
38494
40260
|
* @remarks
|
|
40261
|
+
* The vSwitch ID of the instance. You must specify this parameter when you create an instance of the virtual private cloud (VPC) type. The specified vSwitch and security group must belong to the same VPC.
|
|
40262
|
+
*
|
|
40263
|
+
* > If you specify the VSwitchId parameter, the zone specified by the ZoneId parameter must be the same as the zone in which the specified vSwitch resides. You can leave the ZoneId parameter empty. In this case, the system uses the zone in which the specified vSwitch resides.
|
|
40264
|
+
*
|
|
38495
40265
|
* This parameter is required.
|
|
40266
|
+
*
|
|
40267
|
+
* @example
|
|
40268
|
+
* vsw-2vcd61ngm890sk****
|
|
38496
40269
|
*/
|
|
38497
40270
|
vSwitchId?: string;
|
|
40271
|
+
/**
|
|
40272
|
+
* @remarks
|
|
40273
|
+
* The zone ID of the instance. You can call the DescribeZones operation to query the zone IDs.
|
|
40274
|
+
*
|
|
40275
|
+
* > If you specify the VSwitchId parameter, the zone specified by the ZoneId parameter must be the same as the zone in which the specified vSwitch resides. You can leave the ZoneId parameter empty. In this case, the system uses the zone in which the specified vSwitch resides.
|
|
40276
|
+
*
|
|
40277
|
+
* @example
|
|
40278
|
+
* cn-beijing-f
|
|
40279
|
+
*/
|
|
38498
40280
|
zoneId?: string;
|
|
38499
40281
|
static names(): {
|
|
38500
40282
|
[key: string]: string;
|
|
@@ -38509,44 +40291,227 @@ export declare class RunRCInstancesRequest extends $tea.Model {
|
|
|
38509
40291
|
export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
38510
40292
|
/**
|
|
38511
40293
|
* @remarks
|
|
40294
|
+
* The number of RDS Custom instances that you want to create. The parameter is available if you want to create multiple RDS Custom instances at a time.
|
|
40295
|
+
*
|
|
40296
|
+
* Valid values: **1** to **10**. Default value: **1**.
|
|
40297
|
+
*
|
|
38512
40298
|
* This parameter is required.
|
|
40299
|
+
*
|
|
40300
|
+
* @example
|
|
40301
|
+
* 1
|
|
38513
40302
|
*/
|
|
38514
40303
|
amount?: number;
|
|
40304
|
+
/**
|
|
40305
|
+
* @remarks
|
|
40306
|
+
* Specifies whether to enable the automatic payment feature. Valid values:
|
|
40307
|
+
*
|
|
40308
|
+
* * **true** (default): enables the feature. Make sure that your account balance is sufficient.
|
|
40309
|
+
* * **false**: disables the feature. An unpaid order is generated.
|
|
40310
|
+
*
|
|
40311
|
+
* > If your account balance is insufficient, you can set the AutoPay parameter to false. In this case, an unpaid order is generated. You can complete the payment in the Expenses and Costs console.
|
|
40312
|
+
*
|
|
40313
|
+
* @example
|
|
40314
|
+
* false
|
|
40315
|
+
*/
|
|
38515
40316
|
autoPay?: boolean;
|
|
40317
|
+
/**
|
|
40318
|
+
* @remarks
|
|
40319
|
+
* Specifies whether to enable auto-renewal for the instance. Valid values:
|
|
40320
|
+
*
|
|
40321
|
+
* * **true** (default)
|
|
40322
|
+
* * **false**
|
|
40323
|
+
*
|
|
40324
|
+
* @example
|
|
40325
|
+
* false
|
|
40326
|
+
*/
|
|
38516
40327
|
autoRenew?: boolean;
|
|
40328
|
+
/**
|
|
40329
|
+
* @remarks
|
|
40330
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
40331
|
+
*
|
|
40332
|
+
* @example
|
|
40333
|
+
* ETnLKlblzczshOTUbOCz****
|
|
40334
|
+
*/
|
|
38517
40335
|
clientToken?: string;
|
|
40336
|
+
/**
|
|
40337
|
+
* @remarks
|
|
40338
|
+
* The information about the data disks.
|
|
40339
|
+
*/
|
|
38518
40340
|
dataDiskShrink?: string;
|
|
40341
|
+
/**
|
|
40342
|
+
* @remarks
|
|
40343
|
+
* The deployment set ID.
|
|
40344
|
+
*
|
|
40345
|
+
* @example
|
|
40346
|
+
* ds-uf6670sipmph5j5b6ke4
|
|
40347
|
+
*/
|
|
38519
40348
|
deploymentSetId?: string;
|
|
40349
|
+
/**
|
|
40350
|
+
* @remarks
|
|
40351
|
+
* The instance description. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
40352
|
+
*
|
|
40353
|
+
* @example
|
|
40354
|
+
* Instance_Description
|
|
40355
|
+
*/
|
|
38520
40356
|
description?: string;
|
|
40357
|
+
/**
|
|
40358
|
+
* @remarks
|
|
40359
|
+
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
40360
|
+
*
|
|
40361
|
+
* * **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, service limits, and insufficient inventory errors.
|
|
40362
|
+
* * **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, the instance is directly created.
|
|
40363
|
+
*
|
|
40364
|
+
* @example
|
|
40365
|
+
* false
|
|
40366
|
+
*/
|
|
38521
40367
|
dryRun?: boolean;
|
|
40368
|
+
/**
|
|
40369
|
+
* @remarks
|
|
40370
|
+
* The ID of the image used by the instance.
|
|
40371
|
+
*
|
|
40372
|
+
* @example
|
|
40373
|
+
* image-dsvjzw2ii8n4fvr6de
|
|
40374
|
+
*/
|
|
38522
40375
|
imageId?: string;
|
|
40376
|
+
/**
|
|
40377
|
+
* @remarks
|
|
40378
|
+
* The billing method of the instance. Set the value to **Prepaid**, which indicates the subscription billing method.
|
|
40379
|
+
*
|
|
40380
|
+
* @example
|
|
40381
|
+
* Prepaid
|
|
40382
|
+
*/
|
|
38523
40383
|
instanceChargeType?: string;
|
|
40384
|
+
/**
|
|
40385
|
+
* @remarks
|
|
40386
|
+
* The instance name.
|
|
40387
|
+
*
|
|
40388
|
+
* @example
|
|
40389
|
+
* ceshi
|
|
40390
|
+
*/
|
|
38524
40391
|
instanceName?: string;
|
|
38525
40392
|
/**
|
|
38526
40393
|
* @remarks
|
|
40394
|
+
* The instance type. For more information about the instance types that are supported by RDS Custom instances, see [Instance types for RDS Custom instances](https://help.aliyun.com/document_detail/2844823.html).
|
|
40395
|
+
*
|
|
38527
40396
|
* This parameter is required.
|
|
40397
|
+
*
|
|
40398
|
+
* @example
|
|
40399
|
+
* mysql.i8.large.2cm
|
|
38528
40400
|
*/
|
|
38529
40401
|
instanceType?: string;
|
|
40402
|
+
/**
|
|
40403
|
+
* @remarks
|
|
40404
|
+
* The reserved parameter. This parameter is not supported.
|
|
40405
|
+
*
|
|
40406
|
+
* @example
|
|
40407
|
+
* null
|
|
40408
|
+
*/
|
|
38530
40409
|
internetChargeType?: string;
|
|
40410
|
+
/**
|
|
40411
|
+
* @remarks
|
|
40412
|
+
* The reserved parameter. This parameter is not supported.
|
|
40413
|
+
*
|
|
40414
|
+
* @example
|
|
40415
|
+
* null
|
|
40416
|
+
*/
|
|
38531
40417
|
internetMaxBandwidthOut?: number;
|
|
40418
|
+
/**
|
|
40419
|
+
* @remarks
|
|
40420
|
+
* The reserved parameter. This parameter is not supported.
|
|
40421
|
+
*
|
|
40422
|
+
* @example
|
|
40423
|
+
* null
|
|
40424
|
+
*/
|
|
38532
40425
|
ioOptimized?: string;
|
|
40426
|
+
/**
|
|
40427
|
+
* @remarks
|
|
40428
|
+
* The name of the AccessKey pair. You can specify only one name.
|
|
40429
|
+
*
|
|
40430
|
+
* @example
|
|
40431
|
+
* dell5502
|
|
40432
|
+
*/
|
|
38533
40433
|
keyPairName?: string;
|
|
40434
|
+
/**
|
|
40435
|
+
* @remarks
|
|
40436
|
+
* The password of the account that is used to log on to the instance.
|
|
40437
|
+
*
|
|
40438
|
+
* @example
|
|
40439
|
+
* 2F9e9@a69c!e18b569c8
|
|
40440
|
+
*/
|
|
38534
40441
|
password?: string;
|
|
40442
|
+
/**
|
|
40443
|
+
* @remarks
|
|
40444
|
+
* The subscription duration of the instance. Default value: **1**.
|
|
40445
|
+
*
|
|
40446
|
+
* @example
|
|
40447
|
+
* 1
|
|
40448
|
+
*/
|
|
38535
40449
|
period?: number;
|
|
40450
|
+
/**
|
|
40451
|
+
* @remarks
|
|
40452
|
+
* The unit of the subscription duration. Valid values:
|
|
40453
|
+
*
|
|
40454
|
+
* * **Year**
|
|
40455
|
+
* * **Month** (default)
|
|
40456
|
+
*
|
|
40457
|
+
* @example
|
|
40458
|
+
* Year
|
|
40459
|
+
*/
|
|
38536
40460
|
periodUnit?: string;
|
|
38537
40461
|
/**
|
|
38538
40462
|
* @remarks
|
|
40463
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
40464
|
+
*
|
|
38539
40465
|
* This parameter is required.
|
|
40466
|
+
*
|
|
40467
|
+
* @example
|
|
40468
|
+
* cn-beijing
|
|
38540
40469
|
*/
|
|
38541
40470
|
regionId?: string;
|
|
40471
|
+
/**
|
|
40472
|
+
* @remarks
|
|
40473
|
+
* The reserved parameter. This parameter is not supported.
|
|
40474
|
+
*
|
|
40475
|
+
* @example
|
|
40476
|
+
* null
|
|
40477
|
+
*/
|
|
38542
40478
|
securityEnhancementStrategy?: string;
|
|
40479
|
+
/**
|
|
40480
|
+
* @remarks
|
|
40481
|
+
* The ID of the security group to which you want to add the new instance. Instances in the same security group can communicate with each other. The maximum number of instances allowed in a security group varies based on the type of the security group. For more information, see the "Security group limits" section in [Limits](https://help.aliyun.com/document_detail/25412.html).
|
|
40482
|
+
*
|
|
40483
|
+
* > The network type of the instance is determined by the security group specified by the SecurityGroupId parameter. For example, if the network type of the specified security group is VPC, the instance is a VPC-type instance. In this case, you must specify the VSwitchId parameter.
|
|
40484
|
+
*
|
|
40485
|
+
* @example
|
|
40486
|
+
* sg-uf6av412xaxixuezol6w
|
|
40487
|
+
*/
|
|
38543
40488
|
securityGroupId?: string;
|
|
40489
|
+
/**
|
|
40490
|
+
* @remarks
|
|
40491
|
+
* The specification of the system disk.
|
|
40492
|
+
*/
|
|
38544
40493
|
systemDiskShrink?: string;
|
|
38545
40494
|
/**
|
|
38546
40495
|
* @remarks
|
|
40496
|
+
* The vSwitch ID of the instance. You must specify this parameter when you create an instance of the virtual private cloud (VPC) type. The specified vSwitch and security group must belong to the same VPC.
|
|
40497
|
+
*
|
|
40498
|
+
* > If you specify the VSwitchId parameter, the zone specified by the ZoneId parameter must be the same as the zone in which the specified vSwitch resides. You can leave the ZoneId parameter empty. In this case, the system uses the zone in which the specified vSwitch resides.
|
|
40499
|
+
*
|
|
38547
40500
|
* This parameter is required.
|
|
40501
|
+
*
|
|
40502
|
+
* @example
|
|
40503
|
+
* vsw-2vcd61ngm890sk****
|
|
38548
40504
|
*/
|
|
38549
40505
|
vSwitchId?: string;
|
|
40506
|
+
/**
|
|
40507
|
+
* @remarks
|
|
40508
|
+
* The zone ID of the instance. You can call the DescribeZones operation to query the zone IDs.
|
|
40509
|
+
*
|
|
40510
|
+
* > If you specify the VSwitchId parameter, the zone specified by the ZoneId parameter must be the same as the zone in which the specified vSwitch resides. You can leave the ZoneId parameter empty. In this case, the system uses the zone in which the specified vSwitch resides.
|
|
40511
|
+
*
|
|
40512
|
+
* @example
|
|
40513
|
+
* cn-beijing-f
|
|
40514
|
+
*/
|
|
38550
40515
|
zoneId?: string;
|
|
38551
40516
|
static names(): {
|
|
38552
40517
|
[key: string]: string;
|
|
@@ -38559,8 +40524,26 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
|
38559
40524
|
});
|
|
38560
40525
|
}
|
|
38561
40526
|
export declare class RunRCInstancesResponseBody extends $tea.Model {
|
|
40527
|
+
/**
|
|
40528
|
+
* @remarks
|
|
40529
|
+
* The instance IDs (InstanceIdSet).
|
|
40530
|
+
*/
|
|
38562
40531
|
instanceIdSets?: RunRCInstancesResponseBodyInstanceIdSets;
|
|
40532
|
+
/**
|
|
40533
|
+
* @remarks
|
|
40534
|
+
* The order ID.
|
|
40535
|
+
*
|
|
40536
|
+
* @example
|
|
40537
|
+
* 237850846720798
|
|
40538
|
+
*/
|
|
38563
40539
|
orderId?: string;
|
|
40540
|
+
/**
|
|
40541
|
+
* @remarks
|
|
40542
|
+
* The request ID.
|
|
40543
|
+
*
|
|
40544
|
+
* @example
|
|
40545
|
+
* 535BD857-E88F-5B4F-A18C-FAF59A74741F
|
|
40546
|
+
*/
|
|
38564
40547
|
requestId?: string;
|
|
38565
40548
|
static names(): {
|
|
38566
40549
|
[key: string]: string;
|
|
@@ -38786,9 +40769,21 @@ export declare class StartDBInstanceResponse extends $tea.Model {
|
|
|
38786
40769
|
export declare class StartRCInstanceRequest extends $tea.Model {
|
|
38787
40770
|
/**
|
|
38788
40771
|
* @remarks
|
|
40772
|
+
* The instance ID.
|
|
40773
|
+
*
|
|
38789
40774
|
* This parameter is required.
|
|
40775
|
+
*
|
|
40776
|
+
* @example
|
|
40777
|
+
* rc-l02u59b2kjfd2us0****
|
|
38790
40778
|
*/
|
|
38791
40779
|
instanceId?: string;
|
|
40780
|
+
/**
|
|
40781
|
+
* @remarks
|
|
40782
|
+
* The region ID.
|
|
40783
|
+
*
|
|
40784
|
+
* @example
|
|
40785
|
+
* cn-hangzhou
|
|
40786
|
+
*/
|
|
38792
40787
|
regionId?: string;
|
|
38793
40788
|
static names(): {
|
|
38794
40789
|
[key: string]: string;
|
|
@@ -38801,6 +40796,13 @@ export declare class StartRCInstanceRequest extends $tea.Model {
|
|
|
38801
40796
|
});
|
|
38802
40797
|
}
|
|
38803
40798
|
export declare class StartRCInstanceResponseBody extends $tea.Model {
|
|
40799
|
+
/**
|
|
40800
|
+
* @remarks
|
|
40801
|
+
* The request ID.
|
|
40802
|
+
*
|
|
40803
|
+
* @example
|
|
40804
|
+
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
40805
|
+
*/
|
|
38804
40806
|
requestId?: string;
|
|
38805
40807
|
static names(): {
|
|
38806
40808
|
[key: string]: string;
|
|
@@ -38898,12 +40900,34 @@ export declare class StopDBInstanceResponse extends $tea.Model {
|
|
|
38898
40900
|
});
|
|
38899
40901
|
}
|
|
38900
40902
|
export declare class StopRCInstanceRequest extends $tea.Model {
|
|
40903
|
+
/**
|
|
40904
|
+
* @remarks
|
|
40905
|
+
* Specifies whether to forcefully stop the instance. Valid values:
|
|
40906
|
+
*
|
|
40907
|
+
* * **true**
|
|
40908
|
+
* * **false** (default)
|
|
40909
|
+
*
|
|
40910
|
+
* @example
|
|
40911
|
+
* false
|
|
40912
|
+
*/
|
|
38901
40913
|
forceStop?: boolean;
|
|
38902
40914
|
/**
|
|
38903
40915
|
* @remarks
|
|
40916
|
+
* The instance ID.
|
|
40917
|
+
*
|
|
38904
40918
|
* This parameter is required.
|
|
40919
|
+
*
|
|
40920
|
+
* @example
|
|
40921
|
+
* rc-m5sc1271fv344a1r****
|
|
38905
40922
|
*/
|
|
38906
40923
|
instanceId?: string;
|
|
40924
|
+
/**
|
|
40925
|
+
* @remarks
|
|
40926
|
+
* The region ID.
|
|
40927
|
+
*
|
|
40928
|
+
* @example
|
|
40929
|
+
* cn-hangzhou
|
|
40930
|
+
*/
|
|
38907
40931
|
regionId?: string;
|
|
38908
40932
|
static names(): {
|
|
38909
40933
|
[key: string]: string;
|
|
@@ -38916,6 +40940,13 @@ export declare class StopRCInstanceRequest extends $tea.Model {
|
|
|
38916
40940
|
});
|
|
38917
40941
|
}
|
|
38918
40942
|
export declare class StopRCInstanceResponseBody extends $tea.Model {
|
|
40943
|
+
/**
|
|
40944
|
+
* @remarks
|
|
40945
|
+
* The request ID.
|
|
40946
|
+
*
|
|
40947
|
+
* @example
|
|
40948
|
+
* 3E36DB6E-AE3B-53B6-A703-85F883FD1B2C
|
|
40949
|
+
*/
|
|
38919
40950
|
requestId?: string;
|
|
38920
40951
|
static names(): {
|
|
38921
40952
|
[key: string]: string;
|
|
@@ -39246,8 +41277,23 @@ export declare class SwitchDBInstanceVpcResponse extends $tea.Model {
|
|
|
39246
41277
|
});
|
|
39247
41278
|
}
|
|
39248
41279
|
export declare class SyncRCKeyPairRequest extends $tea.Model {
|
|
41280
|
+
/**
|
|
41281
|
+
* @remarks
|
|
41282
|
+
* The name of the key pair.
|
|
41283
|
+
*
|
|
41284
|
+
* @example
|
|
41285
|
+
* customer_keypairs
|
|
41286
|
+
*/
|
|
39249
41287
|
keyPairName?: string;
|
|
41288
|
+
/**
|
|
41289
|
+
* @remarks
|
|
41290
|
+
* The region ID.
|
|
41291
|
+
*
|
|
41292
|
+
* @example
|
|
41293
|
+
* cn-hangzhou
|
|
41294
|
+
*/
|
|
39250
41295
|
regionId?: string;
|
|
41296
|
+
syncMode?: boolean;
|
|
39251
41297
|
static names(): {
|
|
39252
41298
|
[key: string]: string;
|
|
39253
41299
|
};
|
|
@@ -39259,7 +41305,18 @@ export declare class SyncRCKeyPairRequest extends $tea.Model {
|
|
|
39259
41305
|
});
|
|
39260
41306
|
}
|
|
39261
41307
|
export declare class SyncRCKeyPairResponseBody extends $tea.Model {
|
|
41308
|
+
/**
|
|
41309
|
+
* @remarks
|
|
41310
|
+
* The details of the result.
|
|
41311
|
+
*/
|
|
39262
41312
|
data?: SyncRCKeyPairResponseBodyData;
|
|
41313
|
+
/**
|
|
41314
|
+
* @remarks
|
|
41315
|
+
* The request ID.
|
|
41316
|
+
*
|
|
41317
|
+
* @example
|
|
41318
|
+
* 60478CCB-95EA-5D06-8A51-CAC83A316E9A
|
|
41319
|
+
*/
|
|
39263
41320
|
requestId?: string;
|
|
39264
41321
|
static names(): {
|
|
39265
41322
|
[key: string]: string;
|
|
@@ -40917,7 +42974,7 @@ export declare class CreateDBInstanceRequestServerlessConfig extends $tea.Model
|
|
|
40917
42974
|
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to 8**
|
|
40918
42975
|
* * Serverless ApsaraDB RDS for PostgreSQL instances: **1 to 14**
|
|
40919
42976
|
*
|
|
40920
|
-
* > The value of this parameter must be greater than or equal to the value of **MinCapacity** and can be set only to an **integer**.
|
|
42977
|
+
* > The value of this parameter must be greater than or equal to the value of the **MinCapacity** parameter and can be set only to an **integer**.
|
|
40921
42978
|
*
|
|
40922
42979
|
* @example
|
|
40923
42980
|
* 8
|
|
@@ -40925,13 +42982,13 @@ export declare class CreateDBInstanceRequestServerlessConfig extends $tea.Model
|
|
|
40925
42982
|
maxCapacity?: number;
|
|
40926
42983
|
/**
|
|
40927
42984
|
* @remarks
|
|
40928
|
-
* The minimum
|
|
42985
|
+
* The minimum number of RCUs. Valid values:
|
|
40929
42986
|
*
|
|
40930
42987
|
* * Serverless ApsaraDB RDS for MySQL instances: **0.5 to 32**.
|
|
40931
42988
|
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to 8**. Only integers are supported.
|
|
40932
42989
|
* * Serverless ApsaraDB RDS for PostgreSQL instances: **0.5 to 14**.
|
|
40933
42990
|
*
|
|
40934
|
-
* > The value of this parameter must be less than or equal to the value of **MaxCapacity
|
|
42991
|
+
* > The value of this parameter must be less than or equal to the value of the **MaxCapacity** parameter.
|
|
40935
42992
|
*
|
|
40936
42993
|
* @example
|
|
40937
42994
|
* 0.5
|
|
@@ -41930,6 +43987,15 @@ export declare class DescribeAccountsResponseBodyAccountsDBInstanceAccount exten
|
|
|
41930
43987
|
* f
|
|
41931
43988
|
*/
|
|
41932
43989
|
bypassRLS?: string;
|
|
43990
|
+
/**
|
|
43991
|
+
* @remarks
|
|
43992
|
+
* Indicates whether the password policy is applied.
|
|
43993
|
+
*
|
|
43994
|
+
* > This parameter is returned only for instances that run SQL Server.
|
|
43995
|
+
*
|
|
43996
|
+
* @example
|
|
43997
|
+
* true
|
|
43998
|
+
*/
|
|
41933
43999
|
checkPolicy?: boolean;
|
|
41934
44000
|
/**
|
|
41935
44001
|
* @remarks
|
|
@@ -41970,6 +44036,15 @@ export declare class DescribeAccountsResponseBodyAccountsDBInstanceAccount exten
|
|
|
41970
44036
|
* The details about the permissions that are granted to the account.
|
|
41971
44037
|
*/
|
|
41972
44038
|
databasePrivileges?: DescribeAccountsResponseBodyAccountsDBInstanceAccountDatabasePrivileges;
|
|
44039
|
+
/**
|
|
44040
|
+
* @remarks
|
|
44041
|
+
* The expiration time of the password.
|
|
44042
|
+
*
|
|
44043
|
+
* > This parameter is returned only for instances that run SQL Server.
|
|
44044
|
+
*
|
|
44045
|
+
* @example
|
|
44046
|
+
* 2024-10-21
|
|
44047
|
+
*/
|
|
41973
44048
|
passwordExpireTime?: string;
|
|
41974
44049
|
/**
|
|
41975
44050
|
* @remarks
|
|
@@ -44470,9 +46545,10 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44470
46545
|
export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeExtra extends $tea.Model {
|
|
44471
46546
|
/**
|
|
44472
46547
|
* @remarks
|
|
44473
|
-
*
|
|
44474
|
-
*
|
|
44475
|
-
*
|
|
46548
|
+
* The group policy of the instance account.
|
|
46549
|
+
*
|
|
46550
|
+
* * MaximumPasswordAge: maximum use time
|
|
46551
|
+
* * MinimumPasswordAge: minimum use time
|
|
44476
46552
|
*
|
|
44477
46553
|
* @example
|
|
44478
46554
|
* {"MaximumPasswordAge": 42,"MinimumPasswordAge": 30}
|
|
@@ -44811,7 +46887,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44811
46887
|
DBInstanceDescription?: string;
|
|
44812
46888
|
/**
|
|
44813
46889
|
* @remarks
|
|
44814
|
-
* The disk usage of the instance. Unit:
|
|
46890
|
+
* The disk usage of the instance. Unit: byte.
|
|
44815
46891
|
*
|
|
44816
46892
|
* @example
|
|
44817
46893
|
* 300
|
|
@@ -44915,7 +46991,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44915
46991
|
deletionProtection?: boolean;
|
|
44916
46992
|
/**
|
|
44917
46993
|
* @remarks
|
|
44918
|
-
* Disaster
|
|
46994
|
+
* Disaster Recovery Instance Information
|
|
44919
46995
|
*
|
|
44920
46996
|
* @example
|
|
44921
46997
|
* {"replicatorAccount": "******","sourcePort":******,"sourceAddress": "pgm-2ze******","sourceCategory": "aliyunRDS","sourceInstanceRegionId": "cn-******","replicatorPassword": "******","sourceInstanceName": "pgm-2ze******"}
|
|
@@ -44962,7 +47038,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
44962
47038
|
expireTime?: string;
|
|
44963
47039
|
/**
|
|
44964
47040
|
* @remarks
|
|
44965
|
-
* The extended information
|
|
47041
|
+
* The extended information about the instance.
|
|
44966
47042
|
*/
|
|
44967
47043
|
extra?: DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeExtra;
|
|
44968
47044
|
/**
|
|
@@ -45108,6 +47184,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
45108
47184
|
* 150
|
|
45109
47185
|
*/
|
|
45110
47186
|
maxIOPS?: number;
|
|
47187
|
+
multipleTempUpgrade?: boolean;
|
|
45111
47188
|
/**
|
|
45112
47189
|
* @remarks
|
|
45113
47190
|
* Indicates whether PgBouncer is enabled.
|
|
@@ -48312,6 +50389,36 @@ export declare class DescribeDBProxyResponseBodyDBProxyConnectStringItems extend
|
|
|
48312
50389
|
[key: string]: any;
|
|
48313
50390
|
});
|
|
48314
50391
|
}
|
|
50392
|
+
export declare class DescribeDBProxyResponseBodyDBProxyNodesDBProxyNodes extends $tea.Model {
|
|
50393
|
+
cpuCores?: string;
|
|
50394
|
+
/**
|
|
50395
|
+
* @example
|
|
50396
|
+
* pn-xxxxxxx01
|
|
50397
|
+
*/
|
|
50398
|
+
nodeId?: string;
|
|
50399
|
+
zoneId?: string;
|
|
50400
|
+
static names(): {
|
|
50401
|
+
[key: string]: string;
|
|
50402
|
+
};
|
|
50403
|
+
static types(): {
|
|
50404
|
+
[key: string]: any;
|
|
50405
|
+
};
|
|
50406
|
+
constructor(map?: {
|
|
50407
|
+
[key: string]: any;
|
|
50408
|
+
});
|
|
50409
|
+
}
|
|
50410
|
+
export declare class DescribeDBProxyResponseBodyDBProxyNodes extends $tea.Model {
|
|
50411
|
+
DBProxyNodes?: DescribeDBProxyResponseBodyDBProxyNodesDBProxyNodes[];
|
|
50412
|
+
static names(): {
|
|
50413
|
+
[key: string]: string;
|
|
50414
|
+
};
|
|
50415
|
+
static types(): {
|
|
50416
|
+
[key: string]: any;
|
|
50417
|
+
};
|
|
50418
|
+
constructor(map?: {
|
|
50419
|
+
[key: string]: any;
|
|
50420
|
+
});
|
|
50421
|
+
}
|
|
48315
50422
|
export declare class DescribeDBProxyResponseBodyDbProxyEndpointItemsDbProxyEndpointItems extends $tea.Model {
|
|
48316
50423
|
/**
|
|
48317
50424
|
* @remarks
|
|
@@ -48373,6 +50480,32 @@ export declare class DescribeDBProxyResponseBodyDbProxyEndpointItems extends $te
|
|
|
48373
50480
|
[key: string]: any;
|
|
48374
50481
|
});
|
|
48375
50482
|
}
|
|
50483
|
+
export declare class DescribeDBProxyEndpointResponseBodyDBProxyNodesDBProxyNodes extends $tea.Model {
|
|
50484
|
+
cpuCores?: string;
|
|
50485
|
+
nodeId?: string;
|
|
50486
|
+
zoneId?: string;
|
|
50487
|
+
static names(): {
|
|
50488
|
+
[key: string]: string;
|
|
50489
|
+
};
|
|
50490
|
+
static types(): {
|
|
50491
|
+
[key: string]: any;
|
|
50492
|
+
};
|
|
50493
|
+
constructor(map?: {
|
|
50494
|
+
[key: string]: any;
|
|
50495
|
+
});
|
|
50496
|
+
}
|
|
50497
|
+
export declare class DescribeDBProxyEndpointResponseBodyDBProxyNodes extends $tea.Model {
|
|
50498
|
+
DBProxyNodes?: DescribeDBProxyEndpointResponseBodyDBProxyNodesDBProxyNodes[];
|
|
50499
|
+
static names(): {
|
|
50500
|
+
[key: string]: string;
|
|
50501
|
+
};
|
|
50502
|
+
static types(): {
|
|
50503
|
+
[key: string]: any;
|
|
50504
|
+
};
|
|
50505
|
+
constructor(map?: {
|
|
50506
|
+
[key: string]: any;
|
|
50507
|
+
});
|
|
50508
|
+
}
|
|
48376
50509
|
export declare class DescribeDBProxyEndpointResponseBodyEndpointConnectItemsEndpointConnectItems extends $tea.Model {
|
|
48377
50510
|
/**
|
|
48378
50511
|
* @remarks
|
|
@@ -50232,26 +52365,22 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50232
52365
|
*
|
|
50233
52366
|
* "steps": [
|
|
50234
52367
|
* {
|
|
50235
|
-
* "step_name": "exec_task", // The name of the step, which matches CurrentStepName.
|
|
50236
|
-
* "action_info": { // The actions supported for this step.
|
|
50237
|
-
* "Waiting": [ // The status, which matches Status.
|
|
50238
|
-
* "modifySwitchTime" // The action. Multiple actions are supported.
|
|
50239
|
-
* ]
|
|
52368
|
+
* "step_name": "exec_task", // The name of the step, which matches CurrentStepName. "action_info": { // The actions supported for this step. "Waiting": [ // The status, which matches Status. "modifySwitchTime" // The action. Multiple actions are supported. ]
|
|
50240
52369
|
* }
|
|
50241
52370
|
* },
|
|
50242
52371
|
* {
|
|
50243
|
-
* "step_name": "init_task", // The name of the step.
|
|
50244
|
-
* "action_info": { // The actions supported for this step.
|
|
50245
|
-
* "Running": [ // The status.
|
|
50246
|
-
* "cancel", // The action.
|
|
50247
|
-
* "pause"
|
|
52372
|
+
* "step_name": "init_task", // The name of the step. "action_info": { // The actions supported for this step. "Running": [ // The status. "cancel", // The action. "pause"
|
|
50248
52373
|
* ]
|
|
50249
52374
|
* }
|
|
50250
52375
|
* }
|
|
50251
52376
|
* ]
|
|
50252
52377
|
* }
|
|
50253
52378
|
*
|
|
50254
|
-
* The system may support the following actions:
|
|
52379
|
+
* The system may support the following actions:
|
|
52380
|
+
*
|
|
52381
|
+
* * **retry**: retries the action.
|
|
52382
|
+
* * **cancel**: cancels the action.
|
|
52383
|
+
* * **modifySwitchTime**: changes the switching time or restoration time.
|
|
50255
52384
|
*
|
|
50256
52385
|
* @example
|
|
50257
52386
|
* {\\"steps\\":[{\\"action_info\\":{\\"Waiting\\":[\\"modifySwitchTime\\"]},\\"step_name\\":\\"exec_task\\"}]}
|
|
@@ -50267,7 +52396,10 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50267
52396
|
callerSource?: string;
|
|
50268
52397
|
/**
|
|
50269
52398
|
* @remarks
|
|
50270
|
-
* The request
|
|
52399
|
+
* The source of the request. Valid values:
|
|
52400
|
+
*
|
|
52401
|
+
* * **System**
|
|
52402
|
+
* * **User**
|
|
50271
52403
|
*
|
|
50272
52404
|
* @example
|
|
50273
52405
|
* User
|
|
@@ -50291,7 +52423,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50291
52423
|
dbType?: string;
|
|
50292
52424
|
/**
|
|
50293
52425
|
* @remarks
|
|
50294
|
-
* The end time of the task.
|
|
52426
|
+
* The end time of the task.
|
|
50295
52427
|
*
|
|
50296
52428
|
* @example
|
|
50297
52429
|
* 2022-02-03T12:06:17Z
|
|
@@ -50299,7 +52431,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50299
52431
|
endTime?: string;
|
|
50300
52432
|
/**
|
|
50301
52433
|
* @remarks
|
|
50302
|
-
* The instance ID.
|
|
52434
|
+
* The instance ID.
|
|
50303
52435
|
*
|
|
50304
52436
|
* @example
|
|
50305
52437
|
* rm-uf62br2491p5l****
|
|
@@ -50307,7 +52439,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50307
52439
|
instanceId?: string;
|
|
50308
52440
|
/**
|
|
50309
52441
|
* @remarks
|
|
50310
|
-
* The instance name
|
|
52442
|
+
* The instance name.
|
|
50311
52443
|
*
|
|
50312
52444
|
* @example
|
|
50313
52445
|
* test
|
|
@@ -50315,7 +52447,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50315
52447
|
instanceName?: string;
|
|
50316
52448
|
/**
|
|
50317
52449
|
* @remarks
|
|
50318
|
-
* The
|
|
52450
|
+
* The instance category.
|
|
50319
52451
|
*
|
|
50320
52452
|
* @example
|
|
50321
52453
|
* Instance
|
|
@@ -50323,7 +52455,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50323
52455
|
instanceType?: string;
|
|
50324
52456
|
/**
|
|
50325
52457
|
* @remarks
|
|
50326
|
-
* The
|
|
52458
|
+
* The service name.
|
|
50327
52459
|
*
|
|
50328
52460
|
* @example
|
|
50329
52461
|
* rds
|
|
@@ -50331,7 +52463,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50331
52463
|
product?: string;
|
|
50332
52464
|
/**
|
|
50333
52465
|
* @remarks
|
|
50334
|
-
*
|
|
52466
|
+
* Indicates the task progress.
|
|
50335
52467
|
*
|
|
50336
52468
|
* @example
|
|
50337
52469
|
* 79.0
|
|
@@ -50363,7 +52495,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50363
52495
|
remainTime?: number;
|
|
50364
52496
|
/**
|
|
50365
52497
|
* @remarks
|
|
50366
|
-
* The start time of the task.
|
|
52498
|
+
* The start time of the task.
|
|
50367
52499
|
*
|
|
50368
52500
|
* @example
|
|
50369
52501
|
* 2022-02-03T11:31:03Z
|
|
@@ -50371,7 +52503,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50371
52503
|
startTime?: string;
|
|
50372
52504
|
/**
|
|
50373
52505
|
* @remarks
|
|
50374
|
-
* The status
|
|
52506
|
+
* The task status. Valid values:
|
|
50375
52507
|
*
|
|
50376
52508
|
* * Scheduled
|
|
50377
52509
|
* * Running
|
|
@@ -50387,7 +52519,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50387
52519
|
status?: string;
|
|
50388
52520
|
/**
|
|
50389
52521
|
* @remarks
|
|
50390
|
-
* The task details
|
|
52522
|
+
* The task details.
|
|
50391
52523
|
*
|
|
50392
52524
|
* @example
|
|
50393
52525
|
* {\\"callerUid\\":\\"test\\"}
|
|
@@ -50395,7 +52527,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50395
52527
|
taskDetail?: string;
|
|
50396
52528
|
/**
|
|
50397
52529
|
* @remarks
|
|
50398
|
-
* The task ID
|
|
52530
|
+
* The task ID.
|
|
50399
52531
|
*
|
|
50400
52532
|
* @example
|
|
50401
52533
|
* t-83br18hloy3faf****
|
|
@@ -50403,7 +52535,7 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
50403
52535
|
taskId?: string;
|
|
50404
52536
|
/**
|
|
50405
52537
|
* @remarks
|
|
50406
|
-
* The task type
|
|
52538
|
+
* The task type.
|
|
50407
52539
|
*
|
|
50408
52540
|
* @example
|
|
50409
52541
|
* autotest_dispatch_cases
|
|
@@ -51444,7 +53576,7 @@ export declare class DescribeModifyParameterLogResponseBodyItemsParameterChangeL
|
|
|
51444
53576
|
parameterName?: string;
|
|
51445
53577
|
/**
|
|
51446
53578
|
* @remarks
|
|
51447
|
-
* The status
|
|
53579
|
+
* The status. Valid values:
|
|
51448
53580
|
*
|
|
51449
53581
|
* * **Applied:** The new value has taken effect.
|
|
51450
53582
|
* * **Syncing:** The new value is being applied and has not taken effect.
|
|
@@ -52376,9 +54508,9 @@ export declare class DescribePostgresExtensionsResponseBodyInstalledExtensions e
|
|
|
52376
54508
|
requires?: string;
|
|
52377
54509
|
/**
|
|
52378
54510
|
* @remarks
|
|
52379
|
-
* Alibaba Cloud account
|
|
54511
|
+
* The ID of the Alibaba Cloud account.
|
|
52380
54512
|
*
|
|
52381
|
-
* >
|
|
54513
|
+
* > This parameter is returned only for self-developed exclusive extensions. You can view exclusive extensions only within your Alibaba Cloud account.
|
|
52382
54514
|
*
|
|
52383
54515
|
* @example
|
|
52384
54516
|
* 181578148294****
|
|
@@ -52461,9 +54593,9 @@ export declare class DescribePostgresExtensionsResponseBodyUninstalledExtensions
|
|
|
52461
54593
|
requires?: string;
|
|
52462
54594
|
/**
|
|
52463
54595
|
* @remarks
|
|
52464
|
-
* Alibaba Cloud account
|
|
54596
|
+
* The ID of the Alibaba Cloud account.
|
|
52465
54597
|
*
|
|
52466
|
-
* >
|
|
54598
|
+
* > This parameter is returned only for self-developed exclusive extensions. You can view exclusive extensions only within your Alibaba Cloud account.
|
|
52467
54599
|
*
|
|
52468
54600
|
* @example
|
|
52469
54601
|
* 181578148294****
|
|
@@ -52856,8 +54988,29 @@ export declare class DescribePriceResponseBodyServerlessPrice extends $tea.Model
|
|
|
52856
54988
|
});
|
|
52857
54989
|
}
|
|
52858
54990
|
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacitiesCapacity extends $tea.Model {
|
|
54991
|
+
/**
|
|
54992
|
+
* @remarks
|
|
54993
|
+
* The number of RDS Custom instances that reside in the zone and can be added to the deployment set.
|
|
54994
|
+
*
|
|
54995
|
+
* @example
|
|
54996
|
+
* 18
|
|
54997
|
+
*/
|
|
52859
54998
|
availableAmount?: number;
|
|
54999
|
+
/**
|
|
55000
|
+
* @remarks
|
|
55001
|
+
* The number of RDS Custom instances that reside in the zone in the deployment set.
|
|
55002
|
+
*
|
|
55003
|
+
* @example
|
|
55004
|
+
* 2
|
|
55005
|
+
*/
|
|
52860
55006
|
usedAmount?: number;
|
|
55007
|
+
/**
|
|
55008
|
+
* @remarks
|
|
55009
|
+
* The zone ID. Only the IDs of the zones to which the existing RDS Custom instances in the deployment set belong are returned.
|
|
55010
|
+
*
|
|
55011
|
+
* @example
|
|
55012
|
+
* cn-hangzhou-j
|
|
55013
|
+
*/
|
|
52861
55014
|
zoneId?: string;
|
|
52862
55015
|
static names(): {
|
|
52863
55016
|
[key: string]: string;
|
|
@@ -52894,17 +55047,97 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymen
|
|
|
52894
55047
|
});
|
|
52895
55048
|
}
|
|
52896
55049
|
export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSet extends $tea.Model {
|
|
55050
|
+
/**
|
|
55051
|
+
* @remarks
|
|
55052
|
+
* The details of the capacities of the deployment set. This parameter is valid only when the deployment set contains existing RDS Custom instances. The value contains the details of the capacities of the deployment set in different zones.
|
|
55053
|
+
*/
|
|
52897
55054
|
capacities?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacities;
|
|
55055
|
+
/**
|
|
55056
|
+
* @remarks
|
|
55057
|
+
* The time when the deployment set was created. The time follows the ISO 8601 standard in the *yyyy-MM-dd*T*HH:mm:ss*Z format. The time is displayed in UTC.
|
|
55058
|
+
*
|
|
55059
|
+
* @example
|
|
55060
|
+
* 2024-06-19T07:15:44Z
|
|
55061
|
+
*/
|
|
52898
55062
|
createTime?: string;
|
|
55063
|
+
/**
|
|
55064
|
+
* @remarks
|
|
55065
|
+
* The deployment set description.
|
|
55066
|
+
*
|
|
55067
|
+
* @example
|
|
55068
|
+
* test
|
|
55069
|
+
*/
|
|
52899
55070
|
deploymentSetDescription?: string;
|
|
55071
|
+
/**
|
|
55072
|
+
* @remarks
|
|
55073
|
+
* The deployment set ID.
|
|
55074
|
+
*
|
|
55075
|
+
* @example
|
|
55076
|
+
* ds-ob5n4rbgy****
|
|
55077
|
+
*/
|
|
52900
55078
|
deploymentSetId?: string;
|
|
55079
|
+
/**
|
|
55080
|
+
* @remarks
|
|
55081
|
+
* The deployment set name.
|
|
55082
|
+
*
|
|
55083
|
+
* @example
|
|
55084
|
+
* deployment_test
|
|
55085
|
+
*/
|
|
52901
55086
|
deploymentSetName?: string;
|
|
55087
|
+
/**
|
|
55088
|
+
* @remarks
|
|
55089
|
+
* The deployment strategy. The return value of this parameter is the value of the `Strategy` request parameter.
|
|
55090
|
+
*
|
|
55091
|
+
* @example
|
|
55092
|
+
* Availability
|
|
55093
|
+
*/
|
|
52902
55094
|
deploymentStrategy?: string;
|
|
55095
|
+
/**
|
|
55096
|
+
* @remarks
|
|
55097
|
+
* The deployment domain.
|
|
55098
|
+
*
|
|
55099
|
+
* @example
|
|
55100
|
+
* default
|
|
55101
|
+
*/
|
|
52903
55102
|
domain?: string;
|
|
55103
|
+
/**
|
|
55104
|
+
* @remarks
|
|
55105
|
+
* The deployment granularity.
|
|
55106
|
+
*
|
|
55107
|
+
* @example
|
|
55108
|
+
* None
|
|
55109
|
+
*/
|
|
52904
55110
|
granularity?: string;
|
|
55111
|
+
/**
|
|
55112
|
+
* @remarks
|
|
55113
|
+
* The number of groups in the deployment set.
|
|
55114
|
+
*
|
|
55115
|
+
* > This parameter is valid only when the Strategy request parameter is set to AvailabilityGroup.
|
|
55116
|
+
*
|
|
55117
|
+
* @example
|
|
55118
|
+
* 3
|
|
55119
|
+
*/
|
|
52905
55120
|
groupCount?: number;
|
|
55121
|
+
/**
|
|
55122
|
+
* @remarks
|
|
55123
|
+
* The number of RDS Custom instances in the deployment set.
|
|
55124
|
+
*
|
|
55125
|
+
* @example
|
|
55126
|
+
* 1
|
|
55127
|
+
*/
|
|
52906
55128
|
instanceAmount?: number;
|
|
55129
|
+
/**
|
|
55130
|
+
* @remarks
|
|
55131
|
+
* The ID of the RDS Custom instance in the deployment set.
|
|
55132
|
+
*/
|
|
52907
55133
|
instanceIds?: DescribeRCDeploymentSetsResponseBodyDeploymentSetsDeploymentSetInstanceIds;
|
|
55134
|
+
/**
|
|
55135
|
+
* @remarks
|
|
55136
|
+
* The deployment strategy.
|
|
55137
|
+
*
|
|
55138
|
+
* @example
|
|
55139
|
+
* LooseDispersion
|
|
55140
|
+
*/
|
|
52908
55141
|
strategy?: string;
|
|
52909
55142
|
static names(): {
|
|
52910
55143
|
[key: string]: string;
|
|
@@ -52929,18 +55162,123 @@ export declare class DescribeRCDeploymentSetsResponseBodyDeploymentSets extends
|
|
|
52929
55162
|
});
|
|
52930
55163
|
}
|
|
52931
55164
|
export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
55165
|
+
/**
|
|
55166
|
+
* @remarks
|
|
55167
|
+
* The image architecture. Valid values:
|
|
55168
|
+
*
|
|
55169
|
+
* * x86_64
|
|
55170
|
+
* * arm64
|
|
55171
|
+
*
|
|
55172
|
+
* @example
|
|
55173
|
+
* x86_64
|
|
55174
|
+
*/
|
|
52932
55175
|
architecture?: string;
|
|
55176
|
+
/**
|
|
55177
|
+
* @remarks
|
|
55178
|
+
* The time when the image was created.
|
|
55179
|
+
*
|
|
55180
|
+
* @example
|
|
55181
|
+
* 2024-04-25T02:17:40Z
|
|
55182
|
+
*/
|
|
52933
55183
|
creationTime?: string;
|
|
55184
|
+
/**
|
|
55185
|
+
* @remarks
|
|
55186
|
+
* The description of the image.
|
|
55187
|
+
*
|
|
55188
|
+
* @example
|
|
55189
|
+
* test
|
|
55190
|
+
*/
|
|
52934
55191
|
description?: string;
|
|
55192
|
+
/**
|
|
55193
|
+
* @remarks
|
|
55194
|
+
* The image ID.
|
|
55195
|
+
*
|
|
55196
|
+
* @example
|
|
55197
|
+
* m-2oqiu973jwcxe****
|
|
55198
|
+
*/
|
|
52935
55199
|
imageId?: string;
|
|
55200
|
+
/**
|
|
55201
|
+
* @remarks
|
|
55202
|
+
* The image name.
|
|
55203
|
+
*
|
|
55204
|
+
* @example
|
|
55205
|
+
* Created_from_i-2zeh17y17sz677x****
|
|
55206
|
+
*/
|
|
52936
55207
|
imageName?: string;
|
|
55208
|
+
/**
|
|
55209
|
+
* @remarks
|
|
55210
|
+
* The image version.
|
|
55211
|
+
*
|
|
55212
|
+
* @example
|
|
55213
|
+
* 2
|
|
55214
|
+
*/
|
|
52937
55215
|
imageVersion?: string;
|
|
55216
|
+
/**
|
|
55217
|
+
* @remarks
|
|
55218
|
+
* Indicates whether the image is a public image. Public images include public images provided by Alibaba Cloud and custom images published as community images.
|
|
55219
|
+
*
|
|
55220
|
+
* * **true**: The image is a public image.
|
|
55221
|
+
* * **false**: The image is not a public image.
|
|
55222
|
+
*
|
|
55223
|
+
* @example
|
|
55224
|
+
* false
|
|
55225
|
+
*/
|
|
52938
55226
|
isPublic?: boolean;
|
|
55227
|
+
/**
|
|
55228
|
+
* @remarks
|
|
55229
|
+
* The display name of the operating system in Chinese.
|
|
55230
|
+
*/
|
|
52939
55231
|
OSName?: string;
|
|
55232
|
+
/**
|
|
55233
|
+
* @remarks
|
|
55234
|
+
* The display name of the operating system in English.
|
|
55235
|
+
*
|
|
55236
|
+
* @example
|
|
55237
|
+
* Alibaba Cloud Linux 2.1903 LTS 64 bit Quick Boot
|
|
55238
|
+
*/
|
|
52940
55239
|
OSNameEn?: string;
|
|
55240
|
+
/**
|
|
55241
|
+
* @remarks
|
|
55242
|
+
* The type of the operating system. Valid values:
|
|
55243
|
+
*
|
|
55244
|
+
* * **windows**
|
|
55245
|
+
* * **linux**
|
|
55246
|
+
*
|
|
55247
|
+
* @example
|
|
55248
|
+
* linux
|
|
55249
|
+
*/
|
|
52941
55250
|
OSType?: string;
|
|
55251
|
+
/**
|
|
55252
|
+
* @remarks
|
|
55253
|
+
* The image size. Unit: GiB.
|
|
55254
|
+
*
|
|
55255
|
+
* @example
|
|
55256
|
+
* 40
|
|
55257
|
+
*/
|
|
52942
55258
|
size?: number;
|
|
55259
|
+
/**
|
|
55260
|
+
* @remarks
|
|
55261
|
+
* The image status. Valid values:
|
|
55262
|
+
*
|
|
55263
|
+
* * **Unavailable**
|
|
55264
|
+
* * **Available**
|
|
55265
|
+
* * **Creating**
|
|
55266
|
+
* * **CreateFailed**
|
|
55267
|
+
*
|
|
55268
|
+
* @example
|
|
55269
|
+
* Available
|
|
55270
|
+
*/
|
|
52943
55271
|
status?: string;
|
|
55272
|
+
/**
|
|
55273
|
+
* @remarks
|
|
55274
|
+
* Indicates whether the image is used by the RDS Custom instance. Valid values:
|
|
55275
|
+
*
|
|
55276
|
+
* * **instance**: The image is used to create one or more RDS Custom instances.
|
|
55277
|
+
* * **none**: The image is not used to create RDS Custom instances.
|
|
55278
|
+
*
|
|
55279
|
+
* @example
|
|
55280
|
+
* instance
|
|
55281
|
+
*/
|
|
52944
55282
|
usage?: string;
|
|
52945
55283
|
static names(): {
|
|
52946
55284
|
[key: string]: string;
|
|
@@ -52953,10 +55291,51 @@ export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
|
52953
55291
|
});
|
|
52954
55292
|
}
|
|
52955
55293
|
export declare class DescribeRCInstanceAttributeResponseBodyDataDisksDataDisk extends $tea.Model {
|
|
55294
|
+
/**
|
|
55295
|
+
* @remarks
|
|
55296
|
+
* The category of the data disk.
|
|
55297
|
+
*
|
|
55298
|
+
* @example
|
|
55299
|
+
* cloud_essd
|
|
55300
|
+
*/
|
|
52956
55301
|
category?: string;
|
|
55302
|
+
/**
|
|
55303
|
+
* @remarks
|
|
55304
|
+
* Indicates whether the data disk is released when the instance is released. Valid values:
|
|
55305
|
+
*
|
|
55306
|
+
* * **true**: The data disk is released when the instance is released.
|
|
55307
|
+
* * **false**: The data disk is reserved when the instance is released.
|
|
55308
|
+
*
|
|
55309
|
+
* @example
|
|
55310
|
+
* true
|
|
55311
|
+
*/
|
|
52957
55312
|
deleteWithInstance?: boolean;
|
|
55313
|
+
/**
|
|
55314
|
+
* @remarks
|
|
55315
|
+
* Indicates whether the data disk is encrypted. Valid values:
|
|
55316
|
+
*
|
|
55317
|
+
* * **true**
|
|
55318
|
+
* * **false**
|
|
55319
|
+
*
|
|
55320
|
+
* @example
|
|
55321
|
+
* true
|
|
55322
|
+
*/
|
|
52958
55323
|
encrypted?: string;
|
|
55324
|
+
/**
|
|
55325
|
+
* @remarks
|
|
55326
|
+
* The performance level of data disk. This parameter is available when the data disk is an Enterprise SSD (ESSD).
|
|
55327
|
+
*
|
|
55328
|
+
* @example
|
|
55329
|
+
* PL1
|
|
55330
|
+
*/
|
|
52959
55331
|
performanceLevel?: string;
|
|
55332
|
+
/**
|
|
55333
|
+
* @remarks
|
|
55334
|
+
* The size of the data disk. Unit: GiB.
|
|
55335
|
+
*
|
|
55336
|
+
* @example
|
|
55337
|
+
* 40
|
|
55338
|
+
*/
|
|
52960
55339
|
size?: number;
|
|
52961
55340
|
static names(): {
|
|
52962
55341
|
[key: string]: string;
|
|
@@ -52981,7 +55360,21 @@ export declare class DescribeRCInstanceAttributeResponseBodyDataDisks extends $t
|
|
|
52981
55360
|
});
|
|
52982
55361
|
}
|
|
52983
55362
|
export declare class DescribeRCInstanceAttributeResponseBodyDedicatedHostAttribute extends $tea.Model {
|
|
55363
|
+
/**
|
|
55364
|
+
* @remarks
|
|
55365
|
+
* The ID of the dedicated host.
|
|
55366
|
+
*
|
|
55367
|
+
* @example
|
|
55368
|
+
* None
|
|
55369
|
+
*/
|
|
52984
55370
|
dedicatedHostId?: string;
|
|
55371
|
+
/**
|
|
55372
|
+
* @remarks
|
|
55373
|
+
* The name of the dedicated host.
|
|
55374
|
+
*
|
|
55375
|
+
* @example
|
|
55376
|
+
* None
|
|
55377
|
+
*/
|
|
52985
55378
|
dedicatedHostName?: string;
|
|
52986
55379
|
static names(): {
|
|
52987
55380
|
[key: string]: string;
|
|
@@ -52994,9 +55387,42 @@ export declare class DescribeRCInstanceAttributeResponseBodyDedicatedHostAttribu
|
|
|
52994
55387
|
});
|
|
52995
55388
|
}
|
|
52996
55389
|
export declare class DescribeRCInstanceAttributeResponseBodyEipAddress extends $tea.Model {
|
|
55390
|
+
/**
|
|
55391
|
+
* @remarks
|
|
55392
|
+
* The EIP ID.
|
|
55393
|
+
*
|
|
55394
|
+
* @example
|
|
55395
|
+
* eip-bp14k3rz6cbg6zxbe****
|
|
55396
|
+
*/
|
|
52997
55397
|
allocationId?: string;
|
|
55398
|
+
/**
|
|
55399
|
+
* @remarks
|
|
55400
|
+
* The maximum Internet bandwidth of the EIP. Unit: Mbit/s.
|
|
55401
|
+
*
|
|
55402
|
+
* @example
|
|
55403
|
+
* 5
|
|
55404
|
+
*/
|
|
52998
55405
|
bandwidth?: number;
|
|
55406
|
+
/**
|
|
55407
|
+
* @remarks
|
|
55408
|
+
* The billing method of the Internet-facing instance. Valid values:
|
|
55409
|
+
*
|
|
55410
|
+
* * **paybytraffic:** pay-by-data-transfer
|
|
55411
|
+
* * **paybybandwidth**: pay-by-bandwidth
|
|
55412
|
+
*
|
|
55413
|
+
* > If the **pay-by-traffic** billing method is used for network usage, the maximum inbound and outbound bandwidths are used as the upper limits of bandwidths instead of guaranteed performance specifications. In scenarios in which demands exceed resource supplies, the maximum bandwidths may not be reached. If you want guaranteed bandwidths for your instance, use the **pay-by-bandwidth** billing method for network usage.
|
|
55414
|
+
*
|
|
55415
|
+
* @example
|
|
55416
|
+
* paybytraffic
|
|
55417
|
+
*/
|
|
52999
55418
|
internetChargeType?: string;
|
|
55419
|
+
/**
|
|
55420
|
+
* @remarks
|
|
55421
|
+
* The EIP.
|
|
55422
|
+
*
|
|
55423
|
+
* @example
|
|
55424
|
+
* 8.147.XXX.XXX
|
|
55425
|
+
*/
|
|
53000
55426
|
ipAddress?: string;
|
|
53001
55427
|
static names(): {
|
|
53002
55428
|
[key: string]: string;
|
|
@@ -53021,6 +55447,19 @@ export declare class DescribeRCInstanceAttributeResponseBodyInnerIpAddress exten
|
|
|
53021
55447
|
});
|
|
53022
55448
|
}
|
|
53023
55449
|
export declare class DescribeRCInstanceAttributeResponseBodyOperationLocksLockReason extends $tea.Model {
|
|
55450
|
+
/**
|
|
55451
|
+
* @remarks
|
|
55452
|
+
* The reason why the instance is locked. Valid values:
|
|
55453
|
+
*
|
|
55454
|
+
* * **financial**: The instance is locked due to overdue payments.
|
|
55455
|
+
* * **security**: The instance is locked for security purposes.
|
|
55456
|
+
* * **recycling**: The instance is locked because the instance is a preemptible instance and pending to be released.
|
|
55457
|
+
* * **dedicatedhostfinancial**: The instance is locked due to overdue payments for the dedicated host.
|
|
55458
|
+
* * **refunded**: The instance is locked because a refund was made for the instance.
|
|
55459
|
+
*
|
|
55460
|
+
* @example
|
|
55461
|
+
* None
|
|
55462
|
+
*/
|
|
53024
55463
|
lockReason?: string;
|
|
53025
55464
|
static names(): {
|
|
53026
55465
|
[key: string]: string;
|
|
@@ -53081,9 +55520,34 @@ export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributesPrivate
|
|
|
53081
55520
|
});
|
|
53082
55521
|
}
|
|
53083
55522
|
export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributes extends $tea.Model {
|
|
55523
|
+
/**
|
|
55524
|
+
* @remarks
|
|
55525
|
+
* The network address translation (NAT) IP address of the instance. The NAT IP address is used by instances in different VPCs for communication.
|
|
55526
|
+
*
|
|
55527
|
+
* @example
|
|
55528
|
+
* None
|
|
55529
|
+
*/
|
|
53084
55530
|
natIpAddress?: string;
|
|
55531
|
+
/**
|
|
55532
|
+
* @remarks
|
|
55533
|
+
* The private IP addresses of the instance.
|
|
55534
|
+
*/
|
|
53085
55535
|
privateIpAddress?: DescribeRCInstanceAttributeResponseBodyVpcAttributesPrivateIpAddress;
|
|
55536
|
+
/**
|
|
55537
|
+
* @remarks
|
|
55538
|
+
* The vSwitch ID.
|
|
55539
|
+
*
|
|
55540
|
+
* @example
|
|
55541
|
+
* vsw-bp1nt15muovrc5qdj****
|
|
55542
|
+
*/
|
|
53086
55543
|
vSwitchId?: string;
|
|
55544
|
+
/**
|
|
55545
|
+
* @remarks
|
|
55546
|
+
* The VPC ID.
|
|
55547
|
+
*
|
|
55548
|
+
* @example
|
|
55549
|
+
* vpc-2zeu747v4765aw2id****
|
|
55550
|
+
*/
|
|
53087
55551
|
vpcId?: string;
|
|
53088
55552
|
static names(): {
|
|
53089
55553
|
[key: string]: string;
|
|
@@ -53096,15 +55560,93 @@ export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributes extend
|
|
|
53096
55560
|
});
|
|
53097
55561
|
}
|
|
53098
55562
|
export declare class DescribeRCInstancesResponseBodyRCInstances extends $tea.Model {
|
|
55563
|
+
/**
|
|
55564
|
+
* @remarks
|
|
55565
|
+
* The cluster name.
|
|
55566
|
+
*
|
|
55567
|
+
* @example
|
|
55568
|
+
* testrdscustom
|
|
55569
|
+
*/
|
|
53099
55570
|
clusterName?: string;
|
|
55571
|
+
/**
|
|
55572
|
+
* @remarks
|
|
55573
|
+
* The database type.
|
|
55574
|
+
*
|
|
55575
|
+
* @example
|
|
55576
|
+
* rds_custom
|
|
55577
|
+
*/
|
|
53100
55578
|
dbType?: string;
|
|
55579
|
+
/**
|
|
55580
|
+
* @remarks
|
|
55581
|
+
* The instance description.
|
|
55582
|
+
*
|
|
55583
|
+
* @example
|
|
55584
|
+
* test
|
|
55585
|
+
*/
|
|
53101
55586
|
description?: string;
|
|
55587
|
+
/**
|
|
55588
|
+
* @remarks
|
|
55589
|
+
* The time when the task was created. The time is displayed in GMT.
|
|
55590
|
+
*
|
|
55591
|
+
* @example
|
|
55592
|
+
* 2023-03-22 07:56:53.0
|
|
55593
|
+
*/
|
|
53102
55594
|
gmtCreated?: string;
|
|
55595
|
+
/**
|
|
55596
|
+
* @remarks
|
|
55597
|
+
* The host IP address.
|
|
55598
|
+
*
|
|
55599
|
+
* @example
|
|
55600
|
+
* 172.30.XXX.XXX
|
|
55601
|
+
*/
|
|
53103
55602
|
hostIp?: string;
|
|
55603
|
+
/**
|
|
55604
|
+
* @remarks
|
|
55605
|
+
* The host name.
|
|
55606
|
+
*
|
|
55607
|
+
* @example
|
|
55608
|
+
* i-2zeaiz4g9u23f40m****
|
|
55609
|
+
*/
|
|
53104
55610
|
hostName?: string;
|
|
55611
|
+
/**
|
|
55612
|
+
* @remarks
|
|
55613
|
+
* The instance ID.
|
|
55614
|
+
*
|
|
55615
|
+
* @example
|
|
55616
|
+
* rm-2ze704f*****
|
|
55617
|
+
*/
|
|
53105
55618
|
instanceId?: string;
|
|
55619
|
+
/**
|
|
55620
|
+
* @remarks
|
|
55621
|
+
* The region ID.
|
|
55622
|
+
*
|
|
55623
|
+
* @example
|
|
55624
|
+
* cn-hangzhou
|
|
55625
|
+
*/
|
|
53106
55626
|
regionId?: string;
|
|
55627
|
+
/**
|
|
55628
|
+
* @remarks
|
|
55629
|
+
* The instance status. Valid values:
|
|
55630
|
+
*
|
|
55631
|
+
* * **Pending**
|
|
55632
|
+
* * **Running**
|
|
55633
|
+
* * **Starting**
|
|
55634
|
+
* * **Stopping**
|
|
55635
|
+
* * **Stopped**
|
|
55636
|
+
*
|
|
55637
|
+
* > If the value returned for the DescribeRCInstances operation is different from the value that is returned for the **DescribeRCInstanceAttribute** operation, the value returned for the **DescribeRCInstanceAttribute** operation shall prevail.
|
|
55638
|
+
*
|
|
55639
|
+
* @example
|
|
55640
|
+
* Running
|
|
55641
|
+
*/
|
|
53107
55642
|
status?: string;
|
|
55643
|
+
/**
|
|
55644
|
+
* @remarks
|
|
55645
|
+
* The VPC ID.
|
|
55646
|
+
*
|
|
55647
|
+
* @example
|
|
55648
|
+
* vpc-uf6f7l4fg90****
|
|
55649
|
+
*/
|
|
53108
55650
|
vpcId?: string;
|
|
53109
55651
|
static names(): {
|
|
53110
55652
|
[key: string]: string;
|
|
@@ -55837,6 +58379,36 @@ export declare class ListClassesResponseBodyItems extends $tea.Model {
|
|
|
55837
58379
|
* 2500
|
|
55838
58380
|
*/
|
|
55839
58381
|
referencePrice?: string;
|
|
58382
|
+
/**
|
|
58383
|
+
* @remarks
|
|
58384
|
+
* The RDS edition of the instance. Valid values:
|
|
58385
|
+
*
|
|
58386
|
+
* * Regular instance
|
|
58387
|
+
*
|
|
58388
|
+
* * **Basic**: RDS Basic Edition
|
|
58389
|
+
* * **HighAvailability**: RDS High-availability Edition
|
|
58390
|
+
* * **cluster**: RDS Cluster Edition for ApsaraDB RDS for MySQL or PostgreSQL
|
|
58391
|
+
* * **AlwaysOn**: RDS Cluster Edition for ApsaraDB RDS for SQL Server
|
|
58392
|
+
* * **Finance**: RDS Basic Edition for serverless instances
|
|
58393
|
+
*
|
|
58394
|
+
* * Serverless instance
|
|
58395
|
+
*
|
|
58396
|
+
* * **serverless_basic**: RDS Basic Edition for serverless instances. This edition is available only for instances that run MySQL and PostgreSQL.
|
|
58397
|
+
* * **serverless_standard**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run MySQL and PostgreSQL.
|
|
58398
|
+
* * **serverless_ha**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run SQL Server.
|
|
58399
|
+
*
|
|
58400
|
+
* @example
|
|
58401
|
+
* Basic
|
|
58402
|
+
*/
|
|
58403
|
+
category?: string;
|
|
58404
|
+
/**
|
|
58405
|
+
* @remarks
|
|
58406
|
+
* The storage type of the instance.
|
|
58407
|
+
*
|
|
58408
|
+
* @example
|
|
58409
|
+
* cloud_essd
|
|
58410
|
+
*/
|
|
58411
|
+
storageType?: string;
|
|
55840
58412
|
static names(): {
|
|
55841
58413
|
[key: string]: string;
|
|
55842
58414
|
};
|
|
@@ -56204,9 +58776,7 @@ export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends
|
|
|
56204
58776
|
* * **true**
|
|
56205
58777
|
* * **false** (default)
|
|
56206
58778
|
*
|
|
56207
|
-
* >
|
|
56208
|
-
*
|
|
56209
|
-
* * This parameter is required only for serverless instances that run MySQL and PostgreSQL. After the automatic start and stop feature is enabled, if no connections to the instance are established within 10 minutes, the instance is suspended. After a connection to the instance is established, the instance is automatically resumed.
|
|
58779
|
+
* > This parameter is required only for serverless instances that run MySQL and PostgreSQL. After the automatic start and stop feature is enabled, if no connections to the instance are established within 10 minutes, the instance is suspended. After a connection to the instance is established, the instance is automatically resumed.
|
|
56210
58780
|
*
|
|
56211
58781
|
* @example
|
|
56212
58782
|
* true
|
|
@@ -56254,11 +58824,8 @@ export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends
|
|
|
56254
58824
|
* * **true**
|
|
56255
58825
|
* * **false** (default)
|
|
56256
58826
|
*
|
|
56257
|
-
* >
|
|
56258
|
-
*
|
|
56259
|
-
* * This parameter is required only for serverless instances that run MySQL and PostgreSQL. If you set this parameter to true, a service interruption that lasts 30 to 120 seconds occurs during forced scaling. Process with caution.
|
|
56260
|
-
*
|
|
56261
|
-
* * The RCU scaling for a serverless instance immediately takes effect. In some cases, such as the execution of large transactions, the scaling does not immediately take effect. In this case, you can enable this feature to forcefully scale the RCUs of the instance.
|
|
58827
|
+
* > * This parameter is required only for serverless instances that run MySQL and PostgreSQL. If you set this parameter to true, a service interruption that lasts 30 to 120 seconds occurs during forced scaling. Process with caution.
|
|
58828
|
+
* > * The RCU scaling for a serverless instance immediately takes effect. In some cases, such as the execution of large transactions, the scaling does not immediately take effect. In this case, you can enable this feature to forcefully scale the RCUs of the instance.
|
|
56262
58829
|
*
|
|
56263
58830
|
* @example
|
|
56264
58831
|
* false
|
|
@@ -56301,6 +58868,71 @@ export declare class ModifyDBNodeRequestDBNode extends $tea.Model {
|
|
|
56301
58868
|
[key: string]: any;
|
|
56302
58869
|
});
|
|
56303
58870
|
}
|
|
58871
|
+
export declare class ModifyDBProxyRequestDBProxyNodes extends $tea.Model {
|
|
58872
|
+
/**
|
|
58873
|
+
* @example
|
|
58874
|
+
* 1
|
|
58875
|
+
*/
|
|
58876
|
+
cpuCores?: string;
|
|
58877
|
+
/**
|
|
58878
|
+
* @example
|
|
58879
|
+
* 2
|
|
58880
|
+
*/
|
|
58881
|
+
nodeCounts?: string;
|
|
58882
|
+
/**
|
|
58883
|
+
* @example
|
|
58884
|
+
* cn-hagnzhou-c
|
|
58885
|
+
*/
|
|
58886
|
+
zoneId?: string;
|
|
58887
|
+
static names(): {
|
|
58888
|
+
[key: string]: string;
|
|
58889
|
+
};
|
|
58890
|
+
static types(): {
|
|
58891
|
+
[key: string]: any;
|
|
58892
|
+
};
|
|
58893
|
+
constructor(map?: {
|
|
58894
|
+
[key: string]: any;
|
|
58895
|
+
});
|
|
58896
|
+
}
|
|
58897
|
+
export declare class ModifyDBProxyInstanceRequestDBProxyNodes extends $tea.Model {
|
|
58898
|
+
/**
|
|
58899
|
+
* @example
|
|
58900
|
+
* 1
|
|
58901
|
+
*/
|
|
58902
|
+
cpuCores?: string;
|
|
58903
|
+
/**
|
|
58904
|
+
* @example
|
|
58905
|
+
* 2
|
|
58906
|
+
*/
|
|
58907
|
+
nodeCounts?: string;
|
|
58908
|
+
/**
|
|
58909
|
+
* @example
|
|
58910
|
+
* cn-hagnzhou-c
|
|
58911
|
+
*/
|
|
58912
|
+
zoneId?: string;
|
|
58913
|
+
static names(): {
|
|
58914
|
+
[key: string]: string;
|
|
58915
|
+
};
|
|
58916
|
+
static types(): {
|
|
58917
|
+
[key: string]: any;
|
|
58918
|
+
};
|
|
58919
|
+
constructor(map?: {
|
|
58920
|
+
[key: string]: any;
|
|
58921
|
+
});
|
|
58922
|
+
}
|
|
58923
|
+
export declare class ModifyDBProxyInstanceRequestMigrateAZ extends $tea.Model {
|
|
58924
|
+
dbProxyEndpointId?: string;
|
|
58925
|
+
destVSwitchId?: string;
|
|
58926
|
+
static names(): {
|
|
58927
|
+
[key: string]: string;
|
|
58928
|
+
};
|
|
58929
|
+
static types(): {
|
|
58930
|
+
[key: string]: any;
|
|
58931
|
+
};
|
|
58932
|
+
constructor(map?: {
|
|
58933
|
+
[key: string]: any;
|
|
58934
|
+
});
|
|
58935
|
+
}
|
|
56304
58936
|
export declare class ModifyMaskingRulesRequestRuleConfig extends $tea.Model {
|
|
56305
58937
|
columns?: string[];
|
|
56306
58938
|
databases?: string[];
|
|
@@ -56773,10 +59405,48 @@ export declare class RemoveTagsFromResourceRequestTag extends $tea.Model {
|
|
|
56773
59405
|
});
|
|
56774
59406
|
}
|
|
56775
59407
|
export declare class RunRCInstancesRequestDataDisk extends $tea.Model {
|
|
59408
|
+
/**
|
|
59409
|
+
* @remarks
|
|
59410
|
+
* The type of the data disk. Set the value to **cloud_essd**, which indicates Enterprise SSDs (ESSDs).
|
|
59411
|
+
*
|
|
59412
|
+
* @example
|
|
59413
|
+
* local_ssd
|
|
59414
|
+
*/
|
|
56776
59415
|
category?: string;
|
|
59416
|
+
/**
|
|
59417
|
+
* @remarks
|
|
59418
|
+
* The reserved parameter. This parameter is not supported.
|
|
59419
|
+
*
|
|
59420
|
+
* @example
|
|
59421
|
+
* null
|
|
59422
|
+
*/
|
|
56777
59423
|
deleteWithInstance?: boolean;
|
|
59424
|
+
/**
|
|
59425
|
+
* @remarks
|
|
59426
|
+
* Specifies whether to encrypt the cloud disk. Valid values:
|
|
59427
|
+
*
|
|
59428
|
+
* * **true**
|
|
59429
|
+
* * **false** (default)
|
|
59430
|
+
*
|
|
59431
|
+
* @example
|
|
59432
|
+
* false
|
|
59433
|
+
*/
|
|
56778
59434
|
encrypted?: string;
|
|
59435
|
+
/**
|
|
59436
|
+
* @remarks
|
|
59437
|
+
* The reserved parameter. This parameter is not supported.
|
|
59438
|
+
*
|
|
59439
|
+
* @example
|
|
59440
|
+
* null
|
|
59441
|
+
*/
|
|
56779
59442
|
performanceLevel?: string;
|
|
59443
|
+
/**
|
|
59444
|
+
* @remarks
|
|
59445
|
+
* The size of the data disk. Unit: GiB.
|
|
59446
|
+
*
|
|
59447
|
+
* @example
|
|
59448
|
+
* 10
|
|
59449
|
+
*/
|
|
56780
59450
|
size?: number;
|
|
56781
59451
|
static names(): {
|
|
56782
59452
|
[key: string]: string;
|
|
@@ -56789,7 +59459,21 @@ export declare class RunRCInstancesRequestDataDisk extends $tea.Model {
|
|
|
56789
59459
|
});
|
|
56790
59460
|
}
|
|
56791
59461
|
export declare class RunRCInstancesRequestSystemDisk extends $tea.Model {
|
|
59462
|
+
/**
|
|
59463
|
+
* @remarks
|
|
59464
|
+
* The type of the system disk. Set the value to **cloud_essd**, which indicates ESSDs.
|
|
59465
|
+
*
|
|
59466
|
+
* @example
|
|
59467
|
+
* cloud_essd
|
|
59468
|
+
*/
|
|
56792
59469
|
category?: string;
|
|
59470
|
+
/**
|
|
59471
|
+
* @remarks
|
|
59472
|
+
* The size of the system disk. Unit: GiB. Only performance level 1 (PL1) ESSDs are supported. Valid values: 20 to 2048.
|
|
59473
|
+
*
|
|
59474
|
+
* @example
|
|
59475
|
+
* 20
|
|
59476
|
+
*/
|
|
56793
59477
|
size?: string;
|
|
56794
59478
|
static names(): {
|
|
56795
59479
|
[key: string]: string;
|
|
@@ -56814,6 +59498,16 @@ export declare class RunRCInstancesResponseBodyInstanceIdSets extends $tea.Model
|
|
|
56814
59498
|
});
|
|
56815
59499
|
}
|
|
56816
59500
|
export declare class SyncRCKeyPairResponseBodyData extends $tea.Model {
|
|
59501
|
+
/**
|
|
59502
|
+
* @remarks
|
|
59503
|
+
* Indicates whether the synchronization succeeded. Valid values:
|
|
59504
|
+
*
|
|
59505
|
+
* * **true**
|
|
59506
|
+
* * **false**
|
|
59507
|
+
*
|
|
59508
|
+
* @example
|
|
59509
|
+
* true
|
|
59510
|
+
*/
|
|
56817
59511
|
isSyncInfo?: boolean;
|
|
56818
59512
|
static names(): {
|
|
56819
59513
|
[key: string]: string;
|
|
@@ -57460,13 +60154,13 @@ export default class Client extends OpenApi {
|
|
|
57460
60154
|
* * PostgreSQL
|
|
57461
60155
|
* * SQL Server
|
|
57462
60156
|
* * MariaDB
|
|
57463
|
-
* ### [](#)
|
|
57464
|
-
* This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
57465
|
-
* ### [](#)
|
|
60157
|
+
* ### [](#)Feature description
|
|
60158
|
+
* 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).
|
|
60159
|
+
* ### [](#)Prerequisites
|
|
57466
60160
|
* Before you call this operation, make sure that the following requirements are met:
|
|
57467
60161
|
* * The instance is in the Running state.
|
|
57468
60162
|
* * The instance does not have ongoing backup tasks.
|
|
57469
|
-
* * The number of backup
|
|
60163
|
+
* * The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
57470
60164
|
* ### [](#)References
|
|
57471
60165
|
* * [Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
57472
60166
|
* * [Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -57487,13 +60181,13 @@ export default class Client extends OpenApi {
|
|
|
57487
60181
|
* * PostgreSQL
|
|
57488
60182
|
* * SQL Server
|
|
57489
60183
|
* * MariaDB
|
|
57490
|
-
* ### [](#)
|
|
57491
|
-
* This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also
|
|
57492
|
-
* ### [](#)
|
|
60184
|
+
* ### [](#)Feature description
|
|
60185
|
+
* 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).
|
|
60186
|
+
* ### [](#)Prerequisites
|
|
57493
60187
|
* Before you call this operation, make sure that the following requirements are met:
|
|
57494
60188
|
* * The instance is in the Running state.
|
|
57495
60189
|
* * The instance does not have ongoing backup tasks.
|
|
57496
|
-
* * The number of backup
|
|
60190
|
+
* * The number of backup sets that can be created for an instance per day cannot exceed 20.
|
|
57497
60191
|
* ### [](#)References
|
|
57498
60192
|
* * [Use the data backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/378074.html)
|
|
57499
60193
|
* * [Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96772.html)
|
|
@@ -58145,7 +60839,7 @@ export default class Client extends OpenApi {
|
|
|
58145
60839
|
*/
|
|
58146
60840
|
createPostgresExtensions(request: CreatePostgresExtensionsRequest): Promise<CreatePostgresExtensionsResponse>;
|
|
58147
60841
|
/**
|
|
58148
|
-
*
|
|
60842
|
+
* 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.
|
|
58149
60843
|
*
|
|
58150
60844
|
* @param request - CreateRCDeploymentSetRequest
|
|
58151
60845
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -58153,7 +60847,7 @@ export default class Client extends OpenApi {
|
|
|
58153
60847
|
*/
|
|
58154
60848
|
createRCDeploymentSetWithOptions(request: CreateRCDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateRCDeploymentSetResponse>;
|
|
58155
60849
|
/**
|
|
58156
|
-
*
|
|
60850
|
+
* 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.
|
|
58157
60851
|
*
|
|
58158
60852
|
* @param request - CreateRCDeploymentSetRequest
|
|
58159
60853
|
* @returns CreateRCDeploymentSetResponse
|
|
@@ -58779,7 +61473,7 @@ export default class Client extends OpenApi {
|
|
|
58779
61473
|
*/
|
|
58780
61474
|
deletePostgresExtensions(request: DeletePostgresExtensionsRequest): Promise<DeletePostgresExtensionsResponse>;
|
|
58781
61475
|
/**
|
|
58782
|
-
*
|
|
61476
|
+
* Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
58783
61477
|
*
|
|
58784
61478
|
* @param request - DeleteRCDeploymentSetRequest
|
|
58785
61479
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -58787,7 +61481,7 @@ export default class Client extends OpenApi {
|
|
|
58787
61481
|
*/
|
|
58788
61482
|
deleteRCDeploymentSetWithOptions(request: DeleteRCDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCDeploymentSetResponse>;
|
|
58789
61483
|
/**
|
|
58790
|
-
*
|
|
61484
|
+
* Deletes a deployment set for an RDS Custom instance. Before you call this operation, you must specify parameters such as RegionId and DeploymentSetId.
|
|
58791
61485
|
*
|
|
58792
61486
|
* @param request - DeleteRCDeploymentSetRequest
|
|
58793
61487
|
* @returns DeleteRCDeploymentSetResponse
|
|
@@ -58809,7 +61503,10 @@ export default class Client extends OpenApi {
|
|
|
58809
61503
|
*/
|
|
58810
61504
|
deleteRCInstance(request: DeleteRCInstanceRequest): Promise<DeleteRCInstanceResponse>;
|
|
58811
61505
|
/**
|
|
58812
|
-
*
|
|
61506
|
+
* Releases a subscription RDS Custom instance.
|
|
61507
|
+
*
|
|
61508
|
+
* @remarks
|
|
61509
|
+
* After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
58813
61510
|
*
|
|
58814
61511
|
* @param tmpReq - DeleteRCInstancesRequest
|
|
58815
61512
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -58817,7 +61514,10 @@ export default class Client extends OpenApi {
|
|
|
58817
61514
|
*/
|
|
58818
61515
|
deleteRCInstancesWithOptions(tmpReq: DeleteRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRCInstancesResponse>;
|
|
58819
61516
|
/**
|
|
58820
|
-
*
|
|
61517
|
+
* Releases a subscription RDS Custom instance.
|
|
61518
|
+
*
|
|
61519
|
+
* @remarks
|
|
61520
|
+
* After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
58821
61521
|
*
|
|
58822
61522
|
* @param request - DeleteRCInstancesRequest
|
|
58823
61523
|
* @returns DeleteRCInstancesResponse
|
|
@@ -60786,7 +63486,7 @@ export default class Client extends OpenApi {
|
|
|
60786
63486
|
*/
|
|
60787
63487
|
describeHASwitchConfig(request: DescribeHASwitchConfigRequest): Promise<DescribeHASwitchConfigResponse>;
|
|
60788
63488
|
/**
|
|
60789
|
-
*
|
|
63489
|
+
* Queries historical events in the event center.
|
|
60790
63490
|
*
|
|
60791
63491
|
* @param request - DescribeHistoryEventsRequest
|
|
60792
63492
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60794,14 +63494,14 @@ export default class Client extends OpenApi {
|
|
|
60794
63494
|
*/
|
|
60795
63495
|
describeHistoryEventsWithOptions(request: DescribeHistoryEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsResponse>;
|
|
60796
63496
|
/**
|
|
60797
|
-
*
|
|
63497
|
+
* Queries historical events in the event center.
|
|
60798
63498
|
*
|
|
60799
63499
|
* @param request - DescribeHistoryEventsRequest
|
|
60800
63500
|
* @returns DescribeHistoryEventsResponse
|
|
60801
63501
|
*/
|
|
60802
63502
|
describeHistoryEvents(request: DescribeHistoryEventsRequest): Promise<DescribeHistoryEventsResponse>;
|
|
60803
63503
|
/**
|
|
60804
|
-
* Queries
|
|
63504
|
+
* Queries the statistics of historical events in the event center.
|
|
60805
63505
|
*
|
|
60806
63506
|
* @param request - DescribeHistoryEventsStatRequest
|
|
60807
63507
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -60809,7 +63509,7 @@ export default class Client extends OpenApi {
|
|
|
60809
63509
|
*/
|
|
60810
63510
|
describeHistoryEventsStatWithOptions(request: DescribeHistoryEventsStatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsStatResponse>;
|
|
60811
63511
|
/**
|
|
60812
|
-
* Queries
|
|
63512
|
+
* Queries the statistics of historical events in the event center.
|
|
60813
63513
|
*
|
|
60814
63514
|
* @param request - DescribeHistoryEventsStatRequest
|
|
60815
63515
|
* @returns DescribeHistoryEventsStatResponse
|
|
@@ -61539,7 +64239,7 @@ export default class Client extends OpenApi {
|
|
|
61539
64239
|
*/
|
|
61540
64240
|
describeQuickSaleConfig(request: DescribeQuickSaleConfigRequest): Promise<DescribeQuickSaleConfigResponse>;
|
|
61541
64241
|
/**
|
|
61542
|
-
*
|
|
64242
|
+
* 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.
|
|
61543
64243
|
*
|
|
61544
64244
|
* @param request - DescribeRCDeploymentSetsRequest
|
|
61545
64245
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -61547,14 +64247,14 @@ export default class Client extends OpenApi {
|
|
|
61547
64247
|
*/
|
|
61548
64248
|
describeRCDeploymentSetsWithOptions(request: DescribeRCDeploymentSetsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCDeploymentSetsResponse>;
|
|
61549
64249
|
/**
|
|
61550
|
-
*
|
|
64250
|
+
* 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.
|
|
61551
64251
|
*
|
|
61552
64252
|
* @param request - DescribeRCDeploymentSetsRequest
|
|
61553
64253
|
* @returns DescribeRCDeploymentSetsResponse
|
|
61554
64254
|
*/
|
|
61555
64255
|
describeRCDeploymentSets(request: DescribeRCDeploymentSetsRequest): Promise<DescribeRCDeploymentSetsResponse>;
|
|
61556
64256
|
/**
|
|
61557
|
-
*
|
|
64257
|
+
* 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.
|
|
61558
64258
|
*
|
|
61559
64259
|
* @param request - DescribeRCImageListRequest
|
|
61560
64260
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -61562,14 +64262,14 @@ export default class Client extends OpenApi {
|
|
|
61562
64262
|
*/
|
|
61563
64263
|
describeRCImageListWithOptions(request: DescribeRCImageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCImageListResponse>;
|
|
61564
64264
|
/**
|
|
61565
|
-
*
|
|
64265
|
+
* 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.
|
|
61566
64266
|
*
|
|
61567
64267
|
* @param request - DescribeRCImageListRequest
|
|
61568
64268
|
* @returns DescribeRCImageListResponse
|
|
61569
64269
|
*/
|
|
61570
64270
|
describeRCImageList(request: DescribeRCImageListRequest): Promise<DescribeRCImageListResponse>;
|
|
61571
64271
|
/**
|
|
61572
|
-
*
|
|
64272
|
+
* Queries the details of an RDS Custom instance.
|
|
61573
64273
|
*
|
|
61574
64274
|
* @param request - DescribeRCInstanceAttributeRequest
|
|
61575
64275
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -61577,14 +64277,14 @@ export default class Client extends OpenApi {
|
|
|
61577
64277
|
*/
|
|
61578
64278
|
describeRCInstanceAttributeWithOptions(request: DescribeRCInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCInstanceAttributeResponse>;
|
|
61579
64279
|
/**
|
|
61580
|
-
*
|
|
64280
|
+
* Queries the details of an RDS Custom instance.
|
|
61581
64281
|
*
|
|
61582
64282
|
* @param request - DescribeRCInstanceAttributeRequest
|
|
61583
64283
|
* @returns DescribeRCInstanceAttributeResponse
|
|
61584
64284
|
*/
|
|
61585
64285
|
describeRCInstanceAttribute(request: DescribeRCInstanceAttributeRequest): Promise<DescribeRCInstanceAttributeResponse>;
|
|
61586
64286
|
/**
|
|
61587
|
-
*
|
|
64287
|
+
* Queries the details of an RDS Custom instance.
|
|
61588
64288
|
*
|
|
61589
64289
|
* @param request - DescribeRCInstancesRequest
|
|
61590
64290
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -61592,14 +64292,14 @@ export default class Client extends OpenApi {
|
|
|
61592
64292
|
*/
|
|
61593
64293
|
describeRCInstancesWithOptions(request: DescribeRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCInstancesResponse>;
|
|
61594
64294
|
/**
|
|
61595
|
-
*
|
|
64295
|
+
* Queries the details of an RDS Custom instance.
|
|
61596
64296
|
*
|
|
61597
64297
|
* @param request - DescribeRCInstancesRequest
|
|
61598
64298
|
* @returns DescribeRCInstancesResponse
|
|
61599
64299
|
*/
|
|
61600
64300
|
describeRCInstances(request: DescribeRCInstancesRequest): Promise<DescribeRCInstancesResponse>;
|
|
61601
64301
|
/**
|
|
61602
|
-
*
|
|
64302
|
+
* Queries the monitoring data of a metric for an RDS Custom instance.
|
|
61603
64303
|
*
|
|
61604
64304
|
* @param request - DescribeRCMetricListRequest
|
|
61605
64305
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -61607,7 +64307,7 @@ export default class Client extends OpenApi {
|
|
|
61607
64307
|
*/
|
|
61608
64308
|
describeRCMetricListWithOptions(request: DescribeRCMetricListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRCMetricListResponse>;
|
|
61609
64309
|
/**
|
|
61610
|
-
*
|
|
64310
|
+
* Queries the monitoring data of a metric for an RDS Custom instance.
|
|
61611
64311
|
*
|
|
61612
64312
|
* @param request - DescribeRCMetricListRequest
|
|
61613
64313
|
* @returns DescribeRCMetricListResponse
|
|
@@ -61745,7 +64445,7 @@ export default class Client extends OpenApi {
|
|
|
61745
64445
|
*/
|
|
61746
64446
|
describeRenewalPrice(request: DescribeRenewalPriceRequest): Promise<DescribeRenewalPriceResponse>;
|
|
61747
64447
|
/**
|
|
61748
|
-
* Queries the
|
|
64448
|
+
* Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
61749
64449
|
*
|
|
61750
64450
|
* @remarks
|
|
61751
64451
|
* ### [](#)Supported database engine
|
|
@@ -61757,7 +64457,7 @@ export default class Client extends OpenApi {
|
|
|
61757
64457
|
*/
|
|
61758
64458
|
describeReplicationLinkLogsWithOptions(request: DescribeReplicationLinkLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeReplicationLinkLogsResponse>;
|
|
61759
64459
|
/**
|
|
61760
|
-
* Queries the
|
|
64460
|
+
* Queries the operation logs of the data synchronization task for a specified ApsaraDB RDS instance.
|
|
61761
64461
|
*
|
|
61762
64462
|
* @remarks
|
|
61763
64463
|
* ### [](#)Supported database engine
|
|
@@ -62094,14 +64794,16 @@ export default class Client extends OpenApi {
|
|
|
62094
64794
|
* @remarks
|
|
62095
64795
|
* ### [](#)Supported database engines
|
|
62096
64796
|
* * MySQL
|
|
62097
|
-
*
|
|
64797
|
+
* **
|
|
64798
|
+
* **Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
62098
64799
|
* * SQL Server
|
|
62099
|
-
*
|
|
64800
|
+
* **
|
|
64801
|
+
* **Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
62100
64802
|
* * MariaDB
|
|
62101
|
-
* ### [](#)
|
|
64803
|
+
* ### [](#)Prerequisites
|
|
62102
64804
|
* * Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
62103
64805
|
* * If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
62104
|
-
* * Starting from
|
|
64806
|
+
* * Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
62105
64807
|
*
|
|
62106
64808
|
* @param request - DescribeSlowLogsRequest
|
|
62107
64809
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -62114,14 +64816,16 @@ export default class Client extends OpenApi {
|
|
|
62114
64816
|
* @remarks
|
|
62115
64817
|
* ### [](#)Supported database engines
|
|
62116
64818
|
* * MySQL
|
|
62117
|
-
*
|
|
64819
|
+
* **
|
|
64820
|
+
* **Note** This operation is not supported for RDS instances that run MySQL 5.7 on RDS Basic Edition.
|
|
62118
64821
|
* * SQL Server
|
|
62119
|
-
*
|
|
64822
|
+
* **
|
|
64823
|
+
* **Note** This operation is supported only for RDS instances that run SQL Server 2008 R2.
|
|
62120
64824
|
* * MariaDB
|
|
62121
|
-
* ### [](#)
|
|
64825
|
+
* ### [](#)Prerequisites
|
|
62122
64826
|
* * Slow query logs are not collected in real time and may show a latency of 6 to 8 hours.
|
|
62123
64827
|
* * If the return result is empty, check whether the StartTime and EndTime parameters are in UTC. If yes, no slow logs are generated within the specified time range.
|
|
62124
|
-
* * Starting from
|
|
64828
|
+
* * Starting from September 01, 2024, the template algorithm for slow queries is optimized. When you call the operation, you must change the value of the **SQLHASH** parameter. For more information, see [[Notice\\] Optimization of the template algorithm for slow queries](~~2845725~~).
|
|
62125
64829
|
*
|
|
62126
64830
|
* @param request - DescribeSlowLogsRequest
|
|
62127
64831
|
* @returns DescribeSlowLogsResponse
|
|
@@ -62857,6 +65561,29 @@ export default class Client extends OpenApi {
|
|
|
62857
65561
|
* @returns ModifyADInfoResponse
|
|
62858
65562
|
*/
|
|
62859
65563
|
modifyADInfo(request: ModifyADInfoRequest): Promise<ModifyADInfoResponse>;
|
|
65564
|
+
/**
|
|
65565
|
+
* Checks whether a password policy is applied to an account.
|
|
65566
|
+
*
|
|
65567
|
+
* @remarks
|
|
65568
|
+
* ### [](#)Supported database engine
|
|
65569
|
+
* * SQL Server
|
|
65570
|
+
*
|
|
65571
|
+
* @param request - ModifyAccountCheckPolicyRequest
|
|
65572
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
65573
|
+
* @returns ModifyAccountCheckPolicyResponse
|
|
65574
|
+
*/
|
|
65575
|
+
modifyAccountCheckPolicyWithOptions(request: ModifyAccountCheckPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountCheckPolicyResponse>;
|
|
65576
|
+
/**
|
|
65577
|
+
* Checks whether a password policy is applied to an account.
|
|
65578
|
+
*
|
|
65579
|
+
* @remarks
|
|
65580
|
+
* ### [](#)Supported database engine
|
|
65581
|
+
* * SQL Server
|
|
65582
|
+
*
|
|
65583
|
+
* @param request - ModifyAccountCheckPolicyRequest
|
|
65584
|
+
* @returns ModifyAccountCheckPolicyResponse
|
|
65585
|
+
*/
|
|
65586
|
+
modifyAccountCheckPolicy(request: ModifyAccountCheckPolicyRequest): Promise<ModifyAccountCheckPolicyResponse>;
|
|
62860
65587
|
/**
|
|
62861
65588
|
* Modifies the description of a database account.
|
|
62862
65589
|
*
|
|
@@ -62901,6 +65628,35 @@ export default class Client extends OpenApi {
|
|
|
62901
65628
|
* @returns ModifyAccountMaskingPrivilegeResponse
|
|
62902
65629
|
*/
|
|
62903
65630
|
modifyAccountMaskingPrivilege(request: ModifyAccountMaskingPrivilegeRequest): Promise<ModifyAccountMaskingPrivilegeResponse>;
|
|
65631
|
+
/**
|
|
65632
|
+
* Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
65633
|
+
*
|
|
65634
|
+
* @remarks
|
|
65635
|
+
* ### [](#)Supported database engines
|
|
65636
|
+
* 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.)
|
|
65637
|
+
* ### [](#)References
|
|
65638
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
65639
|
+
* [Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
65640
|
+
*
|
|
65641
|
+
* @param request - ModifyAccountSecurityPolicyRequest
|
|
65642
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
65643
|
+
* @returns ModifyAccountSecurityPolicyResponse
|
|
65644
|
+
*/
|
|
65645
|
+
modifyAccountSecurityPolicyWithOptions(request: ModifyAccountSecurityPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountSecurityPolicyResponse>;
|
|
65646
|
+
/**
|
|
65647
|
+
* Modifies the password policy for an account of an ApsaraDB RDS for SQL Server instance.
|
|
65648
|
+
*
|
|
65649
|
+
* @remarks
|
|
65650
|
+
* ### [](#)Supported database engines
|
|
65651
|
+
* 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.)
|
|
65652
|
+
* ### [](#)References
|
|
65653
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
65654
|
+
* [Create a custom password policy for an account of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95640.html)
|
|
65655
|
+
*
|
|
65656
|
+
* @param request - ModifyAccountSecurityPolicyRequest
|
|
65657
|
+
* @returns ModifyAccountSecurityPolicyResponse
|
|
65658
|
+
*/
|
|
65659
|
+
modifyAccountSecurityPolicy(request: ModifyAccountSecurityPolicyRequest): Promise<ModifyAccountSecurityPolicyResponse>;
|
|
62904
65660
|
/**
|
|
62905
65661
|
* Enables or disables the event history feature of an instance.
|
|
62906
65662
|
*
|
|
@@ -63750,11 +66506,11 @@ export default class Client extends OpenApi {
|
|
|
63750
66506
|
* * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/197456.html)
|
|
63751
66507
|
* * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/418272.html)
|
|
63752
66508
|
*
|
|
63753
|
-
* @param
|
|
66509
|
+
* @param tmpReq - ModifyDBProxyRequest
|
|
63754
66510
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
63755
66511
|
* @returns ModifyDBProxyResponse
|
|
63756
66512
|
*/
|
|
63757
|
-
modifyDBProxyWithOptions(
|
|
66513
|
+
modifyDBProxyWithOptions(tmpReq: ModifyDBProxyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBProxyResponse>;
|
|
63758
66514
|
/**
|
|
63759
66515
|
* Enables or disables the dedicated proxy feature for an instance.
|
|
63760
66516
|
*
|
|
@@ -63847,11 +66603,11 @@ export default class Client extends OpenApi {
|
|
|
63847
66603
|
* * PostgreSQL
|
|
63848
66604
|
* > 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~~).
|
|
63849
66605
|
*
|
|
63850
|
-
* @param
|
|
66606
|
+
* @param tmpReq - ModifyDBProxyInstanceRequest
|
|
63851
66607
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
63852
66608
|
* @returns ModifyDBProxyInstanceResponse
|
|
63853
66609
|
*/
|
|
63854
|
-
modifyDBProxyInstanceWithOptions(
|
|
66610
|
+
modifyDBProxyInstanceWithOptions(tmpReq: ModifyDBProxyInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBProxyInstanceResponse>;
|
|
63855
66611
|
/**
|
|
63856
66612
|
* Changes the configuration of a database proxy for an instance.
|
|
63857
66613
|
*
|
|
@@ -63986,7 +66742,7 @@ export default class Client extends OpenApi {
|
|
|
63986
66742
|
*/
|
|
63987
66743
|
modifyDbProxyInstanceSsl(request: ModifyDbProxyInstanceSslRequest): Promise<ModifyDbProxyInstanceSslResponse>;
|
|
63988
66744
|
/**
|
|
63989
|
-
*
|
|
66745
|
+
* Modifies information about the events in the event center.
|
|
63990
66746
|
*
|
|
63991
66747
|
* @param request - ModifyEventInfoRequest
|
|
63992
66748
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -63994,7 +66750,7 @@ export default class Client extends OpenApi {
|
|
|
63994
66750
|
*/
|
|
63995
66751
|
modifyEventInfoWithOptions(request: ModifyEventInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyEventInfoResponse>;
|
|
63996
66752
|
/**
|
|
63997
|
-
*
|
|
66753
|
+
* Modifies information about the events in the event center.
|
|
63998
66754
|
*
|
|
63999
66755
|
* @param request - ModifyEventInfoRequest
|
|
64000
66756
|
* @returns ModifyEventInfoResponse
|
|
@@ -64275,7 +67031,16 @@ export default class Client extends OpenApi {
|
|
|
64275
67031
|
*/
|
|
64276
67032
|
modifyParameterGroup(request: ModifyParameterGroupRequest): Promise<ModifyParameterGroupResponse>;
|
|
64277
67033
|
/**
|
|
64278
|
-
*
|
|
67034
|
+
* 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.
|
|
67035
|
+
*
|
|
67036
|
+
* @remarks
|
|
67037
|
+
* Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
67038
|
+
* Before you call this operation, take note of the following items:
|
|
67039
|
+
* * You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
67040
|
+
* * When you downgrade the instance type of an instance, take note of the following items:
|
|
67041
|
+
* * The instance must be in the Stopped state.
|
|
67042
|
+
* * The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
67043
|
+
* * 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.
|
|
64279
67044
|
*
|
|
64280
67045
|
* @param request - ModifyRCInstanceRequest
|
|
64281
67046
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64283,7 +67048,16 @@ export default class Client extends OpenApi {
|
|
|
64283
67048
|
*/
|
|
64284
67049
|
modifyRCInstanceWithOptions(request: ModifyRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRCInstanceResponse>;
|
|
64285
67050
|
/**
|
|
64286
|
-
*
|
|
67051
|
+
* 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.
|
|
67052
|
+
*
|
|
67053
|
+
* @remarks
|
|
67054
|
+
* Before you call this operation, make sure that you are familiar with the billing methods, pricing, and refund rules of RDS Custom.
|
|
67055
|
+
* Before you call this operation, take note of the following items:
|
|
67056
|
+
* * You cannot change the instance type of an expired instance. You can renew the instance and try again.
|
|
67057
|
+
* * When you downgrade the instance type of an instance, take note of the following items:
|
|
67058
|
+
* * The instance must be in the Stopped state.
|
|
67059
|
+
* * The price difference is refunded to the payment account you used. Vouchers that have been redeemed are not refundable.
|
|
67060
|
+
* * 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.
|
|
64287
67061
|
*
|
|
64288
67062
|
* @param request - ModifyRCInstanceRequest
|
|
64289
67063
|
* @returns ModifyRCInstanceResponse
|
|
@@ -64560,7 +67334,7 @@ export default class Client extends OpenApi {
|
|
|
64560
67334
|
*/
|
|
64561
67335
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
64562
67336
|
/**
|
|
64563
|
-
* Modifies the
|
|
67337
|
+
* Modifies information about the historical tasks in the task center.
|
|
64564
67338
|
*
|
|
64565
67339
|
* @param request - ModifyTaskInfoRequest
|
|
64566
67340
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64568,7 +67342,7 @@ export default class Client extends OpenApi {
|
|
|
64568
67342
|
*/
|
|
64569
67343
|
modifyTaskInfoWithOptions(request: ModifyTaskInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTaskInfoResponse>;
|
|
64570
67344
|
/**
|
|
64571
|
-
* Modifies the
|
|
67345
|
+
* Modifies information about the historical tasks in the task center.
|
|
64572
67346
|
*
|
|
64573
67347
|
* @param request - ModifyTaskInfoRequest
|
|
64574
67348
|
* @returns ModifyTaskInfoResponse
|
|
@@ -64700,7 +67474,7 @@ export default class Client extends OpenApi {
|
|
|
64700
67474
|
*/
|
|
64701
67475
|
queryRecommendByCode(request: QueryRecommendByCodeRequest): Promise<QueryRecommendByCodeResponse>;
|
|
64702
67476
|
/**
|
|
64703
|
-
*
|
|
67477
|
+
* Restarts an RDS Custom instance that is in the Running state.
|
|
64704
67478
|
*
|
|
64705
67479
|
* @param request - RebootRCInstanceRequest
|
|
64706
67480
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64708,7 +67482,7 @@ export default class Client extends OpenApi {
|
|
|
64708
67482
|
*/
|
|
64709
67483
|
rebootRCInstanceWithOptions(request: RebootRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RebootRCInstanceResponse>;
|
|
64710
67484
|
/**
|
|
64711
|
-
*
|
|
67485
|
+
* Restarts an RDS Custom instance that is in the Running state.
|
|
64712
67486
|
*
|
|
64713
67487
|
* @param request - RebootRCInstanceRequest
|
|
64714
67488
|
* @returns RebootRCInstanceResponse
|
|
@@ -65084,7 +67858,7 @@ export default class Client extends OpenApi {
|
|
|
65084
67858
|
*/
|
|
65085
67859
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
65086
67860
|
/**
|
|
65087
|
-
*
|
|
67861
|
+
* Expand the storage capacity of an RDS Custom instance.
|
|
65088
67862
|
*
|
|
65089
67863
|
* @param request - ResizeRCInstanceDiskRequest
|
|
65090
67864
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65092,7 +67866,7 @@ export default class Client extends OpenApi {
|
|
|
65092
67866
|
*/
|
|
65093
67867
|
resizeRCInstanceDiskWithOptions(request: ResizeRCInstanceDiskRequest, runtime: $Util.RuntimeOptions): Promise<ResizeRCInstanceDiskResponse>;
|
|
65094
67868
|
/**
|
|
65095
|
-
*
|
|
67869
|
+
* Expand the storage capacity of an RDS Custom instance.
|
|
65096
67870
|
*
|
|
65097
67871
|
* @param request - ResizeRCInstanceDiskRequest
|
|
65098
67872
|
* @returns ResizeRCInstanceDiskResponse
|
|
@@ -65143,12 +67917,12 @@ export default class Client extends OpenApi {
|
|
|
65143
67917
|
* Restores data to an existing instance across regions.
|
|
65144
67918
|
*
|
|
65145
67919
|
* @remarks
|
|
65146
|
-
* > Before restoration, you can call the
|
|
65147
|
-
* ### [](#)Supported database
|
|
67920
|
+
* > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
67921
|
+
* ### [](#)Supported database engines
|
|
65148
67922
|
* MySQL
|
|
65149
67923
|
* ### [](#)References
|
|
65150
|
-
* >
|
|
65151
|
-
* * [
|
|
67924
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
67925
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
65152
67926
|
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
65153
67927
|
*
|
|
65154
67928
|
* @param request - RestoreDdrTableRequest
|
|
@@ -65160,12 +67934,12 @@ export default class Client extends OpenApi {
|
|
|
65160
67934
|
* Restores data to an existing instance across regions.
|
|
65161
67935
|
*
|
|
65162
67936
|
* @remarks
|
|
65163
|
-
* > Before restoration, you can call the
|
|
65164
|
-
* ### [](#)Supported database
|
|
67937
|
+
* > Before restoration, you can call the CheckCreateDdrDBInstance operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
67938
|
+
* ### [](#)Supported database engines
|
|
65165
67939
|
* MySQL
|
|
65166
67940
|
* ### [](#)References
|
|
65167
|
-
* >
|
|
65168
|
-
* * [
|
|
67941
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
67942
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/120824.html)
|
|
65169
67943
|
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](https://help.aliyun.com/document_detail/120875.html)
|
|
65170
67944
|
*
|
|
65171
67945
|
* @param request - RestoreDdrTableRequest
|
|
@@ -65278,7 +68052,12 @@ export default class Client extends OpenApi {
|
|
|
65278
68052
|
*/
|
|
65279
68053
|
revokeOperatorPermission(request: RevokeOperatorPermissionRequest): Promise<RevokeOperatorPermissionResponse>;
|
|
65280
68054
|
/**
|
|
65281
|
-
*
|
|
68055
|
+
* Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
68056
|
+
*
|
|
68057
|
+
* @remarks
|
|
68058
|
+
* Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
68059
|
+
* * You can create only subscription RDS Custom instances.
|
|
68060
|
+
* * Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
65282
68061
|
*
|
|
65283
68062
|
* @param tmpReq - RunRCInstancesRequest
|
|
65284
68063
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65286,7 +68065,12 @@ export default class Client extends OpenApi {
|
|
|
65286
68065
|
*/
|
|
65287
68066
|
runRCInstancesWithOptions(tmpReq: RunRCInstancesRequest, runtime: $Util.RuntimeOptions): Promise<RunRCInstancesResponse>;
|
|
65288
68067
|
/**
|
|
65289
|
-
*
|
|
68068
|
+
* Creates one or more subscription RDS Custom instances. Before you call this operation, you must specify parameters such as ImageId, InstanceType, VSwitchId, and SecurityGroupId.
|
|
68069
|
+
*
|
|
68070
|
+
* @remarks
|
|
68071
|
+
* Before you create RDS Custom instances, you must submit a ticket to add your Alibaba Cloud account to a whitelist.
|
|
68072
|
+
* * You can create only subscription RDS Custom instances.
|
|
68073
|
+
* * Subscription RDS Custom instances are supported in the China (Shanghai), China (Shenzhen), China (Beijing), and China (Hangzhou) regions.
|
|
65290
68074
|
*
|
|
65291
68075
|
* @param request - RunRCInstancesRequest
|
|
65292
68076
|
* @returns RunRCInstancesResponse
|
|
@@ -65330,7 +68114,7 @@ export default class Client extends OpenApi {
|
|
|
65330
68114
|
*/
|
|
65331
68115
|
startDBInstance(request: StartDBInstanceRequest): Promise<StartDBInstanceResponse>;
|
|
65332
68116
|
/**
|
|
65333
|
-
*
|
|
68117
|
+
* Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
65334
68118
|
*
|
|
65335
68119
|
* @param request - StartRCInstanceRequest
|
|
65336
68120
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65338,7 +68122,7 @@ export default class Client extends OpenApi {
|
|
|
65338
68122
|
*/
|
|
65339
68123
|
startRCInstanceWithOptions(request: StartRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<StartRCInstanceResponse>;
|
|
65340
68124
|
/**
|
|
65341
|
-
*
|
|
68125
|
+
* Starts RDS Custom instances that are in the Stopped state. After the operation is successfully called, the instances enter the Starting state.
|
|
65342
68126
|
*
|
|
65343
68127
|
* @param request - StartRCInstanceRequest
|
|
65344
68128
|
* @returns StartRCInstanceResponse
|
|
@@ -65382,7 +68166,7 @@ export default class Client extends OpenApi {
|
|
|
65382
68166
|
*/
|
|
65383
68167
|
stopDBInstance(request: StopDBInstanceRequest): Promise<StopDBInstanceResponse>;
|
|
65384
68168
|
/**
|
|
65385
|
-
*
|
|
68169
|
+
* 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.
|
|
65386
68170
|
*
|
|
65387
68171
|
* @param request - StopRCInstanceRequest
|
|
65388
68172
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65390,7 +68174,7 @@ export default class Client extends OpenApi {
|
|
|
65390
68174
|
*/
|
|
65391
68175
|
stopRCInstanceWithOptions(request: StopRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<StopRCInstanceResponse>;
|
|
65392
68176
|
/**
|
|
65393
|
-
*
|
|
68177
|
+
* 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.
|
|
65394
68178
|
*
|
|
65395
68179
|
* @param request - StopRCInstanceRequest
|
|
65396
68180
|
* @returns StopRCInstanceResponse
|
|
@@ -65514,7 +68298,7 @@ export default class Client extends OpenApi {
|
|
|
65514
68298
|
*/
|
|
65515
68299
|
switchDBInstanceVpc(request: SwitchDBInstanceVpcRequest): Promise<SwitchDBInstanceVpcResponse>;
|
|
65516
68300
|
/**
|
|
65517
|
-
*
|
|
68301
|
+
* 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.
|
|
65518
68302
|
*
|
|
65519
68303
|
* @param request - SyncRCKeyPairRequest
|
|
65520
68304
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65522,7 +68306,7 @@ export default class Client extends OpenApi {
|
|
|
65522
68306
|
*/
|
|
65523
68307
|
syncRCKeyPairWithOptions(request: SyncRCKeyPairRequest, runtime: $Util.RuntimeOptions): Promise<SyncRCKeyPairResponse>;
|
|
65524
68308
|
/**
|
|
65525
|
-
*
|
|
68309
|
+
* 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.
|
|
65526
68310
|
*
|
|
65527
68311
|
* @param request - SyncRCKeyPairRequest
|
|
65528
68312
|
* @returns SyncRCKeyPairResponse
|