@alicloud/polardb20170801 5.2.2 → 5.3.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 +753 -63
- package/dist/client.js +558 -29
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1171 -62
package/src/client.ts
CHANGED
|
@@ -7,6 +7,128 @@ import OpenApiUtil from '@alicloud/openapi-util';
|
|
|
7
7
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
8
8
|
import * as $tea from '@alicloud/tea-typescript';
|
|
9
9
|
|
|
10
|
+
export class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
11
|
+
ownerAccount?: string;
|
|
12
|
+
ownerId?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @remarks
|
|
15
|
+
* The region ID.
|
|
16
|
+
*
|
|
17
|
+
* >
|
|
18
|
+
*
|
|
19
|
+
* * You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query the region information about all clusters within a specified account.
|
|
20
|
+
*
|
|
21
|
+
* * If you do not specify this parameter, scheduled tasks on your clusters that are deployed in all regions are queried.
|
|
22
|
+
*
|
|
23
|
+
* This parameter is required.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* cn-beijing
|
|
27
|
+
*/
|
|
28
|
+
regionId?: string;
|
|
29
|
+
resourceOwnerAccount?: string;
|
|
30
|
+
resourceOwnerId?: number;
|
|
31
|
+
securityToken?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @remarks
|
|
34
|
+
* The IDs of O\\&M events that are canceled at a time. Separate multiple IDs with commas (,).
|
|
35
|
+
*
|
|
36
|
+
* This parameter is required.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* 2355,2352
|
|
40
|
+
*/
|
|
41
|
+
taskIds?: string;
|
|
42
|
+
static names(): { [key: string]: string } {
|
|
43
|
+
return {
|
|
44
|
+
ownerAccount: 'OwnerAccount',
|
|
45
|
+
ownerId: 'OwnerId',
|
|
46
|
+
regionId: 'RegionId',
|
|
47
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
48
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
49
|
+
securityToken: 'SecurityToken',
|
|
50
|
+
taskIds: 'TaskIds',
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
static types(): { [key: string]: any } {
|
|
55
|
+
return {
|
|
56
|
+
ownerAccount: 'string',
|
|
57
|
+
ownerId: 'number',
|
|
58
|
+
regionId: 'string',
|
|
59
|
+
resourceOwnerAccount: 'string',
|
|
60
|
+
resourceOwnerId: 'number',
|
|
61
|
+
securityToken: 'string',
|
|
62
|
+
taskIds: 'string',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
constructor(map?: { [key: string]: any }) {
|
|
67
|
+
super(map);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export class CancelActiveOperationTasksResponseBody extends $tea.Model {
|
|
72
|
+
/**
|
|
73
|
+
* @remarks
|
|
74
|
+
* The ID of the request.
|
|
75
|
+
*
|
|
76
|
+
* @example
|
|
77
|
+
* 25C70FF3-D49B-594D-BECE-0DE2BA1D8BBB
|
|
78
|
+
*/
|
|
79
|
+
requestId?: string;
|
|
80
|
+
/**
|
|
81
|
+
* @remarks
|
|
82
|
+
* The IDs of O\\&M events that are canceled at a time. Separate multiple IDs with commas (,).
|
|
83
|
+
*
|
|
84
|
+
* @example
|
|
85
|
+
* 2355,2352
|
|
86
|
+
*/
|
|
87
|
+
taskIds?: string;
|
|
88
|
+
static names(): { [key: string]: string } {
|
|
89
|
+
return {
|
|
90
|
+
requestId: 'RequestId',
|
|
91
|
+
taskIds: 'TaskIds',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static types(): { [key: string]: any } {
|
|
96
|
+
return {
|
|
97
|
+
requestId: 'string',
|
|
98
|
+
taskIds: 'string',
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
constructor(map?: { [key: string]: any }) {
|
|
103
|
+
super(map);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export class CancelActiveOperationTasksResponse extends $tea.Model {
|
|
108
|
+
headers?: { [key: string]: string };
|
|
109
|
+
statusCode?: number;
|
|
110
|
+
body?: CancelActiveOperationTasksResponseBody;
|
|
111
|
+
static names(): { [key: string]: string } {
|
|
112
|
+
return {
|
|
113
|
+
headers: 'headers',
|
|
114
|
+
statusCode: 'statusCode',
|
|
115
|
+
body: 'body',
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
static types(): { [key: string]: any } {
|
|
120
|
+
return {
|
|
121
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
122
|
+
statusCode: 'number',
|
|
123
|
+
body: CancelActiveOperationTasksResponseBody,
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
constructor(map?: { [key: string]: any }) {
|
|
128
|
+
super(map);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
10
132
|
export class CancelScheduleTasksRequest extends $tea.Model {
|
|
11
133
|
/**
|
|
12
134
|
* @remarks
|
|
@@ -844,8 +966,8 @@ export class CreateAccountRequest extends $tea.Model {
|
|
|
844
966
|
* @remarks
|
|
845
967
|
* The password of the account. The password must meet the following requirements:
|
|
846
968
|
*
|
|
847
|
-
* *
|
|
848
|
-
* *
|
|
969
|
+
* * The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
970
|
+
* * The password must be 8 to 32 characters in length.
|
|
849
971
|
* * Special characters include `! @ # $ % ^ & * ( ) _ + - =`
|
|
850
972
|
*
|
|
851
973
|
* This parameter is required.
|
|
@@ -881,14 +1003,15 @@ export class CreateAccountRequest extends $tea.Model {
|
|
|
881
1003
|
* The type of the account. Valid values:
|
|
882
1004
|
*
|
|
883
1005
|
* * **Normal**: standard account
|
|
884
|
-
* * **Super**: privileged account
|
|
1006
|
+
* * **Super**: privileged account.
|
|
885
1007
|
*
|
|
886
1008
|
* >
|
|
887
1009
|
*
|
|
888
1010
|
* * If you leave this parameter empty, the default value **Super** is used.
|
|
889
1011
|
*
|
|
890
|
-
* * You can create multiple privileged accounts for a PolarDB for Oracle or PolarDB for PostgreSQL cluster. A privileged account
|
|
891
|
-
*
|
|
1012
|
+
* * You can create multiple privileged accounts for a PolarDB for PostgreSQL (Compatible with Oracle) cluster or a PolarDB for PostgreSQL cluster. A privileged account has more permissions than a standard account. For more information, see [Create a database account](https://help.aliyun.com/document_detail/68508.html).
|
|
1013
|
+
*
|
|
1014
|
+
* * You can create only one privileged account for a PolarDB for MySQL cluster. A privileged account has more permissions than a standard account. For more information, see [Create a database account](https://help.aliyun.com/document_detail/68508.html).
|
|
892
1015
|
*
|
|
893
1016
|
* @example
|
|
894
1017
|
* Normal
|
|
@@ -924,22 +1047,6 @@ export class CreateAccountRequest extends $tea.Model {
|
|
|
924
1047
|
DBName?: string;
|
|
925
1048
|
ownerAccount?: string;
|
|
926
1049
|
ownerId?: number;
|
|
927
|
-
/**
|
|
928
|
-
* @remarks
|
|
929
|
-
* Specifies whether to grant the specified account required permissions on all existing databases in the current cluster and databases that will be further created for the current cluster. Valid values:
|
|
930
|
-
*
|
|
931
|
-
* * **0 or unspecified**: does not grant required permissions.
|
|
932
|
-
* * **1**: grants required permissions.
|
|
933
|
-
*
|
|
934
|
-
* >
|
|
935
|
-
*
|
|
936
|
-
* * The parameter is valid only after you configure the `AccountPrivilege` parameter.
|
|
937
|
-
*
|
|
938
|
-
* * If you set the parameter to `1`, the current account is granted to the required permissions on all databases in the current cluster that are specified by the `AccountPrivilege` parameter.
|
|
939
|
-
*
|
|
940
|
-
* @example
|
|
941
|
-
* 0
|
|
942
|
-
*/
|
|
943
1050
|
privForAllDB?: string;
|
|
944
1051
|
resourceOwnerAccount?: string;
|
|
945
1052
|
resourceOwnerId?: number;
|
|
@@ -1696,12 +1803,16 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
1696
1803
|
DBNodeClass?: string;
|
|
1697
1804
|
/**
|
|
1698
1805
|
* @remarks
|
|
1699
|
-
*
|
|
1806
|
+
* The number of nodes. This parameter is supported for Standard Edition clusters. Valid values:
|
|
1700
1807
|
*
|
|
1701
|
-
*
|
|
1702
|
-
*
|
|
1703
|
-
*
|
|
1704
|
-
* >
|
|
1808
|
+
* * **1** (default): only one primary node.
|
|
1809
|
+
* * **2**: one read-only node and one primary node.
|
|
1810
|
+
*
|
|
1811
|
+
* >
|
|
1812
|
+
*
|
|
1813
|
+
* * By default, an Enterprise Edition cluster has two nodes and a Standard Edition cluster has one node.
|
|
1814
|
+
*
|
|
1815
|
+
* * This parameter is supported only for PolarDB for MySQL clusters.
|
|
1705
1816
|
*
|
|
1706
1817
|
* @example
|
|
1707
1818
|
* 1
|
|
@@ -2011,6 +2122,8 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2011
2122
|
* Enable
|
|
2012
2123
|
*/
|
|
2013
2124
|
storageAutoScale?: string;
|
|
2125
|
+
storageEncryption?: boolean;
|
|
2126
|
+
storageEncryptionKey?: string;
|
|
2014
2127
|
/**
|
|
2015
2128
|
* @remarks
|
|
2016
2129
|
* The storage billing type, with valid values as follows:
|
|
@@ -2091,6 +2204,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2091
2204
|
* List of tags.
|
|
2092
2205
|
*/
|
|
2093
2206
|
tag?: CreateDBClusterRequestTag[];
|
|
2207
|
+
targetMinorVersion?: string;
|
|
2094
2208
|
/**
|
|
2095
2209
|
* @remarks
|
|
2096
2210
|
* If the payment type is **Prepaid**, this parameter is required.
|
|
@@ -2175,6 +2289,8 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2175
2289
|
sourceResourceId: 'SourceResourceId',
|
|
2176
2290
|
standbyAZ: 'StandbyAZ',
|
|
2177
2291
|
storageAutoScale: 'StorageAutoScale',
|
|
2292
|
+
storageEncryption: 'StorageEncryption',
|
|
2293
|
+
storageEncryptionKey: 'StorageEncryptionKey',
|
|
2178
2294
|
storagePayType: 'StoragePayType',
|
|
2179
2295
|
storageSpace: 'StorageSpace',
|
|
2180
2296
|
storageType: 'StorageType',
|
|
@@ -2182,6 +2298,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2182
2298
|
strictConsistency: 'StrictConsistency',
|
|
2183
2299
|
TDEStatus: 'TDEStatus',
|
|
2184
2300
|
tag: 'Tag',
|
|
2301
|
+
targetMinorVersion: 'TargetMinorVersion',
|
|
2185
2302
|
usedTime: 'UsedTime',
|
|
2186
2303
|
VPCId: 'VPCId',
|
|
2187
2304
|
vSwitchId: 'VSwitchId',
|
|
@@ -2235,6 +2352,8 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2235
2352
|
sourceResourceId: 'string',
|
|
2236
2353
|
standbyAZ: 'string',
|
|
2237
2354
|
storageAutoScale: 'string',
|
|
2355
|
+
storageEncryption: 'boolean',
|
|
2356
|
+
storageEncryptionKey: 'string',
|
|
2238
2357
|
storagePayType: 'string',
|
|
2239
2358
|
storageSpace: 'number',
|
|
2240
2359
|
storageType: 'string',
|
|
@@ -2242,6 +2361,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2242
2361
|
strictConsistency: 'string',
|
|
2243
2362
|
TDEStatus: 'boolean',
|
|
2244
2363
|
tag: { 'type': 'array', 'itemType': CreateDBClusterRequestTag },
|
|
2364
|
+
targetMinorVersion: 'string',
|
|
2245
2365
|
usedTime: 'string',
|
|
2246
2366
|
VPCId: 'string',
|
|
2247
2367
|
vSwitchId: 'string',
|
|
@@ -5730,6 +5850,9 @@ export class DescribeAITaskStatusResponseBody extends $tea.Model {
|
|
|
5730
5850
|
/**
|
|
5731
5851
|
* @remarks
|
|
5732
5852
|
* The name of the database account that is used to connect to the AI nodes in the cluster.
|
|
5853
|
+
*
|
|
5854
|
+
* @example
|
|
5855
|
+
* testacc
|
|
5733
5856
|
*/
|
|
5734
5857
|
accountName?: string;
|
|
5735
5858
|
/**
|
|
@@ -5973,12 +6096,17 @@ export class DescribeAccountsResponse extends $tea.Model {
|
|
|
5973
6096
|
|
|
5974
6097
|
export class DescribeActivationCodeDetailsRequest extends $tea.Model {
|
|
5975
6098
|
/**
|
|
6099
|
+
* @remarks
|
|
6100
|
+
* The ID of the activation code.
|
|
6101
|
+
*
|
|
5976
6102
|
* @example
|
|
5977
6103
|
* 123
|
|
5978
6104
|
*/
|
|
5979
6105
|
activationCodeId?: number;
|
|
5980
6106
|
/**
|
|
5981
6107
|
* @remarks
|
|
6108
|
+
* The Alibaba Cloud order ID (including the virtual order ID).
|
|
6109
|
+
*
|
|
5982
6110
|
* This parameter is required.
|
|
5983
6111
|
*
|
|
5984
6112
|
* @example
|
|
@@ -6018,59 +6146,89 @@ export class DescribeActivationCodeDetailsRequest extends $tea.Model {
|
|
|
6018
6146
|
|
|
6019
6147
|
export class DescribeActivationCodeDetailsResponseBody extends $tea.Model {
|
|
6020
6148
|
/**
|
|
6149
|
+
* @remarks
|
|
6150
|
+
* The time when the activation code takes effect.
|
|
6151
|
+
*
|
|
6021
6152
|
* @example
|
|
6022
6153
|
* 2024-10-16 16:46:20
|
|
6023
6154
|
*/
|
|
6024
6155
|
activateAt?: string;
|
|
6025
6156
|
/**
|
|
6157
|
+
* @remarks
|
|
6158
|
+
* The activation code in the base64 format. The activation code is decoded and stored into a file named license.lic. PolarDB can access and read the license.lic file upon startup to validate the license or perform related operations.
|
|
6159
|
+
*
|
|
6026
6160
|
* @example
|
|
6027
6161
|
* AAEAA******AAA=
|
|
6028
6162
|
*/
|
|
6029
6163
|
certContentB64?: string;
|
|
6030
6164
|
/**
|
|
6165
|
+
* @remarks
|
|
6166
|
+
* The description of the activation code.
|
|
6167
|
+
*
|
|
6031
6168
|
* @example
|
|
6032
6169
|
* testCode
|
|
6033
6170
|
*/
|
|
6034
6171
|
description?: string;
|
|
6035
6172
|
/**
|
|
6173
|
+
* @remarks
|
|
6174
|
+
* The time when the activation code expires.
|
|
6175
|
+
*
|
|
6036
6176
|
* @example
|
|
6037
6177
|
* 2054-10-09 16:46:20
|
|
6038
6178
|
*/
|
|
6039
6179
|
expireAt?: string;
|
|
6040
6180
|
/**
|
|
6181
|
+
* @remarks
|
|
6182
|
+
* The time when the activation code was created.
|
|
6183
|
+
*
|
|
6041
6184
|
* @example
|
|
6042
6185
|
* 2024-10-16 16:46:20
|
|
6043
6186
|
*/
|
|
6044
6187
|
gmtCreated?: string;
|
|
6045
6188
|
/**
|
|
6189
|
+
* @remarks
|
|
6190
|
+
* The time when the activation code was last updated.
|
|
6191
|
+
*
|
|
6046
6192
|
* @example
|
|
6047
6193
|
* 2024-10-16 16:46:20
|
|
6048
6194
|
*/
|
|
6049
6195
|
gmtModified?: string;
|
|
6050
6196
|
/**
|
|
6197
|
+
* @remarks
|
|
6198
|
+
* The ID of the activation code.
|
|
6199
|
+
*
|
|
6051
6200
|
* @example
|
|
6052
6201
|
* 123
|
|
6053
6202
|
*/
|
|
6054
6203
|
id?: number;
|
|
6055
6204
|
/**
|
|
6205
|
+
* @remarks
|
|
6206
|
+
* The MAC address.
|
|
6207
|
+
*
|
|
6056
6208
|
* @example
|
|
6057
6209
|
* 12:34:56:78:98:00
|
|
6058
6210
|
*/
|
|
6059
6211
|
macAddress?: string;
|
|
6060
6212
|
/**
|
|
6213
|
+
* @remarks
|
|
6214
|
+
* The name of the activation code.
|
|
6215
|
+
*
|
|
6061
6216
|
* @example
|
|
6062
6217
|
* testName
|
|
6063
6218
|
*/
|
|
6064
6219
|
name?: string;
|
|
6065
6220
|
/**
|
|
6066
6221
|
* @remarks
|
|
6067
|
-
*
|
|
6222
|
+
* The request ID.
|
|
6068
6223
|
*
|
|
6069
6224
|
* @example
|
|
6070
6225
|
* F2A9EFA7-915F-4572-8299-85A307******
|
|
6071
6226
|
*/
|
|
6072
6227
|
requestId?: string;
|
|
6073
6228
|
/**
|
|
6229
|
+
* @remarks
|
|
6230
|
+
* The system identifier of the database.
|
|
6231
|
+
*
|
|
6074
6232
|
* @example
|
|
6075
6233
|
* 1234567890123456
|
|
6076
6234
|
*/
|
|
@@ -6285,6 +6443,182 @@ export class DescribeActivationCodesResponse extends $tea.Model {
|
|
|
6285
6443
|
}
|
|
6286
6444
|
}
|
|
6287
6445
|
|
|
6446
|
+
export class DescribeActiveOperationTasksRequest extends $tea.Model {
|
|
6447
|
+
/**
|
|
6448
|
+
* @example
|
|
6449
|
+
* -1
|
|
6450
|
+
*/
|
|
6451
|
+
allowCancel?: number;
|
|
6452
|
+
/**
|
|
6453
|
+
* @example
|
|
6454
|
+
* -1
|
|
6455
|
+
*/
|
|
6456
|
+
allowChange?: number;
|
|
6457
|
+
/**
|
|
6458
|
+
* @example
|
|
6459
|
+
* all
|
|
6460
|
+
*/
|
|
6461
|
+
changeLevel?: string;
|
|
6462
|
+
/**
|
|
6463
|
+
* @example
|
|
6464
|
+
* pc-3ns***********d5d
|
|
6465
|
+
*/
|
|
6466
|
+
DBClusterId?: string;
|
|
6467
|
+
/**
|
|
6468
|
+
* @example
|
|
6469
|
+
* MySQL
|
|
6470
|
+
*/
|
|
6471
|
+
DBType?: string;
|
|
6472
|
+
ownerAccount?: string;
|
|
6473
|
+
ownerId?: number;
|
|
6474
|
+
/**
|
|
6475
|
+
* @example
|
|
6476
|
+
* 1
|
|
6477
|
+
*/
|
|
6478
|
+
pageNumber?: number;
|
|
6479
|
+
/**
|
|
6480
|
+
* @example
|
|
6481
|
+
* 30
|
|
6482
|
+
*/
|
|
6483
|
+
pageSize?: number;
|
|
6484
|
+
/**
|
|
6485
|
+
* @remarks
|
|
6486
|
+
* This parameter is required.
|
|
6487
|
+
*
|
|
6488
|
+
* @example
|
|
6489
|
+
* cn-beijing
|
|
6490
|
+
*/
|
|
6491
|
+
regionId?: string;
|
|
6492
|
+
resourceOwnerAccount?: string;
|
|
6493
|
+
resourceOwnerId?: number;
|
|
6494
|
+
securityToken?: string;
|
|
6495
|
+
/**
|
|
6496
|
+
* @example
|
|
6497
|
+
* -1
|
|
6498
|
+
*/
|
|
6499
|
+
status?: number;
|
|
6500
|
+
/**
|
|
6501
|
+
* @example
|
|
6502
|
+
* DatabaseProxyUpgrading
|
|
6503
|
+
*/
|
|
6504
|
+
taskType?: string;
|
|
6505
|
+
static names(): { [key: string]: string } {
|
|
6506
|
+
return {
|
|
6507
|
+
allowCancel: 'AllowCancel',
|
|
6508
|
+
allowChange: 'AllowChange',
|
|
6509
|
+
changeLevel: 'ChangeLevel',
|
|
6510
|
+
DBClusterId: 'DBClusterId',
|
|
6511
|
+
DBType: 'DBType',
|
|
6512
|
+
ownerAccount: 'OwnerAccount',
|
|
6513
|
+
ownerId: 'OwnerId',
|
|
6514
|
+
pageNumber: 'PageNumber',
|
|
6515
|
+
pageSize: 'PageSize',
|
|
6516
|
+
regionId: 'RegionId',
|
|
6517
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6518
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
6519
|
+
securityToken: 'SecurityToken',
|
|
6520
|
+
status: 'Status',
|
|
6521
|
+
taskType: 'TaskType',
|
|
6522
|
+
};
|
|
6523
|
+
}
|
|
6524
|
+
|
|
6525
|
+
static types(): { [key: string]: any } {
|
|
6526
|
+
return {
|
|
6527
|
+
allowCancel: 'number',
|
|
6528
|
+
allowChange: 'number',
|
|
6529
|
+
changeLevel: 'string',
|
|
6530
|
+
DBClusterId: 'string',
|
|
6531
|
+
DBType: 'string',
|
|
6532
|
+
ownerAccount: 'string',
|
|
6533
|
+
ownerId: 'number',
|
|
6534
|
+
pageNumber: 'number',
|
|
6535
|
+
pageSize: 'number',
|
|
6536
|
+
regionId: 'string',
|
|
6537
|
+
resourceOwnerAccount: 'string',
|
|
6538
|
+
resourceOwnerId: 'number',
|
|
6539
|
+
securityToken: 'string',
|
|
6540
|
+
status: 'number',
|
|
6541
|
+
taskType: 'string',
|
|
6542
|
+
};
|
|
6543
|
+
}
|
|
6544
|
+
|
|
6545
|
+
constructor(map?: { [key: string]: any }) {
|
|
6546
|
+
super(map);
|
|
6547
|
+
}
|
|
6548
|
+
}
|
|
6549
|
+
|
|
6550
|
+
export class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
6551
|
+
items?: DescribeActiveOperationTasksResponseBodyItems[];
|
|
6552
|
+
/**
|
|
6553
|
+
* @example
|
|
6554
|
+
* 1
|
|
6555
|
+
*/
|
|
6556
|
+
pageNumber?: number;
|
|
6557
|
+
/**
|
|
6558
|
+
* @example
|
|
6559
|
+
* 30
|
|
6560
|
+
*/
|
|
6561
|
+
pageSize?: number;
|
|
6562
|
+
/**
|
|
6563
|
+
* @example
|
|
6564
|
+
* FAF88508-D5F8-52B1-8824-262601769E31
|
|
6565
|
+
*/
|
|
6566
|
+
requestId?: string;
|
|
6567
|
+
/**
|
|
6568
|
+
* @example
|
|
6569
|
+
* 1
|
|
6570
|
+
*/
|
|
6571
|
+
totalRecordCount?: number;
|
|
6572
|
+
static names(): { [key: string]: string } {
|
|
6573
|
+
return {
|
|
6574
|
+
items: 'Items',
|
|
6575
|
+
pageNumber: 'PageNumber',
|
|
6576
|
+
pageSize: 'PageSize',
|
|
6577
|
+
requestId: 'RequestId',
|
|
6578
|
+
totalRecordCount: 'TotalRecordCount',
|
|
6579
|
+
};
|
|
6580
|
+
}
|
|
6581
|
+
|
|
6582
|
+
static types(): { [key: string]: any } {
|
|
6583
|
+
return {
|
|
6584
|
+
items: { 'type': 'array', 'itemType': DescribeActiveOperationTasksResponseBodyItems },
|
|
6585
|
+
pageNumber: 'number',
|
|
6586
|
+
pageSize: 'number',
|
|
6587
|
+
requestId: 'string',
|
|
6588
|
+
totalRecordCount: 'number',
|
|
6589
|
+
};
|
|
6590
|
+
}
|
|
6591
|
+
|
|
6592
|
+
constructor(map?: { [key: string]: any }) {
|
|
6593
|
+
super(map);
|
|
6594
|
+
}
|
|
6595
|
+
}
|
|
6596
|
+
|
|
6597
|
+
export class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
6598
|
+
headers?: { [key: string]: string };
|
|
6599
|
+
statusCode?: number;
|
|
6600
|
+
body?: DescribeActiveOperationTasksResponseBody;
|
|
6601
|
+
static names(): { [key: string]: string } {
|
|
6602
|
+
return {
|
|
6603
|
+
headers: 'headers',
|
|
6604
|
+
statusCode: 'statusCode',
|
|
6605
|
+
body: 'body',
|
|
6606
|
+
};
|
|
6607
|
+
}
|
|
6608
|
+
|
|
6609
|
+
static types(): { [key: string]: any } {
|
|
6610
|
+
return {
|
|
6611
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6612
|
+
statusCode: 'number',
|
|
6613
|
+
body: DescribeActiveOperationTasksResponseBody,
|
|
6614
|
+
};
|
|
6615
|
+
}
|
|
6616
|
+
|
|
6617
|
+
constructor(map?: { [key: string]: any }) {
|
|
6618
|
+
super(map);
|
|
6619
|
+
}
|
|
6620
|
+
}
|
|
6621
|
+
|
|
6288
6622
|
export class DescribeAutoRenewAttributeRequest extends $tea.Model {
|
|
6289
6623
|
/**
|
|
6290
6624
|
* @remarks
|
|
@@ -7195,7 +7529,7 @@ export class DescribeBackupsRequest extends $tea.Model {
|
|
|
7195
7529
|
export class DescribeBackupsResponseBody extends $tea.Model {
|
|
7196
7530
|
/**
|
|
7197
7531
|
* @remarks
|
|
7198
|
-
* The
|
|
7532
|
+
* The queried backup sets.
|
|
7199
7533
|
*/
|
|
7200
7534
|
items?: DescribeBackupsResponseBodyItems;
|
|
7201
7535
|
/**
|
|
@@ -7222,6 +7556,10 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
7222
7556
|
* 24A1990B-4F6E-482B-B8CB-75C612******
|
|
7223
7557
|
*/
|
|
7224
7558
|
requestId?: string;
|
|
7559
|
+
/**
|
|
7560
|
+
* @example
|
|
7561
|
+
* 4639948800
|
|
7562
|
+
*/
|
|
7225
7563
|
totalLevel2BackupSize?: string;
|
|
7226
7564
|
/**
|
|
7227
7565
|
* @remarks
|
|
@@ -7511,7 +7849,7 @@ export class DescribeClassListRequest extends $tea.Model {
|
|
|
7511
7849
|
export class DescribeClassListResponseBody extends $tea.Model {
|
|
7512
7850
|
/**
|
|
7513
7851
|
* @remarks
|
|
7514
|
-
* The specifications
|
|
7852
|
+
* The cluster specifications.
|
|
7515
7853
|
*/
|
|
7516
7854
|
items?: DescribeClassListResponseBodyItems[];
|
|
7517
7855
|
/**
|
|
@@ -7966,6 +8304,16 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
7966
8304
|
* StandbyClusterON
|
|
7967
8305
|
*/
|
|
7968
8306
|
hotStandbyCluster?: string;
|
|
8307
|
+
/**
|
|
8308
|
+
* @remarks
|
|
8309
|
+
* Indicates whether the automatic IMCI-based query acceleration feature is enabled. Valid values:
|
|
8310
|
+
*
|
|
8311
|
+
* * `ON`: enabled
|
|
8312
|
+
* * `OFF`: disabled
|
|
8313
|
+
*
|
|
8314
|
+
* @example
|
|
8315
|
+
* OFF
|
|
8316
|
+
*/
|
|
7969
8317
|
imciAutoIndex?: string;
|
|
7970
8318
|
/**
|
|
7971
8319
|
* @remarks
|
|
@@ -8212,7 +8560,8 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
8212
8560
|
/**
|
|
8213
8561
|
* @remarks
|
|
8214
8562
|
* Storage billing type. Valid values are as follows:
|
|
8215
|
-
* - **Postpaid
|
|
8563
|
+
* - **Postpaid**: Pay-as-you-go (by capacity).
|
|
8564
|
+
* - **Prepaid**: Subscription (by space).
|
|
8216
8565
|
*
|
|
8217
8566
|
* @example
|
|
8218
8567
|
* Prepaid
|
|
@@ -8266,7 +8615,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
8266
8615
|
subCategory?: string;
|
|
8267
8616
|
/**
|
|
8268
8617
|
* @remarks
|
|
8269
|
-
* Indicates whether
|
|
8618
|
+
* Indicates whether queries based on In-Memory Column Indexes (IMCIs) are supported during and after a failover with hot replica.
|
|
8270
8619
|
*
|
|
8271
8620
|
* @example
|
|
8272
8621
|
* ON
|
|
@@ -9140,7 +9489,7 @@ export class DescribeDBClusterMigrationResponseBody extends $tea.Model {
|
|
|
9140
9489
|
migrationStatus?: string;
|
|
9141
9490
|
/**
|
|
9142
9491
|
* @remarks
|
|
9143
|
-
* The
|
|
9492
|
+
* The endpoints of the ApsaraDB RDS instance.
|
|
9144
9493
|
*/
|
|
9145
9494
|
rdsEndpointList?: DescribeDBClusterMigrationResponseBodyRdsEndpointList[];
|
|
9146
9495
|
/**
|
|
@@ -9168,6 +9517,12 @@ export class DescribeDBClusterMigrationResponseBody extends $tea.Model {
|
|
|
9168
9517
|
*/
|
|
9169
9518
|
sourceRDSDBInstanceId?: string;
|
|
9170
9519
|
/**
|
|
9520
|
+
* @remarks
|
|
9521
|
+
* The type of the source database. Valid values:
|
|
9522
|
+
*
|
|
9523
|
+
* - **PolarDBMySQL**: The source database is a PolarDB for MySQL database when the major version of your PolarDB cluster is upgraded.
|
|
9524
|
+
* - **RDS**: The source database is an ApsaraDB RDS database when data is migrated from ApsaraDB RDS to PolarDB for MySQL.
|
|
9525
|
+
*
|
|
9171
9526
|
* @example
|
|
9172
9527
|
* PolarDBMySQL
|
|
9173
9528
|
*/
|
|
@@ -9591,7 +9946,7 @@ export class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
9591
9946
|
startTime?: string;
|
|
9592
9947
|
/**
|
|
9593
9948
|
* @remarks
|
|
9594
|
-
* The
|
|
9949
|
+
* The query type.
|
|
9595
9950
|
*
|
|
9596
9951
|
* @example
|
|
9597
9952
|
* orca
|
|
@@ -9850,7 +10205,7 @@ export class DescribeDBClusterSSLResponse extends $tea.Model {
|
|
|
9850
10205
|
export class DescribeDBClusterServerlessConfRequest extends $tea.Model {
|
|
9851
10206
|
/**
|
|
9852
10207
|
* @remarks
|
|
9853
|
-
*
|
|
10208
|
+
* Serverless cluster ID.
|
|
9854
10209
|
*
|
|
9855
10210
|
* This parameter is required.
|
|
9856
10211
|
*
|
|
@@ -9891,10 +10246,11 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9891
10246
|
agileScaleMax?: string;
|
|
9892
10247
|
/**
|
|
9893
10248
|
* @remarks
|
|
9894
|
-
*
|
|
10249
|
+
* Whether to enable idle shutdown. Values:
|
|
9895
10250
|
*
|
|
9896
|
-
*
|
|
9897
|
-
*
|
|
10251
|
+
* - **true**: Enable
|
|
10252
|
+
*
|
|
10253
|
+
* - **false**: Disable (default)
|
|
9898
10254
|
*
|
|
9899
10255
|
* @example
|
|
9900
10256
|
* true
|
|
@@ -9902,7 +10258,7 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9902
10258
|
allowShutDown?: string;
|
|
9903
10259
|
/**
|
|
9904
10260
|
* @remarks
|
|
9905
|
-
*
|
|
10261
|
+
* Serverless cluster ID.
|
|
9906
10262
|
*
|
|
9907
10263
|
* @example
|
|
9908
10264
|
* pc-bp10gr51qasnl****
|
|
@@ -9910,17 +10266,31 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9910
10266
|
DBClusterId?: string;
|
|
9911
10267
|
/**
|
|
9912
10268
|
* @remarks
|
|
9913
|
-
*
|
|
10269
|
+
* Request ID.
|
|
9914
10270
|
*
|
|
9915
10271
|
* @example
|
|
9916
10272
|
* 5E71541A-6007-4DCC-A38A-F872C31FEB45
|
|
9917
10273
|
*/
|
|
9918
10274
|
requestId?: string;
|
|
10275
|
+
/**
|
|
10276
|
+
* @remarks
|
|
10277
|
+
* Maximum limit for the number of read-only column storage nodes. Range: 0~7.
|
|
10278
|
+
*
|
|
10279
|
+
* @example
|
|
10280
|
+
* 1
|
|
10281
|
+
*/
|
|
9919
10282
|
scaleApRoNumMax?: string;
|
|
10283
|
+
/**
|
|
10284
|
+
* @remarks
|
|
10285
|
+
* Minimum limit for the number of read-only column storage nodes. Range: 0~7.
|
|
10286
|
+
*
|
|
10287
|
+
* @example
|
|
10288
|
+
* 1
|
|
10289
|
+
*/
|
|
9920
10290
|
scaleApRoNumMin?: string;
|
|
9921
10291
|
/**
|
|
9922
10292
|
* @remarks
|
|
9923
|
-
*
|
|
10293
|
+
* Maximum scaling limit for a single node. Range: 1 PCU~32 PCU.
|
|
9924
10294
|
*
|
|
9925
10295
|
* @example
|
|
9926
10296
|
* 3
|
|
@@ -9928,7 +10298,7 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9928
10298
|
scaleMax?: string;
|
|
9929
10299
|
/**
|
|
9930
10300
|
* @remarks
|
|
9931
|
-
*
|
|
10301
|
+
* Minimum scaling limit for a single node. Range: 1 PCU~31 PCU.
|
|
9932
10302
|
*
|
|
9933
10303
|
* @example
|
|
9934
10304
|
* 1
|
|
@@ -9936,7 +10306,7 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9936
10306
|
scaleMin?: string;
|
|
9937
10307
|
/**
|
|
9938
10308
|
* @remarks
|
|
9939
|
-
*
|
|
10309
|
+
* Maximum scaling limit for the number of read-only nodes. Range: 0~15.
|
|
9940
10310
|
*
|
|
9941
10311
|
* @example
|
|
9942
10312
|
* 4
|
|
@@ -9944,7 +10314,7 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9944
10314
|
scaleRoNumMax?: string;
|
|
9945
10315
|
/**
|
|
9946
10316
|
* @remarks
|
|
9947
|
-
*
|
|
10317
|
+
* Minimum scaling limit for the number of read-only nodes. Range: 0~15.
|
|
9948
10318
|
*
|
|
9949
10319
|
* @example
|
|
9950
10320
|
* 2
|
|
@@ -9952,15 +10322,51 @@ export class DescribeDBClusterServerlessConfResponseBody extends $tea.Model {
|
|
|
9952
10322
|
scaleRoNumMin?: string;
|
|
9953
10323
|
/**
|
|
9954
10324
|
* @remarks
|
|
9955
|
-
*
|
|
10325
|
+
* Detection duration for idle shutdown. Range: 300~86,400. Unit: seconds. The detection duration must be a multiple of 300 seconds.
|
|
9956
10326
|
*
|
|
9957
10327
|
* @example
|
|
9958
10328
|
* 10
|
|
9959
10329
|
*/
|
|
9960
10330
|
secondsUntilAutoPause?: string;
|
|
10331
|
+
/**
|
|
10332
|
+
* @remarks
|
|
10333
|
+
* CPU upscale threshold.
|
|
10334
|
+
*
|
|
10335
|
+
* @example
|
|
10336
|
+
* 60
|
|
10337
|
+
*/
|
|
9961
10338
|
serverlessRuleCpuEnlargeThreshold?: string;
|
|
10339
|
+
/**
|
|
10340
|
+
* @remarks
|
|
10341
|
+
* CPU downscale threshold.
|
|
10342
|
+
*
|
|
10343
|
+
* @example
|
|
10344
|
+
* 30
|
|
10345
|
+
*/
|
|
9962
10346
|
serverlessRuleCpuShrinkThreshold?: string;
|
|
10347
|
+
/**
|
|
10348
|
+
* @remarks
|
|
10349
|
+
* Elasticity sensitivity. Values:
|
|
10350
|
+
*
|
|
10351
|
+
* - normal: Standard
|
|
10352
|
+
*
|
|
10353
|
+
* - flexible: Sensitive
|
|
10354
|
+
*
|
|
10355
|
+
* @example
|
|
10356
|
+
* normal
|
|
10357
|
+
*/
|
|
9963
10358
|
serverlessRuleMode?: string;
|
|
10359
|
+
/**
|
|
10360
|
+
* @remarks
|
|
10361
|
+
* Whether steady state is enabled. Values:
|
|
10362
|
+
*
|
|
10363
|
+
* 1: Enabled
|
|
10364
|
+
*
|
|
10365
|
+
* 0: Disabled
|
|
10366
|
+
*
|
|
10367
|
+
* @example
|
|
10368
|
+
* 1
|
|
10369
|
+
*/
|
|
9964
10370
|
switchs?: string;
|
|
9965
10371
|
traditionalScaleMaxThreshold?: string;
|
|
9966
10372
|
static names(): { [key: string]: string } {
|
|
@@ -10118,6 +10524,7 @@ export class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
10118
10524
|
* 2a4f4ac2-****-****-****-************
|
|
10119
10525
|
*/
|
|
10120
10526
|
encryptionKey?: string;
|
|
10527
|
+
encryptionKeyStatus?: string;
|
|
10121
10528
|
/**
|
|
10122
10529
|
* @remarks
|
|
10123
10530
|
* The ID of the request.
|
|
@@ -10163,6 +10570,7 @@ export class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
10163
10570
|
DBClusterId: 'DBClusterId',
|
|
10164
10571
|
encryptNewTables: 'EncryptNewTables',
|
|
10165
10572
|
encryptionKey: 'EncryptionKey',
|
|
10573
|
+
encryptionKeyStatus: 'EncryptionKeyStatus',
|
|
10166
10574
|
requestId: 'RequestId',
|
|
10167
10575
|
rotationInterval: 'RotationInterval',
|
|
10168
10576
|
TDERegion: 'TDERegion',
|
|
@@ -10176,6 +10584,7 @@ export class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
10176
10584
|
DBClusterId: 'string',
|
|
10177
10585
|
encryptNewTables: 'string',
|
|
10178
10586
|
encryptionKey: 'string',
|
|
10587
|
+
encryptionKeyStatus: 'string',
|
|
10179
10588
|
requestId: 'string',
|
|
10180
10589
|
rotationInterval: 'string',
|
|
10181
10590
|
TDERegion: 'string',
|
|
@@ -12999,6 +13408,8 @@ export class DescribeGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
|
12999
13408
|
export class DescribeLicenseOrderDetailsRequest extends $tea.Model {
|
|
13000
13409
|
/**
|
|
13001
13410
|
* @remarks
|
|
13411
|
+
* The Alibaba Cloud order ID (or virtual order ID).
|
|
13412
|
+
*
|
|
13002
13413
|
* This parameter is required.
|
|
13003
13414
|
*
|
|
13004
13415
|
* @example
|
|
@@ -13036,71 +13447,119 @@ export class DescribeLicenseOrderDetailsRequest extends $tea.Model {
|
|
|
13036
13447
|
|
|
13037
13448
|
export class DescribeLicenseOrderDetailsResponseBody extends $tea.Model {
|
|
13038
13449
|
/**
|
|
13450
|
+
* @remarks
|
|
13451
|
+
* The number of generated activation codes.
|
|
13452
|
+
*
|
|
13039
13453
|
* @example
|
|
13040
13454
|
* 2
|
|
13041
13455
|
*/
|
|
13042
13456
|
activatedCodeCount?: number;
|
|
13043
13457
|
/**
|
|
13458
|
+
* @remarks
|
|
13459
|
+
* The maximum number of activation codes that you can apply for.
|
|
13460
|
+
*
|
|
13044
13461
|
* @example
|
|
13045
13462
|
* 8
|
|
13046
13463
|
*/
|
|
13047
13464
|
activationCodeQuota?: number;
|
|
13048
13465
|
/**
|
|
13466
|
+
* @remarks
|
|
13467
|
+
* The Alibaba Cloud order ID (including the virtual order ID).
|
|
13468
|
+
*
|
|
13049
13469
|
* @example
|
|
13050
13470
|
* 239618016570503
|
|
13051
13471
|
*/
|
|
13052
13472
|
aliyunOrderId?: string;
|
|
13053
13473
|
/**
|
|
13474
|
+
* @remarks
|
|
13475
|
+
* Indicates whether activation codes can be generated without the system identifier.
|
|
13476
|
+
*
|
|
13054
13477
|
* @example
|
|
13055
13478
|
* false
|
|
13056
13479
|
*/
|
|
13057
13480
|
allowEmptySystemIdentifier?: boolean;
|
|
13058
13481
|
/**
|
|
13482
|
+
* @remarks
|
|
13483
|
+
* The type of the engine. Valid values: PG, Oracle, and MySQL.
|
|
13484
|
+
*
|
|
13059
13485
|
* @example
|
|
13060
13486
|
* PG
|
|
13061
13487
|
*/
|
|
13062
13488
|
engine?: string;
|
|
13063
13489
|
/**
|
|
13490
|
+
* @remarks
|
|
13491
|
+
* The time when the order was created.
|
|
13492
|
+
*
|
|
13064
13493
|
* @example
|
|
13065
13494
|
* 2021-10-19 01:13:45
|
|
13066
13495
|
*/
|
|
13067
13496
|
gmtCreated?: string;
|
|
13068
13497
|
/**
|
|
13498
|
+
* @remarks
|
|
13499
|
+
* The time when the order was last updated.
|
|
13500
|
+
*
|
|
13069
13501
|
* @example
|
|
13070
13502
|
* 2024-10-16 16:46:20
|
|
13071
13503
|
*/
|
|
13072
13504
|
gmtModified?: string;
|
|
13073
13505
|
/**
|
|
13506
|
+
* @remarks
|
|
13507
|
+
* Indicates whether the order is a virtual order (virtual orders allow pre-generation of activation codes).
|
|
13508
|
+
*
|
|
13074
13509
|
* @example
|
|
13075
13510
|
* false
|
|
13076
13511
|
*/
|
|
13077
13512
|
isVirtualOrder?: boolean;
|
|
13078
13513
|
/**
|
|
13514
|
+
* @remarks
|
|
13515
|
+
* Indicates whether the virtual order is frozen (activation codes cannot be generated for a frozen virtual order).
|
|
13516
|
+
*
|
|
13079
13517
|
* @example
|
|
13080
13518
|
* false
|
|
13081
13519
|
*/
|
|
13082
13520
|
isVirtualOrderFrozen?: boolean;
|
|
13083
13521
|
/**
|
|
13522
|
+
* @remarks
|
|
13523
|
+
* The plan type. Valid values:
|
|
13524
|
+
*
|
|
13525
|
+
* * single_node_subscribe
|
|
13526
|
+
* * single_node_long_term
|
|
13527
|
+
* * primary_backup_subscribe
|
|
13528
|
+
* * primary_backup_long_term
|
|
13529
|
+
* * pre_generation_long_term
|
|
13530
|
+
*
|
|
13084
13531
|
* @example
|
|
13085
13532
|
* pre_generation_long_term
|
|
13086
13533
|
*/
|
|
13087
13534
|
packageType?: string;
|
|
13088
13535
|
/**
|
|
13536
|
+
* @remarks
|
|
13537
|
+
* The validity period of the plan, which is one year (common) or thirty years (long-term).
|
|
13538
|
+
*
|
|
13089
13539
|
* @example
|
|
13090
13540
|
* 1 year
|
|
13091
13541
|
*/
|
|
13092
13542
|
packageValidity?: string;
|
|
13093
13543
|
/**
|
|
13544
|
+
* @remarks
|
|
13545
|
+
* The plan validity period, one year (common) or thirty years (long-term).
|
|
13546
|
+
*
|
|
13094
13547
|
* @example
|
|
13095
13548
|
* aliyun_market
|
|
13096
13549
|
*/
|
|
13097
13550
|
purchaseChannel?: string;
|
|
13098
13551
|
/**
|
|
13552
|
+
* @remarks
|
|
13553
|
+
* The request ID.
|
|
13554
|
+
*
|
|
13099
13555
|
* @example
|
|
13100
13556
|
* 22C0ACF0-DD29-4B67-9190-B7A48C******
|
|
13101
13557
|
*/
|
|
13102
13558
|
requestId?: string;
|
|
13103
13559
|
/**
|
|
13560
|
+
* @remarks
|
|
13561
|
+
* The virtual order ID.
|
|
13562
|
+
*
|
|
13104
13563
|
* @example
|
|
13105
13564
|
* 239618016570503
|
|
13106
13565
|
*/
|
|
@@ -13227,6 +13686,9 @@ export class DescribeLicenseOrdersRequest extends $tea.Model {
|
|
|
13227
13686
|
/**
|
|
13228
13687
|
* @remarks
|
|
13229
13688
|
* Specifies whether to query only virtual orders.
|
|
13689
|
+
*
|
|
13690
|
+
* @example
|
|
13691
|
+
* true
|
|
13230
13692
|
*/
|
|
13231
13693
|
virtualOrder?: boolean;
|
|
13232
13694
|
static names(): { [key: string]: string } {
|
|
@@ -15809,8 +16271,6 @@ export class DescribeUserEncryptionKeyListRequest extends $tea.Model {
|
|
|
15809
16271
|
*
|
|
15810
16272
|
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.
|
|
15811
16273
|
*
|
|
15812
|
-
* This parameter is required.
|
|
15813
|
-
*
|
|
15814
16274
|
* @example
|
|
15815
16275
|
* pc-************
|
|
15816
16276
|
*/
|
|
@@ -17588,6 +18048,159 @@ export class ModifyAccountPasswordResponse extends $tea.Model {
|
|
|
17588
18048
|
}
|
|
17589
18049
|
}
|
|
17590
18050
|
|
|
18051
|
+
export class ModifyActiveOperationTasksRequest extends $tea.Model {
|
|
18052
|
+
/**
|
|
18053
|
+
* @remarks
|
|
18054
|
+
* Specifies whether to immediately start scheduling. Valid values:
|
|
18055
|
+
*
|
|
18056
|
+
* * 0: No. This is the default value.
|
|
18057
|
+
* * 1: Yes.
|
|
18058
|
+
*
|
|
18059
|
+
* >
|
|
18060
|
+
*
|
|
18061
|
+
* * If you set this parameter to 0, you must specify the SwitchTime parameter.
|
|
18062
|
+
*
|
|
18063
|
+
* * If you set this parameter to 1, the SwitchTime parameter does not take effect. In this case, the start time of the event is set to the current time, and the system determines the switching time based on the start time. Scheduling is started immediately, which is a prerequisite for the switchover. Then, the switchover is performed. You can call the DescribeActiveOperationTasks operation and check the return value of the PrepareInterval parameter for the preparation time.
|
|
18064
|
+
*
|
|
18065
|
+
* @example
|
|
18066
|
+
* 0
|
|
18067
|
+
*/
|
|
18068
|
+
immediateStart?: number;
|
|
18069
|
+
ownerAccount?: string;
|
|
18070
|
+
ownerId?: number;
|
|
18071
|
+
/**
|
|
18072
|
+
* @remarks
|
|
18073
|
+
* The region ID.
|
|
18074
|
+
*
|
|
18075
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) operation to query the region information about all clusters within a specified account.
|
|
18076
|
+
*
|
|
18077
|
+
* This parameter is required.
|
|
18078
|
+
*
|
|
18079
|
+
* @example
|
|
18080
|
+
* cn-beijing
|
|
18081
|
+
*/
|
|
18082
|
+
regionId?: string;
|
|
18083
|
+
resourceOwnerAccount?: string;
|
|
18084
|
+
resourceOwnerId?: number;
|
|
18085
|
+
securityToken?: string;
|
|
18086
|
+
/**
|
|
18087
|
+
* @remarks
|
|
18088
|
+
* The scheduled switching time that you want to specify. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
|
|
18089
|
+
*
|
|
18090
|
+
* >
|
|
18091
|
+
*
|
|
18092
|
+
* * The time that is specified by this parameter cannot be later than the latest execution time.
|
|
18093
|
+
*
|
|
18094
|
+
* * You can call the DescribeActiveOperationTasks operation and check the return value of the Deadline parameter for the latest execution time.
|
|
18095
|
+
*
|
|
18096
|
+
* @example
|
|
18097
|
+
* 2023-04-25T06:00:00Z
|
|
18098
|
+
*/
|
|
18099
|
+
switchTime?: string;
|
|
18100
|
+
/**
|
|
18101
|
+
* @remarks
|
|
18102
|
+
* The task IDs.
|
|
18103
|
+
*
|
|
18104
|
+
* This parameter is required.
|
|
18105
|
+
*
|
|
18106
|
+
* @example
|
|
18107
|
+
* 11111,22222
|
|
18108
|
+
*/
|
|
18109
|
+
taskIds?: string;
|
|
18110
|
+
static names(): { [key: string]: string } {
|
|
18111
|
+
return {
|
|
18112
|
+
immediateStart: 'ImmediateStart',
|
|
18113
|
+
ownerAccount: 'OwnerAccount',
|
|
18114
|
+
ownerId: 'OwnerId',
|
|
18115
|
+
regionId: 'RegionId',
|
|
18116
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
18117
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
18118
|
+
securityToken: 'SecurityToken',
|
|
18119
|
+
switchTime: 'SwitchTime',
|
|
18120
|
+
taskIds: 'TaskIds',
|
|
18121
|
+
};
|
|
18122
|
+
}
|
|
18123
|
+
|
|
18124
|
+
static types(): { [key: string]: any } {
|
|
18125
|
+
return {
|
|
18126
|
+
immediateStart: 'number',
|
|
18127
|
+
ownerAccount: 'string',
|
|
18128
|
+
ownerId: 'number',
|
|
18129
|
+
regionId: 'string',
|
|
18130
|
+
resourceOwnerAccount: 'string',
|
|
18131
|
+
resourceOwnerId: 'number',
|
|
18132
|
+
securityToken: 'string',
|
|
18133
|
+
switchTime: 'string',
|
|
18134
|
+
taskIds: 'string',
|
|
18135
|
+
};
|
|
18136
|
+
}
|
|
18137
|
+
|
|
18138
|
+
constructor(map?: { [key: string]: any }) {
|
|
18139
|
+
super(map);
|
|
18140
|
+
}
|
|
18141
|
+
}
|
|
18142
|
+
|
|
18143
|
+
export class ModifyActiveOperationTasksResponseBody extends $tea.Model {
|
|
18144
|
+
/**
|
|
18145
|
+
* @remarks
|
|
18146
|
+
* The request ID.
|
|
18147
|
+
*
|
|
18148
|
+
* @example
|
|
18149
|
+
* 42CD2EF5-D77E-5AD4-961B-159330D98286
|
|
18150
|
+
*/
|
|
18151
|
+
requestId?: string;
|
|
18152
|
+
/**
|
|
18153
|
+
* @remarks
|
|
18154
|
+
* The task IDs.
|
|
18155
|
+
*
|
|
18156
|
+
* @example
|
|
18157
|
+
* 11111,22222
|
|
18158
|
+
*/
|
|
18159
|
+
taskIds?: string;
|
|
18160
|
+
static names(): { [key: string]: string } {
|
|
18161
|
+
return {
|
|
18162
|
+
requestId: 'RequestId',
|
|
18163
|
+
taskIds: 'TaskIds',
|
|
18164
|
+
};
|
|
18165
|
+
}
|
|
18166
|
+
|
|
18167
|
+
static types(): { [key: string]: any } {
|
|
18168
|
+
return {
|
|
18169
|
+
requestId: 'string',
|
|
18170
|
+
taskIds: 'string',
|
|
18171
|
+
};
|
|
18172
|
+
}
|
|
18173
|
+
|
|
18174
|
+
constructor(map?: { [key: string]: any }) {
|
|
18175
|
+
super(map);
|
|
18176
|
+
}
|
|
18177
|
+
}
|
|
18178
|
+
|
|
18179
|
+
export class ModifyActiveOperationTasksResponse extends $tea.Model {
|
|
18180
|
+
headers?: { [key: string]: string };
|
|
18181
|
+
statusCode?: number;
|
|
18182
|
+
body?: ModifyActiveOperationTasksResponseBody;
|
|
18183
|
+
static names(): { [key: string]: string } {
|
|
18184
|
+
return {
|
|
18185
|
+
headers: 'headers',
|
|
18186
|
+
statusCode: 'statusCode',
|
|
18187
|
+
body: 'body',
|
|
18188
|
+
};
|
|
18189
|
+
}
|
|
18190
|
+
|
|
18191
|
+
static types(): { [key: string]: any } {
|
|
18192
|
+
return {
|
|
18193
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18194
|
+
statusCode: 'number',
|
|
18195
|
+
body: ModifyActiveOperationTasksResponseBody,
|
|
18196
|
+
};
|
|
18197
|
+
}
|
|
18198
|
+
|
|
18199
|
+
constructor(map?: { [key: string]: any }) {
|
|
18200
|
+
super(map);
|
|
18201
|
+
}
|
|
18202
|
+
}
|
|
18203
|
+
|
|
17591
18204
|
export class ModifyAutoRenewAttributeRequest extends $tea.Model {
|
|
17592
18205
|
/**
|
|
17593
18206
|
* @remarks
|
|
@@ -18459,7 +19072,7 @@ export class ModifyDBClusterAccessWhitelistResponse extends $tea.Model {
|
|
|
18459
19072
|
export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
18460
19073
|
/**
|
|
18461
19074
|
* @remarks
|
|
18462
|
-
* The cluster
|
|
19075
|
+
* The ID of the cluster.
|
|
18463
19076
|
*
|
|
18464
19077
|
* This parameter is required.
|
|
18465
19078
|
*
|
|
@@ -18469,9 +19082,9 @@ export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
|
18469
19082
|
DBClusterId?: string;
|
|
18470
19083
|
/**
|
|
18471
19084
|
* @remarks
|
|
18472
|
-
* The
|
|
19085
|
+
* The IDs of nodes. You can specify this parameter, or leave this parameter empty. Separate multiple node IDs with commas (,).
|
|
18473
19086
|
*
|
|
18474
|
-
* >
|
|
19087
|
+
* > If you do not specify this parameter, only the cluster parameters are modified.
|
|
18475
19088
|
*
|
|
18476
19089
|
* @example
|
|
18477
19090
|
* pi-****************,pi-**********,
|
|
@@ -18492,7 +19105,7 @@ export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
|
18492
19105
|
ownerId?: number;
|
|
18493
19106
|
/**
|
|
18494
19107
|
* @remarks
|
|
18495
|
-
* The ID of the parameter template
|
|
19108
|
+
* The ID of the parameter template.
|
|
18496
19109
|
*
|
|
18497
19110
|
* @example
|
|
18498
19111
|
* pcpg-**************
|
|
@@ -18536,6 +19149,14 @@ export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
|
18536
19149
|
plannedStartTime?: string;
|
|
18537
19150
|
resourceOwnerAccount?: string;
|
|
18538
19151
|
resourceOwnerId?: number;
|
|
19152
|
+
/**
|
|
19153
|
+
* @remarks
|
|
19154
|
+
* The secondary clusters in the GDN to which the parameter settings are synchronized.
|
|
19155
|
+
*
|
|
19156
|
+
* @example
|
|
19157
|
+
* gdn-**********,gdn-**********
|
|
19158
|
+
*/
|
|
19159
|
+
standbyClusterIdListNeedToSync?: string;
|
|
18539
19160
|
static names(): { [key: string]: string } {
|
|
18540
19161
|
return {
|
|
18541
19162
|
DBClusterId: 'DBClusterId',
|
|
@@ -18549,6 +19170,7 @@ export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
|
18549
19170
|
plannedStartTime: 'PlannedStartTime',
|
|
18550
19171
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
18551
19172
|
resourceOwnerId: 'ResourceOwnerId',
|
|
19173
|
+
standbyClusterIdListNeedToSync: 'StandbyClusterIdListNeedToSync',
|
|
18552
19174
|
};
|
|
18553
19175
|
}
|
|
18554
19176
|
|
|
@@ -18565,6 +19187,7 @@ export class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
|
18565
19187
|
plannedStartTime: 'string',
|
|
18566
19188
|
resourceOwnerAccount: 'string',
|
|
18567
19189
|
resourceOwnerId: 'number',
|
|
19190
|
+
standbyClusterIdListNeedToSync: 'string',
|
|
18568
19191
|
};
|
|
18569
19192
|
}
|
|
18570
19193
|
|
|
@@ -25369,6 +25992,204 @@ export class DescribeActivationCodesResponseBodyItems extends $tea.Model {
|
|
|
25369
25992
|
}
|
|
25370
25993
|
}
|
|
25371
25994
|
|
|
25995
|
+
export class DescribeActiveOperationTasksResponseBodyItems extends $tea.Model {
|
|
25996
|
+
/**
|
|
25997
|
+
* @example
|
|
25998
|
+
* 0
|
|
25999
|
+
*/
|
|
26000
|
+
allowCancel?: number;
|
|
26001
|
+
/**
|
|
26002
|
+
* @example
|
|
26003
|
+
* 0
|
|
26004
|
+
*/
|
|
26005
|
+
allowChange?: number;
|
|
26006
|
+
/**
|
|
26007
|
+
* @example
|
|
26008
|
+
* S0
|
|
26009
|
+
*/
|
|
26010
|
+
changeLevel?: string;
|
|
26011
|
+
/**
|
|
26012
|
+
* @example
|
|
26013
|
+
* System maintenance
|
|
26014
|
+
*/
|
|
26015
|
+
changeLevelEn?: string;
|
|
26016
|
+
changeLevelZh?: string;
|
|
26017
|
+
/**
|
|
26018
|
+
* @example
|
|
26019
|
+
* 2020-06-09T22:00:42Z
|
|
26020
|
+
*/
|
|
26021
|
+
createdTime?: string;
|
|
26022
|
+
/**
|
|
26023
|
+
* @example
|
|
26024
|
+
* cn-beijing-h
|
|
26025
|
+
*/
|
|
26026
|
+
currentAVZ?: string;
|
|
26027
|
+
/**
|
|
26028
|
+
* @example
|
|
26029
|
+
* pc-*****************
|
|
26030
|
+
*/
|
|
26031
|
+
DBClusterId?: string;
|
|
26032
|
+
DBNodeIds?: string[];
|
|
26033
|
+
/**
|
|
26034
|
+
* @example
|
|
26035
|
+
* MySQL
|
|
26036
|
+
*/
|
|
26037
|
+
DBType?: string;
|
|
26038
|
+
/**
|
|
26039
|
+
* @example
|
|
26040
|
+
* 8.0
|
|
26041
|
+
*/
|
|
26042
|
+
DBVersion?: string;
|
|
26043
|
+
/**
|
|
26044
|
+
* @example
|
|
26045
|
+
* 2020-06-11T15:59:59Z
|
|
26046
|
+
*/
|
|
26047
|
+
deadline?: string;
|
|
26048
|
+
/**
|
|
26049
|
+
* @example
|
|
26050
|
+
* TransientDisconnection
|
|
26051
|
+
*/
|
|
26052
|
+
impact?: string;
|
|
26053
|
+
/**
|
|
26054
|
+
* @example
|
|
26055
|
+
* Transient instance disconnection
|
|
26056
|
+
*/
|
|
26057
|
+
impactEn?: string;
|
|
26058
|
+
impactZh?: string;
|
|
26059
|
+
/**
|
|
26060
|
+
* @example
|
|
26061
|
+
* test
|
|
26062
|
+
*/
|
|
26063
|
+
insComment?: string;
|
|
26064
|
+
/**
|
|
26065
|
+
* @example
|
|
26066
|
+
* 2020-06-09T22:00:42Z
|
|
26067
|
+
*/
|
|
26068
|
+
modifiedTime?: string;
|
|
26069
|
+
/**
|
|
26070
|
+
* @example
|
|
26071
|
+
* 04:00:00
|
|
26072
|
+
*/
|
|
26073
|
+
prepareInterval?: string;
|
|
26074
|
+
/**
|
|
26075
|
+
* @example
|
|
26076
|
+
* cn-hangzhou
|
|
26077
|
+
*/
|
|
26078
|
+
region?: string;
|
|
26079
|
+
/**
|
|
26080
|
+
* @example
|
|
26081
|
+
* userCancel
|
|
26082
|
+
*/
|
|
26083
|
+
resultInfo?: string;
|
|
26084
|
+
/**
|
|
26085
|
+
* @example
|
|
26086
|
+
* 2023-05-19T02:48:17Z
|
|
26087
|
+
*/
|
|
26088
|
+
startTime?: string;
|
|
26089
|
+
/**
|
|
26090
|
+
* @example
|
|
26091
|
+
* 3
|
|
26092
|
+
*/
|
|
26093
|
+
status?: number;
|
|
26094
|
+
/**
|
|
26095
|
+
* @example
|
|
26096
|
+
* 2020-06-09T22:00:00Z
|
|
26097
|
+
*/
|
|
26098
|
+
switchTime?: string;
|
|
26099
|
+
/**
|
|
26100
|
+
* @example
|
|
26101
|
+
* 107202351
|
|
26102
|
+
*/
|
|
26103
|
+
taskId?: number;
|
|
26104
|
+
/**
|
|
26105
|
+
* @example
|
|
26106
|
+
* {
|
|
26107
|
+
* "Action": "UpgradeDBInstance"
|
|
26108
|
+
* }
|
|
26109
|
+
*/
|
|
26110
|
+
taskParams?: string;
|
|
26111
|
+
/**
|
|
26112
|
+
* @example
|
|
26113
|
+
* DatabaseSoftwareUpgrading
|
|
26114
|
+
*/
|
|
26115
|
+
taskType?: string;
|
|
26116
|
+
/**
|
|
26117
|
+
* @example
|
|
26118
|
+
* Minor version update
|
|
26119
|
+
*/
|
|
26120
|
+
taskTypeEn?: string;
|
|
26121
|
+
taskTypeZh?: string;
|
|
26122
|
+
static names(): { [key: string]: string } {
|
|
26123
|
+
return {
|
|
26124
|
+
allowCancel: 'AllowCancel',
|
|
26125
|
+
allowChange: 'AllowChange',
|
|
26126
|
+
changeLevel: 'ChangeLevel',
|
|
26127
|
+
changeLevelEn: 'ChangeLevelEn',
|
|
26128
|
+
changeLevelZh: 'ChangeLevelZh',
|
|
26129
|
+
createdTime: 'CreatedTime',
|
|
26130
|
+
currentAVZ: 'CurrentAVZ',
|
|
26131
|
+
DBClusterId: 'DBClusterId',
|
|
26132
|
+
DBNodeIds: 'DBNodeIds',
|
|
26133
|
+
DBType: 'DBType',
|
|
26134
|
+
DBVersion: 'DBVersion',
|
|
26135
|
+
deadline: 'Deadline',
|
|
26136
|
+
impact: 'Impact',
|
|
26137
|
+
impactEn: 'ImpactEn',
|
|
26138
|
+
impactZh: 'ImpactZh',
|
|
26139
|
+
insComment: 'InsComment',
|
|
26140
|
+
modifiedTime: 'ModifiedTime',
|
|
26141
|
+
prepareInterval: 'PrepareInterval',
|
|
26142
|
+
region: 'Region',
|
|
26143
|
+
resultInfo: 'ResultInfo',
|
|
26144
|
+
startTime: 'StartTime',
|
|
26145
|
+
status: 'Status',
|
|
26146
|
+
switchTime: 'SwitchTime',
|
|
26147
|
+
taskId: 'TaskId',
|
|
26148
|
+
taskParams: 'TaskParams',
|
|
26149
|
+
taskType: 'TaskType',
|
|
26150
|
+
taskTypeEn: 'TaskTypeEn',
|
|
26151
|
+
taskTypeZh: 'TaskTypeZh',
|
|
26152
|
+
};
|
|
26153
|
+
}
|
|
26154
|
+
|
|
26155
|
+
static types(): { [key: string]: any } {
|
|
26156
|
+
return {
|
|
26157
|
+
allowCancel: 'number',
|
|
26158
|
+
allowChange: 'number',
|
|
26159
|
+
changeLevel: 'string',
|
|
26160
|
+
changeLevelEn: 'string',
|
|
26161
|
+
changeLevelZh: 'string',
|
|
26162
|
+
createdTime: 'string',
|
|
26163
|
+
currentAVZ: 'string',
|
|
26164
|
+
DBClusterId: 'string',
|
|
26165
|
+
DBNodeIds: { 'type': 'array', 'itemType': 'string' },
|
|
26166
|
+
DBType: 'string',
|
|
26167
|
+
DBVersion: 'string',
|
|
26168
|
+
deadline: 'string',
|
|
26169
|
+
impact: 'string',
|
|
26170
|
+
impactEn: 'string',
|
|
26171
|
+
impactZh: 'string',
|
|
26172
|
+
insComment: 'string',
|
|
26173
|
+
modifiedTime: 'string',
|
|
26174
|
+
prepareInterval: 'string',
|
|
26175
|
+
region: 'string',
|
|
26176
|
+
resultInfo: 'string',
|
|
26177
|
+
startTime: 'string',
|
|
26178
|
+
status: 'number',
|
|
26179
|
+
switchTime: 'string',
|
|
26180
|
+
taskId: 'number',
|
|
26181
|
+
taskParams: 'string',
|
|
26182
|
+
taskType: 'string',
|
|
26183
|
+
taskTypeEn: 'string',
|
|
26184
|
+
taskTypeZh: 'string',
|
|
26185
|
+
};
|
|
26186
|
+
}
|
|
26187
|
+
|
|
26188
|
+
constructor(map?: { [key: string]: any }) {
|
|
26189
|
+
super(map);
|
|
26190
|
+
}
|
|
26191
|
+
}
|
|
26192
|
+
|
|
25372
26193
|
export class DescribeAutoRenewAttributeResponseBodyItemsAutoRenewAttribute extends $tea.Model {
|
|
25373
26194
|
/**
|
|
25374
26195
|
* @remarks
|
|
@@ -25799,8 +26620,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
25799
26620
|
DBClusterId?: string;
|
|
25800
26621
|
/**
|
|
25801
26622
|
* @remarks
|
|
25802
|
-
* The expected expiration time of the backup set.
|
|
25803
|
-
* > This parameter is supported only for instances that are enabled with sparse backup.
|
|
26623
|
+
* The expected expiration time of the backup set (This parameter is supported only for clusters for which sparse backup is enabled).
|
|
25804
26624
|
*
|
|
25805
26625
|
* @example
|
|
25806
26626
|
* 2022-10-24T08:13:23Z
|
|
@@ -25970,6 +26790,13 @@ export class DescribeClassListResponseBodyItems extends $tea.Model {
|
|
|
25970
26790
|
* 8
|
|
25971
26791
|
*/
|
|
25972
26792
|
cpu?: string;
|
|
26793
|
+
/**
|
|
26794
|
+
* @remarks
|
|
26795
|
+
* The maximum ESSD storage capacity. Unit: TB.
|
|
26796
|
+
*
|
|
26797
|
+
* @example
|
|
26798
|
+
* 64
|
|
26799
|
+
*/
|
|
25973
26800
|
essdMaxStorageCapacity?: string;
|
|
25974
26801
|
/**
|
|
25975
26802
|
* @remarks
|
|
@@ -26027,6 +26854,13 @@ export class DescribeClassListResponseBodyItems extends $tea.Model {
|
|
|
26027
26854
|
* 1000000
|
|
26028
26855
|
*/
|
|
26029
26856
|
pl3MaxIOPS?: string;
|
|
26857
|
+
/**
|
|
26858
|
+
* @remarks
|
|
26859
|
+
* The maximum PSL4/PSL5 storage capacity. Unit: TB.
|
|
26860
|
+
*
|
|
26861
|
+
* @example
|
|
26862
|
+
* 500
|
|
26863
|
+
*/
|
|
26030
26864
|
polarStoreMaxStorageCapacity?: string;
|
|
26031
26865
|
/**
|
|
26032
26866
|
* @remarks
|
|
@@ -27144,6 +27978,12 @@ export class DescribeDBClusterMigrationResponseBodyRdsEndpointListAddressItems e
|
|
|
27144
27978
|
*/
|
|
27145
27979
|
port?: string;
|
|
27146
27980
|
/**
|
|
27981
|
+
* @remarks
|
|
27982
|
+
* Indicates whether SSL encryption is enabled. Valid values:
|
|
27983
|
+
*
|
|
27984
|
+
* - **Enabled**
|
|
27985
|
+
* - **Disabled**
|
|
27986
|
+
*
|
|
27147
27987
|
* @example
|
|
27148
27988
|
* Enabled
|
|
27149
27989
|
*/
|
|
@@ -27200,6 +28040,9 @@ export class DescribeDBClusterMigrationResponseBodyRdsEndpointList extends $tea.
|
|
|
27200
28040
|
*/
|
|
27201
28041
|
addressItems?: DescribeDBClusterMigrationResponseBodyRdsEndpointListAddressItems[];
|
|
27202
28042
|
/**
|
|
28043
|
+
* @remarks
|
|
28044
|
+
* The instance type.
|
|
28045
|
+
*
|
|
27203
28046
|
* @example
|
|
27204
28047
|
* ReadOnly
|
|
27205
28048
|
* Maxscale
|
|
@@ -27207,11 +28050,20 @@ export class DescribeDBClusterMigrationResponseBodyRdsEndpointList extends $tea.
|
|
|
27207
28050
|
*/
|
|
27208
28051
|
custinsType?: string;
|
|
27209
28052
|
/**
|
|
28053
|
+
* @remarks
|
|
28054
|
+
* The ID of the endpoint.
|
|
28055
|
+
*
|
|
27210
28056
|
* @example
|
|
27211
28057
|
* rm-************-normal
|
|
27212
28058
|
*/
|
|
27213
28059
|
DBEndpointId?: string;
|
|
27214
28060
|
/**
|
|
28061
|
+
* @remarks
|
|
28062
|
+
* The type of the endpoint. Valid values:
|
|
28063
|
+
*
|
|
28064
|
+
* - **Normal**: the standard endpoint
|
|
28065
|
+
* - **ReadWriteSplitting**: the read/write splitting endpoint
|
|
28066
|
+
*
|
|
27215
28067
|
* @example
|
|
27216
28068
|
* Normal
|
|
27217
28069
|
*/
|
|
@@ -27727,6 +28579,7 @@ export class DescribeDBClusterSSLResponseBodyItems extends $tea.Model {
|
|
|
27727
28579
|
* pe-************
|
|
27728
28580
|
*/
|
|
27729
28581
|
DBEndpointId?: string;
|
|
28582
|
+
SSLAutoRotate?: string;
|
|
27730
28583
|
/**
|
|
27731
28584
|
* @remarks
|
|
27732
28585
|
* The SSL connection string.
|
|
@@ -27757,6 +28610,7 @@ export class DescribeDBClusterSSLResponseBodyItems extends $tea.Model {
|
|
|
27757
28610
|
static names(): { [key: string]: string } {
|
|
27758
28611
|
return {
|
|
27759
28612
|
DBEndpointId: 'DBEndpointId',
|
|
28613
|
+
SSLAutoRotate: 'SSLAutoRotate',
|
|
27760
28614
|
SSLConnectionString: 'SSLConnectionString',
|
|
27761
28615
|
SSLEnabled: 'SSLEnabled',
|
|
27762
28616
|
SSLExpireTime: 'SSLExpireTime',
|
|
@@ -27766,6 +28620,7 @@ export class DescribeDBClusterSSLResponseBodyItems extends $tea.Model {
|
|
|
27766
28620
|
static types(): { [key: string]: any } {
|
|
27767
28621
|
return {
|
|
27768
28622
|
DBEndpointId: 'string',
|
|
28623
|
+
SSLAutoRotate: 'string',
|
|
27769
28624
|
SSLConnectionString: 'string',
|
|
27770
28625
|
SSLEnabled: 'string',
|
|
27771
28626
|
SSLExpireTime: 'string',
|
|
@@ -32658,6 +33513,72 @@ export default class Client extends OpenApi {
|
|
|
32658
33513
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
32659
33514
|
}
|
|
32660
33515
|
|
|
33516
|
+
/**
|
|
33517
|
+
* Cancels O\\&M events at a time.
|
|
33518
|
+
*
|
|
33519
|
+
* @param request - CancelActiveOperationTasksRequest
|
|
33520
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
33521
|
+
* @returns CancelActiveOperationTasksResponse
|
|
33522
|
+
*/
|
|
33523
|
+
async cancelActiveOperationTasksWithOptions(request: CancelActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<CancelActiveOperationTasksResponse> {
|
|
33524
|
+
Util.validateModel(request);
|
|
33525
|
+
let query = { };
|
|
33526
|
+
if (!Util.isUnset(request.ownerAccount)) {
|
|
33527
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
33528
|
+
}
|
|
33529
|
+
|
|
33530
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
33531
|
+
query["OwnerId"] = request.ownerId;
|
|
33532
|
+
}
|
|
33533
|
+
|
|
33534
|
+
if (!Util.isUnset(request.regionId)) {
|
|
33535
|
+
query["RegionId"] = request.regionId;
|
|
33536
|
+
}
|
|
33537
|
+
|
|
33538
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
33539
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
33540
|
+
}
|
|
33541
|
+
|
|
33542
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
33543
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
33544
|
+
}
|
|
33545
|
+
|
|
33546
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
33547
|
+
query["SecurityToken"] = request.securityToken;
|
|
33548
|
+
}
|
|
33549
|
+
|
|
33550
|
+
if (!Util.isUnset(request.taskIds)) {
|
|
33551
|
+
query["TaskIds"] = request.taskIds;
|
|
33552
|
+
}
|
|
33553
|
+
|
|
33554
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33555
|
+
query: OpenApiUtil.query(query),
|
|
33556
|
+
});
|
|
33557
|
+
let params = new $OpenApi.Params({
|
|
33558
|
+
action: "CancelActiveOperationTasks",
|
|
33559
|
+
version: "2017-08-01",
|
|
33560
|
+
protocol: "HTTPS",
|
|
33561
|
+
pathname: "/",
|
|
33562
|
+
method: "POST",
|
|
33563
|
+
authType: "AK",
|
|
33564
|
+
style: "RPC",
|
|
33565
|
+
reqBodyType: "formData",
|
|
33566
|
+
bodyType: "json",
|
|
33567
|
+
});
|
|
33568
|
+
return $tea.cast<CancelActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new CancelActiveOperationTasksResponse({}));
|
|
33569
|
+
}
|
|
33570
|
+
|
|
33571
|
+
/**
|
|
33572
|
+
* Cancels O\\&M events at a time.
|
|
33573
|
+
*
|
|
33574
|
+
* @param request - CancelActiveOperationTasksRequest
|
|
33575
|
+
* @returns CancelActiveOperationTasksResponse
|
|
33576
|
+
*/
|
|
33577
|
+
async cancelActiveOperationTasks(request: CancelActiveOperationTasksRequest): Promise<CancelActiveOperationTasksResponse> {
|
|
33578
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33579
|
+
return await this.cancelActiveOperationTasksWithOptions(request, runtime);
|
|
33580
|
+
}
|
|
33581
|
+
|
|
32661
33582
|
/**
|
|
32662
33583
|
* Cancels scheduled tasks that are not yet started.
|
|
32663
33584
|
*
|
|
@@ -33411,7 +34332,7 @@ export default class Client extends OpenApi {
|
|
|
33411
34332
|
}
|
|
33412
34333
|
|
|
33413
34334
|
/**
|
|
33414
|
-
*
|
|
34335
|
+
* CreateDBCluster.
|
|
33415
34336
|
*
|
|
33416
34337
|
* @param request - CreateDBClusterRequest
|
|
33417
34338
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33596,6 +34517,14 @@ export default class Client extends OpenApi {
|
|
|
33596
34517
|
query["StorageAutoScale"] = request.storageAutoScale;
|
|
33597
34518
|
}
|
|
33598
34519
|
|
|
34520
|
+
if (!Util.isUnset(request.storageEncryption)) {
|
|
34521
|
+
query["StorageEncryption"] = request.storageEncryption;
|
|
34522
|
+
}
|
|
34523
|
+
|
|
34524
|
+
if (!Util.isUnset(request.storageEncryptionKey)) {
|
|
34525
|
+
query["StorageEncryptionKey"] = request.storageEncryptionKey;
|
|
34526
|
+
}
|
|
34527
|
+
|
|
33599
34528
|
if (!Util.isUnset(request.storagePayType)) {
|
|
33600
34529
|
query["StoragePayType"] = request.storagePayType;
|
|
33601
34530
|
}
|
|
@@ -33624,6 +34553,10 @@ export default class Client extends OpenApi {
|
|
|
33624
34553
|
query["Tag"] = request.tag;
|
|
33625
34554
|
}
|
|
33626
34555
|
|
|
34556
|
+
if (!Util.isUnset(request.targetMinorVersion)) {
|
|
34557
|
+
query["TargetMinorVersion"] = request.targetMinorVersion;
|
|
34558
|
+
}
|
|
34559
|
+
|
|
33627
34560
|
if (!Util.isUnset(request.usedTime)) {
|
|
33628
34561
|
query["UsedTime"] = request.usedTime;
|
|
33629
34562
|
}
|
|
@@ -33658,7 +34591,7 @@ export default class Client extends OpenApi {
|
|
|
33658
34591
|
}
|
|
33659
34592
|
|
|
33660
34593
|
/**
|
|
33661
|
-
*
|
|
34594
|
+
* CreateDBCluster.
|
|
33662
34595
|
*
|
|
33663
34596
|
* @param request - CreateDBClusterRequest
|
|
33664
34597
|
* @returns CreateDBClusterResponse
|
|
@@ -35507,7 +36440,7 @@ export default class Client extends OpenApi {
|
|
|
35507
36440
|
}
|
|
35508
36441
|
|
|
35509
36442
|
/**
|
|
35510
|
-
*
|
|
36443
|
+
* Queries the details of an activation code.
|
|
35511
36444
|
*
|
|
35512
36445
|
* @param request - DescribeActivationCodeDetailsRequest
|
|
35513
36446
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35558,7 +36491,7 @@ export default class Client extends OpenApi {
|
|
|
35558
36491
|
}
|
|
35559
36492
|
|
|
35560
36493
|
/**
|
|
35561
|
-
*
|
|
36494
|
+
* Queries the details of an activation code.
|
|
35562
36495
|
*
|
|
35563
36496
|
* @param request - DescribeActivationCodeDetailsRequest
|
|
35564
36497
|
* @returns DescribeActivationCodeDetailsResponse
|
|
@@ -35634,6 +36567,104 @@ export default class Client extends OpenApi {
|
|
|
35634
36567
|
return await this.describeActivationCodesWithOptions(request, runtime);
|
|
35635
36568
|
}
|
|
35636
36569
|
|
|
36570
|
+
/**
|
|
36571
|
+
* 用户侧查询运维任务
|
|
36572
|
+
*
|
|
36573
|
+
* @param request - DescribeActiveOperationTasksRequest
|
|
36574
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
36575
|
+
* @returns DescribeActiveOperationTasksResponse
|
|
36576
|
+
*/
|
|
36577
|
+
async describeActiveOperationTasksWithOptions(request: DescribeActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTasksResponse> {
|
|
36578
|
+
Util.validateModel(request);
|
|
36579
|
+
let query = { };
|
|
36580
|
+
if (!Util.isUnset(request.allowCancel)) {
|
|
36581
|
+
query["AllowCancel"] = request.allowCancel;
|
|
36582
|
+
}
|
|
36583
|
+
|
|
36584
|
+
if (!Util.isUnset(request.allowChange)) {
|
|
36585
|
+
query["AllowChange"] = request.allowChange;
|
|
36586
|
+
}
|
|
36587
|
+
|
|
36588
|
+
if (!Util.isUnset(request.changeLevel)) {
|
|
36589
|
+
query["ChangeLevel"] = request.changeLevel;
|
|
36590
|
+
}
|
|
36591
|
+
|
|
36592
|
+
if (!Util.isUnset(request.DBClusterId)) {
|
|
36593
|
+
query["DBClusterId"] = request.DBClusterId;
|
|
36594
|
+
}
|
|
36595
|
+
|
|
36596
|
+
if (!Util.isUnset(request.DBType)) {
|
|
36597
|
+
query["DBType"] = request.DBType;
|
|
36598
|
+
}
|
|
36599
|
+
|
|
36600
|
+
if (!Util.isUnset(request.ownerAccount)) {
|
|
36601
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
36602
|
+
}
|
|
36603
|
+
|
|
36604
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
36605
|
+
query["OwnerId"] = request.ownerId;
|
|
36606
|
+
}
|
|
36607
|
+
|
|
36608
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
36609
|
+
query["PageNumber"] = request.pageNumber;
|
|
36610
|
+
}
|
|
36611
|
+
|
|
36612
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
36613
|
+
query["PageSize"] = request.pageSize;
|
|
36614
|
+
}
|
|
36615
|
+
|
|
36616
|
+
if (!Util.isUnset(request.regionId)) {
|
|
36617
|
+
query["RegionId"] = request.regionId;
|
|
36618
|
+
}
|
|
36619
|
+
|
|
36620
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
36621
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
36622
|
+
}
|
|
36623
|
+
|
|
36624
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
36625
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
36626
|
+
}
|
|
36627
|
+
|
|
36628
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
36629
|
+
query["SecurityToken"] = request.securityToken;
|
|
36630
|
+
}
|
|
36631
|
+
|
|
36632
|
+
if (!Util.isUnset(request.status)) {
|
|
36633
|
+
query["Status"] = request.status;
|
|
36634
|
+
}
|
|
36635
|
+
|
|
36636
|
+
if (!Util.isUnset(request.taskType)) {
|
|
36637
|
+
query["TaskType"] = request.taskType;
|
|
36638
|
+
}
|
|
36639
|
+
|
|
36640
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36641
|
+
query: OpenApiUtil.query(query),
|
|
36642
|
+
});
|
|
36643
|
+
let params = new $OpenApi.Params({
|
|
36644
|
+
action: "DescribeActiveOperationTasks",
|
|
36645
|
+
version: "2017-08-01",
|
|
36646
|
+
protocol: "HTTPS",
|
|
36647
|
+
pathname: "/",
|
|
36648
|
+
method: "POST",
|
|
36649
|
+
authType: "AK",
|
|
36650
|
+
style: "RPC",
|
|
36651
|
+
reqBodyType: "formData",
|
|
36652
|
+
bodyType: "json",
|
|
36653
|
+
});
|
|
36654
|
+
return $tea.cast<DescribeActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new DescribeActiveOperationTasksResponse({}));
|
|
36655
|
+
}
|
|
36656
|
+
|
|
36657
|
+
/**
|
|
36658
|
+
* 用户侧查询运维任务
|
|
36659
|
+
*
|
|
36660
|
+
* @param request - DescribeActiveOperationTasksRequest
|
|
36661
|
+
* @returns DescribeActiveOperationTasksResponse
|
|
36662
|
+
*/
|
|
36663
|
+
async describeActiveOperationTasks(request: DescribeActiveOperationTasksRequest): Promise<DescribeActiveOperationTasksResponse> {
|
|
36664
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36665
|
+
return await this.describeActiveOperationTasksWithOptions(request, runtime);
|
|
36666
|
+
}
|
|
36667
|
+
|
|
35637
36668
|
/**
|
|
35638
36669
|
* Queries the auto-renewal attributes of a subscription PolarDB cluster.
|
|
35639
36670
|
*
|
|
@@ -36861,7 +37892,7 @@ export default class Client extends OpenApi {
|
|
|
36861
37892
|
}
|
|
36862
37893
|
|
|
36863
37894
|
/**
|
|
36864
|
-
*
|
|
37895
|
+
* Query serverless configuration.
|
|
36865
37896
|
*
|
|
36866
37897
|
* @param request - DescribeDBClusterServerlessConfRequest
|
|
36867
37898
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -36908,7 +37939,7 @@ export default class Client extends OpenApi {
|
|
|
36908
37939
|
}
|
|
36909
37940
|
|
|
36910
37941
|
/**
|
|
36911
|
-
*
|
|
37942
|
+
* Query serverless configuration.
|
|
36912
37943
|
*
|
|
36913
37944
|
* @param request - DescribeDBClusterServerlessConfRequest
|
|
36914
37945
|
* @returns DescribeDBClusterServerlessConfResponse
|
|
@@ -38127,7 +39158,7 @@ export default class Client extends OpenApi {
|
|
|
38127
39158
|
}
|
|
38128
39159
|
|
|
38129
39160
|
/**
|
|
38130
|
-
*
|
|
39161
|
+
* Queries the information of a license order.
|
|
38131
39162
|
*
|
|
38132
39163
|
* @param request - DescribeLicenseOrderDetailsRequest
|
|
38133
39164
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38174,7 +39205,7 @@ export default class Client extends OpenApi {
|
|
|
38174
39205
|
}
|
|
38175
39206
|
|
|
38176
39207
|
/**
|
|
38177
|
-
*
|
|
39208
|
+
* Queries the information of a license order.
|
|
38178
39209
|
*
|
|
38179
39210
|
* @param request - DescribeLicenseOrderDetailsRequest
|
|
38180
39211
|
* @returns DescribeLicenseOrderDetailsResponse
|
|
@@ -40174,6 +41205,80 @@ export default class Client extends OpenApi {
|
|
|
40174
41205
|
return await this.modifyAccountPasswordWithOptions(request, runtime);
|
|
40175
41206
|
}
|
|
40176
41207
|
|
|
41208
|
+
/**
|
|
41209
|
+
* Modifies the switching time of scheduled O\\&M events for an instance.
|
|
41210
|
+
*
|
|
41211
|
+
* @param request - ModifyActiveOperationTasksRequest
|
|
41212
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
41213
|
+
* @returns ModifyActiveOperationTasksResponse
|
|
41214
|
+
*/
|
|
41215
|
+
async modifyActiveOperationTasksWithOptions(request: ModifyActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationTasksResponse> {
|
|
41216
|
+
Util.validateModel(request);
|
|
41217
|
+
let query = { };
|
|
41218
|
+
if (!Util.isUnset(request.immediateStart)) {
|
|
41219
|
+
query["ImmediateStart"] = request.immediateStart;
|
|
41220
|
+
}
|
|
41221
|
+
|
|
41222
|
+
if (!Util.isUnset(request.ownerAccount)) {
|
|
41223
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
41224
|
+
}
|
|
41225
|
+
|
|
41226
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
41227
|
+
query["OwnerId"] = request.ownerId;
|
|
41228
|
+
}
|
|
41229
|
+
|
|
41230
|
+
if (!Util.isUnset(request.regionId)) {
|
|
41231
|
+
query["RegionId"] = request.regionId;
|
|
41232
|
+
}
|
|
41233
|
+
|
|
41234
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
41235
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
41236
|
+
}
|
|
41237
|
+
|
|
41238
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
41239
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
41240
|
+
}
|
|
41241
|
+
|
|
41242
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
41243
|
+
query["SecurityToken"] = request.securityToken;
|
|
41244
|
+
}
|
|
41245
|
+
|
|
41246
|
+
if (!Util.isUnset(request.switchTime)) {
|
|
41247
|
+
query["SwitchTime"] = request.switchTime;
|
|
41248
|
+
}
|
|
41249
|
+
|
|
41250
|
+
if (!Util.isUnset(request.taskIds)) {
|
|
41251
|
+
query["TaskIds"] = request.taskIds;
|
|
41252
|
+
}
|
|
41253
|
+
|
|
41254
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41255
|
+
query: OpenApiUtil.query(query),
|
|
41256
|
+
});
|
|
41257
|
+
let params = new $OpenApi.Params({
|
|
41258
|
+
action: "ModifyActiveOperationTasks",
|
|
41259
|
+
version: "2017-08-01",
|
|
41260
|
+
protocol: "HTTPS",
|
|
41261
|
+
pathname: "/",
|
|
41262
|
+
method: "POST",
|
|
41263
|
+
authType: "AK",
|
|
41264
|
+
style: "RPC",
|
|
41265
|
+
reqBodyType: "formData",
|
|
41266
|
+
bodyType: "json",
|
|
41267
|
+
});
|
|
41268
|
+
return $tea.cast<ModifyActiveOperationTasksResponse>(await this.callApi(params, req, runtime), new ModifyActiveOperationTasksResponse({}));
|
|
41269
|
+
}
|
|
41270
|
+
|
|
41271
|
+
/**
|
|
41272
|
+
* Modifies the switching time of scheduled O\\&M events for an instance.
|
|
41273
|
+
*
|
|
41274
|
+
* @param request - ModifyActiveOperationTasksRequest
|
|
41275
|
+
* @returns ModifyActiveOperationTasksResponse
|
|
41276
|
+
*/
|
|
41277
|
+
async modifyActiveOperationTasks(request: ModifyActiveOperationTasksRequest): Promise<ModifyActiveOperationTasksResponse> {
|
|
41278
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41279
|
+
return await this.modifyActiveOperationTasksWithOptions(request, runtime);
|
|
41280
|
+
}
|
|
41281
|
+
|
|
40177
41282
|
/**
|
|
40178
41283
|
* Modifies the auto-renewal attributes of a subscription PolarDB cluster.
|
|
40179
41284
|
*
|
|
@@ -40594,6 +41699,10 @@ export default class Client extends OpenApi {
|
|
|
40594
41699
|
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
40595
41700
|
}
|
|
40596
41701
|
|
|
41702
|
+
if (!Util.isUnset(request.standbyClusterIdListNeedToSync)) {
|
|
41703
|
+
query["StandbyClusterIdListNeedToSync"] = request.standbyClusterIdListNeedToSync;
|
|
41704
|
+
}
|
|
41705
|
+
|
|
40597
41706
|
let req = new $OpenApi.OpenApiRequest({
|
|
40598
41707
|
query: OpenApiUtil.query(query),
|
|
40599
41708
|
});
|
|
@@ -41989,7 +43098,7 @@ export default class Client extends OpenApi {
|
|
|
41989
43098
|
}
|
|
41990
43099
|
|
|
41991
43100
|
/**
|
|
41992
|
-
* Enables or disables the hot
|
|
43101
|
+
* Enables or disables the failover with hot replica feature for a node in a cluster.
|
|
41993
43102
|
*
|
|
41994
43103
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
41995
43104
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -42044,7 +43153,7 @@ export default class Client extends OpenApi {
|
|
|
42044
43153
|
}
|
|
42045
43154
|
|
|
42046
43155
|
/**
|
|
42047
|
-
* Enables or disables the hot
|
|
43156
|
+
* Enables or disables the failover with hot replica feature for a node in a cluster.
|
|
42048
43157
|
*
|
|
42049
43158
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
42050
43159
|
* @returns ModifyDBNodeHotReplicaModeResponse
|