@alicloud/rds20140815 11.0.0 → 11.1.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 +1051 -407
- package/dist/client.js +628 -42
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1244 -207
package/dist/client.d.ts
CHANGED
|
@@ -4800,6 +4800,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
4800
4800
|
* The IDs of the read-only instances that are attached to the primary instance.
|
|
4801
4801
|
*/
|
|
4802
4802
|
readOnlyDBInstanceIds?: DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeReadOnlyDBInstanceIds;
|
|
4803
|
+
readOnlyStatus?: string;
|
|
4803
4804
|
/**
|
|
4804
4805
|
* @remarks
|
|
4805
4806
|
* The latency at which the system replicates data to read-only instances. The system replicates data from the primary instance to the read-only instances at the latency that is specified by the **ReadonlyInstanceSQLDelayedTime** parameter. Unit: seconds.
|
|
@@ -8286,6 +8287,7 @@ export declare class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerfor
|
|
|
8286
8287
|
* cpu_ratio
|
|
8287
8288
|
*/
|
|
8288
8289
|
key?: string;
|
|
8290
|
+
node?: string;
|
|
8289
8291
|
/**
|
|
8290
8292
|
* @remarks
|
|
8291
8293
|
* The service dimension.
|
|
@@ -13852,6 +13854,93 @@ export declare class DescribeRCInstanceAttributeResponseBodyVpcAttributes extend
|
|
|
13852
13854
|
[key: string]: any;
|
|
13853
13855
|
});
|
|
13854
13856
|
}
|
|
13857
|
+
export declare class DescribeRCInstanceTypeFamiliesResponseBodyInstanceTypeFamiliesInstanceTypeFamily extends $dara.Model {
|
|
13858
|
+
/**
|
|
13859
|
+
* @remarks
|
|
13860
|
+
* The description of the instance family.
|
|
13861
|
+
*/
|
|
13862
|
+
instanceTypeFamilyDesc?: string;
|
|
13863
|
+
/**
|
|
13864
|
+
* @remarks
|
|
13865
|
+
* The ID of the instance family.
|
|
13866
|
+
*
|
|
13867
|
+
* @example
|
|
13868
|
+
* x.6cm
|
|
13869
|
+
*/
|
|
13870
|
+
instanceTypeFamilyId?: string;
|
|
13871
|
+
static names(): {
|
|
13872
|
+
[key: string]: string;
|
|
13873
|
+
};
|
|
13874
|
+
static types(): {
|
|
13875
|
+
[key: string]: any;
|
|
13876
|
+
};
|
|
13877
|
+
validate(): void;
|
|
13878
|
+
constructor(map?: {
|
|
13879
|
+
[key: string]: any;
|
|
13880
|
+
});
|
|
13881
|
+
}
|
|
13882
|
+
export declare class DescribeRCInstanceTypeFamiliesResponseBodyInstanceTypeFamilies extends $dara.Model {
|
|
13883
|
+
/**
|
|
13884
|
+
* @remarks
|
|
13885
|
+
* The instance family.
|
|
13886
|
+
*/
|
|
13887
|
+
instanceTypeFamily?: DescribeRCInstanceTypeFamiliesResponseBodyInstanceTypeFamiliesInstanceTypeFamily[];
|
|
13888
|
+
static names(): {
|
|
13889
|
+
[key: string]: string;
|
|
13890
|
+
};
|
|
13891
|
+
static types(): {
|
|
13892
|
+
[key: string]: any;
|
|
13893
|
+
};
|
|
13894
|
+
validate(): void;
|
|
13895
|
+
constructor(map?: {
|
|
13896
|
+
[key: string]: any;
|
|
13897
|
+
});
|
|
13898
|
+
}
|
|
13899
|
+
export declare class DescribeRCInstanceTypesResponseBodyInstanceTypesInstanceType extends $dara.Model {
|
|
13900
|
+
/**
|
|
13901
|
+
* @example
|
|
13902
|
+
* 32
|
|
13903
|
+
*/
|
|
13904
|
+
cpuCoreCount?: number;
|
|
13905
|
+
/**
|
|
13906
|
+
* @example
|
|
13907
|
+
* gn8.cm
|
|
13908
|
+
*/
|
|
13909
|
+
instanceTypeFamily?: string;
|
|
13910
|
+
/**
|
|
13911
|
+
* @example
|
|
13912
|
+
* rds.gna8.2xlarge.8cm
|
|
13913
|
+
*/
|
|
13914
|
+
instanceTypeId?: string;
|
|
13915
|
+
/**
|
|
13916
|
+
* @example
|
|
13917
|
+
* 256
|
|
13918
|
+
*/
|
|
13919
|
+
memorySize?: number;
|
|
13920
|
+
static names(): {
|
|
13921
|
+
[key: string]: string;
|
|
13922
|
+
};
|
|
13923
|
+
static types(): {
|
|
13924
|
+
[key: string]: any;
|
|
13925
|
+
};
|
|
13926
|
+
validate(): void;
|
|
13927
|
+
constructor(map?: {
|
|
13928
|
+
[key: string]: any;
|
|
13929
|
+
});
|
|
13930
|
+
}
|
|
13931
|
+
export declare class DescribeRCInstanceTypesResponseBodyInstanceTypes extends $dara.Model {
|
|
13932
|
+
instanceType?: DescribeRCInstanceTypesResponseBodyInstanceTypesInstanceType[];
|
|
13933
|
+
static names(): {
|
|
13934
|
+
[key: string]: string;
|
|
13935
|
+
};
|
|
13936
|
+
static types(): {
|
|
13937
|
+
[key: string]: any;
|
|
13938
|
+
};
|
|
13939
|
+
validate(): void;
|
|
13940
|
+
constructor(map?: {
|
|
13941
|
+
[key: string]: any;
|
|
13942
|
+
});
|
|
13943
|
+
}
|
|
13855
13944
|
export declare class DescribeRCInstancesResponseBodyRCInstancesTagResources extends $dara.Model {
|
|
13856
13945
|
resourceId?: string;
|
|
13857
13946
|
resourceType?: string;
|
|
@@ -13884,6 +13973,22 @@ export declare class DescribeRCInstancesResponseBodyRCInstancesTags extends $dar
|
|
|
13884
13973
|
[key: string]: any;
|
|
13885
13974
|
});
|
|
13886
13975
|
}
|
|
13976
|
+
export declare class DescribeRCInstancesResponseBodyRCInstancesVpcAttributes extends $dara.Model {
|
|
13977
|
+
natIpAddress?: string;
|
|
13978
|
+
privateIpAddress?: string[];
|
|
13979
|
+
vSwitchId?: string;
|
|
13980
|
+
vpcId?: string;
|
|
13981
|
+
static names(): {
|
|
13982
|
+
[key: string]: string;
|
|
13983
|
+
};
|
|
13984
|
+
static types(): {
|
|
13985
|
+
[key: string]: any;
|
|
13986
|
+
};
|
|
13987
|
+
validate(): void;
|
|
13988
|
+
constructor(map?: {
|
|
13989
|
+
[key: string]: any;
|
|
13990
|
+
});
|
|
13991
|
+
}
|
|
13887
13992
|
export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Model {
|
|
13888
13993
|
/**
|
|
13889
13994
|
* @remarks
|
|
@@ -13893,6 +13998,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13893
13998
|
* testrdscustom
|
|
13894
13999
|
*/
|
|
13895
14000
|
clusterName?: string;
|
|
14001
|
+
cpu?: number;
|
|
13896
14002
|
createMode?: string;
|
|
13897
14003
|
/**
|
|
13898
14004
|
* @remarks
|
|
@@ -13902,6 +14008,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13902
14008
|
* rds_custom
|
|
13903
14009
|
*/
|
|
13904
14010
|
dbType?: string;
|
|
14011
|
+
deploymentSetId?: string;
|
|
13905
14012
|
/**
|
|
13906
14013
|
* @remarks
|
|
13907
14014
|
* The instance description.
|
|
@@ -13910,6 +14017,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13910
14017
|
* test
|
|
13911
14018
|
*/
|
|
13912
14019
|
description?: string;
|
|
14020
|
+
expiredTime?: string;
|
|
13913
14021
|
/**
|
|
13914
14022
|
* @remarks
|
|
13915
14023
|
* The time when the task was created. The time is displayed in GMT.
|
|
@@ -13934,6 +14042,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13934
14042
|
* i-2zeaiz4g9u23f40m****
|
|
13935
14043
|
*/
|
|
13936
14044
|
hostName?: string;
|
|
14045
|
+
imageId?: string;
|
|
13937
14046
|
instanceChargeType?: string;
|
|
13938
14047
|
/**
|
|
13939
14048
|
* @remarks
|
|
@@ -13945,6 +14054,7 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13945
14054
|
instanceId?: string;
|
|
13946
14055
|
instanceType?: string;
|
|
13947
14056
|
instanceTypeFamily?: string;
|
|
14057
|
+
memory?: number;
|
|
13948
14058
|
publicIp?: string;
|
|
13949
14059
|
/**
|
|
13950
14060
|
* @remarks
|
|
@@ -13974,6 +14084,11 @@ export declare class DescribeRCInstancesResponseBodyRCInstances extends $dara.Mo
|
|
|
13974
14084
|
status?: string;
|
|
13975
14085
|
tagResources?: DescribeRCInstancesResponseBodyRCInstancesTagResources[];
|
|
13976
14086
|
tags?: DescribeRCInstancesResponseBodyRCInstancesTags[];
|
|
14087
|
+
/**
|
|
14088
|
+
* **if can be null:**
|
|
14089
|
+
* true
|
|
14090
|
+
*/
|
|
14091
|
+
vpcAttributes?: DescribeRCInstancesResponseBodyRCInstancesVpcAttributes;
|
|
13977
14092
|
/**
|
|
13978
14093
|
* @remarks
|
|
13979
14094
|
* The VPC ID.
|
|
@@ -17846,12 +17961,12 @@ export declare class ModifyDBInstanceEndpointAddressResponseBodyData extends $da
|
|
|
17846
17961
|
export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends $dara.Model {
|
|
17847
17962
|
/**
|
|
17848
17963
|
* @remarks
|
|
17849
|
-
* Specifies whether to enable the automatic start and stop feature for the serverless instance. Valid values:
|
|
17964
|
+
* Specifies whether to enable the automatic start and stop feature for the serverless instance that runs MySQL or PostgreSQL. Valid values:
|
|
17850
17965
|
*
|
|
17851
17966
|
* * **true**
|
|
17852
17967
|
* * **false** (default)
|
|
17853
17968
|
*
|
|
17854
|
-
* >
|
|
17969
|
+
* > 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.
|
|
17855
17970
|
*
|
|
17856
17971
|
* @example
|
|
17857
17972
|
* true
|
|
@@ -17862,15 +17977,13 @@ export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends
|
|
|
17862
17977
|
autoPause?: boolean;
|
|
17863
17978
|
/**
|
|
17864
17979
|
* @remarks
|
|
17865
|
-
* The maximum number of RDS Capacity Units (RCUs). Valid values:
|
|
17980
|
+
* The **maximum** number of RDS Capacity Units (RCUs). Valid values:
|
|
17866
17981
|
*
|
|
17867
17982
|
* * Serverless ApsaraDB RDS for MySQL instances: **1 to 32**
|
|
17868
|
-
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to
|
|
17983
|
+
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to 16**. Only integers are supported.
|
|
17869
17984
|
* * Serverless ApsaraDB RDS for PostgreSQL instances: **1 to 14**
|
|
17870
17985
|
*
|
|
17871
|
-
* >
|
|
17872
|
-
*
|
|
17873
|
-
* * The value of this parameter must be greater than or equal to the value of **MinCapacity** and can be specified only to an **integer**.
|
|
17986
|
+
* > The value of this parameter must be greater than or equal to the value of **MinCapacity**.
|
|
17874
17987
|
*
|
|
17875
17988
|
* @example
|
|
17876
17989
|
* 8
|
|
@@ -17878,15 +17991,13 @@ export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends
|
|
|
17878
17991
|
maxCapacity?: number;
|
|
17879
17992
|
/**
|
|
17880
17993
|
* @remarks
|
|
17881
|
-
* The minimum number of RCUs. Valid values
|
|
17994
|
+
* The minimum number of RCUs. Valid values:****
|
|
17882
17995
|
*
|
|
17883
17996
|
* * Serverless ApsaraDB RDS for MySQL instances: **0.5 to 32**.
|
|
17884
17997
|
* * Serverless ApsaraDB RDS for SQL Server instances: **2 to 8**. Only integers are supported.
|
|
17885
17998
|
* * Serverless ApsaraDB RDS for PostgreSQL instances: **0.5 to 14**.
|
|
17886
17999
|
*
|
|
17887
|
-
* >
|
|
17888
|
-
*
|
|
17889
|
-
* * The value of this parameter must be less than or equal to the value of MaxCapacity.
|
|
18000
|
+
* > The value of this parameter must be less than or equal to the value of MaxCapacity.
|
|
17890
18001
|
*
|
|
17891
18002
|
* @example
|
|
17892
18003
|
* 0.5
|
|
@@ -17894,13 +18005,16 @@ export declare class ModifyDBInstanceSpecRequestServerlessConfiguration extends
|
|
|
17894
18005
|
minCapacity?: number;
|
|
17895
18006
|
/**
|
|
17896
18007
|
* @remarks
|
|
17897
|
-
* Specifies whether to enable the
|
|
18008
|
+
* Specifies whether to enable the forceful scaling feature for the serverless instance that runs MySQL or PostgreSQL. Valid values:
|
|
17898
18009
|
*
|
|
17899
18010
|
* * **true**
|
|
17900
18011
|
* * **false** (default)
|
|
17901
18012
|
*
|
|
17902
|
-
* >
|
|
17903
|
-
*
|
|
18013
|
+
* >
|
|
18014
|
+
*
|
|
18015
|
+
* * If you set this parameter to true, **a service interruption that lasts 30 to 120 seconds occurs during forced scaling**. Process with caution.
|
|
18016
|
+
*
|
|
18017
|
+
* * 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.
|
|
17904
18018
|
*
|
|
17905
18019
|
* @example
|
|
17906
18020
|
* false
|
|
@@ -18194,8 +18308,20 @@ export declare class ModifyPGHbaConfigRequestHbaItem extends $dara.Model {
|
|
|
18194
18308
|
});
|
|
18195
18309
|
}
|
|
18196
18310
|
export declare class ModifyRCInstanceChargeTypeResponseBodyFeeOfInstances extends $dara.Model {
|
|
18311
|
+
/**
|
|
18312
|
+
* @example
|
|
18313
|
+
* None
|
|
18314
|
+
*/
|
|
18197
18315
|
currency?: string;
|
|
18316
|
+
/**
|
|
18317
|
+
* @example
|
|
18318
|
+
* None
|
|
18319
|
+
*/
|
|
18198
18320
|
fee?: string;
|
|
18321
|
+
/**
|
|
18322
|
+
* @example
|
|
18323
|
+
* None
|
|
18324
|
+
*/
|
|
18199
18325
|
instanceId?: string;
|
|
18200
18326
|
static names(): {
|
|
18201
18327
|
[key: string]: string;
|
|
@@ -22938,11 +23064,12 @@ export declare class CreateDBInstanceRequest extends $dara.Model {
|
|
|
22938
23064
|
VPCId?: string;
|
|
22939
23065
|
/**
|
|
22940
23066
|
* @remarks
|
|
22941
|
-
* The vSwitch ID.
|
|
23067
|
+
* The vSwitch ID.
|
|
22942
23068
|
*
|
|
22943
|
-
* *
|
|
22944
|
-
* *
|
|
22945
|
-
* *
|
|
23069
|
+
* * **Relations with zones**: Specify the vSwitch ID based on the zones in which the vSwitch belongs to. If you specify two vSwitch IDs, make sure that the vSwitch IDs match the zone IDs specified by the ZoneId and ZoneIdSlave1 parameters.
|
|
23070
|
+
* * **Limits on the network type**: Set **InstanceNetworkType** to **VPC**.
|
|
23071
|
+
* * **Limits on multiple vSwitch IDs**: If you set **ZoneSlaveId1** to a value that is not **Auto**, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
23072
|
+
* * **Limits on characters**: The value cannot contain `spaces` or the following characters: `!` `#` `¥` `&` `%`
|
|
22946
23073
|
*
|
|
22947
23074
|
* @example
|
|
22948
23075
|
* vsw-*****
|
|
@@ -23702,11 +23829,12 @@ export declare class CreateDBInstanceShrinkRequest extends $dara.Model {
|
|
|
23702
23829
|
VPCId?: string;
|
|
23703
23830
|
/**
|
|
23704
23831
|
* @remarks
|
|
23705
|
-
* The vSwitch ID.
|
|
23832
|
+
* The vSwitch ID.
|
|
23706
23833
|
*
|
|
23707
|
-
* *
|
|
23708
|
-
* *
|
|
23709
|
-
* *
|
|
23834
|
+
* * **Relations with zones**: Specify the vSwitch ID based on the zones in which the vSwitch belongs to. If you specify two vSwitch IDs, make sure that the vSwitch IDs match the zone IDs specified by the ZoneId and ZoneIdSlave1 parameters.
|
|
23835
|
+
* * **Limits on the network type**: Set **InstanceNetworkType** to **VPC**.
|
|
23836
|
+
* * **Limits on multiple vSwitch IDs**: If you set **ZoneSlaveId1** to a value that is not **Auto**, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
23837
|
+
* * **Limits on characters**: The value cannot contain `spaces` or the following characters: `!` `#` `¥` `&` `%`
|
|
23710
23838
|
*
|
|
23711
23839
|
* @example
|
|
23712
23840
|
* vsw-*****
|
|
@@ -26960,7 +27088,7 @@ export declare class CreateRCDiskRequest extends $dara.Model {
|
|
|
26960
27088
|
* * **cloud** (default): basic disk
|
|
26961
27089
|
* * **cloud_efficiency**: ultra disk.
|
|
26962
27090
|
* * **cloud_ssd**: standard SSD.
|
|
26963
|
-
* * **cloud_essd**:
|
|
27091
|
+
* * **cloud_essd**: ESSD.
|
|
26964
27092
|
* * **cloud_auto**: ESSD AutoPL disk
|
|
26965
27093
|
* * **cloud_essd_entry**: ESSD Entry disk
|
|
26966
27094
|
* * **elastic_ephemeral_disk_standard**: standard elastic ephemeral disk
|
|
@@ -26988,6 +27116,10 @@ export declare class CreateRCDiskRequest extends $dara.Model {
|
|
|
26988
27116
|
* Postpaid
|
|
26989
27117
|
*/
|
|
26990
27118
|
instanceChargeType?: string;
|
|
27119
|
+
/**
|
|
27120
|
+
* @example
|
|
27121
|
+
* rc-v28c6k3jupp61m2t****
|
|
27122
|
+
*/
|
|
26991
27123
|
instanceId?: string;
|
|
26992
27124
|
/**
|
|
26993
27125
|
* @remarks
|
|
@@ -27060,8 +27192,6 @@ export declare class CreateRCDiskRequest extends $dara.Model {
|
|
|
27060
27192
|
* * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the size of the snapshot.
|
|
27061
27193
|
* * If the size of the snapshot specified by `SnapshotId` is smaller than the value of `Size`, the size of the created disk is equal to the value of `Size`.
|
|
27062
27194
|
*
|
|
27063
|
-
* This parameter is required.
|
|
27064
|
-
*
|
|
27065
27195
|
* @example
|
|
27066
27196
|
* 2000
|
|
27067
27197
|
*/
|
|
@@ -28401,7 +28531,7 @@ export declare class CreateReadOnlyDBInstanceResponse extends $dara.Model {
|
|
|
28401
28531
|
export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
28402
28532
|
/**
|
|
28403
28533
|
* @remarks
|
|
28404
|
-
* The ID of the instance.
|
|
28534
|
+
* The ID of the DR instance.
|
|
28405
28535
|
*
|
|
28406
28536
|
* This parameter is required.
|
|
28407
28537
|
*
|
|
@@ -28411,10 +28541,10 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28411
28541
|
DBInstanceId?: string;
|
|
28412
28542
|
/**
|
|
28413
28543
|
* @remarks
|
|
28414
|
-
* Specifies whether to perform a dry run. Valid values:
|
|
28544
|
+
* Specifies whether to perform a dry run before the system creates the DR instance. Valid values:
|
|
28415
28545
|
*
|
|
28416
|
-
* * **true**: performs a dry run but does not create the instance. The system checks
|
|
28417
|
-
* * **false** (default): performs a dry run and
|
|
28546
|
+
* * **true**: performs a dry run but does not create the instance. The system checks the request parameters, request syntax, limits, and available resources.
|
|
28547
|
+
* * **false** (default): performs a dry run and the actual request. If the request passes the dry run, the instance is directly created.
|
|
28418
28548
|
*
|
|
28419
28549
|
* This parameter is required.
|
|
28420
28550
|
*
|
|
@@ -28440,7 +28570,7 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28440
28570
|
replicatorPassword?: string;
|
|
28441
28571
|
/**
|
|
28442
28572
|
* @remarks
|
|
28443
|
-
* The endpoint of the source instance.
|
|
28573
|
+
* The endpoint of the source ApsaraDB RDS for PostgreSQL instance or the IP address of the source ApsaraDB RDS for SQL Server instance.
|
|
28444
28574
|
*
|
|
28445
28575
|
* @example
|
|
28446
28576
|
* pgm-****.pg.rds.aliyuncs.com
|
|
@@ -28450,8 +28580,8 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28450
28580
|
* @remarks
|
|
28451
28581
|
* The type of the source instance. Valid values:
|
|
28452
28582
|
*
|
|
28453
|
-
* * **other**: other instances
|
|
28454
|
-
* * **aliyunRDS**: an ApsaraDB RDS instance
|
|
28583
|
+
* * **other**: other instances. **SQL Server instances are not supported.**
|
|
28584
|
+
* * **aliyunRDS**: an ApsaraDB RDS instance.
|
|
28455
28585
|
*
|
|
28456
28586
|
* @example
|
|
28457
28587
|
* aliyunRDS
|
|
@@ -28459,9 +28589,7 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28459
28589
|
sourceCategory?: string;
|
|
28460
28590
|
/**
|
|
28461
28591
|
* @remarks
|
|
28462
|
-
* The name of the source instance.
|
|
28463
|
-
*
|
|
28464
|
-
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
28592
|
+
* The name of the source instance. If you set **SourceCategory** to **aliyunRDS**, this parameter is required.
|
|
28465
28593
|
*
|
|
28466
28594
|
* @example
|
|
28467
28595
|
* testInstance
|
|
@@ -28469,9 +28597,7 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28469
28597
|
sourceInstanceName?: string;
|
|
28470
28598
|
/**
|
|
28471
28599
|
* @remarks
|
|
28472
|
-
* The region ID of the source instance.
|
|
28473
|
-
*
|
|
28474
|
-
* > This parameter is required when you set the **SourceCategory** parameter to **aliyunRDS**.
|
|
28600
|
+
* The region ID of the source instance. If you set **SourceCategory** to **aliyunRDS**, this parameter is required.
|
|
28475
28601
|
*
|
|
28476
28602
|
* @example
|
|
28477
28603
|
* cn-hangzhou
|
|
@@ -28485,6 +28611,13 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28485
28611
|
* 5432
|
|
28486
28612
|
*/
|
|
28487
28613
|
sourcePort?: number;
|
|
28614
|
+
/**
|
|
28615
|
+
* @remarks
|
|
28616
|
+
* The IP address of the DR instance of the ApsaraDB RDS for SQL Server instance.
|
|
28617
|
+
*
|
|
28618
|
+
* @example
|
|
28619
|
+
* 192.XXX.XX.XXX
|
|
28620
|
+
*/
|
|
28488
28621
|
targetAddress?: string;
|
|
28489
28622
|
/**
|
|
28490
28623
|
* @remarks
|
|
@@ -28496,7 +28629,7 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28496
28629
|
taskId?: number;
|
|
28497
28630
|
/**
|
|
28498
28631
|
* @remarks
|
|
28499
|
-
* The name of the
|
|
28632
|
+
* The task name of the dry run. You can specify a custom task name. If you do not specify this parameter, ApsaraDB RDS automatically generates a task name.
|
|
28500
28633
|
*
|
|
28501
28634
|
* @example
|
|
28502
28635
|
* test01
|
|
@@ -28516,7 +28649,7 @@ export declare class CreateReplicationLinkRequest extends $dara.Model {
|
|
|
28516
28649
|
export declare class CreateReplicationLinkResponseBody extends $dara.Model {
|
|
28517
28650
|
/**
|
|
28518
28651
|
* @remarks
|
|
28519
|
-
* The ID of the instance.
|
|
28652
|
+
* The ID of the DR instance.
|
|
28520
28653
|
*
|
|
28521
28654
|
* @example
|
|
28522
28655
|
* pgm-****.pg.rds.aliyuncs.com
|
|
@@ -28532,7 +28665,7 @@ export declare class CreateReplicationLinkResponseBody extends $dara.Model {
|
|
|
28532
28665
|
requestId?: string;
|
|
28533
28666
|
/**
|
|
28534
28667
|
* @remarks
|
|
28535
|
-
* The ID
|
|
28668
|
+
* The task ID.
|
|
28536
28669
|
*
|
|
28537
28670
|
* @example
|
|
28538
28671
|
* 564532302
|
|
@@ -28540,7 +28673,7 @@ export declare class CreateReplicationLinkResponseBody extends $dara.Model {
|
|
|
28540
28673
|
taskId?: number;
|
|
28541
28674
|
/**
|
|
28542
28675
|
* @remarks
|
|
28543
|
-
* The name
|
|
28676
|
+
* The task name.
|
|
28544
28677
|
*
|
|
28545
28678
|
* @example
|
|
28546
28679
|
* test01
|
|
@@ -31005,7 +31138,7 @@ export declare class DeleteRCSnapshotResponse extends $dara.Model {
|
|
|
31005
31138
|
export declare class DeleteReplicationLinkRequest extends $dara.Model {
|
|
31006
31139
|
/**
|
|
31007
31140
|
* @remarks
|
|
31008
|
-
* The ID of the instance.
|
|
31141
|
+
* The ID of the DR instance.
|
|
31009
31142
|
*
|
|
31010
31143
|
* This parameter is required.
|
|
31011
31144
|
*
|
|
@@ -31015,7 +31148,7 @@ export declare class DeleteReplicationLinkRequest extends $dara.Model {
|
|
|
31015
31148
|
DBInstanceId?: string;
|
|
31016
31149
|
/**
|
|
31017
31150
|
* @remarks
|
|
31018
|
-
* Specifies whether to
|
|
31151
|
+
* Specifies whether to delete the data synchronization link between the DR instance and the primary instance and promote the DR instance to the primary instance. Valid values:
|
|
31019
31152
|
*
|
|
31020
31153
|
* * **true**
|
|
31021
31154
|
* * **false**
|
|
@@ -31041,7 +31174,7 @@ export declare class DeleteReplicationLinkRequest extends $dara.Model {
|
|
|
31041
31174
|
export declare class DeleteReplicationLinkResponseBody extends $dara.Model {
|
|
31042
31175
|
/**
|
|
31043
31176
|
* @remarks
|
|
31044
|
-
* The ID of the instance.
|
|
31177
|
+
* The ID of the DR instance.
|
|
31045
31178
|
*
|
|
31046
31179
|
* @example
|
|
31047
31180
|
* pgm-bp1trqb4p1xd****
|
|
@@ -31057,7 +31190,7 @@ export declare class DeleteReplicationLinkResponseBody extends $dara.Model {
|
|
|
31057
31190
|
requestId?: string;
|
|
31058
31191
|
/**
|
|
31059
31192
|
* @remarks
|
|
31060
|
-
* The ID
|
|
31193
|
+
* The task ID.
|
|
31061
31194
|
*
|
|
31062
31195
|
* @example
|
|
31063
31196
|
* 3472****
|
|
@@ -31065,7 +31198,7 @@ export declare class DeleteReplicationLinkResponseBody extends $dara.Model {
|
|
|
31065
31198
|
taskId?: number;
|
|
31066
31199
|
/**
|
|
31067
31200
|
* @remarks
|
|
31068
|
-
* The name
|
|
31201
|
+
* The task name.
|
|
31069
31202
|
*
|
|
31070
31203
|
* @example
|
|
31071
31204
|
* test01
|
|
@@ -45822,6 +45955,7 @@ export declare class DescribeRCInstanceAttributeRequest extends $dara.Model {
|
|
|
45822
45955
|
});
|
|
45823
45956
|
}
|
|
45824
45957
|
export declare class DescribeRCInstanceAttributeResponseBody extends $dara.Model {
|
|
45958
|
+
autoRenew?: boolean;
|
|
45825
45959
|
/**
|
|
45826
45960
|
* @remarks
|
|
45827
45961
|
* The ID of the cluster to which the instance belongs.
|
|
@@ -46174,6 +46308,169 @@ export declare class DescribeRCInstanceAttributeResponse extends $dara.Model {
|
|
|
46174
46308
|
[key: string]: any;
|
|
46175
46309
|
});
|
|
46176
46310
|
}
|
|
46311
|
+
export declare class DescribeRCInstanceTypeFamiliesRequest extends $dara.Model {
|
|
46312
|
+
/**
|
|
46313
|
+
* @remarks
|
|
46314
|
+
* The region ID.
|
|
46315
|
+
*
|
|
46316
|
+
* @example
|
|
46317
|
+
* cn-hangzhou
|
|
46318
|
+
*/
|
|
46319
|
+
regionId?: string;
|
|
46320
|
+
static names(): {
|
|
46321
|
+
[key: string]: string;
|
|
46322
|
+
};
|
|
46323
|
+
static types(): {
|
|
46324
|
+
[key: string]: any;
|
|
46325
|
+
};
|
|
46326
|
+
validate(): void;
|
|
46327
|
+
constructor(map?: {
|
|
46328
|
+
[key: string]: any;
|
|
46329
|
+
});
|
|
46330
|
+
}
|
|
46331
|
+
export declare class DescribeRCInstanceTypeFamiliesResponseBody extends $dara.Model {
|
|
46332
|
+
/**
|
|
46333
|
+
* @remarks
|
|
46334
|
+
* The instance families.
|
|
46335
|
+
*/
|
|
46336
|
+
instanceTypeFamilies?: DescribeRCInstanceTypeFamiliesResponseBodyInstanceTypeFamilies;
|
|
46337
|
+
/**
|
|
46338
|
+
* @remarks
|
|
46339
|
+
* The request ID.
|
|
46340
|
+
*
|
|
46341
|
+
* @example
|
|
46342
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
46343
|
+
*/
|
|
46344
|
+
requestId?: string;
|
|
46345
|
+
static names(): {
|
|
46346
|
+
[key: string]: string;
|
|
46347
|
+
};
|
|
46348
|
+
static types(): {
|
|
46349
|
+
[key: string]: any;
|
|
46350
|
+
};
|
|
46351
|
+
validate(): void;
|
|
46352
|
+
constructor(map?: {
|
|
46353
|
+
[key: string]: any;
|
|
46354
|
+
});
|
|
46355
|
+
}
|
|
46356
|
+
export declare class DescribeRCInstanceTypeFamiliesResponse extends $dara.Model {
|
|
46357
|
+
headers?: {
|
|
46358
|
+
[key: string]: string;
|
|
46359
|
+
};
|
|
46360
|
+
statusCode?: number;
|
|
46361
|
+
body?: DescribeRCInstanceTypeFamiliesResponseBody;
|
|
46362
|
+
static names(): {
|
|
46363
|
+
[key: string]: string;
|
|
46364
|
+
};
|
|
46365
|
+
static types(): {
|
|
46366
|
+
[key: string]: any;
|
|
46367
|
+
};
|
|
46368
|
+
validate(): void;
|
|
46369
|
+
constructor(map?: {
|
|
46370
|
+
[key: string]: any;
|
|
46371
|
+
});
|
|
46372
|
+
}
|
|
46373
|
+
export declare class DescribeRCInstanceTypesRequest extends $dara.Model {
|
|
46374
|
+
/**
|
|
46375
|
+
* @example
|
|
46376
|
+
* rds_customprepaid_public_cn
|
|
46377
|
+
*/
|
|
46378
|
+
commodityCode?: string;
|
|
46379
|
+
/**
|
|
46380
|
+
* @example
|
|
46381
|
+
* MySQL
|
|
46382
|
+
*/
|
|
46383
|
+
engine?: string;
|
|
46384
|
+
instanceType?: string[];
|
|
46385
|
+
/**
|
|
46386
|
+
* @example
|
|
46387
|
+
* gn8.cm
|
|
46388
|
+
*/
|
|
46389
|
+
instanceTypeFamily?: string;
|
|
46390
|
+
/**
|
|
46391
|
+
* @example
|
|
46392
|
+
* cn-hangzhou
|
|
46393
|
+
*/
|
|
46394
|
+
regionId?: string;
|
|
46395
|
+
static names(): {
|
|
46396
|
+
[key: string]: string;
|
|
46397
|
+
};
|
|
46398
|
+
static types(): {
|
|
46399
|
+
[key: string]: any;
|
|
46400
|
+
};
|
|
46401
|
+
validate(): void;
|
|
46402
|
+
constructor(map?: {
|
|
46403
|
+
[key: string]: any;
|
|
46404
|
+
});
|
|
46405
|
+
}
|
|
46406
|
+
export declare class DescribeRCInstanceTypesShrinkRequest extends $dara.Model {
|
|
46407
|
+
/**
|
|
46408
|
+
* @example
|
|
46409
|
+
* rds_customprepaid_public_cn
|
|
46410
|
+
*/
|
|
46411
|
+
commodityCode?: string;
|
|
46412
|
+
/**
|
|
46413
|
+
* @example
|
|
46414
|
+
* MySQL
|
|
46415
|
+
*/
|
|
46416
|
+
engine?: string;
|
|
46417
|
+
instanceTypeShrink?: string;
|
|
46418
|
+
/**
|
|
46419
|
+
* @example
|
|
46420
|
+
* gn8.cm
|
|
46421
|
+
*/
|
|
46422
|
+
instanceTypeFamily?: string;
|
|
46423
|
+
/**
|
|
46424
|
+
* @example
|
|
46425
|
+
* cn-hangzhou
|
|
46426
|
+
*/
|
|
46427
|
+
regionId?: string;
|
|
46428
|
+
static names(): {
|
|
46429
|
+
[key: string]: string;
|
|
46430
|
+
};
|
|
46431
|
+
static types(): {
|
|
46432
|
+
[key: string]: any;
|
|
46433
|
+
};
|
|
46434
|
+
validate(): void;
|
|
46435
|
+
constructor(map?: {
|
|
46436
|
+
[key: string]: any;
|
|
46437
|
+
});
|
|
46438
|
+
}
|
|
46439
|
+
export declare class DescribeRCInstanceTypesResponseBody extends $dara.Model {
|
|
46440
|
+
instanceTypes?: DescribeRCInstanceTypesResponseBodyInstanceTypes;
|
|
46441
|
+
/**
|
|
46442
|
+
* @example
|
|
46443
|
+
* F2911788-25E8-42E5-A3A3-1B38D263F01E
|
|
46444
|
+
*/
|
|
46445
|
+
requestId?: string;
|
|
46446
|
+
static names(): {
|
|
46447
|
+
[key: string]: string;
|
|
46448
|
+
};
|
|
46449
|
+
static types(): {
|
|
46450
|
+
[key: string]: any;
|
|
46451
|
+
};
|
|
46452
|
+
validate(): void;
|
|
46453
|
+
constructor(map?: {
|
|
46454
|
+
[key: string]: any;
|
|
46455
|
+
});
|
|
46456
|
+
}
|
|
46457
|
+
export declare class DescribeRCInstanceTypesResponse extends $dara.Model {
|
|
46458
|
+
headers?: {
|
|
46459
|
+
[key: string]: string;
|
|
46460
|
+
};
|
|
46461
|
+
statusCode?: number;
|
|
46462
|
+
body?: DescribeRCInstanceTypesResponseBody;
|
|
46463
|
+
static names(): {
|
|
46464
|
+
[key: string]: string;
|
|
46465
|
+
};
|
|
46466
|
+
static types(): {
|
|
46467
|
+
[key: string]: any;
|
|
46468
|
+
};
|
|
46469
|
+
validate(): void;
|
|
46470
|
+
constructor(map?: {
|
|
46471
|
+
[key: string]: any;
|
|
46472
|
+
});
|
|
46473
|
+
}
|
|
46177
46474
|
export declare class DescribeRCInstanceVncUrlRequest extends $dara.Model {
|
|
46178
46475
|
/**
|
|
46179
46476
|
* @remarks
|
|
@@ -55814,12 +56111,13 @@ export declare class ModifyDBInstanceSecurityGroupRuleResponse extends $dara.Mod
|
|
|
55814
56111
|
export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
55815
56112
|
/**
|
|
55816
56113
|
* @remarks
|
|
55817
|
-
* Specifies whether to upgrade the major engine version of
|
|
56114
|
+
* Specifies whether to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance. For more information, see [Upgrade the major engine version](https://help.aliyun.com/document_detail/127458.html). Valid values:
|
|
55818
56115
|
*
|
|
55819
56116
|
* * **true**
|
|
55820
56117
|
* * **false** (default)
|
|
55821
56118
|
*
|
|
55822
|
-
* >
|
|
56119
|
+
* > * When you upgrade the major engine version, you must also specify the required parameters such as DBInstanceId, EngineVersion, DBInstanceClass, Category, ZoneId, and VSwitchId.
|
|
56120
|
+
* > * If you want to upgrade the instance edition to RDS High-availability Edition or RDS Cluster Edition, you must specify ZoneIdSlave1.
|
|
55823
56121
|
*
|
|
55824
56122
|
* @example
|
|
55825
56123
|
* false
|
|
@@ -55838,7 +56136,7 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55838
56136
|
autoUseCoupon?: boolean;
|
|
55839
56137
|
/**
|
|
55840
56138
|
* @remarks
|
|
55841
|
-
* An invalid parameter. You
|
|
56139
|
+
* An invalid parameter. You do not need to specify this parameter.
|
|
55842
56140
|
*
|
|
55843
56141
|
* @example
|
|
55844
56142
|
* false
|
|
@@ -55848,22 +56146,20 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55848
56146
|
* @remarks
|
|
55849
56147
|
* The RDS edition of the instance. Valid values:
|
|
55850
56148
|
*
|
|
55851
|
-
*
|
|
55852
|
-
*
|
|
55853
|
-
* * **Basic**: RDS Basic Edition.
|
|
55854
|
-
* * **HighAvailability**: RDS High-availability Edition.
|
|
55855
|
-
* * **AlwaysOn**: RDS Cluster Edition for ApsaraDB RDS for SQL Server.
|
|
55856
|
-
* * **Cluster**: RDS Cluster Edition for ApsaraDB RDS for MySQL.
|
|
55857
|
-
*
|
|
55858
|
-
* * Serverless instance
|
|
56149
|
+
* > If you set **EngineVersion** to an SQL Server version number, you must also specify this parameter.
|
|
55859
56150
|
*
|
|
55860
|
-
*
|
|
55861
|
-
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
55862
|
-
* * **serverless_ha**: RDS High-availability Edition for ApsaraDB RDS for SQL Server.
|
|
56151
|
+
* **Regular RDS instances**
|
|
55863
56152
|
*
|
|
56153
|
+
* * **Basic**: RDS Basic Edition.
|
|
56154
|
+
* * **HighAvailability**: RDS High-availability Edition.
|
|
56155
|
+
* * **AlwaysOn**: RDS Cluster Edition for ApsaraDB RDS for SQL Server.
|
|
56156
|
+
* * **Cluster**: RDS Cluster Edition for ApsaraDB RDS for MySQL.
|
|
55864
56157
|
*
|
|
56158
|
+
* **Serverless instances. ApsaraDB RDS for MariaDB does not support serverless instances.**
|
|
55865
56159
|
*
|
|
55866
|
-
*
|
|
56160
|
+
* * **serverless_basic**: RDS Basic Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56161
|
+
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56162
|
+
* * **serverless_ha**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run SQL Server.
|
|
55867
56163
|
*
|
|
55868
56164
|
* @example
|
|
55869
56165
|
* HighAvailability
|
|
@@ -55879,9 +56175,10 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55879
56175
|
coldDataEnabled?: boolean;
|
|
55880
56176
|
/**
|
|
55881
56177
|
* @remarks
|
|
55882
|
-
*
|
|
55883
|
-
*
|
|
55884
|
-
*
|
|
56178
|
+
* Specifies whether to enable the storage compression feature for the ApsaraDB RDS for MySQL instance. For more information, see [Use the storage compression feature](https://help.aliyun.com/document_detail/2861985.html). Valid values:
|
|
56179
|
+
*
|
|
56180
|
+
* * **on**
|
|
56181
|
+
* * **off**
|
|
55885
56182
|
*
|
|
55886
56183
|
* @example
|
|
55887
56184
|
* on
|
|
@@ -55889,10 +56186,10 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55889
56186
|
compressionMode?: string;
|
|
55890
56187
|
/**
|
|
55891
56188
|
* @remarks
|
|
55892
|
-
* The
|
|
56189
|
+
* The instance type of the new instance. For more information, see [Specifications](https://help.aliyun.com/document_detail/26312.html). You can call the [DescribeAvailableClasses](https://help.aliyun.com/document_detail/610393.html) operation to query the instance types.
|
|
55893
56190
|
*
|
|
55894
56191
|
* > * You must specify at least one of DBInstanceClass and **DBInstanceStorage**.
|
|
55895
|
-
* > * You can call the DescribeDBInstanceAttribute operation to query the current instance type of the instance.
|
|
56192
|
+
* > * You can call the [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html) operation to query the current instance type of the instance.
|
|
55896
56193
|
*
|
|
55897
56194
|
* @example
|
|
55898
56195
|
* rds.mys2.small
|
|
@@ -55900,7 +56197,7 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55900
56197
|
DBInstanceClass?: string;
|
|
55901
56198
|
/**
|
|
55902
56199
|
* @remarks
|
|
55903
|
-
* The instance ID. You can call the DescribeDBInstances operation to query the instance
|
|
56200
|
+
* The instance ID. You can call the [DescribeDBInstances](https://help.aliyun.com/document_detail/610396.html) operation to query the instance IDs.
|
|
55904
56201
|
*
|
|
55905
56202
|
* This parameter is required.
|
|
55906
56203
|
*
|
|
@@ -55910,10 +56207,10 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55910
56207
|
DBInstanceId?: string;
|
|
55911
56208
|
/**
|
|
55912
56209
|
* @remarks
|
|
55913
|
-
* The
|
|
56210
|
+
* The storage capacity of the new instance. Unit: GB. For more information, see [Storage types](https://help.aliyun.com/document_detail/26312.html). You can call the [DescribeAvailableClasses](https://help.aliyun.com/document_detail/610393.html) operation to query the storage capacity range that is supported by the new instance type.
|
|
55914
56211
|
*
|
|
55915
|
-
* > * You must specify at least one of
|
|
55916
|
-
* > * You can call the DescribeDBInstanceAttribute to query the current storage capacity of the instance.
|
|
56212
|
+
* > * You must specify at least one of DBInstanceStorage and **DBInstanceClass**.
|
|
56213
|
+
* > * You can call the [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html) operation to query the current storage capacity of the instance.
|
|
55917
56214
|
*
|
|
55918
56215
|
* @example
|
|
55919
56216
|
* 20
|
|
@@ -55921,17 +56218,17 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55921
56218
|
DBInstanceStorage?: number;
|
|
55922
56219
|
/**
|
|
55923
56220
|
* @remarks
|
|
55924
|
-
* The storage type of the instance. Valid values:
|
|
56221
|
+
* The storage type of the new instance. Valid values:
|
|
55925
56222
|
*
|
|
55926
56223
|
* * **local_ssd**: local SSD.
|
|
55927
|
-
* * **cloud_ssd**:
|
|
55928
|
-
* * **cloud_essd**:
|
|
55929
|
-
* * **cloud_essd2**:
|
|
55930
|
-
* * **cloud_essd3**: ESSD
|
|
56224
|
+
* * **cloud_ssd**: SSD cloud disks. This storage medium is not recommended and is unavailable in specific Alibaba Cloud regions.
|
|
56225
|
+
* * **cloud_essd**: performance level 1 (PL1) Enterprise SSD (ESSD).
|
|
56226
|
+
* * **cloud_essd2**: PL2 ESSD.
|
|
56227
|
+
* * **cloud_essd3**: PL3 ESSD.
|
|
55931
56228
|
*
|
|
55932
56229
|
* To change the storage type, take note of the following items:
|
|
55933
56230
|
*
|
|
55934
|
-
* If the instance runs PostgreSQL, you can upgrade the storage type of the instance from standard
|
|
56231
|
+
* If the instance runs PostgreSQL, you can upgrade the storage type of the instance from standard SSDs to ESSDs. However, you cannot downgrade the storage type of the instance from ESSDs to standard SSDs. ESSDs provide the following PLs: ESSDs of PL1, ESSDs of PL2, and ESSDs of PL3. You can upgrade or downgrade the storage type between ESSD of PL1, ESSD of PL2, and ESSD of PL3. For more information, see [Configuration items](https://help.aliyun.com/document_detail/96750.html).
|
|
55935
56232
|
*
|
|
55936
56233
|
* @example
|
|
55937
56234
|
* local_ssd
|
|
@@ -55962,11 +56259,13 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55962
56259
|
direction?: string;
|
|
55963
56260
|
/**
|
|
55964
56261
|
* @remarks
|
|
55965
|
-
* The
|
|
56262
|
+
* The time when the new specifications take effect. Valid values:
|
|
55966
56263
|
*
|
|
55967
|
-
*
|
|
55968
|
-
*
|
|
55969
|
-
* * **
|
|
56264
|
+
* > **Specific changes may affect the instance**. Read the [Impact](https://help.aliyun.com/document_detail/96061.html) section before you specify this parameter. We recommend that you specify this parameter during off-peak hours.
|
|
56265
|
+
*
|
|
56266
|
+
* * **Immediate** (default): The changes immediately take effect.
|
|
56267
|
+
* * **MaintainTime**: The changes take effect during the [maintenance window](https://help.aliyun.com/document_detail/610402.html) of the instance.
|
|
56268
|
+
* * **ScheduleTime**: The changes take effect at the point in time that you specify. This time must be at least 12 hours later than the current time. The actual effective time is calculated based on the following formula: EffectiveTime = ScheduleTime + SwitchTime.
|
|
55970
56269
|
*
|
|
55971
56270
|
* @example
|
|
55972
56271
|
* MaintainTime
|
|
@@ -55974,22 +56273,20 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
55974
56273
|
effectiveTime?: string;
|
|
55975
56274
|
/**
|
|
55976
56275
|
* @remarks
|
|
55977
|
-
* The database engine version of the instance.
|
|
55978
|
-
*
|
|
55979
|
-
* * Regular instance
|
|
56276
|
+
* The database engine version of the instance. Valid values:
|
|
55980
56277
|
*
|
|
55981
|
-
*
|
|
55982
|
-
* * Valid values if you set the Engine parameter to SQLServer: **2008r2**, **08r2_ent_ha**, **2012**, **2012_ent_ha**, **2012_std_ha**, **2012_web**, **2014_std_ha**, **2016_ent_ha**, **2016_std_ha**, **2016_web**, **2017_std_ha**, **2017_ent**, **2019_std_ha**, and **2019_ent**
|
|
55983
|
-
* * Valid values if you set the Engine parameter to PostgreSQL: **10.0**, **11.0**, **12.0**, **13.0**, **14.0**, and **15.0**
|
|
55984
|
-
* * Valid value if you set the Engine parameter to MariaDB: **10.3**
|
|
56278
|
+
* **Regular RDS instances**
|
|
55985
56279
|
*
|
|
55986
|
-
* *
|
|
56280
|
+
* * Valid values when Engine is set to MySQL: 5.5, 5.6, 5.7, and 8.0.
|
|
56281
|
+
* * Valid values when Engine is set to SQLServer: 2008r2, 08r2_ent_ha, 2012, 2012_ent_ha, 2012_std_ha, 2012_web, 2014_std_ha, 2016_ent_ha, 2016_std_ha, 2016_web, 2017_std_ha, 2017_ent, 2019_std_ha, and 2019_ent.
|
|
56282
|
+
* * Valid values when Engine is set to PostgreSQL: 10.0, 11.0, 12.0, 13.0, 14.0, and 15.0.
|
|
56283
|
+
* * Valid value when Engine is set to MariaDB: 10.3.
|
|
55987
56284
|
*
|
|
55988
|
-
*
|
|
55989
|
-
* * Valid values if you set the Engine parameter to SQLServer: **2016_std_sl**, **2017_std_sl**, and **2019_std_sl**
|
|
55990
|
-
* * Valid values if you set the Engine parameter to PostgreSQL: **14.0**, **15.0**, **16.0**
|
|
56285
|
+
* **Serverless instances. ApsaraDB RDS for MariaDB does not support serverless instances.**
|
|
55991
56286
|
*
|
|
55992
|
-
*
|
|
56287
|
+
* * Valid values when Engine is set to MySQL: 5.7 and 8.0.
|
|
56288
|
+
* * Valid values when Engine is set to SQL Server: 2016_std_sl, 2017_std_sl, and 2019_std_sl.
|
|
56289
|
+
* * Valid values when Engine is set to PostgreSQL: 14.0, 15.0, and 16.0.
|
|
55993
56290
|
*
|
|
55994
56291
|
* @example
|
|
55995
56292
|
* 5.6
|
|
@@ -56005,13 +56302,11 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56005
56302
|
ioAccelerationEnabled?: string;
|
|
56006
56303
|
/**
|
|
56007
56304
|
* @remarks
|
|
56008
|
-
* Specifies whether to enable the write optimization feature.
|
|
56305
|
+
* Specifies whether to enable the write optimization feature for the ApsaraDB RDS for MySQL instance. For more information, see [Use the write optimization feature](https://help.aliyun.com/document_detail/2858761.html). Valid values:
|
|
56009
56306
|
*
|
|
56010
56307
|
* * **optimized**: enables the feature.
|
|
56011
56308
|
* * **none**: disables the feature.
|
|
56012
56309
|
*
|
|
56013
|
-
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
56014
|
-
*
|
|
56015
56310
|
* @example
|
|
56016
56311
|
* optimized
|
|
56017
56312
|
*/
|
|
@@ -56024,7 +56319,9 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56024
56319
|
*
|
|
56025
56320
|
* * **Postpaid**: pay-as-you-go.
|
|
56026
56321
|
* * **Prepaid**: subscription.
|
|
56027
|
-
* * **Serverless**: serverless. This value is not supported for
|
|
56322
|
+
* * **Serverless**: serverless. This value is not supported for ApsaraDB RDS for MariaDB instances.
|
|
56323
|
+
*
|
|
56324
|
+
* > If you want to set this parameter to Serverless, **you must specify **AutoPause, MaxCapacity, MinCapacity, and SwitchForce. For more information, see [Overview of serverless ApsaraDB RDS for MySQL instances](https://help.aliyun.com/document_detail/411291.html), [Overview of serverless ApsaraDB RDS for SQL Server instances](https://help.aliyun.com/document_detail/604344.html), and [Overview of serverless ApsaraDB RDS for PostgreSQL instances](https://help.aliyun.com/document_detail/607742.html).
|
|
56028
56325
|
*
|
|
56029
56326
|
* @example
|
|
56030
56327
|
* Postpaid
|
|
@@ -56040,7 +56337,7 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56040
56337
|
promotionCode?: string;
|
|
56041
56338
|
/**
|
|
56042
56339
|
* @remarks
|
|
56043
|
-
*
|
|
56340
|
+
* The specification of the read-only instance when you change the storage type of the ApsaraDB RDS for MySQL instance that runs RDS High-availability Edition from cloud disk to local disk.
|
|
56044
56341
|
*
|
|
56045
56342
|
* @example
|
|
56046
56343
|
* mysqlro.n2.large.c
|
|
@@ -56071,7 +56368,12 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56071
56368
|
sourceBiz?: string;
|
|
56072
56369
|
/**
|
|
56073
56370
|
* @remarks
|
|
56074
|
-
* The
|
|
56371
|
+
* The time at which you want to change the specifications. **We recommend that you perform the specification changes during off-peak hours.**
|
|
56372
|
+
*
|
|
56373
|
+
* 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.
|
|
56374
|
+
*
|
|
56375
|
+
* > * The time at which you want to change the specifications **must be later than the current time**. Otherwise, the specification change task fails. If the specification change task fails, you must wait for the order to be automatically canceled, and then call this operation again.
|
|
56376
|
+
* > * If you want to increase the storage capacity or change the ESSD storage type between different PLs, the specification change immediately takes effect and does not affect your workloads. You do not need to specify this parameter.
|
|
56075
56377
|
*
|
|
56076
56378
|
* @example
|
|
56077
56379
|
* 2019-07-10T13:15:12Z
|
|
@@ -56079,13 +56381,9 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56079
56381
|
switchTime?: string;
|
|
56080
56382
|
/**
|
|
56081
56383
|
* @remarks
|
|
56082
|
-
* The number of the minor version.
|
|
56083
|
-
*
|
|
56084
|
-
* This parameter is required only for instances that run PostgreSQL. If the minor engine version does not support changing the instance type, you must specify the minor engine version to update the minor engine version when you change the instance type.
|
|
56384
|
+
* The minor engine version number of the ApsaraDB RDS for PostgreSQL instance. For more information, see [Update the minor engine version](https://help.aliyun.com/document_detail/126002.html). If the minor engine version does not support changing the instance type, you must specify the minor engine version to **update the minor engine version when you change the instance type**.
|
|
56085
56385
|
*
|
|
56086
|
-
* Format: `rds_postgres_<Major engine version>00_<Minor engine version>`.
|
|
56087
|
-
*
|
|
56088
|
-
* > For more information about minor engine versions, see [Release notes for AliPG](https://help.aliyun.com/document_detail/126002.html).
|
|
56386
|
+
* Format: `rds_postgres_<Major engine version>00_<Minor engine version>`. For example, if the instance runs PostgreSQL 12, set this parameter to `rds_postgres_1200_20200830`.
|
|
56089
56387
|
*
|
|
56090
56388
|
* @example
|
|
56091
56389
|
* rds_postgres_1200_20200830
|
|
@@ -56093,7 +56391,7 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56093
56391
|
targetMinorVersion?: string;
|
|
56094
56392
|
/**
|
|
56095
56393
|
* @remarks
|
|
56096
|
-
* The
|
|
56394
|
+
* The validity period of the specification changes on an ApsaraDB RDS for SQL Server instance. At the end of the validity period, the specifications of the instance are restored to the specifications that are used before an [elastic upgrade](https://help.aliyun.com/document_detail/95665.html) is performed. Unit: days.
|
|
56097
56395
|
*
|
|
56098
56396
|
* @example
|
|
56099
56397
|
* 3
|
|
@@ -56106,7 +56404,7 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56106
56404
|
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
56107
56405
|
* * If you specify ZoneSlaveId1, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
56108
56406
|
*
|
|
56109
|
-
* >
|
|
56407
|
+
* > If you want to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance by specifying AllowMajorVersionUpgrade or change the vSwitch, you must specify this parameter.
|
|
56110
56408
|
*
|
|
56111
56409
|
* @example
|
|
56112
56410
|
* vsw-bp1oxflciovg9l7163lr7
|
|
@@ -56129,9 +56427,9 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56129
56427
|
zoneId?: string;
|
|
56130
56428
|
/**
|
|
56131
56429
|
* @remarks
|
|
56132
|
-
* The zone ID of the secondary instance. If you set this parameter to the same value as
|
|
56430
|
+
* The zone ID of the secondary instance. If you set this parameter to the same value as **ZoneId**, the single-zone deployment method is used. If you set this parameter to a different value from **ZoneId**, the multi-zone deployment method is used.
|
|
56133
56431
|
*
|
|
56134
|
-
* >
|
|
56432
|
+
* > If you want to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance by specifying AllowMajorVersionUpgrade or change the secondary zone, you must specify this parameter.
|
|
56135
56433
|
*
|
|
56136
56434
|
* @example
|
|
56137
56435
|
* cn-hangzhou-c
|
|
@@ -56151,12 +56449,13 @@ export declare class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
56151
56449
|
export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
56152
56450
|
/**
|
|
56153
56451
|
* @remarks
|
|
56154
|
-
* Specifies whether to upgrade the major engine version of
|
|
56452
|
+
* Specifies whether to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance. For more information, see [Upgrade the major engine version](https://help.aliyun.com/document_detail/127458.html). Valid values:
|
|
56155
56453
|
*
|
|
56156
56454
|
* * **true**
|
|
56157
56455
|
* * **false** (default)
|
|
56158
56456
|
*
|
|
56159
|
-
* >
|
|
56457
|
+
* > * When you upgrade the major engine version, you must also specify the required parameters such as DBInstanceId, EngineVersion, DBInstanceClass, Category, ZoneId, and VSwitchId.
|
|
56458
|
+
* > * If you want to upgrade the instance edition to RDS High-availability Edition or RDS Cluster Edition, you must specify ZoneIdSlave1.
|
|
56160
56459
|
*
|
|
56161
56460
|
* @example
|
|
56162
56461
|
* false
|
|
@@ -56175,7 +56474,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56175
56474
|
autoUseCoupon?: boolean;
|
|
56176
56475
|
/**
|
|
56177
56476
|
* @remarks
|
|
56178
|
-
* An invalid parameter. You
|
|
56477
|
+
* An invalid parameter. You do not need to specify this parameter.
|
|
56179
56478
|
*
|
|
56180
56479
|
* @example
|
|
56181
56480
|
* false
|
|
@@ -56185,22 +56484,20 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56185
56484
|
* @remarks
|
|
56186
56485
|
* The RDS edition of the instance. Valid values:
|
|
56187
56486
|
*
|
|
56188
|
-
*
|
|
56487
|
+
* > If you set **EngineVersion** to an SQL Server version number, you must also specify this parameter.
|
|
56189
56488
|
*
|
|
56190
|
-
*
|
|
56191
|
-
* * **HighAvailability**: RDS High-availability Edition.
|
|
56192
|
-
* * **AlwaysOn**: RDS Cluster Edition for ApsaraDB RDS for SQL Server.
|
|
56193
|
-
* * **Cluster**: RDS Cluster Edition for ApsaraDB RDS for MySQL.
|
|
56194
|
-
*
|
|
56195
|
-
* * Serverless instance
|
|
56196
|
-
*
|
|
56197
|
-
* * **serverless_basic**: RDS Basic Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56198
|
-
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56199
|
-
* * **serverless_ha**: RDS High-availability Edition for ApsaraDB RDS for SQL Server.
|
|
56489
|
+
* **Regular RDS instances**
|
|
56200
56490
|
*
|
|
56491
|
+
* * **Basic**: RDS Basic Edition.
|
|
56492
|
+
* * **HighAvailability**: RDS High-availability Edition.
|
|
56493
|
+
* * **AlwaysOn**: RDS Cluster Edition for ApsaraDB RDS for SQL Server.
|
|
56494
|
+
* * **Cluster**: RDS Cluster Edition for ApsaraDB RDS for MySQL.
|
|
56201
56495
|
*
|
|
56496
|
+
* **Serverless instances. ApsaraDB RDS for MariaDB does not support serverless instances.**
|
|
56202
56497
|
*
|
|
56203
|
-
*
|
|
56498
|
+
* * **serverless_basic**: RDS Basic Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56499
|
+
* * **serverless_standard**: RDS High-availability Edition. This edition is available only for serverless instances that run MySQL and PostgreSQL.
|
|
56500
|
+
* * **serverless_ha**: RDS High-availability Edition for serverless instances. This edition is available only for instances that run SQL Server.
|
|
56204
56501
|
*
|
|
56205
56502
|
* @example
|
|
56206
56503
|
* HighAvailability
|
|
@@ -56216,9 +56513,10 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56216
56513
|
coldDataEnabled?: boolean;
|
|
56217
56514
|
/**
|
|
56218
56515
|
* @remarks
|
|
56219
|
-
*
|
|
56220
|
-
*
|
|
56221
|
-
*
|
|
56516
|
+
* Specifies whether to enable the storage compression feature for the ApsaraDB RDS for MySQL instance. For more information, see [Use the storage compression feature](https://help.aliyun.com/document_detail/2861985.html). Valid values:
|
|
56517
|
+
*
|
|
56518
|
+
* * **on**
|
|
56519
|
+
* * **off**
|
|
56222
56520
|
*
|
|
56223
56521
|
* @example
|
|
56224
56522
|
* on
|
|
@@ -56226,10 +56524,10 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56226
56524
|
compressionMode?: string;
|
|
56227
56525
|
/**
|
|
56228
56526
|
* @remarks
|
|
56229
|
-
* The
|
|
56527
|
+
* The instance type of the new instance. For more information, see [Specifications](https://help.aliyun.com/document_detail/26312.html). You can call the [DescribeAvailableClasses](https://help.aliyun.com/document_detail/610393.html) operation to query the instance types.
|
|
56230
56528
|
*
|
|
56231
56529
|
* > * You must specify at least one of DBInstanceClass and **DBInstanceStorage**.
|
|
56232
|
-
* > * You can call the DescribeDBInstanceAttribute operation to query the current instance type of the instance.
|
|
56530
|
+
* > * You can call the [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html) operation to query the current instance type of the instance.
|
|
56233
56531
|
*
|
|
56234
56532
|
* @example
|
|
56235
56533
|
* rds.mys2.small
|
|
@@ -56237,7 +56535,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56237
56535
|
DBInstanceClass?: string;
|
|
56238
56536
|
/**
|
|
56239
56537
|
* @remarks
|
|
56240
|
-
* The instance ID. You can call the DescribeDBInstances operation to query the instance
|
|
56538
|
+
* The instance ID. You can call the [DescribeDBInstances](https://help.aliyun.com/document_detail/610396.html) operation to query the instance IDs.
|
|
56241
56539
|
*
|
|
56242
56540
|
* This parameter is required.
|
|
56243
56541
|
*
|
|
@@ -56247,10 +56545,10 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56247
56545
|
DBInstanceId?: string;
|
|
56248
56546
|
/**
|
|
56249
56547
|
* @remarks
|
|
56250
|
-
* The
|
|
56548
|
+
* The storage capacity of the new instance. Unit: GB. For more information, see [Storage types](https://help.aliyun.com/document_detail/26312.html). You can call the [DescribeAvailableClasses](https://help.aliyun.com/document_detail/610393.html) operation to query the storage capacity range that is supported by the new instance type.
|
|
56251
56549
|
*
|
|
56252
|
-
* > * You must specify at least one of
|
|
56253
|
-
* > * You can call the DescribeDBInstanceAttribute to query the current storage capacity of the instance.
|
|
56550
|
+
* > * You must specify at least one of DBInstanceStorage and **DBInstanceClass**.
|
|
56551
|
+
* > * You can call the [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/610394.html) operation to query the current storage capacity of the instance.
|
|
56254
56552
|
*
|
|
56255
56553
|
* @example
|
|
56256
56554
|
* 20
|
|
@@ -56258,17 +56556,17 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56258
56556
|
DBInstanceStorage?: number;
|
|
56259
56557
|
/**
|
|
56260
56558
|
* @remarks
|
|
56261
|
-
* The storage type of the instance. Valid values:
|
|
56559
|
+
* The storage type of the new instance. Valid values:
|
|
56262
56560
|
*
|
|
56263
56561
|
* * **local_ssd**: local SSD.
|
|
56264
|
-
* * **cloud_ssd**:
|
|
56265
|
-
* * **cloud_essd**:
|
|
56266
|
-
* * **cloud_essd2**:
|
|
56267
|
-
* * **cloud_essd3**: ESSD
|
|
56562
|
+
* * **cloud_ssd**: SSD cloud disks. This storage medium is not recommended and is unavailable in specific Alibaba Cloud regions.
|
|
56563
|
+
* * **cloud_essd**: performance level 1 (PL1) Enterprise SSD (ESSD).
|
|
56564
|
+
* * **cloud_essd2**: PL2 ESSD.
|
|
56565
|
+
* * **cloud_essd3**: PL3 ESSD.
|
|
56268
56566
|
*
|
|
56269
56567
|
* To change the storage type, take note of the following items:
|
|
56270
56568
|
*
|
|
56271
|
-
* If the instance runs PostgreSQL, you can upgrade the storage type of the instance from standard
|
|
56569
|
+
* If the instance runs PostgreSQL, you can upgrade the storage type of the instance from standard SSDs to ESSDs. However, you cannot downgrade the storage type of the instance from ESSDs to standard SSDs. ESSDs provide the following PLs: ESSDs of PL1, ESSDs of PL2, and ESSDs of PL3. You can upgrade or downgrade the storage type between ESSD of PL1, ESSD of PL2, and ESSD of PL3. For more information, see [Configuration items](https://help.aliyun.com/document_detail/96750.html).
|
|
56272
56570
|
*
|
|
56273
56571
|
* @example
|
|
56274
56572
|
* local_ssd
|
|
@@ -56299,11 +56597,13 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56299
56597
|
direction?: string;
|
|
56300
56598
|
/**
|
|
56301
56599
|
* @remarks
|
|
56302
|
-
* The
|
|
56600
|
+
* The time when the new specifications take effect. Valid values:
|
|
56303
56601
|
*
|
|
56304
|
-
*
|
|
56305
|
-
*
|
|
56306
|
-
* * **
|
|
56602
|
+
* > **Specific changes may affect the instance**. Read the [Impact](https://help.aliyun.com/document_detail/96061.html) section before you specify this parameter. We recommend that you specify this parameter during off-peak hours.
|
|
56603
|
+
*
|
|
56604
|
+
* * **Immediate** (default): The changes immediately take effect.
|
|
56605
|
+
* * **MaintainTime**: The changes take effect during the [maintenance window](https://help.aliyun.com/document_detail/610402.html) of the instance.
|
|
56606
|
+
* * **ScheduleTime**: The changes take effect at the point in time that you specify. This time must be at least 12 hours later than the current time. The actual effective time is calculated based on the following formula: EffectiveTime = ScheduleTime + SwitchTime.
|
|
56307
56607
|
*
|
|
56308
56608
|
* @example
|
|
56309
56609
|
* MaintainTime
|
|
@@ -56311,22 +56611,20 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56311
56611
|
effectiveTime?: string;
|
|
56312
56612
|
/**
|
|
56313
56613
|
* @remarks
|
|
56314
|
-
* The database engine version of the instance.
|
|
56315
|
-
*
|
|
56316
|
-
* * Regular instance
|
|
56614
|
+
* The database engine version of the instance. Valid values:
|
|
56317
56615
|
*
|
|
56318
|
-
*
|
|
56319
|
-
* * Valid values if you set the Engine parameter to SQLServer: **2008r2**, **08r2_ent_ha**, **2012**, **2012_ent_ha**, **2012_std_ha**, **2012_web**, **2014_std_ha**, **2016_ent_ha**, **2016_std_ha**, **2016_web**, **2017_std_ha**, **2017_ent**, **2019_std_ha**, and **2019_ent**
|
|
56320
|
-
* * Valid values if you set the Engine parameter to PostgreSQL: **10.0**, **11.0**, **12.0**, **13.0**, **14.0**, and **15.0**
|
|
56321
|
-
* * Valid value if you set the Engine parameter to MariaDB: **10.3**
|
|
56616
|
+
* **Regular RDS instances**
|
|
56322
56617
|
*
|
|
56323
|
-
* *
|
|
56618
|
+
* * Valid values when Engine is set to MySQL: 5.5, 5.6, 5.7, and 8.0.
|
|
56619
|
+
* * Valid values when Engine is set to SQLServer: 2008r2, 08r2_ent_ha, 2012, 2012_ent_ha, 2012_std_ha, 2012_web, 2014_std_ha, 2016_ent_ha, 2016_std_ha, 2016_web, 2017_std_ha, 2017_ent, 2019_std_ha, and 2019_ent.
|
|
56620
|
+
* * Valid values when Engine is set to PostgreSQL: 10.0, 11.0, 12.0, 13.0, 14.0, and 15.0.
|
|
56621
|
+
* * Valid value when Engine is set to MariaDB: 10.3.
|
|
56324
56622
|
*
|
|
56325
|
-
*
|
|
56326
|
-
* * Valid values if you set the Engine parameter to SQLServer: **2016_std_sl**, **2017_std_sl**, and **2019_std_sl**
|
|
56327
|
-
* * Valid values if you set the Engine parameter to PostgreSQL: **14.0**, **15.0**, **16.0**
|
|
56623
|
+
* **Serverless instances. ApsaraDB RDS for MariaDB does not support serverless instances.**
|
|
56328
56624
|
*
|
|
56329
|
-
*
|
|
56625
|
+
* * Valid values when Engine is set to MySQL: 5.7 and 8.0.
|
|
56626
|
+
* * Valid values when Engine is set to SQL Server: 2016_std_sl, 2017_std_sl, and 2019_std_sl.
|
|
56627
|
+
* * Valid values when Engine is set to PostgreSQL: 14.0, 15.0, and 16.0.
|
|
56330
56628
|
*
|
|
56331
56629
|
* @example
|
|
56332
56630
|
* 5.6
|
|
@@ -56342,13 +56640,11 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56342
56640
|
ioAccelerationEnabled?: string;
|
|
56343
56641
|
/**
|
|
56344
56642
|
* @remarks
|
|
56345
|
-
* Specifies whether to enable the write optimization feature.
|
|
56643
|
+
* Specifies whether to enable the write optimization feature for the ApsaraDB RDS for MySQL instance. For more information, see [Use the write optimization feature](https://help.aliyun.com/document_detail/2858761.html). Valid values:
|
|
56346
56644
|
*
|
|
56347
56645
|
* * **optimized**: enables the feature.
|
|
56348
56646
|
* * **none**: disables the feature.
|
|
56349
56647
|
*
|
|
56350
|
-
* > For more information about the write optimization feature, see [Write optimization](https://help.aliyun.com/document_detail/2858761.html).
|
|
56351
|
-
*
|
|
56352
56648
|
* @example
|
|
56353
56649
|
* optimized
|
|
56354
56650
|
*/
|
|
@@ -56361,7 +56657,9 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56361
56657
|
*
|
|
56362
56658
|
* * **Postpaid**: pay-as-you-go.
|
|
56363
56659
|
* * **Prepaid**: subscription.
|
|
56364
|
-
* * **Serverless**: serverless. This value is not supported for
|
|
56660
|
+
* * **Serverless**: serverless. This value is not supported for ApsaraDB RDS for MariaDB instances.
|
|
56661
|
+
*
|
|
56662
|
+
* > If you want to set this parameter to Serverless, **you must specify **AutoPause, MaxCapacity, MinCapacity, and SwitchForce. For more information, see [Overview of serverless ApsaraDB RDS for MySQL instances](https://help.aliyun.com/document_detail/411291.html), [Overview of serverless ApsaraDB RDS for SQL Server instances](https://help.aliyun.com/document_detail/604344.html), and [Overview of serverless ApsaraDB RDS for PostgreSQL instances](https://help.aliyun.com/document_detail/607742.html).
|
|
56365
56663
|
*
|
|
56366
56664
|
* @example
|
|
56367
56665
|
* Postpaid
|
|
@@ -56377,7 +56675,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56377
56675
|
promotionCode?: string;
|
|
56378
56676
|
/**
|
|
56379
56677
|
* @remarks
|
|
56380
|
-
*
|
|
56678
|
+
* The specification of the read-only instance when you change the storage type of the ApsaraDB RDS for MySQL instance that runs RDS High-availability Edition from cloud disk to local disk.
|
|
56381
56679
|
*
|
|
56382
56680
|
* @example
|
|
56383
56681
|
* mysqlro.n2.large.c
|
|
@@ -56408,7 +56706,12 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56408
56706
|
sourceBiz?: string;
|
|
56409
56707
|
/**
|
|
56410
56708
|
* @remarks
|
|
56411
|
-
* The
|
|
56709
|
+
* The time at which you want to change the specifications. **We recommend that you perform the specification changes during off-peak hours.**
|
|
56710
|
+
*
|
|
56711
|
+
* 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.
|
|
56712
|
+
*
|
|
56713
|
+
* > * The time at which you want to change the specifications **must be later than the current time**. Otherwise, the specification change task fails. If the specification change task fails, you must wait for the order to be automatically canceled, and then call this operation again.
|
|
56714
|
+
* > * If you want to increase the storage capacity or change the ESSD storage type between different PLs, the specification change immediately takes effect and does not affect your workloads. You do not need to specify this parameter.
|
|
56412
56715
|
*
|
|
56413
56716
|
* @example
|
|
56414
56717
|
* 2019-07-10T13:15:12Z
|
|
@@ -56416,13 +56719,9 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56416
56719
|
switchTime?: string;
|
|
56417
56720
|
/**
|
|
56418
56721
|
* @remarks
|
|
56419
|
-
* The number of the minor version.
|
|
56722
|
+
* The minor engine version number of the ApsaraDB RDS for PostgreSQL instance. For more information, see [Update the minor engine version](https://help.aliyun.com/document_detail/126002.html). If the minor engine version does not support changing the instance type, you must specify the minor engine version to **update the minor engine version when you change the instance type**.
|
|
56420
56723
|
*
|
|
56421
|
-
*
|
|
56422
|
-
*
|
|
56423
|
-
* Format: `rds_postgres_<Major engine version>00_<Minor engine version>`. Example: `rds_postgres_1200_20200830`.
|
|
56424
|
-
*
|
|
56425
|
-
* > For more information about minor engine versions, see [Release notes for AliPG](https://help.aliyun.com/document_detail/126002.html).
|
|
56724
|
+
* Format: `rds_postgres_<Major engine version>00_<Minor engine version>`. For example, if the instance runs PostgreSQL 12, set this parameter to `rds_postgres_1200_20200830`.
|
|
56426
56725
|
*
|
|
56427
56726
|
* @example
|
|
56428
56727
|
* rds_postgres_1200_20200830
|
|
@@ -56430,7 +56729,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56430
56729
|
targetMinorVersion?: string;
|
|
56431
56730
|
/**
|
|
56432
56731
|
* @remarks
|
|
56433
|
-
* The
|
|
56732
|
+
* The validity period of the specification changes on an ApsaraDB RDS for SQL Server instance. At the end of the validity period, the specifications of the instance are restored to the specifications that are used before an [elastic upgrade](https://help.aliyun.com/document_detail/95665.html) is performed. Unit: days.
|
|
56434
56733
|
*
|
|
56435
56734
|
* @example
|
|
56436
56735
|
* 3
|
|
@@ -56443,7 +56742,7 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56443
56742
|
* * If you set **InstanceNetworkType** to **VPC**, you must also specify this parameter.
|
|
56444
56743
|
* * If you specify ZoneSlaveId1, you must specify the IDs of two vSwitches for this parameter and separate the IDs with a comma (,).
|
|
56445
56744
|
*
|
|
56446
|
-
* >
|
|
56745
|
+
* > If you want to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance by specifying AllowMajorVersionUpgrade or change the vSwitch, you must specify this parameter.
|
|
56447
56746
|
*
|
|
56448
56747
|
* @example
|
|
56449
56748
|
* vsw-bp1oxflciovg9l7163lr7
|
|
@@ -56466,9 +56765,9 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $dara.Model {
|
|
|
56466
56765
|
zoneId?: string;
|
|
56467
56766
|
/**
|
|
56468
56767
|
* @remarks
|
|
56469
|
-
* The zone ID of the secondary instance. If you set this parameter to the same value as
|
|
56768
|
+
* The zone ID of the secondary instance. If you set this parameter to the same value as **ZoneId**, the single-zone deployment method is used. If you set this parameter to a different value from **ZoneId**, the multi-zone deployment method is used.
|
|
56470
56769
|
*
|
|
56471
|
-
* >
|
|
56770
|
+
* > If you want to upgrade the major engine version of an ApsaraDB RDS for SQL Server instance by specifying AllowMajorVersionUpgrade or change the secondary zone, you must specify this parameter.
|
|
56472
56771
|
*
|
|
56473
56772
|
* @example
|
|
56474
56773
|
* cn-hangzhou-c
|
|
@@ -57040,9 +57339,9 @@ export declare class ModifyDBProxyRequest extends $dara.Model {
|
|
|
57040
57339
|
DBProxyNodes?: ModifyDBProxyRequestDBProxyNodes[];
|
|
57041
57340
|
/**
|
|
57042
57341
|
* @remarks
|
|
57043
|
-
* The network type of the instance. Set the value to **VPC**.
|
|
57342
|
+
* The network type of the instance. Only the VPC network type is supported. Set the value to **VPC**.
|
|
57044
57343
|
*
|
|
57045
|
-
* >
|
|
57344
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57046
57345
|
*
|
|
57047
57346
|
* @example
|
|
57048
57347
|
* VPC
|
|
@@ -57086,9 +57385,9 @@ export declare class ModifyDBProxyRequest extends $dara.Model {
|
|
|
57086
57385
|
resourceOwnerId?: number;
|
|
57087
57386
|
/**
|
|
57088
57387
|
* @remarks
|
|
57089
|
-
* The ID of the virtual private cloud (VPC) to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the
|
|
57388
|
+
* The ID of the virtual private cloud (VPC) to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the ID.
|
|
57090
57389
|
*
|
|
57091
|
-
* >
|
|
57390
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57092
57391
|
*
|
|
57093
57392
|
* @example
|
|
57094
57393
|
* vpc-xxxxxxxxxxxx
|
|
@@ -57096,9 +57395,9 @@ export declare class ModifyDBProxyRequest extends $dara.Model {
|
|
|
57096
57395
|
VPCId?: string;
|
|
57097
57396
|
/**
|
|
57098
57397
|
* @remarks
|
|
57099
|
-
* The
|
|
57398
|
+
* The ID of the vSwitch to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the ID.
|
|
57100
57399
|
*
|
|
57101
|
-
* >
|
|
57400
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57102
57401
|
*
|
|
57103
57402
|
* @example
|
|
57104
57403
|
* vsw-xxxxxxxxxxxx
|
|
@@ -57176,9 +57475,9 @@ export declare class ModifyDBProxyShrinkRequest extends $dara.Model {
|
|
|
57176
57475
|
DBProxyNodesShrink?: string;
|
|
57177
57476
|
/**
|
|
57178
57477
|
* @remarks
|
|
57179
|
-
* The network type of the instance. Set the value to **VPC**.
|
|
57478
|
+
* The network type of the instance. Only the VPC network type is supported. Set the value to **VPC**.
|
|
57180
57479
|
*
|
|
57181
|
-
* >
|
|
57480
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57182
57481
|
*
|
|
57183
57482
|
* @example
|
|
57184
57483
|
* VPC
|
|
@@ -57222,9 +57521,9 @@ export declare class ModifyDBProxyShrinkRequest extends $dara.Model {
|
|
|
57222
57521
|
resourceOwnerId?: number;
|
|
57223
57522
|
/**
|
|
57224
57523
|
* @remarks
|
|
57225
|
-
* The ID of the virtual private cloud (VPC) to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the
|
|
57524
|
+
* The ID of the virtual private cloud (VPC) to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the ID.
|
|
57226
57525
|
*
|
|
57227
|
-
* >
|
|
57526
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57228
57527
|
*
|
|
57229
57528
|
* @example
|
|
57230
57529
|
* vpc-xxxxxxxxxxxx
|
|
@@ -57232,9 +57531,9 @@ export declare class ModifyDBProxyShrinkRequest extends $dara.Model {
|
|
|
57232
57531
|
VPCId?: string;
|
|
57233
57532
|
/**
|
|
57234
57533
|
* @remarks
|
|
57235
|
-
* The
|
|
57534
|
+
* The ID of the vSwitch to which the instance belongs. You can call the DescribeDBInstanceAttribute operation to query the ID.
|
|
57236
57535
|
*
|
|
57237
|
-
* >
|
|
57536
|
+
* > If you enable the database proxy feature for the instance, you must specify this parameter.
|
|
57238
57537
|
*
|
|
57239
57538
|
* @example
|
|
57240
57539
|
* vsw-xxxxxxxxxxxx
|
|
@@ -57561,13 +57860,10 @@ export declare class ModifyDBProxyEndpointAddressRequest extends $dara.Model {
|
|
|
57561
57860
|
* @remarks
|
|
57562
57861
|
* The network type of the database proxy endpoint. Valid values:
|
|
57563
57862
|
*
|
|
57564
|
-
* * **Public
|
|
57565
|
-
* * **VPC
|
|
57566
|
-
* * **Classic**: classic network
|
|
57567
|
-
*
|
|
57568
|
-
* If the instance runs MySQL, the default value is **Classic**.
|
|
57863
|
+
* * **Public**
|
|
57864
|
+
* * **VPC** (default)
|
|
57569
57865
|
*
|
|
57570
|
-
* > If the instance runs
|
|
57866
|
+
* > If the RDS instance runs MySQL, this parameter is required.
|
|
57571
57867
|
*
|
|
57572
57868
|
* @example
|
|
57573
57869
|
* Public
|
|
@@ -59453,6 +59749,87 @@ export declare class ModifyParameterGroupResponse extends $dara.Model {
|
|
|
59453
59749
|
[key: string]: any;
|
|
59454
59750
|
});
|
|
59455
59751
|
}
|
|
59752
|
+
export declare class ModifyRCDiskSpecRequest extends $dara.Model {
|
|
59753
|
+
/**
|
|
59754
|
+
* @example
|
|
59755
|
+
* true
|
|
59756
|
+
*/
|
|
59757
|
+
autoPay?: boolean;
|
|
59758
|
+
/**
|
|
59759
|
+
* @example
|
|
59760
|
+
* cloud_essd
|
|
59761
|
+
*/
|
|
59762
|
+
diskCategory?: string;
|
|
59763
|
+
/**
|
|
59764
|
+
* @example
|
|
59765
|
+
* rcd-wz9f3peueu5npsl****
|
|
59766
|
+
*/
|
|
59767
|
+
diskId?: string;
|
|
59768
|
+
/**
|
|
59769
|
+
* @example
|
|
59770
|
+
* false
|
|
59771
|
+
*/
|
|
59772
|
+
dryRun?: boolean;
|
|
59773
|
+
/**
|
|
59774
|
+
* @example
|
|
59775
|
+
* PL2
|
|
59776
|
+
*/
|
|
59777
|
+
performanceLevel?: string;
|
|
59778
|
+
/**
|
|
59779
|
+
* @example
|
|
59780
|
+
* cn-hangzhou
|
|
59781
|
+
*/
|
|
59782
|
+
regionId?: string;
|
|
59783
|
+
static names(): {
|
|
59784
|
+
[key: string]: string;
|
|
59785
|
+
};
|
|
59786
|
+
static types(): {
|
|
59787
|
+
[key: string]: any;
|
|
59788
|
+
};
|
|
59789
|
+
validate(): void;
|
|
59790
|
+
constructor(map?: {
|
|
59791
|
+
[key: string]: any;
|
|
59792
|
+
});
|
|
59793
|
+
}
|
|
59794
|
+
export declare class ModifyRCDiskSpecResponseBody extends $dara.Model {
|
|
59795
|
+
/**
|
|
59796
|
+
* @example
|
|
59797
|
+
* 245053924720608
|
|
59798
|
+
*/
|
|
59799
|
+
orderId?: number;
|
|
59800
|
+
/**
|
|
59801
|
+
* @example
|
|
59802
|
+
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
59803
|
+
*/
|
|
59804
|
+
requestId?: string;
|
|
59805
|
+
static names(): {
|
|
59806
|
+
[key: string]: string;
|
|
59807
|
+
};
|
|
59808
|
+
static types(): {
|
|
59809
|
+
[key: string]: any;
|
|
59810
|
+
};
|
|
59811
|
+
validate(): void;
|
|
59812
|
+
constructor(map?: {
|
|
59813
|
+
[key: string]: any;
|
|
59814
|
+
});
|
|
59815
|
+
}
|
|
59816
|
+
export declare class ModifyRCDiskSpecResponse extends $dara.Model {
|
|
59817
|
+
headers?: {
|
|
59818
|
+
[key: string]: string;
|
|
59819
|
+
};
|
|
59820
|
+
statusCode?: number;
|
|
59821
|
+
body?: ModifyRCDiskSpecResponseBody;
|
|
59822
|
+
static names(): {
|
|
59823
|
+
[key: string]: string;
|
|
59824
|
+
};
|
|
59825
|
+
static types(): {
|
|
59826
|
+
[key: string]: any;
|
|
59827
|
+
};
|
|
59828
|
+
validate(): void;
|
|
59829
|
+
constructor(map?: {
|
|
59830
|
+
[key: string]: any;
|
|
59831
|
+
});
|
|
59832
|
+
}
|
|
59456
59833
|
export declare class ModifyRCInstanceRequest extends $dara.Model {
|
|
59457
59834
|
/**
|
|
59458
59835
|
* @remarks
|
|
@@ -59668,35 +60045,92 @@ export declare class ModifyRCInstanceAttributeResponse extends $dara.Model {
|
|
|
59668
60045
|
});
|
|
59669
60046
|
}
|
|
59670
60047
|
export declare class ModifyRCInstanceChargeTypeRequest extends $dara.Model {
|
|
60048
|
+
/**
|
|
60049
|
+
* @example
|
|
60050
|
+
* None
|
|
60051
|
+
*/
|
|
59671
60052
|
autoPay?: boolean;
|
|
60053
|
+
/**
|
|
60054
|
+
* @example
|
|
60055
|
+
* true
|
|
60056
|
+
*/
|
|
59672
60057
|
autoRenew?: string;
|
|
60058
|
+
/**
|
|
60059
|
+
* @example
|
|
60060
|
+
* true
|
|
60061
|
+
*/
|
|
59673
60062
|
autoUseCoupon?: boolean;
|
|
60063
|
+
/**
|
|
60064
|
+
* @example
|
|
60065
|
+
* None
|
|
60066
|
+
*/
|
|
59674
60067
|
businessInfo?: string;
|
|
60068
|
+
/**
|
|
60069
|
+
* @example
|
|
60070
|
+
* ETnLKlblzczshOTUbOC****
|
|
60071
|
+
*/
|
|
59675
60072
|
clientToken?: string;
|
|
60073
|
+
/**
|
|
60074
|
+
* @example
|
|
60075
|
+
* None
|
|
60076
|
+
*/
|
|
59676
60077
|
dryRun?: boolean;
|
|
60078
|
+
/**
|
|
60079
|
+
* @example
|
|
60080
|
+
* None
|
|
60081
|
+
*/
|
|
59677
60082
|
includeDataDisks?: boolean;
|
|
60083
|
+
/**
|
|
60084
|
+
* @example
|
|
60085
|
+
* None
|
|
60086
|
+
*/
|
|
59678
60087
|
instanceChargeType?: string;
|
|
59679
60088
|
/**
|
|
59680
60089
|
* @remarks
|
|
59681
60090
|
* This parameter is required.
|
|
60091
|
+
*
|
|
60092
|
+
* @example
|
|
60093
|
+
* rc-dh2jf9n6j4s14926****
|
|
59682
60094
|
*/
|
|
59683
60095
|
instanceId?: string;
|
|
60096
|
+
/**
|
|
60097
|
+
* @example
|
|
60098
|
+
* None
|
|
60099
|
+
*/
|
|
59684
60100
|
instanceIds?: string;
|
|
59685
60101
|
/**
|
|
59686
60102
|
* @remarks
|
|
59687
60103
|
* This parameter is required.
|
|
60104
|
+
*
|
|
60105
|
+
* @example
|
|
60106
|
+
* Postpaid
|
|
59688
60107
|
*/
|
|
59689
60108
|
payType?: string;
|
|
60109
|
+
/**
|
|
60110
|
+
* @example
|
|
60111
|
+
* Month
|
|
60112
|
+
*/
|
|
59690
60113
|
period?: string;
|
|
60114
|
+
/**
|
|
60115
|
+
* @example
|
|
60116
|
+
* 72802442****
|
|
60117
|
+
*/
|
|
59691
60118
|
promotionCode?: string;
|
|
59692
60119
|
/**
|
|
59693
60120
|
* @remarks
|
|
59694
60121
|
* This parameter is required.
|
|
59695
60122
|
*
|
|
60123
|
+
* @example
|
|
60124
|
+
* cn-hangzhou
|
|
60125
|
+
*
|
|
59696
60126
|
* **if can be null:**
|
|
59697
60127
|
* true
|
|
59698
60128
|
*/
|
|
59699
60129
|
regionId?: string;
|
|
60130
|
+
/**
|
|
60131
|
+
* @example
|
|
60132
|
+
* 2
|
|
60133
|
+
*/
|
|
59700
60134
|
usedTime?: number;
|
|
59701
60135
|
static names(): {
|
|
59702
60136
|
[key: string]: string;
|
|
@@ -59710,11 +60144,23 @@ export declare class ModifyRCInstanceChargeTypeRequest extends $dara.Model {
|
|
|
59710
60144
|
});
|
|
59711
60145
|
}
|
|
59712
60146
|
export declare class ModifyRCInstanceChargeTypeResponseBody extends $dara.Model {
|
|
60147
|
+
/**
|
|
60148
|
+
* @example
|
|
60149
|
+
* POSTPAY
|
|
60150
|
+
*/
|
|
59713
60151
|
chargeType?: string;
|
|
59714
60152
|
expiredTime?: string[];
|
|
59715
60153
|
feeOfInstances?: ModifyRCInstanceChargeTypeResponseBodyFeeOfInstances[];
|
|
59716
60154
|
instanceIds?: string[];
|
|
60155
|
+
/**
|
|
60156
|
+
* @example
|
|
60157
|
+
* 2133400000****
|
|
60158
|
+
*/
|
|
59717
60159
|
orderId?: string;
|
|
60160
|
+
/**
|
|
60161
|
+
* @example
|
|
60162
|
+
* 6EF82B07-28D2-48D1-B5D6-7E78FED277C7
|
|
60163
|
+
*/
|
|
59718
60164
|
requestId?: string;
|
|
59719
60165
|
static names(): {
|
|
59720
60166
|
[key: string]: string;
|
|
@@ -61727,9 +62173,37 @@ export declare class RebootRCInstanceResponse extends $dara.Model {
|
|
|
61727
62173
|
});
|
|
61728
62174
|
}
|
|
61729
62175
|
export declare class RebootRCInstancesRequest extends $dara.Model {
|
|
62176
|
+
/**
|
|
62177
|
+
* @remarks
|
|
62178
|
+
* The batch operation mode. Set the value to **AllTogether**. In this mode, if all specified instances are restarted, a success message is returned. If an instance fails the verification, none of the specified instances can be restarted and an error message is returned.
|
|
62179
|
+
*
|
|
62180
|
+
* @example
|
|
62181
|
+
* AllTogether
|
|
62182
|
+
*/
|
|
61730
62183
|
batchOptimization?: string;
|
|
62184
|
+
/**
|
|
62185
|
+
* @remarks
|
|
62186
|
+
* Specifies whether to forcefully restart the instance. Valid values:
|
|
62187
|
+
*
|
|
62188
|
+
* * **true**
|
|
62189
|
+
* * **false** (default)
|
|
62190
|
+
*
|
|
62191
|
+
* @example
|
|
62192
|
+
* false
|
|
62193
|
+
*/
|
|
61731
62194
|
forceReboot?: boolean;
|
|
62195
|
+
/**
|
|
62196
|
+
* @remarks
|
|
62197
|
+
* The node IDs.
|
|
62198
|
+
*/
|
|
61732
62199
|
instanceIds?: string[];
|
|
62200
|
+
/**
|
|
62201
|
+
* @remarks
|
|
62202
|
+
* The region ID of the instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/26243.html) operation to query the most recent region list.
|
|
62203
|
+
*
|
|
62204
|
+
* @example
|
|
62205
|
+
* cn-hangzhou
|
|
62206
|
+
*/
|
|
61733
62207
|
regionId?: string;
|
|
61734
62208
|
static names(): {
|
|
61735
62209
|
[key: string]: string;
|
|
@@ -61743,9 +62217,37 @@ export declare class RebootRCInstancesRequest extends $dara.Model {
|
|
|
61743
62217
|
});
|
|
61744
62218
|
}
|
|
61745
62219
|
export declare class RebootRCInstancesShrinkRequest extends $dara.Model {
|
|
62220
|
+
/**
|
|
62221
|
+
* @remarks
|
|
62222
|
+
* The batch operation mode. Set the value to **AllTogether**. In this mode, if all specified instances are restarted, a success message is returned. If an instance fails the verification, none of the specified instances can be restarted and an error message is returned.
|
|
62223
|
+
*
|
|
62224
|
+
* @example
|
|
62225
|
+
* AllTogether
|
|
62226
|
+
*/
|
|
61746
62227
|
batchOptimization?: string;
|
|
62228
|
+
/**
|
|
62229
|
+
* @remarks
|
|
62230
|
+
* Specifies whether to forcefully restart the instance. Valid values:
|
|
62231
|
+
*
|
|
62232
|
+
* * **true**
|
|
62233
|
+
* * **false** (default)
|
|
62234
|
+
*
|
|
62235
|
+
* @example
|
|
62236
|
+
* false
|
|
62237
|
+
*/
|
|
61747
62238
|
forceReboot?: boolean;
|
|
62239
|
+
/**
|
|
62240
|
+
* @remarks
|
|
62241
|
+
* The node IDs.
|
|
62242
|
+
*/
|
|
61748
62243
|
instanceIdsShrink?: string;
|
|
62244
|
+
/**
|
|
62245
|
+
* @remarks
|
|
62246
|
+
* The region ID of the instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/26243.html) operation to query the most recent region list.
|
|
62247
|
+
*
|
|
62248
|
+
* @example
|
|
62249
|
+
* cn-hangzhou
|
|
62250
|
+
*/
|
|
61749
62251
|
regionId?: string;
|
|
61750
62252
|
static names(): {
|
|
61751
62253
|
[key: string]: string;
|
|
@@ -61759,6 +62261,13 @@ export declare class RebootRCInstancesShrinkRequest extends $dara.Model {
|
|
|
61759
62261
|
});
|
|
61760
62262
|
}
|
|
61761
62263
|
export declare class RebootRCInstancesResponseBody extends $dara.Model {
|
|
62264
|
+
/**
|
|
62265
|
+
* @remarks
|
|
62266
|
+
* The request ID.
|
|
62267
|
+
*
|
|
62268
|
+
* @example
|
|
62269
|
+
* 32A5B40E-50DA-5166-9B22-35F00C5D1BC6
|
|
62270
|
+
*/
|
|
61762
62271
|
requestId?: string;
|
|
61763
62272
|
static names(): {
|
|
61764
62273
|
[key: string]: string;
|
|
@@ -64709,13 +65218,243 @@ export declare class StartRCInstanceRequest extends $dara.Model {
|
|
|
64709
65218
|
[key: string]: any;
|
|
64710
65219
|
});
|
|
64711
65220
|
}
|
|
64712
|
-
export declare class StartRCInstanceResponseBody extends $dara.Model {
|
|
65221
|
+
export declare class StartRCInstanceResponseBody extends $dara.Model {
|
|
65222
|
+
/**
|
|
65223
|
+
* @remarks
|
|
65224
|
+
* The request ID.
|
|
65225
|
+
*
|
|
65226
|
+
* @example
|
|
65227
|
+
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
65228
|
+
*/
|
|
65229
|
+
requestId?: string;
|
|
65230
|
+
static names(): {
|
|
65231
|
+
[key: string]: string;
|
|
65232
|
+
};
|
|
65233
|
+
static types(): {
|
|
65234
|
+
[key: string]: any;
|
|
65235
|
+
};
|
|
65236
|
+
validate(): void;
|
|
65237
|
+
constructor(map?: {
|
|
65238
|
+
[key: string]: any;
|
|
65239
|
+
});
|
|
65240
|
+
}
|
|
65241
|
+
export declare class StartRCInstanceResponse extends $dara.Model {
|
|
65242
|
+
headers?: {
|
|
65243
|
+
[key: string]: string;
|
|
65244
|
+
};
|
|
65245
|
+
statusCode?: number;
|
|
65246
|
+
body?: StartRCInstanceResponseBody;
|
|
65247
|
+
static names(): {
|
|
65248
|
+
[key: string]: string;
|
|
65249
|
+
};
|
|
65250
|
+
static types(): {
|
|
65251
|
+
[key: string]: any;
|
|
65252
|
+
};
|
|
65253
|
+
validate(): void;
|
|
65254
|
+
constructor(map?: {
|
|
65255
|
+
[key: string]: any;
|
|
65256
|
+
});
|
|
65257
|
+
}
|
|
65258
|
+
export declare class StartRCInstancesRequest extends $dara.Model {
|
|
65259
|
+
/**
|
|
65260
|
+
* @example
|
|
65261
|
+
* AllTogether
|
|
65262
|
+
*/
|
|
65263
|
+
batchOptimization?: string;
|
|
65264
|
+
instanceIds?: string[];
|
|
65265
|
+
/**
|
|
65266
|
+
* @example
|
|
65267
|
+
* cn-hangzhou
|
|
65268
|
+
*/
|
|
65269
|
+
regionId?: string;
|
|
65270
|
+
static names(): {
|
|
65271
|
+
[key: string]: string;
|
|
65272
|
+
};
|
|
65273
|
+
static types(): {
|
|
65274
|
+
[key: string]: any;
|
|
65275
|
+
};
|
|
65276
|
+
validate(): void;
|
|
65277
|
+
constructor(map?: {
|
|
65278
|
+
[key: string]: any;
|
|
65279
|
+
});
|
|
65280
|
+
}
|
|
65281
|
+
export declare class StartRCInstancesShrinkRequest extends $dara.Model {
|
|
65282
|
+
/**
|
|
65283
|
+
* @example
|
|
65284
|
+
* AllTogether
|
|
65285
|
+
*/
|
|
65286
|
+
batchOptimization?: string;
|
|
65287
|
+
instanceIdsShrink?: string;
|
|
65288
|
+
/**
|
|
65289
|
+
* @example
|
|
65290
|
+
* cn-hangzhou
|
|
65291
|
+
*/
|
|
65292
|
+
regionId?: string;
|
|
65293
|
+
static names(): {
|
|
65294
|
+
[key: string]: string;
|
|
65295
|
+
};
|
|
65296
|
+
static types(): {
|
|
65297
|
+
[key: string]: any;
|
|
65298
|
+
};
|
|
65299
|
+
validate(): void;
|
|
65300
|
+
constructor(map?: {
|
|
65301
|
+
[key: string]: any;
|
|
65302
|
+
});
|
|
65303
|
+
}
|
|
65304
|
+
export declare class StartRCInstancesResponseBody extends $dara.Model {
|
|
65305
|
+
/**
|
|
65306
|
+
* @example
|
|
65307
|
+
* 847BA085-B377-4BFA-8267-F82345ECE1D2
|
|
65308
|
+
*/
|
|
65309
|
+
requestId?: string;
|
|
65310
|
+
static names(): {
|
|
65311
|
+
[key: string]: string;
|
|
65312
|
+
};
|
|
65313
|
+
static types(): {
|
|
65314
|
+
[key: string]: any;
|
|
65315
|
+
};
|
|
65316
|
+
validate(): void;
|
|
65317
|
+
constructor(map?: {
|
|
65318
|
+
[key: string]: any;
|
|
65319
|
+
});
|
|
65320
|
+
}
|
|
65321
|
+
export declare class StartRCInstancesResponse extends $dara.Model {
|
|
65322
|
+
headers?: {
|
|
65323
|
+
[key: string]: string;
|
|
65324
|
+
};
|
|
65325
|
+
statusCode?: number;
|
|
65326
|
+
body?: StartRCInstancesResponseBody;
|
|
65327
|
+
static names(): {
|
|
65328
|
+
[key: string]: string;
|
|
65329
|
+
};
|
|
65330
|
+
static types(): {
|
|
65331
|
+
[key: string]: any;
|
|
65332
|
+
};
|
|
65333
|
+
validate(): void;
|
|
65334
|
+
constructor(map?: {
|
|
65335
|
+
[key: string]: any;
|
|
65336
|
+
});
|
|
65337
|
+
}
|
|
65338
|
+
export declare class StopDBInstanceRequest extends $dara.Model {
|
|
65339
|
+
/**
|
|
65340
|
+
* @remarks
|
|
65341
|
+
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
65342
|
+
*
|
|
65343
|
+
* This parameter is required.
|
|
65344
|
+
*
|
|
65345
|
+
* @example
|
|
65346
|
+
* rm-bp1q915x50h******
|
|
65347
|
+
*/
|
|
65348
|
+
DBInstanceId?: string;
|
|
65349
|
+
ownerId?: number;
|
|
65350
|
+
/**
|
|
65351
|
+
* @remarks
|
|
65352
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
65353
|
+
*
|
|
65354
|
+
* This parameter is required.
|
|
65355
|
+
*
|
|
65356
|
+
* @example
|
|
65357
|
+
* cn-hangzhou
|
|
65358
|
+
*/
|
|
65359
|
+
regionId?: string;
|
|
65360
|
+
resourceOwnerAccount?: string;
|
|
65361
|
+
resourceOwnerId?: number;
|
|
65362
|
+
static names(): {
|
|
65363
|
+
[key: string]: string;
|
|
65364
|
+
};
|
|
65365
|
+
static types(): {
|
|
65366
|
+
[key: string]: any;
|
|
65367
|
+
};
|
|
65368
|
+
validate(): void;
|
|
65369
|
+
constructor(map?: {
|
|
65370
|
+
[key: string]: any;
|
|
65371
|
+
});
|
|
65372
|
+
}
|
|
65373
|
+
export declare class StopDBInstanceResponseBody extends $dara.Model {
|
|
65374
|
+
/**
|
|
65375
|
+
* @remarks
|
|
65376
|
+
* The ID of the request.
|
|
65377
|
+
*
|
|
65378
|
+
* @example
|
|
65379
|
+
* A417FB41-A3D9-464E-AD0A-C7FE05C72E98
|
|
65380
|
+
*/
|
|
65381
|
+
requestId?: string;
|
|
65382
|
+
static names(): {
|
|
65383
|
+
[key: string]: string;
|
|
65384
|
+
};
|
|
65385
|
+
static types(): {
|
|
65386
|
+
[key: string]: any;
|
|
65387
|
+
};
|
|
65388
|
+
validate(): void;
|
|
65389
|
+
constructor(map?: {
|
|
65390
|
+
[key: string]: any;
|
|
65391
|
+
});
|
|
65392
|
+
}
|
|
65393
|
+
export declare class StopDBInstanceResponse extends $dara.Model {
|
|
65394
|
+
headers?: {
|
|
65395
|
+
[key: string]: string;
|
|
65396
|
+
};
|
|
65397
|
+
statusCode?: number;
|
|
65398
|
+
body?: StopDBInstanceResponseBody;
|
|
65399
|
+
static names(): {
|
|
65400
|
+
[key: string]: string;
|
|
65401
|
+
};
|
|
65402
|
+
static types(): {
|
|
65403
|
+
[key: string]: any;
|
|
65404
|
+
};
|
|
65405
|
+
validate(): void;
|
|
65406
|
+
constructor(map?: {
|
|
65407
|
+
[key: string]: any;
|
|
65408
|
+
});
|
|
65409
|
+
}
|
|
65410
|
+
export declare class StopRCInstanceRequest extends $dara.Model {
|
|
65411
|
+
/**
|
|
65412
|
+
* @remarks
|
|
65413
|
+
* Specifies whether to forcefully stop the instance. Valid values:
|
|
65414
|
+
*
|
|
65415
|
+
* * **true**
|
|
65416
|
+
* * **false** (default)
|
|
65417
|
+
*
|
|
65418
|
+
* @example
|
|
65419
|
+
* false
|
|
65420
|
+
*/
|
|
65421
|
+
forceStop?: boolean;
|
|
65422
|
+
/**
|
|
65423
|
+
* @remarks
|
|
65424
|
+
* The instance ID.
|
|
65425
|
+
*
|
|
65426
|
+
* This parameter is required.
|
|
65427
|
+
*
|
|
65428
|
+
* @example
|
|
65429
|
+
* rc-m5sc1271fv344a1r****
|
|
65430
|
+
*/
|
|
65431
|
+
instanceId?: string;
|
|
65432
|
+
/**
|
|
65433
|
+
* @remarks
|
|
65434
|
+
* The region ID.
|
|
65435
|
+
*
|
|
65436
|
+
* @example
|
|
65437
|
+
* cn-hangzhou
|
|
65438
|
+
*/
|
|
65439
|
+
regionId?: string;
|
|
65440
|
+
static names(): {
|
|
65441
|
+
[key: string]: string;
|
|
65442
|
+
};
|
|
65443
|
+
static types(): {
|
|
65444
|
+
[key: string]: any;
|
|
65445
|
+
};
|
|
65446
|
+
validate(): void;
|
|
65447
|
+
constructor(map?: {
|
|
65448
|
+
[key: string]: any;
|
|
65449
|
+
});
|
|
65450
|
+
}
|
|
65451
|
+
export declare class StopRCInstanceResponseBody extends $dara.Model {
|
|
64713
65452
|
/**
|
|
64714
65453
|
* @remarks
|
|
64715
65454
|
* The request ID.
|
|
64716
65455
|
*
|
|
64717
65456
|
* @example
|
|
64718
|
-
*
|
|
65457
|
+
* 3E36DB6E-AE3B-53B6-A703-85F883FD1B2C
|
|
64719
65458
|
*/
|
|
64720
65459
|
requestId?: string;
|
|
64721
65460
|
static names(): {
|
|
@@ -64729,27 +65468,12 @@ export declare class StartRCInstanceResponseBody extends $dara.Model {
|
|
|
64729
65468
|
[key: string]: any;
|
|
64730
65469
|
});
|
|
64731
65470
|
}
|
|
64732
|
-
export declare class
|
|
65471
|
+
export declare class StopRCInstanceResponse extends $dara.Model {
|
|
64733
65472
|
headers?: {
|
|
64734
65473
|
[key: string]: string;
|
|
64735
65474
|
};
|
|
64736
65475
|
statusCode?: number;
|
|
64737
|
-
body?:
|
|
64738
|
-
static names(): {
|
|
64739
|
-
[key: string]: string;
|
|
64740
|
-
};
|
|
64741
|
-
static types(): {
|
|
64742
|
-
[key: string]: any;
|
|
64743
|
-
};
|
|
64744
|
-
validate(): void;
|
|
64745
|
-
constructor(map?: {
|
|
64746
|
-
[key: string]: any;
|
|
64747
|
-
});
|
|
64748
|
-
}
|
|
64749
|
-
export declare class StartRCInstancesRequest extends $dara.Model {
|
|
64750
|
-
batchOptimization?: string;
|
|
64751
|
-
instanceIds?: string[];
|
|
64752
|
-
regionId?: string;
|
|
65476
|
+
body?: StopRCInstanceResponseBody;
|
|
64753
65477
|
static names(): {
|
|
64754
65478
|
[key: string]: string;
|
|
64755
65479
|
};
|
|
@@ -64761,75 +65485,23 @@ export declare class StartRCInstancesRequest extends $dara.Model {
|
|
|
64761
65485
|
[key: string]: any;
|
|
64762
65486
|
});
|
|
64763
65487
|
}
|
|
64764
|
-
export declare class
|
|
65488
|
+
export declare class StopRCInstancesRequest extends $dara.Model {
|
|
65489
|
+
/**
|
|
65490
|
+
* @example
|
|
65491
|
+
* AllTogether
|
|
65492
|
+
*/
|
|
64765
65493
|
batchOptimization?: string;
|
|
64766
|
-
instanceIdsShrink?: string;
|
|
64767
|
-
regionId?: string;
|
|
64768
|
-
static names(): {
|
|
64769
|
-
[key: string]: string;
|
|
64770
|
-
};
|
|
64771
|
-
static types(): {
|
|
64772
|
-
[key: string]: any;
|
|
64773
|
-
};
|
|
64774
|
-
validate(): void;
|
|
64775
|
-
constructor(map?: {
|
|
64776
|
-
[key: string]: any;
|
|
64777
|
-
});
|
|
64778
|
-
}
|
|
64779
|
-
export declare class StartRCInstancesResponseBody extends $dara.Model {
|
|
64780
|
-
requestId?: string;
|
|
64781
|
-
static names(): {
|
|
64782
|
-
[key: string]: string;
|
|
64783
|
-
};
|
|
64784
|
-
static types(): {
|
|
64785
|
-
[key: string]: any;
|
|
64786
|
-
};
|
|
64787
|
-
validate(): void;
|
|
64788
|
-
constructor(map?: {
|
|
64789
|
-
[key: string]: any;
|
|
64790
|
-
});
|
|
64791
|
-
}
|
|
64792
|
-
export declare class StartRCInstancesResponse extends $dara.Model {
|
|
64793
|
-
headers?: {
|
|
64794
|
-
[key: string]: string;
|
|
64795
|
-
};
|
|
64796
|
-
statusCode?: number;
|
|
64797
|
-
body?: StartRCInstancesResponseBody;
|
|
64798
|
-
static names(): {
|
|
64799
|
-
[key: string]: string;
|
|
64800
|
-
};
|
|
64801
|
-
static types(): {
|
|
64802
|
-
[key: string]: any;
|
|
64803
|
-
};
|
|
64804
|
-
validate(): void;
|
|
64805
|
-
constructor(map?: {
|
|
64806
|
-
[key: string]: any;
|
|
64807
|
-
});
|
|
64808
|
-
}
|
|
64809
|
-
export declare class StopDBInstanceRequest extends $dara.Model {
|
|
64810
65494
|
/**
|
|
64811
|
-
* @remarks
|
|
64812
|
-
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
64813
|
-
*
|
|
64814
|
-
* This parameter is required.
|
|
64815
|
-
*
|
|
64816
65495
|
* @example
|
|
64817
|
-
*
|
|
65496
|
+
* false
|
|
64818
65497
|
*/
|
|
64819
|
-
|
|
64820
|
-
|
|
65498
|
+
forceStop?: boolean;
|
|
65499
|
+
instanceIds?: string[];
|
|
64821
65500
|
/**
|
|
64822
|
-
* @remarks
|
|
64823
|
-
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
64824
|
-
*
|
|
64825
|
-
* This parameter is required.
|
|
64826
|
-
*
|
|
64827
65501
|
* @example
|
|
64828
65502
|
* cn-hangzhou
|
|
64829
65503
|
*/
|
|
64830
65504
|
regionId?: string;
|
|
64831
|
-
resourceOwnerAccount?: string;
|
|
64832
|
-
resourceOwnerId?: number;
|
|
64833
65505
|
static names(): {
|
|
64834
65506
|
[key: string]: string;
|
|
64835
65507
|
};
|
|
@@ -64841,69 +65513,19 @@ export declare class StopDBInstanceRequest extends $dara.Model {
|
|
|
64841
65513
|
[key: string]: any;
|
|
64842
65514
|
});
|
|
64843
65515
|
}
|
|
64844
|
-
export declare class
|
|
65516
|
+
export declare class StopRCInstancesShrinkRequest extends $dara.Model {
|
|
64845
65517
|
/**
|
|
64846
|
-
* @remarks
|
|
64847
|
-
* The ID of the request.
|
|
64848
|
-
*
|
|
64849
65518
|
* @example
|
|
64850
|
-
*
|
|
65519
|
+
* AllTogether
|
|
64851
65520
|
*/
|
|
64852
|
-
|
|
64853
|
-
static names(): {
|
|
64854
|
-
[key: string]: string;
|
|
64855
|
-
};
|
|
64856
|
-
static types(): {
|
|
64857
|
-
[key: string]: any;
|
|
64858
|
-
};
|
|
64859
|
-
validate(): void;
|
|
64860
|
-
constructor(map?: {
|
|
64861
|
-
[key: string]: any;
|
|
64862
|
-
});
|
|
64863
|
-
}
|
|
64864
|
-
export declare class StopDBInstanceResponse extends $dara.Model {
|
|
64865
|
-
headers?: {
|
|
64866
|
-
[key: string]: string;
|
|
64867
|
-
};
|
|
64868
|
-
statusCode?: number;
|
|
64869
|
-
body?: StopDBInstanceResponseBody;
|
|
64870
|
-
static names(): {
|
|
64871
|
-
[key: string]: string;
|
|
64872
|
-
};
|
|
64873
|
-
static types(): {
|
|
64874
|
-
[key: string]: any;
|
|
64875
|
-
};
|
|
64876
|
-
validate(): void;
|
|
64877
|
-
constructor(map?: {
|
|
64878
|
-
[key: string]: any;
|
|
64879
|
-
});
|
|
64880
|
-
}
|
|
64881
|
-
export declare class StopRCInstanceRequest extends $dara.Model {
|
|
65521
|
+
batchOptimization?: string;
|
|
64882
65522
|
/**
|
|
64883
|
-
* @remarks
|
|
64884
|
-
* Specifies whether to forcefully stop the instance. Valid values:
|
|
64885
|
-
*
|
|
64886
|
-
* * **true**
|
|
64887
|
-
* * **false** (default)
|
|
64888
|
-
*
|
|
64889
65523
|
* @example
|
|
64890
65524
|
* false
|
|
64891
65525
|
*/
|
|
64892
65526
|
forceStop?: boolean;
|
|
65527
|
+
instanceIdsShrink?: string;
|
|
64893
65528
|
/**
|
|
64894
|
-
* @remarks
|
|
64895
|
-
* The instance ID.
|
|
64896
|
-
*
|
|
64897
|
-
* This parameter is required.
|
|
64898
|
-
*
|
|
64899
|
-
* @example
|
|
64900
|
-
* rc-m5sc1271fv344a1r****
|
|
64901
|
-
*/
|
|
64902
|
-
instanceId?: string;
|
|
64903
|
-
/**
|
|
64904
|
-
* @remarks
|
|
64905
|
-
* The region ID.
|
|
64906
|
-
*
|
|
64907
65529
|
* @example
|
|
64908
65530
|
* cn-hangzhou
|
|
64909
65531
|
*/
|
|
@@ -64919,13 +65541,10 @@ export declare class StopRCInstanceRequest extends $dara.Model {
|
|
|
64919
65541
|
[key: string]: any;
|
|
64920
65542
|
});
|
|
64921
65543
|
}
|
|
64922
|
-
export declare class
|
|
65544
|
+
export declare class StopRCInstancesResponseBody extends $dara.Model {
|
|
64923
65545
|
/**
|
|
64924
|
-
* @remarks
|
|
64925
|
-
* The request ID.
|
|
64926
|
-
*
|
|
64927
65546
|
* @example
|
|
64928
|
-
*
|
|
65547
|
+
* 481BC3B1-7069-5D37-9B6C-21757F8F9FB1
|
|
64929
65548
|
*/
|
|
64930
65549
|
requestId?: string;
|
|
64931
65550
|
static names(): {
|
|
@@ -64939,68 +65558,6 @@ export declare class StopRCInstanceResponseBody extends $dara.Model {
|
|
|
64939
65558
|
[key: string]: any;
|
|
64940
65559
|
});
|
|
64941
65560
|
}
|
|
64942
|
-
export declare class StopRCInstanceResponse extends $dara.Model {
|
|
64943
|
-
headers?: {
|
|
64944
|
-
[key: string]: string;
|
|
64945
|
-
};
|
|
64946
|
-
statusCode?: number;
|
|
64947
|
-
body?: StopRCInstanceResponseBody;
|
|
64948
|
-
static names(): {
|
|
64949
|
-
[key: string]: string;
|
|
64950
|
-
};
|
|
64951
|
-
static types(): {
|
|
64952
|
-
[key: string]: any;
|
|
64953
|
-
};
|
|
64954
|
-
validate(): void;
|
|
64955
|
-
constructor(map?: {
|
|
64956
|
-
[key: string]: any;
|
|
64957
|
-
});
|
|
64958
|
-
}
|
|
64959
|
-
export declare class StopRCInstancesRequest extends $dara.Model {
|
|
64960
|
-
batchOptimization?: string;
|
|
64961
|
-
forceStop?: boolean;
|
|
64962
|
-
instanceIds?: string[];
|
|
64963
|
-
regionId?: string;
|
|
64964
|
-
static names(): {
|
|
64965
|
-
[key: string]: string;
|
|
64966
|
-
};
|
|
64967
|
-
static types(): {
|
|
64968
|
-
[key: string]: any;
|
|
64969
|
-
};
|
|
64970
|
-
validate(): void;
|
|
64971
|
-
constructor(map?: {
|
|
64972
|
-
[key: string]: any;
|
|
64973
|
-
});
|
|
64974
|
-
}
|
|
64975
|
-
export declare class StopRCInstancesShrinkRequest extends $dara.Model {
|
|
64976
|
-
batchOptimization?: string;
|
|
64977
|
-
forceStop?: boolean;
|
|
64978
|
-
instanceIdsShrink?: string;
|
|
64979
|
-
regionId?: string;
|
|
64980
|
-
static names(): {
|
|
64981
|
-
[key: string]: string;
|
|
64982
|
-
};
|
|
64983
|
-
static types(): {
|
|
64984
|
-
[key: string]: any;
|
|
64985
|
-
};
|
|
64986
|
-
validate(): void;
|
|
64987
|
-
constructor(map?: {
|
|
64988
|
-
[key: string]: any;
|
|
64989
|
-
});
|
|
64990
|
-
}
|
|
64991
|
-
export declare class StopRCInstancesResponseBody extends $dara.Model {
|
|
64992
|
-
requestId?: string;
|
|
64993
|
-
static names(): {
|
|
64994
|
-
[key: string]: string;
|
|
64995
|
-
};
|
|
64996
|
-
static types(): {
|
|
64997
|
-
[key: string]: any;
|
|
64998
|
-
};
|
|
64999
|
-
validate(): void;
|
|
65000
|
-
constructor(map?: {
|
|
65001
|
-
[key: string]: any;
|
|
65002
|
-
});
|
|
65003
|
-
}
|
|
65004
65561
|
export declare class StopRCInstancesResponse extends $dara.Model {
|
|
65005
65562
|
headers?: {
|
|
65006
65563
|
[key: string]: string;
|
|
@@ -65332,6 +65889,8 @@ export declare class SwitchDBInstanceVpcResponse extends $dara.Model {
|
|
|
65332
65889
|
export declare class SwitchReplicationLinkRequest extends $dara.Model {
|
|
65333
65890
|
/**
|
|
65334
65891
|
* @remarks
|
|
65892
|
+
* The ID of the source or primary instance.
|
|
65893
|
+
*
|
|
65335
65894
|
* This parameter is required.
|
|
65336
65895
|
*
|
|
65337
65896
|
* @example
|
|
@@ -65341,6 +65900,8 @@ export declare class SwitchReplicationLinkRequest extends $dara.Model {
|
|
|
65341
65900
|
ownerId?: number;
|
|
65342
65901
|
/**
|
|
65343
65902
|
* @remarks
|
|
65903
|
+
* The name of the destination DR instance.
|
|
65904
|
+
*
|
|
65344
65905
|
* This parameter is required.
|
|
65345
65906
|
*
|
|
65346
65907
|
* @example
|
|
@@ -65349,6 +65910,8 @@ export declare class SwitchReplicationLinkRequest extends $dara.Model {
|
|
|
65349
65910
|
targetInstanceName?: string;
|
|
65350
65911
|
/**
|
|
65351
65912
|
* @remarks
|
|
65913
|
+
* The ID of the region in which the destination DR instance resides.
|
|
65914
|
+
*
|
|
65352
65915
|
* This parameter is required.
|
|
65353
65916
|
*
|
|
65354
65917
|
* @example
|
|
@@ -65368,21 +65931,33 @@ export declare class SwitchReplicationLinkRequest extends $dara.Model {
|
|
|
65368
65931
|
}
|
|
65369
65932
|
export declare class SwitchReplicationLinkResponseBody extends $dara.Model {
|
|
65370
65933
|
/**
|
|
65934
|
+
* @remarks
|
|
65935
|
+
* The ID of the DR instance.
|
|
65936
|
+
*
|
|
65371
65937
|
* @example
|
|
65372
65938
|
* 135****
|
|
65373
65939
|
*/
|
|
65374
65940
|
DBInstanceId?: string;
|
|
65375
65941
|
/**
|
|
65942
|
+
* @remarks
|
|
65943
|
+
* The request ID.
|
|
65944
|
+
*
|
|
65376
65945
|
* @example
|
|
65377
65946
|
* 2F2DD69B-90AF-1E72-923C-87575658A9D9
|
|
65378
65947
|
*/
|
|
65379
65948
|
requestId?: string;
|
|
65380
65949
|
/**
|
|
65950
|
+
* @remarks
|
|
65951
|
+
* The task ID.
|
|
65952
|
+
*
|
|
65381
65953
|
* @example
|
|
65382
65954
|
* 159****
|
|
65383
65955
|
*/
|
|
65384
65956
|
taskId?: number;
|
|
65385
65957
|
/**
|
|
65958
|
+
* @remarks
|
|
65959
|
+
* The task name.
|
|
65960
|
+
*
|
|
65386
65961
|
* @example
|
|
65387
65962
|
* zbtest
|
|
65388
65963
|
*/
|
|
@@ -68630,11 +69205,13 @@ export default class Client extends OpenApi {
|
|
|
68630
69205
|
*/
|
|
68631
69206
|
createReadOnlyDBInstance(request: CreateReadOnlyDBInstanceRequest): Promise<CreateReadOnlyDBInstanceResponse>;
|
|
68632
69207
|
/**
|
|
68633
|
-
* Creates a
|
|
69208
|
+
* Creates a data synchronization task for a disaster recovery (DR) ApsaraDB RDS instance.
|
|
68634
69209
|
*
|
|
68635
69210
|
* @remarks
|
|
68636
|
-
* ### [](#)Supported database
|
|
69211
|
+
* ### [](#)Supported database engines
|
|
68637
69212
|
* * PostgreSQL
|
|
69213
|
+
* * SQL Server
|
|
69214
|
+
* > The parameters vary based on database engines.
|
|
68638
69215
|
*
|
|
68639
69216
|
* @param request - CreateReplicationLinkRequest
|
|
68640
69217
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -68642,11 +69219,13 @@ export default class Client extends OpenApi {
|
|
|
68642
69219
|
*/
|
|
68643
69220
|
createReplicationLinkWithOptions(request: CreateReplicationLinkRequest, runtime: $dara.RuntimeOptions): Promise<CreateReplicationLinkResponse>;
|
|
68644
69221
|
/**
|
|
68645
|
-
* Creates a
|
|
69222
|
+
* Creates a data synchronization task for a disaster recovery (DR) ApsaraDB RDS instance.
|
|
68646
69223
|
*
|
|
68647
69224
|
* @remarks
|
|
68648
|
-
* ### [](#)Supported database
|
|
69225
|
+
* ### [](#)Supported database engines
|
|
68649
69226
|
* * PostgreSQL
|
|
69227
|
+
* * SQL Server
|
|
69228
|
+
* > The parameters vary based on database engines.
|
|
68650
69229
|
*
|
|
68651
69230
|
* @param request - CreateReplicationLinkRequest
|
|
68652
69231
|
* @returns CreateReplicationLinkResponse
|
|
@@ -69347,11 +69926,12 @@ export default class Client extends OpenApi {
|
|
|
69347
69926
|
*/
|
|
69348
69927
|
deleteRCSnapshot(request: DeleteRCSnapshotRequest): Promise<DeleteRCSnapshotResponse>;
|
|
69349
69928
|
/**
|
|
69350
|
-
* Deletes the data synchronization link
|
|
69929
|
+
* Deletes the data synchronization link for a disaster recovery (DR) ApsaraDB RDS instance and promotes the DR instance to the primary instance.
|
|
69351
69930
|
*
|
|
69352
69931
|
* @remarks
|
|
69353
|
-
* ### [](#)Supported database
|
|
69932
|
+
* ### [](#)Supported database engines
|
|
69354
69933
|
* * PostgreSQL
|
|
69934
|
+
* * SQL Server
|
|
69355
69935
|
*
|
|
69356
69936
|
* @param request - DeleteReplicationLinkRequest
|
|
69357
69937
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -69359,11 +69939,12 @@ export default class Client extends OpenApi {
|
|
|
69359
69939
|
*/
|
|
69360
69940
|
deleteReplicationLinkWithOptions(request: DeleteReplicationLinkRequest, runtime: $dara.RuntimeOptions): Promise<DeleteReplicationLinkResponse>;
|
|
69361
69941
|
/**
|
|
69362
|
-
* Deletes the data synchronization link
|
|
69942
|
+
* Deletes the data synchronization link for a disaster recovery (DR) ApsaraDB RDS instance and promotes the DR instance to the primary instance.
|
|
69363
69943
|
*
|
|
69364
69944
|
* @remarks
|
|
69365
|
-
* ### [](#)Supported database
|
|
69945
|
+
* ### [](#)Supported database engines
|
|
69366
69946
|
* * PostgreSQL
|
|
69947
|
+
* * SQL Server
|
|
69367
69948
|
*
|
|
69368
69949
|
* @param request - DeleteReplicationLinkRequest
|
|
69369
69950
|
* @returns DeleteReplicationLinkResponse
|
|
@@ -72184,6 +72765,36 @@ export default class Client extends OpenApi {
|
|
|
72184
72765
|
* @returns DescribeRCInstanceAttributeResponse
|
|
72185
72766
|
*/
|
|
72186
72767
|
describeRCInstanceAttribute(request: DescribeRCInstanceAttributeRequest): Promise<DescribeRCInstanceAttributeResponse>;
|
|
72768
|
+
/**
|
|
72769
|
+
* Queries the instance families of RDS Custom instances.
|
|
72770
|
+
*
|
|
72771
|
+
* @param request - DescribeRCInstanceTypeFamiliesRequest
|
|
72772
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
72773
|
+
* @returns DescribeRCInstanceTypeFamiliesResponse
|
|
72774
|
+
*/
|
|
72775
|
+
describeRCInstanceTypeFamiliesWithOptions(request: DescribeRCInstanceTypeFamiliesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRCInstanceTypeFamiliesResponse>;
|
|
72776
|
+
/**
|
|
72777
|
+
* Queries the instance families of RDS Custom instances.
|
|
72778
|
+
*
|
|
72779
|
+
* @param request - DescribeRCInstanceTypeFamiliesRequest
|
|
72780
|
+
* @returns DescribeRCInstanceTypeFamiliesResponse
|
|
72781
|
+
*/
|
|
72782
|
+
describeRCInstanceTypeFamilies(request: DescribeRCInstanceTypeFamiliesRequest): Promise<DescribeRCInstanceTypeFamiliesResponse>;
|
|
72783
|
+
/**
|
|
72784
|
+
* 查询RDS Custom规格信息
|
|
72785
|
+
*
|
|
72786
|
+
* @param tmpReq - DescribeRCInstanceTypesRequest
|
|
72787
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
72788
|
+
* @returns DescribeRCInstanceTypesResponse
|
|
72789
|
+
*/
|
|
72790
|
+
describeRCInstanceTypesWithOptions(tmpReq: DescribeRCInstanceTypesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRCInstanceTypesResponse>;
|
|
72791
|
+
/**
|
|
72792
|
+
* 查询RDS Custom规格信息
|
|
72793
|
+
*
|
|
72794
|
+
* @param request - DescribeRCInstanceTypesRequest
|
|
72795
|
+
* @returns DescribeRCInstanceTypesResponse
|
|
72796
|
+
*/
|
|
72797
|
+
describeRCInstanceTypes(request: DescribeRCInstanceTypesRequest): Promise<DescribeRCInstanceTypesResponse>;
|
|
72187
72798
|
/**
|
|
72188
72799
|
* Queries the Virtual Network Computing (VNC) logon address of an RDS Custom instance.
|
|
72189
72800
|
*
|
|
@@ -74427,13 +75038,14 @@ export default class Client extends OpenApi {
|
|
|
74427
75038
|
* Changes the instance type and storage capacity of an ApsaraDB RDS instance.
|
|
74428
75039
|
*
|
|
74429
75040
|
* @remarks
|
|
74430
|
-
* ### Supported database engines
|
|
75041
|
+
* ### [](#)Supported database engines
|
|
74431
75042
|
* * MySQL
|
|
74432
75043
|
* * PostgreSQL
|
|
74433
75044
|
* * SQL Server
|
|
74434
75045
|
* * MariaDB
|
|
74435
|
-
* ###
|
|
74436
|
-
*
|
|
75046
|
+
* ### [](#)Billing details
|
|
75047
|
+
* [Fees for specification changes](https://help.aliyun.com/document_detail/57178.html) are generated if the call is successful. Before you call this operation, carefully read the following topics.
|
|
75048
|
+
* ### [](#)References
|
|
74437
75049
|
* * [Change the specifications of an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/96061.html)
|
|
74438
75050
|
* * [Change the specifications of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96750.html)
|
|
74439
75051
|
* * [Change the specifications of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95665.html)
|
|
@@ -74448,13 +75060,14 @@ export default class Client extends OpenApi {
|
|
|
74448
75060
|
* Changes the instance type and storage capacity of an ApsaraDB RDS instance.
|
|
74449
75061
|
*
|
|
74450
75062
|
* @remarks
|
|
74451
|
-
* ### Supported database engines
|
|
75063
|
+
* ### [](#)Supported database engines
|
|
74452
75064
|
* * MySQL
|
|
74453
75065
|
* * PostgreSQL
|
|
74454
75066
|
* * SQL Server
|
|
74455
75067
|
* * MariaDB
|
|
74456
|
-
* ###
|
|
74457
|
-
*
|
|
75068
|
+
* ### [](#)Billing details
|
|
75069
|
+
* [Fees for specification changes](https://help.aliyun.com/document_detail/57178.html) are generated if the call is successful. Before you call this operation, carefully read the following topics.
|
|
75070
|
+
* ### [](#)References
|
|
74458
75071
|
* * [Change the specifications of an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/96061.html)
|
|
74459
75072
|
* * [Change the specifications of an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96750.html)
|
|
74460
75073
|
* * [Change the specifications of an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95665.html)
|
|
@@ -75067,6 +75680,21 @@ export default class Client extends OpenApi {
|
|
|
75067
75680
|
* @returns ModifyParameterGroupResponse
|
|
75068
75681
|
*/
|
|
75069
75682
|
modifyParameterGroup(request: ModifyParameterGroupRequest): Promise<ModifyParameterGroupResponse>;
|
|
75683
|
+
/**
|
|
75684
|
+
* 变更云盘类型或性能级别
|
|
75685
|
+
*
|
|
75686
|
+
* @param request - ModifyRCDiskSpecRequest
|
|
75687
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
75688
|
+
* @returns ModifyRCDiskSpecResponse
|
|
75689
|
+
*/
|
|
75690
|
+
modifyRCDiskSpecWithOptions(request: ModifyRCDiskSpecRequest, runtime: $dara.RuntimeOptions): Promise<ModifyRCDiskSpecResponse>;
|
|
75691
|
+
/**
|
|
75692
|
+
* 变更云盘类型或性能级别
|
|
75693
|
+
*
|
|
75694
|
+
* @param request - ModifyRCDiskSpecRequest
|
|
75695
|
+
* @returns ModifyRCDiskSpecResponse
|
|
75696
|
+
*/
|
|
75697
|
+
modifyRCDiskSpec(request: ModifyRCDiskSpecRequest): Promise<ModifyRCDiskSpecResponse>;
|
|
75070
75698
|
/**
|
|
75071
75699
|
* 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.
|
|
75072
75700
|
*
|
|
@@ -75607,7 +76235,11 @@ export default class Client extends OpenApi {
|
|
|
75607
76235
|
*/
|
|
75608
76236
|
rebootRCInstance(request: RebootRCInstanceRequest): Promise<RebootRCInstanceResponse>;
|
|
75609
76237
|
/**
|
|
75610
|
-
*
|
|
76238
|
+
* Restarts multiple RDS Custom instances at a time.
|
|
76239
|
+
*
|
|
76240
|
+
* @remarks
|
|
76241
|
+
* ### [](#)Supported database engine
|
|
76242
|
+
* SQL Server
|
|
75611
76243
|
*
|
|
75612
76244
|
* @param tmpReq - RebootRCInstancesRequest
|
|
75613
76245
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -75615,7 +76247,11 @@ export default class Client extends OpenApi {
|
|
|
75615
76247
|
*/
|
|
75616
76248
|
rebootRCInstancesWithOptions(tmpReq: RebootRCInstancesRequest, runtime: $dara.RuntimeOptions): Promise<RebootRCInstancesResponse>;
|
|
75617
76249
|
/**
|
|
75618
|
-
*
|
|
76250
|
+
* Restarts multiple RDS Custom instances at a time.
|
|
76251
|
+
*
|
|
76252
|
+
* @remarks
|
|
76253
|
+
* ### [](#)Supported database engine
|
|
76254
|
+
* SQL Server
|
|
75619
76255
|
*
|
|
75620
76256
|
* @param request - RebootRCInstancesRequest
|
|
75621
76257
|
* @returns RebootRCInstancesResponse
|
|
@@ -76510,7 +77146,11 @@ export default class Client extends OpenApi {
|
|
|
76510
77146
|
*/
|
|
76511
77147
|
switchDBInstanceVpc(request: SwitchDBInstanceVpcRequest): Promise<SwitchDBInstanceVpcResponse>;
|
|
76512
77148
|
/**
|
|
76513
|
-
*
|
|
77149
|
+
* Switches the data synchronization link to synchronize data from a disaster recovery (DR) instance to the primary ApsaraDB RDS for SQL Server instance.
|
|
77150
|
+
*
|
|
77151
|
+
* @remarks
|
|
77152
|
+
* ### [](#)Supported database engine
|
|
77153
|
+
* SQL Server
|
|
76514
77154
|
*
|
|
76515
77155
|
* @param request - SwitchReplicationLinkRequest
|
|
76516
77156
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76518,7 +77158,11 @@ export default class Client extends OpenApi {
|
|
|
76518
77158
|
*/
|
|
76519
77159
|
switchReplicationLinkWithOptions(request: SwitchReplicationLinkRequest, runtime: $dara.RuntimeOptions): Promise<SwitchReplicationLinkResponse>;
|
|
76520
77160
|
/**
|
|
76521
|
-
*
|
|
77161
|
+
* Switches the data synchronization link to synchronize data from a disaster recovery (DR) instance to the primary ApsaraDB RDS for SQL Server instance.
|
|
77162
|
+
*
|
|
77163
|
+
* @remarks
|
|
77164
|
+
* ### [](#)Supported database engine
|
|
77165
|
+
* SQL Server
|
|
76522
77166
|
*
|
|
76523
77167
|
* @param request - SwitchReplicationLinkRequest
|
|
76524
77168
|
* @returns SwitchReplicationLinkResponse
|