tencentcloud-sdk-nodejs-intl-en 3.0.1009 → 3.0.1011
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/package.json +1 -1
- package/tencentcloud/car/v20220110/car_client.js +235 -32
- package/tencentcloud/car/v20220110/models.js +1894 -114
- package/tencentcloud/cdwdoris/v20211228/cdwdoris_client.js +213 -48
- package/tencentcloud/cdwdoris/v20211228/models.js +2265 -741
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/mdl/v20200326/models.js +6 -2
|
@@ -139,30 +139,25 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* DescribeInstanceNodes response structure.
|
|
143
143
|
* @class
|
|
144
144
|
*/
|
|
145
|
-
class
|
|
145
|
+
class DescribeInstanceNodesResponse extends AbstractModel {
|
|
146
146
|
constructor(){
|
|
147
147
|
super();
|
|
148
148
|
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
151
|
-
* @type {
|
|
152
|
-
*/
|
|
153
|
-
this.FlowId = null;
|
|
154
|
-
|
|
155
|
-
/**
|
|
156
|
-
* Instance ID
|
|
157
|
-
* @type {string || null}
|
|
150
|
+
* Total number
|
|
151
|
+
* @type {number || null}
|
|
158
152
|
*/
|
|
159
|
-
this.
|
|
153
|
+
this.TotalCount = null;
|
|
160
154
|
|
|
161
155
|
/**
|
|
162
|
-
*
|
|
163
|
-
|
|
156
|
+
* Total number of instance nodes
|
|
157
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
158
|
+
* @type {Array.<InstanceNode> || null}
|
|
164
159
|
*/
|
|
165
|
-
this.
|
|
160
|
+
this.InstanceNodesList = null;
|
|
166
161
|
|
|
167
162
|
/**
|
|
168
163
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -179,27 +174,46 @@ class CreateInstanceNewResponse extends AbstractModel {
|
|
|
179
174
|
if (!params) {
|
|
180
175
|
return;
|
|
181
176
|
}
|
|
182
|
-
this.
|
|
183
|
-
|
|
184
|
-
|
|
177
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
178
|
+
|
|
179
|
+
if (params.InstanceNodesList) {
|
|
180
|
+
this.InstanceNodesList = new Array();
|
|
181
|
+
for (let z in params.InstanceNodesList) {
|
|
182
|
+
let obj = new InstanceNode();
|
|
183
|
+
obj.deserialize(params.InstanceNodesList[z]);
|
|
184
|
+
this.InstanceNodesList.push(obj);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
185
187
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
186
188
|
|
|
187
189
|
}
|
|
188
190
|
}
|
|
189
191
|
|
|
190
192
|
/**
|
|
191
|
-
*
|
|
193
|
+
* DescribeClusterConfigsHistory response structure.
|
|
192
194
|
* @class
|
|
193
195
|
*/
|
|
194
|
-
class
|
|
196
|
+
class DescribeClusterConfigsHistoryResponse extends AbstractModel {
|
|
195
197
|
constructor(){
|
|
196
198
|
super();
|
|
197
199
|
|
|
198
200
|
/**
|
|
199
|
-
*
|
|
201
|
+
* Total number of instances
|
|
202
|
+
* @type {number || null}
|
|
203
|
+
*/
|
|
204
|
+
this.TotalCount = null;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Modification history of the configuration file
|
|
208
|
+
* @type {Array.<ClusterConfigsHistory> || null}
|
|
209
|
+
*/
|
|
210
|
+
this.ClusterConfHistory = null;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
200
214
|
* @type {string || null}
|
|
201
215
|
*/
|
|
202
|
-
this.
|
|
216
|
+
this.RequestId = null;
|
|
203
217
|
|
|
204
218
|
}
|
|
205
219
|
|
|
@@ -210,7 +224,17 @@ class DescribeInstanceStateRequest extends AbstractModel {
|
|
|
210
224
|
if (!params) {
|
|
211
225
|
return;
|
|
212
226
|
}
|
|
213
|
-
this.
|
|
227
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
228
|
+
|
|
229
|
+
if (params.ClusterConfHistory) {
|
|
230
|
+
this.ClusterConfHistory = new Array();
|
|
231
|
+
for (let z in params.ClusterConfHistory) {
|
|
232
|
+
let obj = new ClusterConfigsHistory();
|
|
233
|
+
obj.deserialize(params.ClusterConfHistory[z]);
|
|
234
|
+
this.ClusterConfHistory.push(obj);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
214
238
|
|
|
215
239
|
}
|
|
216
240
|
}
|
|
@@ -545,42 +569,18 @@ class ModifyUserPrivilegesV3Request extends AbstractModel {
|
|
|
545
569
|
}
|
|
546
570
|
|
|
547
571
|
/**
|
|
548
|
-
*
|
|
572
|
+
* DestroyInstance request structure.
|
|
549
573
|
* @class
|
|
550
574
|
*/
|
|
551
|
-
class
|
|
575
|
+
class DestroyInstanceRequest extends AbstractModel {
|
|
552
576
|
constructor(){
|
|
553
577
|
super();
|
|
554
578
|
|
|
555
579
|
/**
|
|
556
|
-
*
|
|
557
|
-
* @type {number || null}
|
|
558
|
-
*/
|
|
559
|
-
this.TotalCount = null;
|
|
560
|
-
|
|
561
|
-
/**
|
|
562
|
-
* Field name array of query results
|
|
563
|
-
* @type {Array.<string> || null}
|
|
564
|
-
*/
|
|
565
|
-
this.Fields = null;
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Field type array of query results
|
|
569
|
-
* @type {Array.<string> || null}
|
|
570
|
-
*/
|
|
571
|
-
this.FieldTypes = null;
|
|
572
|
-
|
|
573
|
-
/**
|
|
574
|
-
* Returned data record array. Each element is an array, containing the value of the corresponding field.
|
|
575
|
-
* @type {Array.<Rows> || null}
|
|
576
|
-
*/
|
|
577
|
-
this.Rows = null;
|
|
578
|
-
|
|
579
|
-
/**
|
|
580
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
580
|
+
* Cluster ID
|
|
581
581
|
* @type {string || null}
|
|
582
582
|
*/
|
|
583
|
-
this.
|
|
583
|
+
this.InstanceId = null;
|
|
584
584
|
|
|
585
585
|
}
|
|
586
586
|
|
|
@@ -591,19 +591,7 @@ class ExecuteSelectQueryResponse extends AbstractModel {
|
|
|
591
591
|
if (!params) {
|
|
592
592
|
return;
|
|
593
593
|
}
|
|
594
|
-
this.
|
|
595
|
-
this.Fields = 'Fields' in params ? params.Fields : null;
|
|
596
|
-
this.FieldTypes = 'FieldTypes' in params ? params.FieldTypes : null;
|
|
597
|
-
|
|
598
|
-
if (params.Rows) {
|
|
599
|
-
this.Rows = new Array();
|
|
600
|
-
for (let z in params.Rows) {
|
|
601
|
-
let obj = new Rows();
|
|
602
|
-
obj.deserialize(params.Rows[z]);
|
|
603
|
-
this.Rows.push(obj);
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
594
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
607
595
|
|
|
608
596
|
}
|
|
609
597
|
}
|
|
@@ -1037,6 +1025,35 @@ class InsertDatasToTableRequest extends AbstractModel {
|
|
|
1037
1025
|
}
|
|
1038
1026
|
}
|
|
1039
1027
|
|
|
1028
|
+
/**
|
|
1029
|
+
* Detail field of the Instance table
|
|
1030
|
+
* @class
|
|
1031
|
+
*/
|
|
1032
|
+
class InstanceDetail extends AbstractModel {
|
|
1033
|
+
constructor(){
|
|
1034
|
+
super();
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* Whether the alarm policy is available
|
|
1038
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1039
|
+
* @type {boolean || null}
|
|
1040
|
+
*/
|
|
1041
|
+
this.EnableAlarmStrategy = null;
|
|
1042
|
+
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
/**
|
|
1046
|
+
* @private
|
|
1047
|
+
*/
|
|
1048
|
+
deserialize(params) {
|
|
1049
|
+
if (!params) {
|
|
1050
|
+
return;
|
|
1051
|
+
}
|
|
1052
|
+
this.EnableAlarmStrategy = 'EnableAlarmStrategy' in params ? params.EnableAlarmStrategy : null;
|
|
1053
|
+
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1040
1057
|
/**
|
|
1041
1058
|
* ModifyDatabaseTableAccess request structure.
|
|
1042
1059
|
* @class
|
|
@@ -1251,6 +1268,55 @@ class ReduceInstanceResponse extends AbstractModel {
|
|
|
1251
1268
|
}
|
|
1252
1269
|
}
|
|
1253
1270
|
|
|
1271
|
+
/**
|
|
1272
|
+
* ModifyCoolDownPolicy request structure.
|
|
1273
|
+
* @class
|
|
1274
|
+
*/
|
|
1275
|
+
class ModifyCoolDownPolicyRequest extends AbstractModel {
|
|
1276
|
+
constructor(){
|
|
1277
|
+
super();
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* Cluster ID
|
|
1281
|
+
* @type {string || null}
|
|
1282
|
+
*/
|
|
1283
|
+
this.InstanceId = null;
|
|
1284
|
+
|
|
1285
|
+
/**
|
|
1286
|
+
* Policy name
|
|
1287
|
+
* @type {string || null}
|
|
1288
|
+
*/
|
|
1289
|
+
this.PolicyName = null;
|
|
1290
|
+
|
|
1291
|
+
/**
|
|
1292
|
+
* cooldown_ttl
|
|
1293
|
+
* @type {string || null}
|
|
1294
|
+
*/
|
|
1295
|
+
this.CoolDownTtl = null;
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* cooldown_datetime
|
|
1299
|
+
* @type {string || null}
|
|
1300
|
+
*/
|
|
1301
|
+
this.CoolDownDatetime = null;
|
|
1302
|
+
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
/**
|
|
1306
|
+
* @private
|
|
1307
|
+
*/
|
|
1308
|
+
deserialize(params) {
|
|
1309
|
+
if (!params) {
|
|
1310
|
+
return;
|
|
1311
|
+
}
|
|
1312
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1313
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
1314
|
+
this.CoolDownTtl = 'CoolDownTtl' in params ? params.CoolDownTtl : null;
|
|
1315
|
+
this.CoolDownDatetime = 'CoolDownDatetime' in params ? params.CoolDownDatetime : null;
|
|
1316
|
+
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1254
1320
|
/**
|
|
1255
1321
|
* DescribeBackUpTaskDetail request structure.
|
|
1256
1322
|
* @class
|
|
@@ -1552,6 +1618,53 @@ class DescribeUserBindWorkloadGroupResponse extends AbstractModel {
|
|
|
1552
1618
|
}
|
|
1553
1619
|
}
|
|
1554
1620
|
|
|
1621
|
+
/**
|
|
1622
|
+
* DDL information for creating a table
|
|
1623
|
+
* @class
|
|
1624
|
+
*/
|
|
1625
|
+
class CreateTablesDDL extends AbstractModel {
|
|
1626
|
+
constructor(){
|
|
1627
|
+
super();
|
|
1628
|
+
|
|
1629
|
+
/**
|
|
1630
|
+
* Database name
|
|
1631
|
+
|
|
1632
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1633
|
+
* @type {string || null}
|
|
1634
|
+
*/
|
|
1635
|
+
this.DbName = null;
|
|
1636
|
+
|
|
1637
|
+
/**
|
|
1638
|
+
* DDL information of the table
|
|
1639
|
+
|
|
1640
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1641
|
+
* @type {Array.<TablesDDL> || null}
|
|
1642
|
+
*/
|
|
1643
|
+
this.TablesDDLs = null;
|
|
1644
|
+
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
/**
|
|
1648
|
+
* @private
|
|
1649
|
+
*/
|
|
1650
|
+
deserialize(params) {
|
|
1651
|
+
if (!params) {
|
|
1652
|
+
return;
|
|
1653
|
+
}
|
|
1654
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
1655
|
+
|
|
1656
|
+
if (params.TablesDDLs) {
|
|
1657
|
+
this.TablesDDLs = new Array();
|
|
1658
|
+
for (let z in params.TablesDDLs) {
|
|
1659
|
+
let obj = new TablesDDL();
|
|
1660
|
+
obj.deserialize(params.TablesDDLs[z]);
|
|
1661
|
+
this.TablesDDLs.push(obj);
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
}
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1555
1668
|
/**
|
|
1556
1669
|
* ScaleOutInstance request structure.
|
|
1557
1670
|
* @class
|
|
@@ -1629,6 +1742,56 @@ class UpdateUserPrivileges extends AbstractModel {
|
|
|
1629
1742
|
}
|
|
1630
1743
|
}
|
|
1631
1744
|
|
|
1745
|
+
/**
|
|
1746
|
+
* ModifyClusterConfigs request structure.
|
|
1747
|
+
* @class
|
|
1748
|
+
*/
|
|
1749
|
+
class ModifyClusterConfigsRequest extends AbstractModel {
|
|
1750
|
+
constructor(){
|
|
1751
|
+
super();
|
|
1752
|
+
|
|
1753
|
+
/**
|
|
1754
|
+
* Cluster ID, for example, cdwch-xxxx
|
|
1755
|
+
* @type {string || null}
|
|
1756
|
+
*/
|
|
1757
|
+
this.InstanceId = null;
|
|
1758
|
+
|
|
1759
|
+
/**
|
|
1760
|
+
* Configuration file modification information
|
|
1761
|
+
* @type {Array.<ConfigSubmitContext> || null}
|
|
1762
|
+
*/
|
|
1763
|
+
this.ModifyConfContext = null;
|
|
1764
|
+
|
|
1765
|
+
/**
|
|
1766
|
+
* Reason for modification
|
|
1767
|
+
* @type {string || null}
|
|
1768
|
+
*/
|
|
1769
|
+
this.Remark = null;
|
|
1770
|
+
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
/**
|
|
1774
|
+
* @private
|
|
1775
|
+
*/
|
|
1776
|
+
deserialize(params) {
|
|
1777
|
+
if (!params) {
|
|
1778
|
+
return;
|
|
1779
|
+
}
|
|
1780
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1781
|
+
|
|
1782
|
+
if (params.ModifyConfContext) {
|
|
1783
|
+
this.ModifyConfContext = new Array();
|
|
1784
|
+
for (let z in params.ModifyConfContext) {
|
|
1785
|
+
let obj = new ConfigSubmitContext();
|
|
1786
|
+
obj.deserialize(params.ModifyConfContext[z]);
|
|
1787
|
+
this.ModifyConfContext.push(obj);
|
|
1788
|
+
}
|
|
1789
|
+
}
|
|
1790
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
1791
|
+
|
|
1792
|
+
}
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1632
1795
|
/**
|
|
1633
1796
|
* DescribeQueryAnalyse request structure.
|
|
1634
1797
|
* @class
|
|
@@ -1728,30 +1891,18 @@ class DescribeQueryAnalyseRequest extends AbstractModel {
|
|
|
1728
1891
|
}
|
|
1729
1892
|
|
|
1730
1893
|
/**
|
|
1731
|
-
*
|
|
1894
|
+
* DescribeInstanceState request structure.
|
|
1732
1895
|
* @class
|
|
1733
1896
|
*/
|
|
1734
|
-
class
|
|
1897
|
+
class DescribeInstanceStateRequest extends AbstractModel {
|
|
1735
1898
|
constructor(){
|
|
1736
1899
|
super();
|
|
1737
1900
|
|
|
1738
1901
|
/**
|
|
1739
|
-
*
|
|
1740
|
-
* @type {number || null}
|
|
1741
|
-
*/
|
|
1742
|
-
this.TotalCount = null;
|
|
1743
|
-
|
|
1744
|
-
/**
|
|
1745
|
-
* Modification history of the configuration file
|
|
1746
|
-
* @type {Array.<ClusterConfigsHistory> || null}
|
|
1747
|
-
*/
|
|
1748
|
-
this.ClusterConfHistory = null;
|
|
1749
|
-
|
|
1750
|
-
/**
|
|
1751
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1902
|
+
* Cluster instance name
|
|
1752
1903
|
* @type {string || null}
|
|
1753
1904
|
*/
|
|
1754
|
-
this.
|
|
1905
|
+
this.InstanceId = null;
|
|
1755
1906
|
|
|
1756
1907
|
}
|
|
1757
1908
|
|
|
@@ -1762,17 +1913,7 @@ class DescribeClusterConfigsHistoryResponse extends AbstractModel {
|
|
|
1762
1913
|
if (!params) {
|
|
1763
1914
|
return;
|
|
1764
1915
|
}
|
|
1765
|
-
this.
|
|
1766
|
-
|
|
1767
|
-
if (params.ClusterConfHistory) {
|
|
1768
|
-
this.ClusterConfHistory = new Array();
|
|
1769
|
-
for (let z in params.ClusterConfHistory) {
|
|
1770
|
-
let obj = new ClusterConfigsHistory();
|
|
1771
|
-
obj.deserialize(params.ClusterConfHistory[z]);
|
|
1772
|
-
this.ClusterConfHistory.push(obj);
|
|
1773
|
-
}
|
|
1774
|
-
}
|
|
1775
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1916
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1776
1917
|
|
|
1777
1918
|
}
|
|
1778
1919
|
}
|
|
@@ -1873,26 +2014,32 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1873
2014
|
}
|
|
1874
2015
|
|
|
1875
2016
|
/**
|
|
1876
|
-
*
|
|
2017
|
+
* DescribeAreaRegion response structure.
|
|
1877
2018
|
* @class
|
|
1878
2019
|
*/
|
|
1879
|
-
class
|
|
2020
|
+
class DescribeAreaRegionResponse extends AbstractModel {
|
|
1880
2021
|
constructor(){
|
|
1881
2022
|
super();
|
|
1882
2023
|
|
|
1883
2024
|
/**
|
|
1884
|
-
*
|
|
2025
|
+
* Region list
|
|
2026
|
+
* @type {Array.<RegionAreaInfo> || null}
|
|
2027
|
+
*/
|
|
2028
|
+
this.Items = null;
|
|
2029
|
+
|
|
2030
|
+
/**
|
|
2031
|
+
* Front-end rule description
|
|
1885
2032
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1886
|
-
* @type {Array.<
|
|
2033
|
+
* @type {Array.<FrontEndRule> || null}
|
|
1887
2034
|
*/
|
|
1888
|
-
this.
|
|
2035
|
+
this.FrontEndRules = null;
|
|
1889
2036
|
|
|
1890
2037
|
/**
|
|
1891
|
-
*
|
|
2038
|
+
* Return available allowlist names
|
|
1892
2039
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1893
|
-
* @type {string || null}
|
|
2040
|
+
* @type {Array.<string> || null}
|
|
1894
2041
|
*/
|
|
1895
|
-
this.
|
|
2042
|
+
this.AvailableWhiteListNames = null;
|
|
1896
2043
|
|
|
1897
2044
|
/**
|
|
1898
2045
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -1910,15 +2057,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1910
2057
|
return;
|
|
1911
2058
|
}
|
|
1912
2059
|
|
|
1913
|
-
if (params.
|
|
1914
|
-
this.
|
|
1915
|
-
for (let z in params.
|
|
1916
|
-
let obj = new
|
|
1917
|
-
obj.deserialize(params.
|
|
1918
|
-
this.
|
|
2060
|
+
if (params.Items) {
|
|
2061
|
+
this.Items = new Array();
|
|
2062
|
+
for (let z in params.Items) {
|
|
2063
|
+
let obj = new RegionAreaInfo();
|
|
2064
|
+
obj.deserialize(params.Items[z]);
|
|
2065
|
+
this.Items.push(obj);
|
|
1919
2066
|
}
|
|
1920
2067
|
}
|
|
1921
|
-
|
|
2068
|
+
|
|
2069
|
+
if (params.FrontEndRules) {
|
|
2070
|
+
this.FrontEndRules = new Array();
|
|
2071
|
+
for (let z in params.FrontEndRules) {
|
|
2072
|
+
let obj = new FrontEndRule();
|
|
2073
|
+
obj.deserialize(params.FrontEndRules[z]);
|
|
2074
|
+
this.FrontEndRules.push(obj);
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
this.AvailableWhiteListNames = 'AvailableWhiteListNames' in params ? params.AvailableWhiteListNames : null;
|
|
1922
2078
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1923
2079
|
|
|
1924
2080
|
}
|
|
@@ -1945,7 +2101,7 @@ class DeleteBackUpDataRequest extends AbstractModel {
|
|
|
1945
2101
|
this.BackUpJobId = null;
|
|
1946
2102
|
|
|
1947
2103
|
/**
|
|
1948
|
-
* Whether to delete all
|
|
2104
|
+
* Whether to delete all instances
|
|
1949
2105
|
* @type {boolean || null}
|
|
1950
2106
|
*/
|
|
1951
2107
|
this.IsDeleteAll = null;
|
|
@@ -2239,6 +2395,106 @@ class ResizeDiskResponse extends AbstractModel {
|
|
|
2239
2395
|
}
|
|
2240
2396
|
}
|
|
2241
2397
|
|
|
2398
|
+
/**
|
|
2399
|
+
* OpenCoolDown request structure.
|
|
2400
|
+
* @class
|
|
2401
|
+
*/
|
|
2402
|
+
class OpenCoolDownRequest extends AbstractModel {
|
|
2403
|
+
constructor(){
|
|
2404
|
+
super();
|
|
2405
|
+
|
|
2406
|
+
/**
|
|
2407
|
+
* Cluster ID
|
|
2408
|
+
* @type {string || null}
|
|
2409
|
+
*/
|
|
2410
|
+
this.InstanceId = null;
|
|
2411
|
+
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* @private
|
|
2416
|
+
*/
|
|
2417
|
+
deserialize(params) {
|
|
2418
|
+
if (!params) {
|
|
2419
|
+
return;
|
|
2420
|
+
}
|
|
2421
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2422
|
+
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
/**
|
|
2427
|
+
* DescribeCoolDownTableData request structure.
|
|
2428
|
+
* @class
|
|
2429
|
+
*/
|
|
2430
|
+
class DescribeCoolDownTableDataRequest extends AbstractModel {
|
|
2431
|
+
constructor(){
|
|
2432
|
+
super();
|
|
2433
|
+
|
|
2434
|
+
/**
|
|
2435
|
+
* Cluster ID
|
|
2436
|
+
* @type {string || null}
|
|
2437
|
+
*/
|
|
2438
|
+
this.InstanceId = null;
|
|
2439
|
+
|
|
2440
|
+
/**
|
|
2441
|
+
* Database name
|
|
2442
|
+
* @type {string || null}
|
|
2443
|
+
*/
|
|
2444
|
+
this.DatabaseName = null;
|
|
2445
|
+
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
/**
|
|
2449
|
+
* @private
|
|
2450
|
+
*/
|
|
2451
|
+
deserialize(params) {
|
|
2452
|
+
if (!params) {
|
|
2453
|
+
return;
|
|
2454
|
+
}
|
|
2455
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2456
|
+
this.DatabaseName = 'DatabaseName' in params ? params.DatabaseName : null;
|
|
2457
|
+
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
/**
|
|
2462
|
+
* CheckCoolDownWorkingVariableConfigCorrect response structure.
|
|
2463
|
+
* @class
|
|
2464
|
+
*/
|
|
2465
|
+
class CheckCoolDownWorkingVariableConfigCorrectResponse extends AbstractModel {
|
|
2466
|
+
constructor(){
|
|
2467
|
+
super();
|
|
2468
|
+
|
|
2469
|
+
/**
|
|
2470
|
+
* Error message
|
|
2471
|
+
|
|
2472
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2473
|
+
* @type {string || null}
|
|
2474
|
+
*/
|
|
2475
|
+
this.ErrorMsg = null;
|
|
2476
|
+
|
|
2477
|
+
/**
|
|
2478
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2479
|
+
* @type {string || null}
|
|
2480
|
+
*/
|
|
2481
|
+
this.RequestId = null;
|
|
2482
|
+
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
/**
|
|
2486
|
+
* @private
|
|
2487
|
+
*/
|
|
2488
|
+
deserialize(params) {
|
|
2489
|
+
if (!params) {
|
|
2490
|
+
return;
|
|
2491
|
+
}
|
|
2492
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
2493
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2494
|
+
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2242
2498
|
/**
|
|
2243
2499
|
* ModifyInstance response structure.
|
|
2244
2500
|
* @class
|
|
@@ -2373,32 +2629,26 @@ class DescribeSlowQueryRecordsDownloadRequest extends AbstractModel {
|
|
|
2373
2629
|
}
|
|
2374
2630
|
|
|
2375
2631
|
/**
|
|
2376
|
-
*
|
|
2632
|
+
* DescribeRestoreTaskDetail response structure.
|
|
2377
2633
|
* @class
|
|
2378
2634
|
*/
|
|
2379
|
-
class
|
|
2635
|
+
class DescribeRestoreTaskDetailResponse extends AbstractModel {
|
|
2380
2636
|
constructor(){
|
|
2381
2637
|
super();
|
|
2382
2638
|
|
|
2383
2639
|
/**
|
|
2384
|
-
*
|
|
2385
|
-
* @type {Array.<RegionAreaInfo> || null}
|
|
2386
|
-
*/
|
|
2387
|
-
this.Items = null;
|
|
2388
|
-
|
|
2389
|
-
/**
|
|
2390
|
-
* Front-end rule description
|
|
2640
|
+
* Progress details of the recovery tasks
|
|
2391
2641
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2392
|
-
* @type {Array.<
|
|
2642
|
+
* @type {Array.<RestoreStatus> || null}
|
|
2393
2643
|
*/
|
|
2394
|
-
this.
|
|
2644
|
+
this.RestoreStatus = null;
|
|
2395
2645
|
|
|
2396
2646
|
/**
|
|
2397
|
-
*
|
|
2647
|
+
* Error message
|
|
2398
2648
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2399
|
-
* @type {
|
|
2649
|
+
* @type {string || null}
|
|
2400
2650
|
*/
|
|
2401
|
-
this.
|
|
2651
|
+
this.ErrorMsg = null;
|
|
2402
2652
|
|
|
2403
2653
|
/**
|
|
2404
2654
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -2416,24 +2666,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2416
2666
|
return;
|
|
2417
2667
|
}
|
|
2418
2668
|
|
|
2419
|
-
if (params.
|
|
2420
|
-
this.
|
|
2421
|
-
for (let z in params.
|
|
2422
|
-
let obj = new
|
|
2423
|
-
obj.deserialize(params.
|
|
2424
|
-
this.
|
|
2425
|
-
}
|
|
2426
|
-
}
|
|
2427
|
-
|
|
2428
|
-
if (params.FrontEndRules) {
|
|
2429
|
-
this.FrontEndRules = new Array();
|
|
2430
|
-
for (let z in params.FrontEndRules) {
|
|
2431
|
-
let obj = new FrontEndRule();
|
|
2432
|
-
obj.deserialize(params.FrontEndRules[z]);
|
|
2433
|
-
this.FrontEndRules.push(obj);
|
|
2669
|
+
if (params.RestoreStatus) {
|
|
2670
|
+
this.RestoreStatus = new Array();
|
|
2671
|
+
for (let z in params.RestoreStatus) {
|
|
2672
|
+
let obj = new RestoreStatus();
|
|
2673
|
+
obj.deserialize(params.RestoreStatus[z]);
|
|
2674
|
+
this.RestoreStatus.push(obj);
|
|
2434
2675
|
}
|
|
2435
2676
|
}
|
|
2436
|
-
this.
|
|
2677
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
2437
2678
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2438
2679
|
|
|
2439
2680
|
}
|
|
@@ -2552,30 +2793,42 @@ class ModifyNodeStatusRequest extends AbstractModel {
|
|
|
2552
2793
|
}
|
|
2553
2794
|
|
|
2554
2795
|
/**
|
|
2555
|
-
*
|
|
2796
|
+
* DescribeCreateTablesDDL request structure.
|
|
2556
2797
|
* @class
|
|
2557
2798
|
*/
|
|
2558
|
-
class
|
|
2799
|
+
class DescribeCreateTablesDDLRequest extends AbstractModel {
|
|
2559
2800
|
constructor(){
|
|
2560
2801
|
super();
|
|
2561
2802
|
|
|
2562
2803
|
/**
|
|
2563
|
-
*
|
|
2564
|
-
* @type {
|
|
2804
|
+
* Resource ID, TCHouse-D resource ID.
|
|
2805
|
+
* @type {string || null}
|
|
2565
2806
|
*/
|
|
2566
|
-
this.
|
|
2807
|
+
this.InstanceId = null;
|
|
2567
2808
|
|
|
2568
2809
|
/**
|
|
2569
|
-
*
|
|
2810
|
+
* Require the database and table for the table creation DDL.
|
|
2811
|
+
* @type {Array.<DbTablesInfo> || null}
|
|
2812
|
+
*/
|
|
2813
|
+
this.DbTablesInfos = null;
|
|
2814
|
+
|
|
2815
|
+
/**
|
|
2816
|
+
* Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
2570
2817
|
* @type {string || null}
|
|
2571
2818
|
*/
|
|
2572
|
-
this.
|
|
2819
|
+
this.UserName = null;
|
|
2573
2820
|
|
|
2574
2821
|
/**
|
|
2575
|
-
*
|
|
2822
|
+
* Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
2576
2823
|
* @type {string || null}
|
|
2577
2824
|
*/
|
|
2578
|
-
this.
|
|
2825
|
+
this.PassWord = null;
|
|
2826
|
+
|
|
2827
|
+
/**
|
|
2828
|
+
* Whether to hide partition information
|
|
2829
|
+
* @type {boolean || null}
|
|
2830
|
+
*/
|
|
2831
|
+
this.IsBrief = null;
|
|
2579
2832
|
|
|
2580
2833
|
}
|
|
2581
2834
|
|
|
@@ -2586,35 +2839,87 @@ class RestartClusterForNodeResponse extends AbstractModel {
|
|
|
2586
2839
|
if (!params) {
|
|
2587
2840
|
return;
|
|
2588
2841
|
}
|
|
2589
|
-
this.
|
|
2590
|
-
|
|
2591
|
-
|
|
2842
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2843
|
+
|
|
2844
|
+
if (params.DbTablesInfos) {
|
|
2845
|
+
this.DbTablesInfos = new Array();
|
|
2846
|
+
for (let z in params.DbTablesInfos) {
|
|
2847
|
+
let obj = new DbTablesInfo();
|
|
2848
|
+
obj.deserialize(params.DbTablesInfos[z]);
|
|
2849
|
+
this.DbTablesInfos.push(obj);
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
2853
|
+
this.PassWord = 'PassWord' in params ? params.PassWord : null;
|
|
2854
|
+
this.IsBrief = 'IsBrief' in params ? params.IsBrief : null;
|
|
2592
2855
|
|
|
2593
2856
|
}
|
|
2594
2857
|
}
|
|
2595
2858
|
|
|
2596
2859
|
/**
|
|
2597
|
-
*
|
|
2860
|
+
* RestartClusterForNode response structure.
|
|
2598
2861
|
* @class
|
|
2599
2862
|
*/
|
|
2600
|
-
class
|
|
2863
|
+
class RestartClusterForNodeResponse extends AbstractModel {
|
|
2601
2864
|
constructor(){
|
|
2602
2865
|
super();
|
|
2603
2866
|
|
|
2604
2867
|
/**
|
|
2605
|
-
*
|
|
2606
|
-
* @type {
|
|
2868
|
+
* Process related information
|
|
2869
|
+
* @type {number || null}
|
|
2607
2870
|
*/
|
|
2608
|
-
this.
|
|
2871
|
+
this.FlowId = null;
|
|
2609
2872
|
|
|
2610
2873
|
/**
|
|
2611
|
-
*
|
|
2874
|
+
* Error message
|
|
2612
2875
|
* @type {string || null}
|
|
2613
2876
|
*/
|
|
2614
|
-
this.
|
|
2877
|
+
this.ErrorMsg = null;
|
|
2615
2878
|
|
|
2616
2879
|
/**
|
|
2617
|
-
*
|
|
2880
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2881
|
+
* @type {string || null}
|
|
2882
|
+
*/
|
|
2883
|
+
this.RequestId = null;
|
|
2884
|
+
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
/**
|
|
2888
|
+
* @private
|
|
2889
|
+
*/
|
|
2890
|
+
deserialize(params) {
|
|
2891
|
+
if (!params) {
|
|
2892
|
+
return;
|
|
2893
|
+
}
|
|
2894
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
2895
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
2896
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2897
|
+
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2901
|
+
/**
|
|
2902
|
+
* UpdateTableSchema request structure.
|
|
2903
|
+
* @class
|
|
2904
|
+
*/
|
|
2905
|
+
class UpdateTableSchemaRequest extends AbstractModel {
|
|
2906
|
+
constructor(){
|
|
2907
|
+
super();
|
|
2908
|
+
|
|
2909
|
+
/**
|
|
2910
|
+
* Resource ID, which is the TCHouse-D resource ID used for table creation.
|
|
2911
|
+
* @type {string || null}
|
|
2912
|
+
*/
|
|
2913
|
+
this.InstanceId = null;
|
|
2914
|
+
|
|
2915
|
+
/**
|
|
2916
|
+
* Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
2917
|
+
* @type {string || null}
|
|
2918
|
+
*/
|
|
2919
|
+
this.UserName = null;
|
|
2920
|
+
|
|
2921
|
+
/**
|
|
2922
|
+
* Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
2618
2923
|
* @type {string || null}
|
|
2619
2924
|
*/
|
|
2620
2925
|
this.PassWord = null;
|
|
@@ -3045,6 +3350,62 @@ class DescribeWorkloadGroupRequest extends AbstractModel {
|
|
|
3045
3350
|
}
|
|
3046
3351
|
}
|
|
3047
3352
|
|
|
3353
|
+
/**
|
|
3354
|
+
* DescribeCoolDownBackends request structure.
|
|
3355
|
+
* @class
|
|
3356
|
+
*/
|
|
3357
|
+
class DescribeCoolDownBackendsRequest extends AbstractModel {
|
|
3358
|
+
constructor(){
|
|
3359
|
+
super();
|
|
3360
|
+
|
|
3361
|
+
/**
|
|
3362
|
+
* Cluster ID
|
|
3363
|
+
* @type {string || null}
|
|
3364
|
+
*/
|
|
3365
|
+
this.InstanceId = null;
|
|
3366
|
+
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
/**
|
|
3370
|
+
* @private
|
|
3371
|
+
*/
|
|
3372
|
+
deserialize(params) {
|
|
3373
|
+
if (!params) {
|
|
3374
|
+
return;
|
|
3375
|
+
}
|
|
3376
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3377
|
+
|
|
3378
|
+
}
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3381
|
+
/**
|
|
3382
|
+
* CheckCoolDownWorkingVariableConfigCorrect request structure.
|
|
3383
|
+
* @class
|
|
3384
|
+
*/
|
|
3385
|
+
class CheckCoolDownWorkingVariableConfigCorrectRequest extends AbstractModel {
|
|
3386
|
+
constructor(){
|
|
3387
|
+
super();
|
|
3388
|
+
|
|
3389
|
+
/**
|
|
3390
|
+
* Cluster ID
|
|
3391
|
+
* @type {string || null}
|
|
3392
|
+
*/
|
|
3393
|
+
this.InstanceId = null;
|
|
3394
|
+
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3397
|
+
/**
|
|
3398
|
+
* @private
|
|
3399
|
+
*/
|
|
3400
|
+
deserialize(params) {
|
|
3401
|
+
if (!params) {
|
|
3402
|
+
return;
|
|
3403
|
+
}
|
|
3404
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3405
|
+
|
|
3406
|
+
}
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3048
3409
|
/**
|
|
3049
3410
|
* Cluster operation description
|
|
3050
3411
|
* @class
|
|
@@ -3221,25 +3582,30 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3221
3582
|
}
|
|
3222
3583
|
|
|
3223
3584
|
/**
|
|
3224
|
-
*
|
|
3585
|
+
* CreateInstanceNew response structure.
|
|
3225
3586
|
* @class
|
|
3226
3587
|
*/
|
|
3227
|
-
class
|
|
3588
|
+
class CreateInstanceNewResponse extends AbstractModel {
|
|
3228
3589
|
constructor(){
|
|
3229
3590
|
super();
|
|
3230
3591
|
|
|
3231
3592
|
/**
|
|
3232
|
-
*
|
|
3233
|
-
* @type {
|
|
3593
|
+
* Process ID
|
|
3594
|
+
* @type {string || null}
|
|
3234
3595
|
*/
|
|
3235
|
-
this.
|
|
3596
|
+
this.FlowId = null;
|
|
3236
3597
|
|
|
3237
3598
|
/**
|
|
3238
|
-
*
|
|
3239
|
-
|
|
3240
|
-
* @type {Array.<InstanceNode> || null}
|
|
3599
|
+
* Instance ID
|
|
3600
|
+
* @type {string || null}
|
|
3241
3601
|
*/
|
|
3242
|
-
this.
|
|
3602
|
+
this.InstanceId = null;
|
|
3603
|
+
|
|
3604
|
+
/**
|
|
3605
|
+
* Error message
|
|
3606
|
+
* @type {string || null}
|
|
3607
|
+
*/
|
|
3608
|
+
this.ErrorMsg = null;
|
|
3243
3609
|
|
|
3244
3610
|
/**
|
|
3245
3611
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -3256,16 +3622,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3256
3622
|
if (!params) {
|
|
3257
3623
|
return;
|
|
3258
3624
|
}
|
|
3259
|
-
this.
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
this.InstanceNodesList = new Array();
|
|
3263
|
-
for (let z in params.InstanceNodesList) {
|
|
3264
|
-
let obj = new InstanceNode();
|
|
3265
|
-
obj.deserialize(params.InstanceNodesList[z]);
|
|
3266
|
-
this.InstanceNodesList.push(obj);
|
|
3267
|
-
}
|
|
3268
|
-
}
|
|
3625
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
3626
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
3627
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
3269
3628
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3270
3629
|
|
|
3271
3630
|
}
|
|
@@ -3627,6 +3986,48 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3627
3986
|
}
|
|
3628
3987
|
}
|
|
3629
3988
|
|
|
3989
|
+
/**
|
|
3990
|
+
* UpdateCoolDown request structure.
|
|
3991
|
+
* @class
|
|
3992
|
+
*/
|
|
3993
|
+
class UpdateCoolDownRequest extends AbstractModel {
|
|
3994
|
+
constructor(){
|
|
3995
|
+
super();
|
|
3996
|
+
|
|
3997
|
+
/**
|
|
3998
|
+
* Cluster ID
|
|
3999
|
+
* @type {string || null}
|
|
4000
|
+
*/
|
|
4001
|
+
this.InstanceId = null;
|
|
4002
|
+
|
|
4003
|
+
/**
|
|
4004
|
+
* Whether to enable. 0: disable; 1: enable.
|
|
4005
|
+
* @type {number || null}
|
|
4006
|
+
*/
|
|
4007
|
+
this.Enable = null;
|
|
4008
|
+
|
|
4009
|
+
/**
|
|
4010
|
+
* Address of the COS bucket where the user stores layered hot and cold data
|
|
4011
|
+
* @type {string || null}
|
|
4012
|
+
*/
|
|
4013
|
+
this.Bucket = null;
|
|
4014
|
+
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
/**
|
|
4018
|
+
* @private
|
|
4019
|
+
*/
|
|
4020
|
+
deserialize(params) {
|
|
4021
|
+
if (!params) {
|
|
4022
|
+
return;
|
|
4023
|
+
}
|
|
4024
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4025
|
+
this.Enable = 'Enable' in params ? params.Enable : null;
|
|
4026
|
+
this.Bucket = 'Bucket' in params ? params.Bucket : null;
|
|
4027
|
+
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4030
|
+
|
|
3630
4031
|
/**
|
|
3631
4032
|
* Partition information of the table
|
|
3632
4033
|
* @class
|
|
@@ -3703,74 +4104,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3703
4104
|
}
|
|
3704
4105
|
|
|
3705
4106
|
/**
|
|
3706
|
-
*
|
|
4107
|
+
* Hot/cold data layering policy
|
|
3707
4108
|
* @class
|
|
3708
4109
|
*/
|
|
3709
|
-
class
|
|
4110
|
+
class CoolDownPolicyInfo extends AbstractModel {
|
|
3710
4111
|
constructor(){
|
|
3711
4112
|
super();
|
|
3712
4113
|
|
|
3713
4114
|
/**
|
|
3714
|
-
*
|
|
3715
|
-
●FIXED: Define the left closed and right open interval of the partition.
|
|
3716
|
-
●LESS THAN: Only define the upper bound of the partition.
|
|
3717
|
-
●BATCH RANGE: Batch create RANGE partitions of numeric and time types, define the left closed and right open intervals of the partitions, and set the step size.
|
|
3718
|
-
|
|
3719
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3720
|
-
* @type {string || null}
|
|
3721
|
-
*/
|
|
3722
|
-
this.RangeType = null;
|
|
3723
|
-
|
|
3724
|
-
/**
|
|
3725
|
-
* Partition name
|
|
3726
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3727
|
-
* @type {string || null}
|
|
3728
|
-
*/
|
|
3729
|
-
this.PartitionName = null;
|
|
3730
|
-
|
|
3731
|
-
/**
|
|
3732
|
-
* The left-closed interval of each partition column when RangeType is FIXED or BATCH RANGE
|
|
3733
|
-
|
|
3734
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3735
|
-
* @type {string || null}
|
|
3736
|
-
*/
|
|
3737
|
-
this.Left = null;
|
|
3738
|
-
|
|
3739
|
-
/**
|
|
3740
|
-
* The right open interval of each partition column when RangeType is FIXED or BATCH RANGE
|
|
4115
|
+
* Policy name
|
|
3741
4116
|
|
|
3742
4117
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3743
4118
|
* @type {string || null}
|
|
3744
4119
|
*/
|
|
3745
|
-
this.
|
|
4120
|
+
this.PolicyName = null;
|
|
3746
4121
|
|
|
3747
4122
|
/**
|
|
3748
|
-
*
|
|
3749
|
-
|
|
4123
|
+
* cooldown_ttl
|
|
3750
4124
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3751
4125
|
* @type {string || null}
|
|
3752
4126
|
*/
|
|
3753
|
-
this.
|
|
3754
|
-
|
|
3755
|
-
/**
|
|
3756
|
-
* RangeType is the step size of BATCH RANGE
|
|
3757
|
-
|
|
3758
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3759
|
-
* @type {number || null}
|
|
3760
|
-
*/
|
|
3761
|
-
this.StepLength = null;
|
|
4127
|
+
this.CooldownDatetime = null;
|
|
3762
4128
|
|
|
3763
4129
|
/**
|
|
3764
|
-
*
|
|
3765
|
-
●YEAR: year
|
|
3766
|
-
●MONTH: month
|
|
3767
|
-
●WEEK: week
|
|
3768
|
-
●DAY: day
|
|
3769
|
-
|
|
4130
|
+
* cooldown_datetime
|
|
3770
4131
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3771
4132
|
* @type {string || null}
|
|
3772
4133
|
*/
|
|
3773
|
-
this.
|
|
4134
|
+
this.CooldownTtl = null;
|
|
3774
4135
|
|
|
3775
4136
|
}
|
|
3776
4137
|
|
|
@@ -3781,52 +4142,208 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3781
4142
|
if (!params) {
|
|
3782
4143
|
return;
|
|
3783
4144
|
}
|
|
3784
|
-
this.
|
|
3785
|
-
this.
|
|
3786
|
-
this.
|
|
3787
|
-
this.Right = 'Right' in params ? params.Right : null;
|
|
3788
|
-
this.Max = 'Max' in params ? params.Max : null;
|
|
3789
|
-
this.StepLength = 'StepLength' in params ? params.StepLength : null;
|
|
3790
|
-
this.Unit = 'Unit' in params ? params.Unit : null;
|
|
4145
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
4146
|
+
this.CooldownDatetime = 'CooldownDatetime' in params ? params.CooldownDatetime : null;
|
|
4147
|
+
this.CooldownTtl = 'CooldownTtl' in params ? params.CooldownTtl : null;
|
|
3791
4148
|
|
|
3792
4149
|
}
|
|
3793
4150
|
}
|
|
3794
4151
|
|
|
3795
4152
|
/**
|
|
3796
|
-
*
|
|
4153
|
+
* OpenCoolDownPolicy request structure.
|
|
3797
4154
|
* @class
|
|
3798
4155
|
*/
|
|
3799
|
-
class
|
|
4156
|
+
class OpenCoolDownPolicyRequest extends AbstractModel {
|
|
3800
4157
|
constructor(){
|
|
3801
4158
|
super();
|
|
3802
4159
|
|
|
3803
4160
|
/**
|
|
3804
|
-
*
|
|
3805
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4161
|
+
* Instance ID
|
|
3806
4162
|
* @type {string || null}
|
|
3807
4163
|
*/
|
|
3808
|
-
this.
|
|
4164
|
+
this.InstanceId = null;
|
|
3809
4165
|
|
|
3810
4166
|
/**
|
|
3811
|
-
*
|
|
3812
|
-
|
|
3813
|
-
* @type {number || null}
|
|
4167
|
+
* DB name
|
|
4168
|
+
* @type {string || null}
|
|
3814
4169
|
*/
|
|
3815
|
-
this.
|
|
4170
|
+
this.DatabaseName = null;
|
|
3816
4171
|
|
|
3817
4172
|
/**
|
|
3818
|
-
*
|
|
3819
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4173
|
+
* Table name
|
|
3820
4174
|
* @type {string || null}
|
|
3821
4175
|
*/
|
|
3822
|
-
this.
|
|
4176
|
+
this.TableName = null;
|
|
3823
4177
|
|
|
3824
4178
|
/**
|
|
3825
|
-
*
|
|
3826
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4179
|
+
* Operation type
|
|
3827
4180
|
* @type {string || null}
|
|
3828
4181
|
*/
|
|
3829
|
-
this.
|
|
4182
|
+
this.OperationType = null;
|
|
4183
|
+
|
|
4184
|
+
/**
|
|
4185
|
+
* Separate with commas. The DB name is required, for example, db1.tb1,db1.tb2,db2.tb1.
|
|
4186
|
+
* @type {string || null}
|
|
4187
|
+
*/
|
|
4188
|
+
this.BatchOpenCoolDownTables = null;
|
|
4189
|
+
|
|
4190
|
+
/**
|
|
4191
|
+
* Policy name required for binding
|
|
4192
|
+
* @type {string || null}
|
|
4193
|
+
*/
|
|
4194
|
+
this.PolicyName = null;
|
|
4195
|
+
|
|
4196
|
+
/**
|
|
4197
|
+
* Separate with commas, for example, p1,p2,p3.
|
|
4198
|
+
* @type {string || null}
|
|
4199
|
+
*/
|
|
4200
|
+
this.BatchOpenCoolDownPartitions = null;
|
|
4201
|
+
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
/**
|
|
4205
|
+
* @private
|
|
4206
|
+
*/
|
|
4207
|
+
deserialize(params) {
|
|
4208
|
+
if (!params) {
|
|
4209
|
+
return;
|
|
4210
|
+
}
|
|
4211
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4212
|
+
this.DatabaseName = 'DatabaseName' in params ? params.DatabaseName : null;
|
|
4213
|
+
this.TableName = 'TableName' in params ? params.TableName : null;
|
|
4214
|
+
this.OperationType = 'OperationType' in params ? params.OperationType : null;
|
|
4215
|
+
this.BatchOpenCoolDownTables = 'BatchOpenCoolDownTables' in params ? params.BatchOpenCoolDownTables : null;
|
|
4216
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
4217
|
+
this.BatchOpenCoolDownPartitions = 'BatchOpenCoolDownPartitions' in params ? params.BatchOpenCoolDownPartitions : null;
|
|
4218
|
+
|
|
4219
|
+
}
|
|
4220
|
+
}
|
|
4221
|
+
|
|
4222
|
+
/**
|
|
4223
|
+
* Information of Range type partition
|
|
4224
|
+
* @class
|
|
4225
|
+
*/
|
|
4226
|
+
class RangeInfo extends AbstractModel {
|
|
4227
|
+
constructor(){
|
|
4228
|
+
super();
|
|
4229
|
+
|
|
4230
|
+
/**
|
|
4231
|
+
* Range partition type:
|
|
4232
|
+
●FIXED: Define the left closed and right open interval of the partition.
|
|
4233
|
+
●LESS THAN: Only define the upper bound of the partition.
|
|
4234
|
+
●BATCH RANGE: Batch create RANGE partitions of numeric and time types, define the left closed and right open intervals of the partitions, and set the step size.
|
|
4235
|
+
|
|
4236
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4237
|
+
* @type {string || null}
|
|
4238
|
+
*/
|
|
4239
|
+
this.RangeType = null;
|
|
4240
|
+
|
|
4241
|
+
/**
|
|
4242
|
+
* Partition name
|
|
4243
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4244
|
+
* @type {string || null}
|
|
4245
|
+
*/
|
|
4246
|
+
this.PartitionName = null;
|
|
4247
|
+
|
|
4248
|
+
/**
|
|
4249
|
+
* The left-closed interval of each partition column when RangeType is FIXED or BATCH RANGE
|
|
4250
|
+
|
|
4251
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4252
|
+
* @type {string || null}
|
|
4253
|
+
*/
|
|
4254
|
+
this.Left = null;
|
|
4255
|
+
|
|
4256
|
+
/**
|
|
4257
|
+
* The right open interval of each partition column when RangeType is FIXED or BATCH RANGE
|
|
4258
|
+
|
|
4259
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4260
|
+
* @type {string || null}
|
|
4261
|
+
*/
|
|
4262
|
+
this.Right = null;
|
|
4263
|
+
|
|
4264
|
+
/**
|
|
4265
|
+
* The upper bound of each partition column when RangeType is LESS THAN
|
|
4266
|
+
|
|
4267
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4268
|
+
* @type {string || null}
|
|
4269
|
+
*/
|
|
4270
|
+
this.Max = null;
|
|
4271
|
+
|
|
4272
|
+
/**
|
|
4273
|
+
* RangeType is the step size of BATCH RANGE
|
|
4274
|
+
|
|
4275
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4276
|
+
* @type {number || null}
|
|
4277
|
+
*/
|
|
4278
|
+
this.StepLength = null;
|
|
4279
|
+
|
|
4280
|
+
/**
|
|
4281
|
+
* Fill it in when RangeType is BATCH RANGE or automatic partitioning. It indicates the step size unit when the partition column is of time type.
|
|
4282
|
+
●YEAR: year
|
|
4283
|
+
●MONTH: month
|
|
4284
|
+
●WEEK: week
|
|
4285
|
+
●DAY: day
|
|
4286
|
+
|
|
4287
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4288
|
+
* @type {string || null}
|
|
4289
|
+
*/
|
|
4290
|
+
this.Unit = null;
|
|
4291
|
+
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
/**
|
|
4295
|
+
* @private
|
|
4296
|
+
*/
|
|
4297
|
+
deserialize(params) {
|
|
4298
|
+
if (!params) {
|
|
4299
|
+
return;
|
|
4300
|
+
}
|
|
4301
|
+
this.RangeType = 'RangeType' in params ? params.RangeType : null;
|
|
4302
|
+
this.PartitionName = 'PartitionName' in params ? params.PartitionName : null;
|
|
4303
|
+
this.Left = 'Left' in params ? params.Left : null;
|
|
4304
|
+
this.Right = 'Right' in params ? params.Right : null;
|
|
4305
|
+
this.Max = 'Max' in params ? params.Max : null;
|
|
4306
|
+
this.StepLength = 'StepLength' in params ? params.StepLength : null;
|
|
4307
|
+
this.Unit = 'Unit' in params ? params.Unit : null;
|
|
4308
|
+
|
|
4309
|
+
}
|
|
4310
|
+
}
|
|
4311
|
+
|
|
4312
|
+
/**
|
|
4313
|
+
* Connection information of external Doris clusters
|
|
4314
|
+
* @class
|
|
4315
|
+
*/
|
|
4316
|
+
class DorisSourceInfo extends AbstractModel {
|
|
4317
|
+
constructor(){
|
|
4318
|
+
super();
|
|
4319
|
+
|
|
4320
|
+
/**
|
|
4321
|
+
* The IP address of fe in the Doris cluster
|
|
4322
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4323
|
+
* @type {string || null}
|
|
4324
|
+
*/
|
|
4325
|
+
this.Host = null;
|
|
4326
|
+
|
|
4327
|
+
/**
|
|
4328
|
+
* The fe port number of the Doris cluster
|
|
4329
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4330
|
+
* @type {number || null}
|
|
4331
|
+
*/
|
|
4332
|
+
this.Port = null;
|
|
4333
|
+
|
|
4334
|
+
/**
|
|
4335
|
+
* Account of the Doris cluster
|
|
4336
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4337
|
+
* @type {string || null}
|
|
4338
|
+
*/
|
|
4339
|
+
this.User = null;
|
|
4340
|
+
|
|
4341
|
+
/**
|
|
4342
|
+
* Password of the Doris cluster
|
|
4343
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4344
|
+
* @type {string || null}
|
|
4345
|
+
*/
|
|
4346
|
+
this.Password = null;
|
|
3830
4347
|
|
|
3831
4348
|
}
|
|
3832
4349
|
|
|
@@ -3845,6 +4362,43 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3845
4362
|
}
|
|
3846
4363
|
}
|
|
3847
4364
|
|
|
4365
|
+
/**
|
|
4366
|
+
* OpenCoolDown response structure.
|
|
4367
|
+
* @class
|
|
4368
|
+
*/
|
|
4369
|
+
class OpenCoolDownResponse extends AbstractModel {
|
|
4370
|
+
constructor(){
|
|
4371
|
+
super();
|
|
4372
|
+
|
|
4373
|
+
/**
|
|
4374
|
+
* Error message
|
|
4375
|
+
|
|
4376
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4377
|
+
* @type {string || null}
|
|
4378
|
+
*/
|
|
4379
|
+
this.ErrorMsg = null;
|
|
4380
|
+
|
|
4381
|
+
/**
|
|
4382
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4383
|
+
* @type {string || null}
|
|
4384
|
+
*/
|
|
4385
|
+
this.RequestId = null;
|
|
4386
|
+
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
/**
|
|
4390
|
+
* @private
|
|
4391
|
+
*/
|
|
4392
|
+
deserialize(params) {
|
|
4393
|
+
if (!params) {
|
|
4394
|
+
return;
|
|
4395
|
+
}
|
|
4396
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
4397
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4398
|
+
|
|
4399
|
+
}
|
|
4400
|
+
}
|
|
4401
|
+
|
|
3848
4402
|
/**
|
|
3849
4403
|
* Specifications of nodes in the cluster and disk specifications description
|
|
3850
4404
|
* @class
|
|
@@ -4631,6 +5185,43 @@ class DeleteTableRequest extends AbstractModel {
|
|
|
4631
5185
|
}
|
|
4632
5186
|
}
|
|
4633
5187
|
|
|
5188
|
+
/**
|
|
5189
|
+
* ActionAlterUser response structure.
|
|
5190
|
+
* @class
|
|
5191
|
+
*/
|
|
5192
|
+
class ActionAlterUserResponse extends AbstractModel {
|
|
5193
|
+
constructor(){
|
|
5194
|
+
super();
|
|
5195
|
+
|
|
5196
|
+
/**
|
|
5197
|
+
* Error message
|
|
5198
|
+
|
|
5199
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5200
|
+
* @type {string || null}
|
|
5201
|
+
*/
|
|
5202
|
+
this.ErrorMsg = null;
|
|
5203
|
+
|
|
5204
|
+
/**
|
|
5205
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5206
|
+
* @type {string || null}
|
|
5207
|
+
*/
|
|
5208
|
+
this.RequestId = null;
|
|
5209
|
+
|
|
5210
|
+
}
|
|
5211
|
+
|
|
5212
|
+
/**
|
|
5213
|
+
* @private
|
|
5214
|
+
*/
|
|
5215
|
+
deserialize(params) {
|
|
5216
|
+
if (!params) {
|
|
5217
|
+
return;
|
|
5218
|
+
}
|
|
5219
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
5220
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5221
|
+
|
|
5222
|
+
}
|
|
5223
|
+
}
|
|
5224
|
+
|
|
4634
5225
|
/**
|
|
4635
5226
|
* Information about cos in the backup instance
|
|
4636
5227
|
* @class
|
|
@@ -4777,76 +5368,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4777
5368
|
}
|
|
4778
5369
|
|
|
4779
5370
|
/**
|
|
4780
|
-
*
|
|
5371
|
+
* CreateWorkloadGroup request structure.
|
|
4781
5372
|
* @class
|
|
4782
5373
|
*/
|
|
4783
|
-
class
|
|
5374
|
+
class CreateWorkloadGroupRequest extends AbstractModel {
|
|
4784
5375
|
constructor(){
|
|
4785
5376
|
super();
|
|
4786
5377
|
|
|
4787
5378
|
/**
|
|
4788
|
-
* Cluster
|
|
4789
|
-
* @type {string || null}
|
|
4790
|
-
*/
|
|
4791
|
-
this.InstanceState = null;
|
|
4792
|
-
|
|
4793
|
-
/**
|
|
4794
|
-
* Creation time of cluster operation
|
|
4795
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5379
|
+
* Cluster ID
|
|
4796
5380
|
* @type {string || null}
|
|
4797
5381
|
*/
|
|
4798
|
-
this.
|
|
5382
|
+
this.InstanceId = null;
|
|
4799
5383
|
|
|
4800
5384
|
/**
|
|
4801
|
-
*
|
|
4802
|
-
|
|
4803
|
-
* @type {string || null}
|
|
5385
|
+
* Resource group configuration
|
|
5386
|
+
* @type {WorkloadGroupConfig || null}
|
|
4804
5387
|
*/
|
|
4805
|
-
this.
|
|
5388
|
+
this.WorkloadGroup = null;
|
|
4806
5389
|
|
|
4807
|
-
|
|
4808
|
-
* Cluster operation progress
|
|
4809
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4810
|
-
* @type {number || null}
|
|
4811
|
-
*/
|
|
4812
|
-
this.FlowProgress = null;
|
|
5390
|
+
}
|
|
4813
5391
|
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
5392
|
+
/**
|
|
5393
|
+
* @private
|
|
5394
|
+
*/
|
|
5395
|
+
deserialize(params) {
|
|
5396
|
+
if (!params) {
|
|
5397
|
+
return;
|
|
5398
|
+
}
|
|
5399
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4820
5400
|
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
*/
|
|
4826
|
-
this.FlowMsg = null;
|
|
4827
|
-
|
|
4828
|
-
/**
|
|
4829
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4830
|
-
* @type {string || null}
|
|
4831
|
-
*/
|
|
4832
|
-
this.RequestId = null;
|
|
4833
|
-
|
|
4834
|
-
}
|
|
4835
|
-
|
|
4836
|
-
/**
|
|
4837
|
-
* @private
|
|
4838
|
-
*/
|
|
4839
|
-
deserialize(params) {
|
|
4840
|
-
if (!params) {
|
|
4841
|
-
return;
|
|
5401
|
+
if (params.WorkloadGroup) {
|
|
5402
|
+
let obj = new WorkloadGroupConfig();
|
|
5403
|
+
obj.deserialize(params.WorkloadGroup)
|
|
5404
|
+
this.WorkloadGroup = obj;
|
|
4842
5405
|
}
|
|
4843
|
-
this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
|
|
4844
|
-
this.FlowCreateTime = 'FlowCreateTime' in params ? params.FlowCreateTime : null;
|
|
4845
|
-
this.FlowName = 'FlowName' in params ? params.FlowName : null;
|
|
4846
|
-
this.FlowProgress = 'FlowProgress' in params ? params.FlowProgress : null;
|
|
4847
|
-
this.InstanceStateDesc = 'InstanceStateDesc' in params ? params.InstanceStateDesc : null;
|
|
4848
|
-
this.FlowMsg = 'FlowMsg' in params ? params.FlowMsg : null;
|
|
4849
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4850
5406
|
|
|
4851
5407
|
}
|
|
4852
5408
|
}
|
|
@@ -4888,7 +5444,7 @@ class DescribeInstancesHealthStateResponse extends AbstractModel {
|
|
|
4888
5444
|
super();
|
|
4889
5445
|
|
|
4890
5446
|
/**
|
|
4891
|
-
*
|
|
5447
|
+
* Base64-encoded data, which contains the cluster health information
|
|
4892
5448
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4893
5449
|
* @type {string || null}
|
|
4894
5450
|
*/
|
|
@@ -4916,10 +5472,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4916
5472
|
}
|
|
4917
5473
|
|
|
4918
5474
|
/**
|
|
4919
|
-
*
|
|
5475
|
+
* DescribeDatabaseAuditDownload request structure.
|
|
4920
5476
|
* @class
|
|
4921
5477
|
*/
|
|
4922
|
-
class
|
|
5478
|
+
class DescribeDatabaseAuditDownloadRequest extends AbstractModel {
|
|
4923
5479
|
constructor(){
|
|
4924
5480
|
super();
|
|
4925
5481
|
|
|
@@ -4929,12 +5485,6 @@ class DescribeSlowQueryRecordsRequest extends AbstractModel {
|
|
|
4929
5485
|
*/
|
|
4930
5486
|
this.InstanceId = null;
|
|
4931
5487
|
|
|
4932
|
-
/**
|
|
4933
|
-
* Slow log time
|
|
4934
|
-
* @type {number || null}
|
|
4935
|
-
*/
|
|
4936
|
-
this.QueryDurationMs = null;
|
|
4937
|
-
|
|
4938
5488
|
/**
|
|
4939
5489
|
* Start time
|
|
4940
5490
|
* @type {string || null}
|
|
@@ -4963,49 +5513,55 @@ class DescribeSlowQueryRecordsRequest extends AbstractModel {
|
|
|
4963
5513
|
* Sort parameters
|
|
4964
5514
|
* @type {string || null}
|
|
4965
5515
|
*/
|
|
4966
|
-
this.
|
|
5516
|
+
this.OrderType = null;
|
|
4967
5517
|
|
|
4968
5518
|
/**
|
|
4969
|
-
*
|
|
4970
|
-
* @type {
|
|
5519
|
+
* User
|
|
5520
|
+
* @type {string || null}
|
|
4971
5521
|
*/
|
|
4972
|
-
this.
|
|
5522
|
+
this.User = null;
|
|
4973
5523
|
|
|
4974
5524
|
/**
|
|
4975
|
-
*
|
|
4976
|
-
* @type {
|
|
5525
|
+
* Database
|
|
5526
|
+
* @type {string || null}
|
|
4977
5527
|
*/
|
|
4978
|
-
this.
|
|
5528
|
+
this.DbName = null;
|
|
4979
5529
|
|
|
4980
5530
|
/**
|
|
4981
|
-
*
|
|
4982
|
-
* @type {
|
|
5531
|
+
* SQL type
|
|
5532
|
+
* @type {string || null}
|
|
4983
5533
|
*/
|
|
4984
|
-
this.
|
|
5534
|
+
this.SqlType = null;
|
|
4985
5535
|
|
|
4986
5536
|
/**
|
|
4987
|
-
* SQL
|
|
5537
|
+
* SQL statement
|
|
4988
5538
|
* @type {string || null}
|
|
4989
5539
|
*/
|
|
4990
5540
|
this.Sql = null;
|
|
4991
5541
|
|
|
4992
5542
|
/**
|
|
4993
|
-
*
|
|
4994
|
-
* @type {string || null}
|
|
5543
|
+
* Users (multiple selections)
|
|
5544
|
+
* @type {Array.<string> || null}
|
|
4995
5545
|
*/
|
|
4996
|
-
this.
|
|
5546
|
+
this.Users = null;
|
|
4997
5547
|
|
|
4998
5548
|
/**
|
|
4999
|
-
*
|
|
5000
|
-
* @type {string || null}
|
|
5549
|
+
* Databases (multiple selections)
|
|
5550
|
+
* @type {Array.<string> || null}
|
|
5001
5551
|
*/
|
|
5002
|
-
this.
|
|
5552
|
+
this.DbNames = null;
|
|
5003
5553
|
|
|
5004
5554
|
/**
|
|
5005
|
-
*
|
|
5006
|
-
* @type {string || null}
|
|
5555
|
+
* SQL types (multiple selections)
|
|
5556
|
+
* @type {Array.<string> || null}
|
|
5007
5557
|
*/
|
|
5008
|
-
this.
|
|
5558
|
+
this.SqlTypes = null;
|
|
5559
|
+
|
|
5560
|
+
/**
|
|
5561
|
+
* Catalog names (multiple selections)
|
|
5562
|
+
* @type {Array.<string> || null}
|
|
5563
|
+
*/
|
|
5564
|
+
this.Catalogs = null;
|
|
5009
5565
|
|
|
5010
5566
|
}
|
|
5011
5567
|
|
|
@@ -5017,19 +5573,19 @@ class DescribeSlowQueryRecordsRequest extends AbstractModel {
|
|
|
5017
5573
|
return;
|
|
5018
5574
|
}
|
|
5019
5575
|
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5020
|
-
this.QueryDurationMs = 'QueryDurationMs' in params ? params.QueryDurationMs : null;
|
|
5021
5576
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
5022
5577
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
5023
5578
|
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
5024
5579
|
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
5025
|
-
this.
|
|
5580
|
+
this.OrderType = 'OrderType' in params ? params.OrderType : null;
|
|
5581
|
+
this.User = 'User' in params ? params.User : null;
|
|
5026
5582
|
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
5027
|
-
this.
|
|
5028
|
-
this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
|
|
5583
|
+
this.SqlType = 'SqlType' in params ? params.SqlType : null;
|
|
5029
5584
|
this.Sql = 'Sql' in params ? params.Sql : null;
|
|
5030
|
-
this.
|
|
5031
|
-
this.
|
|
5032
|
-
this.
|
|
5585
|
+
this.Users = 'Users' in params ? params.Users : null;
|
|
5586
|
+
this.DbNames = 'DbNames' in params ? params.DbNames : null;
|
|
5587
|
+
this.SqlTypes = 'SqlTypes' in params ? params.SqlTypes : null;
|
|
5588
|
+
this.Catalogs = 'Catalogs' in params ? params.Catalogs : null;
|
|
5033
5589
|
|
|
5034
5590
|
}
|
|
5035
5591
|
}
|
|
@@ -5091,6 +5647,70 @@ class DescribeInstanceNodesRoleResponse extends AbstractModel {
|
|
|
5091
5647
|
}
|
|
5092
5648
|
}
|
|
5093
5649
|
|
|
5650
|
+
/**
|
|
5651
|
+
* ExecuteSelectQuery response structure.
|
|
5652
|
+
* @class
|
|
5653
|
+
*/
|
|
5654
|
+
class ExecuteSelectQueryResponse extends AbstractModel {
|
|
5655
|
+
constructor(){
|
|
5656
|
+
super();
|
|
5657
|
+
|
|
5658
|
+
/**
|
|
5659
|
+
* Total records of query results
|
|
5660
|
+
* @type {number || null}
|
|
5661
|
+
*/
|
|
5662
|
+
this.TotalCount = null;
|
|
5663
|
+
|
|
5664
|
+
/**
|
|
5665
|
+
* Field name array of query results
|
|
5666
|
+
* @type {Array.<string> || null}
|
|
5667
|
+
*/
|
|
5668
|
+
this.Fields = null;
|
|
5669
|
+
|
|
5670
|
+
/**
|
|
5671
|
+
* Field type array of query results
|
|
5672
|
+
* @type {Array.<string> || null}
|
|
5673
|
+
*/
|
|
5674
|
+
this.FieldTypes = null;
|
|
5675
|
+
|
|
5676
|
+
/**
|
|
5677
|
+
* Returned data record array. Each element is an array, containing the value of the corresponding field.
|
|
5678
|
+
* @type {Array.<Rows> || null}
|
|
5679
|
+
*/
|
|
5680
|
+
this.Rows = null;
|
|
5681
|
+
|
|
5682
|
+
/**
|
|
5683
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5684
|
+
* @type {string || null}
|
|
5685
|
+
*/
|
|
5686
|
+
this.RequestId = null;
|
|
5687
|
+
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5690
|
+
/**
|
|
5691
|
+
* @private
|
|
5692
|
+
*/
|
|
5693
|
+
deserialize(params) {
|
|
5694
|
+
if (!params) {
|
|
5695
|
+
return;
|
|
5696
|
+
}
|
|
5697
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
5698
|
+
this.Fields = 'Fields' in params ? params.Fields : null;
|
|
5699
|
+
this.FieldTypes = 'FieldTypes' in params ? params.FieldTypes : null;
|
|
5700
|
+
|
|
5701
|
+
if (params.Rows) {
|
|
5702
|
+
this.Rows = new Array();
|
|
5703
|
+
for (let z in params.Rows) {
|
|
5704
|
+
let obj = new Rows();
|
|
5705
|
+
obj.deserialize(params.Rows[z]);
|
|
5706
|
+
this.Rows.push(obj);
|
|
5707
|
+
}
|
|
5708
|
+
}
|
|
5709
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5710
|
+
|
|
5711
|
+
}
|
|
5712
|
+
}
|
|
5713
|
+
|
|
5094
5714
|
/**
|
|
5095
5715
|
* DestroyInstance response structure.
|
|
5096
5716
|
* @class
|
|
@@ -5479,10 +6099,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5479
6099
|
}
|
|
5480
6100
|
|
|
5481
6101
|
/**
|
|
5482
|
-
*
|
|
6102
|
+
* CreateCoolDownPolicy request structure.
|
|
5483
6103
|
* @class
|
|
5484
6104
|
*/
|
|
5485
|
-
class
|
|
6105
|
+
class CreateCoolDownPolicyRequest extends AbstractModel {
|
|
5486
6106
|
constructor(){
|
|
5487
6107
|
super();
|
|
5488
6108
|
|
|
@@ -5493,22 +6113,22 @@ class ModifyUserBindWorkloadGroupRequest extends AbstractModel {
|
|
|
5493
6113
|
this.InstanceId = null;
|
|
5494
6114
|
|
|
5495
6115
|
/**
|
|
5496
|
-
*
|
|
5497
|
-
* @type {
|
|
6116
|
+
* Policy name
|
|
6117
|
+
* @type {string || null}
|
|
5498
6118
|
*/
|
|
5499
|
-
this.
|
|
6119
|
+
this.PolicyName = null;
|
|
5500
6120
|
|
|
5501
6121
|
/**
|
|
5502
|
-
*
|
|
6122
|
+
* cooldown_ttl
|
|
5503
6123
|
* @type {string || null}
|
|
5504
6124
|
*/
|
|
5505
|
-
this.
|
|
6125
|
+
this.CoolDownTtl = null;
|
|
5506
6126
|
|
|
5507
6127
|
/**
|
|
5508
|
-
*
|
|
6128
|
+
* cooldown_datetime
|
|
5509
6129
|
* @type {string || null}
|
|
5510
6130
|
*/
|
|
5511
|
-
this.
|
|
6131
|
+
this.CoolDownDatetime = null;
|
|
5512
6132
|
|
|
5513
6133
|
}
|
|
5514
6134
|
|
|
@@ -5520,17 +6140,9 @@ class ModifyUserBindWorkloadGroupRequest extends AbstractModel {
|
|
|
5520
6140
|
return;
|
|
5521
6141
|
}
|
|
5522
6142
|
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
for (let z in params.BindUsers) {
|
|
5527
|
-
let obj = new BindUser();
|
|
5528
|
-
obj.deserialize(params.BindUsers[z]);
|
|
5529
|
-
this.BindUsers.push(obj);
|
|
5530
|
-
}
|
|
5531
|
-
}
|
|
5532
|
-
this.OldWorkloadGroupName = 'OldWorkloadGroupName' in params ? params.OldWorkloadGroupName : null;
|
|
5533
|
-
this.NewWorkloadGroupName = 'NewWorkloadGroupName' in params ? params.NewWorkloadGroupName : null;
|
|
6143
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
6144
|
+
this.CoolDownTtl = 'CoolDownTtl' in params ? params.CoolDownTtl : null;
|
|
6145
|
+
this.CoolDownDatetime = 'CoolDownDatetime' in params ? params.CoolDownDatetime : null;
|
|
5534
6146
|
|
|
5535
6147
|
}
|
|
5536
6148
|
}
|
|
@@ -5563,6 +6175,58 @@ class DescribeSqlApisResponse extends AbstractModel {
|
|
|
5563
6175
|
}
|
|
5564
6176
|
}
|
|
5565
6177
|
|
|
6178
|
+
/**
|
|
6179
|
+
* DescribeCreateTablesDDL response structure.
|
|
6180
|
+
* @class
|
|
6181
|
+
*/
|
|
6182
|
+
class DescribeCreateTablesDDLResponse extends AbstractModel {
|
|
6183
|
+
constructor(){
|
|
6184
|
+
super();
|
|
6185
|
+
|
|
6186
|
+
/**
|
|
6187
|
+
* DDL information for creating a table
|
|
6188
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6189
|
+
* @type {Array.<CreateTablesDDL> || null}
|
|
6190
|
+
*/
|
|
6191
|
+
this.CreateTablesDDLs = null;
|
|
6192
|
+
|
|
6193
|
+
/**
|
|
6194
|
+
* Error message
|
|
6195
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6196
|
+
* @type {string || null}
|
|
6197
|
+
*/
|
|
6198
|
+
this.Message = null;
|
|
6199
|
+
|
|
6200
|
+
/**
|
|
6201
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6202
|
+
* @type {string || null}
|
|
6203
|
+
*/
|
|
6204
|
+
this.RequestId = null;
|
|
6205
|
+
|
|
6206
|
+
}
|
|
6207
|
+
|
|
6208
|
+
/**
|
|
6209
|
+
* @private
|
|
6210
|
+
*/
|
|
6211
|
+
deserialize(params) {
|
|
6212
|
+
if (!params) {
|
|
6213
|
+
return;
|
|
6214
|
+
}
|
|
6215
|
+
|
|
6216
|
+
if (params.CreateTablesDDLs) {
|
|
6217
|
+
this.CreateTablesDDLs = new Array();
|
|
6218
|
+
for (let z in params.CreateTablesDDLs) {
|
|
6219
|
+
let obj = new CreateTablesDDL();
|
|
6220
|
+
obj.deserialize(params.CreateTablesDDLs[z]);
|
|
6221
|
+
this.CreateTablesDDLs.push(obj);
|
|
6222
|
+
}
|
|
6223
|
+
}
|
|
6224
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
6225
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6226
|
+
|
|
6227
|
+
}
|
|
6228
|
+
}
|
|
6229
|
+
|
|
5566
6230
|
/**
|
|
5567
6231
|
* ModifyInstance request structure.
|
|
5568
6232
|
* @class
|
|
@@ -5862,24 +6526,28 @@ class DescribeBackUpSchedulesResponse extends AbstractModel {
|
|
|
5862
6526
|
}
|
|
5863
6527
|
|
|
5864
6528
|
/**
|
|
5865
|
-
*
|
|
6529
|
+
* DDL information of the table
|
|
5866
6530
|
* @class
|
|
5867
6531
|
*/
|
|
5868
|
-
class
|
|
6532
|
+
class TablesDDL extends AbstractModel {
|
|
5869
6533
|
constructor(){
|
|
5870
6534
|
super();
|
|
5871
6535
|
|
|
5872
6536
|
/**
|
|
5873
|
-
*
|
|
5874
|
-
|
|
6537
|
+
* Table name
|
|
6538
|
+
|
|
6539
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6540
|
+
* @type {string || null}
|
|
5875
6541
|
*/
|
|
5876
|
-
this.
|
|
6542
|
+
this.TableName = null;
|
|
5877
6543
|
|
|
5878
6544
|
/**
|
|
5879
|
-
*
|
|
6545
|
+
* DDL statement for creating a table
|
|
6546
|
+
|
|
6547
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5880
6548
|
* @type {string || null}
|
|
5881
6549
|
*/
|
|
5882
|
-
this.
|
|
6550
|
+
this.DDLInfo = null;
|
|
5883
6551
|
|
|
5884
6552
|
}
|
|
5885
6553
|
|
|
@@ -5890,25 +6558,60 @@ class DescribeBackUpTablesResponse extends AbstractModel {
|
|
|
5890
6558
|
if (!params) {
|
|
5891
6559
|
return;
|
|
5892
6560
|
}
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
this.AvailableTables = new Array();
|
|
5896
|
-
for (let z in params.AvailableTables) {
|
|
5897
|
-
let obj = new BackupTableContent();
|
|
5898
|
-
obj.deserialize(params.AvailableTables[z]);
|
|
5899
|
-
this.AvailableTables.push(obj);
|
|
5900
|
-
}
|
|
5901
|
-
}
|
|
5902
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6561
|
+
this.TableName = 'TableName' in params ? params.TableName : null;
|
|
6562
|
+
this.DDLInfo = 'DDLInfo' in params ? params.DDLInfo : null;
|
|
5903
6563
|
|
|
5904
6564
|
}
|
|
5905
6565
|
}
|
|
5906
6566
|
|
|
5907
6567
|
/**
|
|
5908
|
-
*
|
|
6568
|
+
* DescribeBackUpTables response structure.
|
|
5909
6569
|
* @class
|
|
5910
6570
|
*/
|
|
5911
|
-
class
|
|
6571
|
+
class DescribeBackUpTablesResponse extends AbstractModel {
|
|
6572
|
+
constructor(){
|
|
6573
|
+
super();
|
|
6574
|
+
|
|
6575
|
+
/**
|
|
6576
|
+
* List of tables available for backup
|
|
6577
|
+
* @type {Array.<BackupTableContent> || null}
|
|
6578
|
+
*/
|
|
6579
|
+
this.AvailableTables = null;
|
|
6580
|
+
|
|
6581
|
+
/**
|
|
6582
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6583
|
+
* @type {string || null}
|
|
6584
|
+
*/
|
|
6585
|
+
this.RequestId = null;
|
|
6586
|
+
|
|
6587
|
+
}
|
|
6588
|
+
|
|
6589
|
+
/**
|
|
6590
|
+
* @private
|
|
6591
|
+
*/
|
|
6592
|
+
deserialize(params) {
|
|
6593
|
+
if (!params) {
|
|
6594
|
+
return;
|
|
6595
|
+
}
|
|
6596
|
+
|
|
6597
|
+
if (params.AvailableTables) {
|
|
6598
|
+
this.AvailableTables = new Array();
|
|
6599
|
+
for (let z in params.AvailableTables) {
|
|
6600
|
+
let obj = new BackupTableContent();
|
|
6601
|
+
obj.deserialize(params.AvailableTables[z]);
|
|
6602
|
+
this.AvailableTables.push(obj);
|
|
6603
|
+
}
|
|
6604
|
+
}
|
|
6605
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6606
|
+
|
|
6607
|
+
}
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
/**
|
|
6611
|
+
* DescribeDatabaseAuditRecords response structure.
|
|
6612
|
+
* @class
|
|
6613
|
+
*/
|
|
6614
|
+
class DescribeDatabaseAuditRecordsResponse extends AbstractModel {
|
|
5912
6615
|
constructor(){
|
|
5913
6616
|
super();
|
|
5914
6617
|
|
|
@@ -6053,6 +6756,43 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6053
6756
|
}
|
|
6054
6757
|
}
|
|
6055
6758
|
|
|
6759
|
+
/**
|
|
6760
|
+
* ModifyCoolDownPolicy response structure.
|
|
6761
|
+
* @class
|
|
6762
|
+
*/
|
|
6763
|
+
class ModifyCoolDownPolicyResponse extends AbstractModel {
|
|
6764
|
+
constructor(){
|
|
6765
|
+
super();
|
|
6766
|
+
|
|
6767
|
+
/**
|
|
6768
|
+
* Error message
|
|
6769
|
+
|
|
6770
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6771
|
+
* @type {string || null}
|
|
6772
|
+
*/
|
|
6773
|
+
this.ErrorMsg = null;
|
|
6774
|
+
|
|
6775
|
+
/**
|
|
6776
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6777
|
+
* @type {string || null}
|
|
6778
|
+
*/
|
|
6779
|
+
this.RequestId = null;
|
|
6780
|
+
|
|
6781
|
+
}
|
|
6782
|
+
|
|
6783
|
+
/**
|
|
6784
|
+
* @private
|
|
6785
|
+
*/
|
|
6786
|
+
deserialize(params) {
|
|
6787
|
+
if (!params) {
|
|
6788
|
+
return;
|
|
6789
|
+
}
|
|
6790
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
6791
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6792
|
+
|
|
6793
|
+
}
|
|
6794
|
+
}
|
|
6795
|
+
|
|
6056
6796
|
/**
|
|
6057
6797
|
* DescribeInstancesHealthState request structure.
|
|
6058
6798
|
* @class
|
|
@@ -6068,7 +6808,7 @@ class DescribeInstancesHealthStateRequest extends AbstractModel {
|
|
|
6068
6808
|
this.InstanceID = null;
|
|
6069
6809
|
|
|
6070
6810
|
/**
|
|
6071
|
-
*
|
|
6811
|
+
* If this parameter is left blank, all clusters corresponding to the current appId are involved. Otherwise, a specific cluster is involved.
|
|
6072
6812
|
* @type {string || null}
|
|
6073
6813
|
*/
|
|
6074
6814
|
this.Input = null;
|
|
@@ -6596,6 +7336,27 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6596
7336
|
*/
|
|
6597
7337
|
this.CoolDownBucket = null;
|
|
6598
7338
|
|
|
7339
|
+
/**
|
|
7340
|
+
* Instance extension information
|
|
7341
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7342
|
+
* @type {InstanceDetail || null}
|
|
7343
|
+
*/
|
|
7344
|
+
this.Details = null;
|
|
7345
|
+
|
|
7346
|
+
/**
|
|
7347
|
+
* Whether to enable DLC. 0: disable; 1: enable.
|
|
7348
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7349
|
+
* @type {number || null}
|
|
7350
|
+
*/
|
|
7351
|
+
this.EnableDlc = null;
|
|
7352
|
+
|
|
7353
|
+
/**
|
|
7354
|
+
* Account type. 0: ordinary user; 1: CAM user.
|
|
7355
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7356
|
+
* @type {number || null}
|
|
7357
|
+
*/
|
|
7358
|
+
this.AccountType = null;
|
|
7359
|
+
|
|
6599
7360
|
}
|
|
6600
7361
|
|
|
6601
7362
|
/**
|
|
@@ -6671,6 +7432,133 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6671
7432
|
this.EnableCoolDown = 'EnableCoolDown' in params ? params.EnableCoolDown : null;
|
|
6672
7433
|
this.CoolDownBucket = 'CoolDownBucket' in params ? params.CoolDownBucket : null;
|
|
6673
7434
|
|
|
7435
|
+
if (params.Details) {
|
|
7436
|
+
let obj = new InstanceDetail();
|
|
7437
|
+
obj.deserialize(params.Details)
|
|
7438
|
+
this.Details = obj;
|
|
7439
|
+
}
|
|
7440
|
+
this.EnableDlc = 'EnableDlc' in params ? params.EnableDlc : null;
|
|
7441
|
+
this.AccountType = 'AccountType' in params ? params.AccountType : null;
|
|
7442
|
+
|
|
7443
|
+
}
|
|
7444
|
+
}
|
|
7445
|
+
|
|
7446
|
+
/**
|
|
7447
|
+
* DescribeSlowQueryRecords request structure.
|
|
7448
|
+
* @class
|
|
7449
|
+
*/
|
|
7450
|
+
class DescribeSlowQueryRecordsRequest extends AbstractModel {
|
|
7451
|
+
constructor(){
|
|
7452
|
+
super();
|
|
7453
|
+
|
|
7454
|
+
/**
|
|
7455
|
+
* Instance ID
|
|
7456
|
+
* @type {string || null}
|
|
7457
|
+
*/
|
|
7458
|
+
this.InstanceId = null;
|
|
7459
|
+
|
|
7460
|
+
/**
|
|
7461
|
+
* Slow log time
|
|
7462
|
+
* @type {number || null}
|
|
7463
|
+
*/
|
|
7464
|
+
this.QueryDurationMs = null;
|
|
7465
|
+
|
|
7466
|
+
/**
|
|
7467
|
+
* Start time
|
|
7468
|
+
* @type {string || null}
|
|
7469
|
+
*/
|
|
7470
|
+
this.StartTime = null;
|
|
7471
|
+
|
|
7472
|
+
/**
|
|
7473
|
+
* End time
|
|
7474
|
+
* @type {string || null}
|
|
7475
|
+
*/
|
|
7476
|
+
this.EndTime = null;
|
|
7477
|
+
|
|
7478
|
+
/**
|
|
7479
|
+
* Paging
|
|
7480
|
+
* @type {number || null}
|
|
7481
|
+
*/
|
|
7482
|
+
this.PageSize = null;
|
|
7483
|
+
|
|
7484
|
+
/**
|
|
7485
|
+
* Paging
|
|
7486
|
+
* @type {number || null}
|
|
7487
|
+
*/
|
|
7488
|
+
this.PageNum = null;
|
|
7489
|
+
|
|
7490
|
+
/**
|
|
7491
|
+
* Sort parameters
|
|
7492
|
+
* @type {string || null}
|
|
7493
|
+
*/
|
|
7494
|
+
this.DurationMs = null;
|
|
7495
|
+
|
|
7496
|
+
/**
|
|
7497
|
+
* Database name
|
|
7498
|
+
* @type {Array.<string> || null}
|
|
7499
|
+
*/
|
|
7500
|
+
this.DbName = null;
|
|
7501
|
+
|
|
7502
|
+
/**
|
|
7503
|
+
* Whether it is a query. 0 indicates no, and 1 indicates yes.
|
|
7504
|
+
* @type {number || null}
|
|
7505
|
+
*/
|
|
7506
|
+
this.IsQuery = null;
|
|
7507
|
+
|
|
7508
|
+
/**
|
|
7509
|
+
* catalog name
|
|
7510
|
+
* @type {Array.<string> || null}
|
|
7511
|
+
*/
|
|
7512
|
+
this.CatalogName = null;
|
|
7513
|
+
|
|
7514
|
+
/**
|
|
7515
|
+
* SQL name
|
|
7516
|
+
* @type {string || null}
|
|
7517
|
+
*/
|
|
7518
|
+
this.Sql = null;
|
|
7519
|
+
|
|
7520
|
+
/**
|
|
7521
|
+
* ReadRows sort field
|
|
7522
|
+
* @type {string || null}
|
|
7523
|
+
*/
|
|
7524
|
+
this.ReadRows = null;
|
|
7525
|
+
|
|
7526
|
+
/**
|
|
7527
|
+
* ResultBytes sort field
|
|
7528
|
+
* @type {string || null}
|
|
7529
|
+
*/
|
|
7530
|
+
this.ResultBytes = null;
|
|
7531
|
+
|
|
7532
|
+
/**
|
|
7533
|
+
* MemoryUsage sort field
|
|
7534
|
+
* @type {string || null}
|
|
7535
|
+
*/
|
|
7536
|
+
this.MemoryUsage = null;
|
|
7537
|
+
|
|
7538
|
+
}
|
|
7539
|
+
|
|
7540
|
+
/**
|
|
7541
|
+
* @private
|
|
7542
|
+
*/
|
|
7543
|
+
deserialize(params) {
|
|
7544
|
+
if (!params) {
|
|
7545
|
+
return;
|
|
7546
|
+
}
|
|
7547
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7548
|
+
this.QueryDurationMs = 'QueryDurationMs' in params ? params.QueryDurationMs : null;
|
|
7549
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
7550
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
7551
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
7552
|
+
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
7553
|
+
this.DurationMs = 'DurationMs' in params ? params.DurationMs : null;
|
|
7554
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
7555
|
+
this.IsQuery = 'IsQuery' in params ? params.IsQuery : null;
|
|
7556
|
+
this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
|
|
7557
|
+
this.Sql = 'Sql' in params ? params.Sql : null;
|
|
7558
|
+
this.ReadRows = 'ReadRows' in params ? params.ReadRows : null;
|
|
7559
|
+
this.ResultBytes = 'ResultBytes' in params ? params.ResultBytes : null;
|
|
7560
|
+
this.MemoryUsage = 'MemoryUsage' in params ? params.MemoryUsage : null;
|
|
7561
|
+
|
|
6674
7562
|
}
|
|
6675
7563
|
}
|
|
6676
7564
|
|
|
@@ -6683,8 +7571,7 @@ class CreateTableResponse extends AbstractModel {
|
|
|
6683
7571
|
super();
|
|
6684
7572
|
|
|
6685
7573
|
/**
|
|
6686
|
-
*
|
|
6687
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7574
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
6688
7575
|
* @type {string || null}
|
|
6689
7576
|
*/
|
|
6690
7577
|
this.Message = null;
|
|
@@ -6781,42 +7668,92 @@ class ScaleUpInstanceRequest extends AbstractModel {
|
|
|
6781
7668
|
}
|
|
6782
7669
|
|
|
6783
7670
|
/**
|
|
6784
|
-
*
|
|
7671
|
+
* Column information of the table
|
|
6785
7672
|
* @class
|
|
6786
7673
|
*/
|
|
6787
|
-
class
|
|
7674
|
+
class Column extends AbstractModel {
|
|
6788
7675
|
constructor(){
|
|
6789
7676
|
super();
|
|
6790
7677
|
|
|
6791
7678
|
/**
|
|
6792
|
-
*
|
|
7679
|
+
* Column name
|
|
7680
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6793
7681
|
* @type {string || null}
|
|
6794
7682
|
*/
|
|
6795
|
-
this.
|
|
7683
|
+
this.Name = null;
|
|
6796
7684
|
|
|
6797
7685
|
/**
|
|
6798
|
-
*
|
|
7686
|
+
* Column type
|
|
7687
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6799
7688
|
* @type {string || null}
|
|
6800
7689
|
*/
|
|
6801
|
-
this.
|
|
7690
|
+
this.Type = null;
|
|
6802
7691
|
|
|
6803
7692
|
/**
|
|
6804
|
-
*
|
|
6805
|
-
|
|
7693
|
+
* Aggregation type: When the table is an aggregation model (AGG_KEY), the column with the aggregation type is set as the metric column, and other columns are dimension columns. Aggregation type: ●SUM: sum; the values of multiple rows are accumulated. ●REPLACE: replacement; the values in the next batch of data will replace the values in the previously imported rows. ●MAX: retain the maximum value.
|
|
7694
|
+
●MIN: retain the minimum value. ●REPLACE_IF_NOT_NULL: non-null values replacement. The difference from REPLACE is that null values are not replaced. ●HLL_UNION: aggregation method for HLL type columns, which is aggregated by HyperLogLog algorithm. ●BITMAP_UNION: aggregation method for BIMTAP type columns; bitmap union aggregation.
|
|
7695
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7696
|
+
* @type {string || null}
|
|
6806
7697
|
*/
|
|
6807
|
-
this.
|
|
7698
|
+
this.AggType = null;
|
|
6808
7699
|
|
|
6809
7700
|
/**
|
|
6810
|
-
*
|
|
6811
|
-
|
|
7701
|
+
* Whether the column value is allowed to be Null
|
|
7702
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7703
|
+
* @type {boolean || null}
|
|
6812
7704
|
*/
|
|
6813
|
-
this.
|
|
7705
|
+
this.IsNull = null;
|
|
6814
7706
|
|
|
6815
7707
|
/**
|
|
6816
|
-
*
|
|
6817
|
-
|
|
7708
|
+
* Whether it is a Key column. The meaning of different data models:
|
|
7709
|
+
●DUP_KEY: The column specified afterwards is the sorting column.
|
|
7710
|
+
●AGG_KEY: The column specified afterwards is the dimension column.
|
|
7711
|
+
●UNI_KEY: The column specified afterward is the primary key column.
|
|
7712
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7713
|
+
* @type {boolean || null}
|
|
6818
7714
|
*/
|
|
6819
|
-
this.
|
|
7715
|
+
this.IsKey = null;
|
|
7716
|
+
|
|
7717
|
+
/**
|
|
7718
|
+
* Column's default value
|
|
7719
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7720
|
+
* @type {string || null}
|
|
7721
|
+
*/
|
|
7722
|
+
this.DefaultValue = null;
|
|
7723
|
+
|
|
7724
|
+
/**
|
|
7725
|
+
* Whether it is a partition column. The partition column must be a Key column.
|
|
7726
|
+
|
|
7727
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7728
|
+
* @type {boolean || null}
|
|
7729
|
+
*/
|
|
7730
|
+
this.IsPartition = null;
|
|
7731
|
+
|
|
7732
|
+
/**
|
|
7733
|
+
* Whether it is a bucket column. The bucket column of the aggregation model and primary key model must be Key columns, while the bucket column of the detail model can be any column.
|
|
7734
|
+
|
|
7735
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7736
|
+
* @type {boolean || null}
|
|
7737
|
+
*/
|
|
7738
|
+
this.IsDistribution = null;
|
|
7739
|
+
|
|
7740
|
+
/**
|
|
7741
|
+
* Whether it is an auto-increment column. Supported by TCHouse-D 2.1 version and later.
|
|
7742
|
+
Limit:
|
|
7743
|
+
1. Only DUP_KEY and UNI_KEY model tables can contain auto-increment columns.
|
|
7744
|
+
2. A table can contain at most one auto-increment column.
|
|
7745
|
+
3. The type of the auto-increment column must be BIGINT type and cannot be null.
|
|
7746
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7747
|
+
* @type {boolean || null}
|
|
7748
|
+
*/
|
|
7749
|
+
this.AutoInc = null;
|
|
7750
|
+
|
|
7751
|
+
/**
|
|
7752
|
+
* Column description
|
|
7753
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7754
|
+
* @type {string || null}
|
|
7755
|
+
*/
|
|
7756
|
+
this.Comment = null;
|
|
6820
7757
|
|
|
6821
7758
|
}
|
|
6822
7759
|
|
|
@@ -6827,19 +7764,16 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
6827
7764
|
if (!params) {
|
|
6828
7765
|
return;
|
|
6829
7766
|
}
|
|
6830
|
-
this.
|
|
6831
|
-
this.
|
|
6832
|
-
this.
|
|
6833
|
-
this.
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
this.SearchTags.push(obj);
|
|
6841
|
-
}
|
|
6842
|
-
}
|
|
7767
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
7768
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
7769
|
+
this.AggType = 'AggType' in params ? params.AggType : null;
|
|
7770
|
+
this.IsNull = 'IsNull' in params ? params.IsNull : null;
|
|
7771
|
+
this.IsKey = 'IsKey' in params ? params.IsKey : null;
|
|
7772
|
+
this.DefaultValue = 'DefaultValue' in params ? params.DefaultValue : null;
|
|
7773
|
+
this.IsPartition = 'IsPartition' in params ? params.IsPartition : null;
|
|
7774
|
+
this.IsDistribution = 'IsDistribution' in params ? params.IsDistribution : null;
|
|
7775
|
+
this.AutoInc = 'AutoInc' in params ? params.AutoInc : null;
|
|
7776
|
+
this.Comment = 'Comment' in params ? params.Comment : null;
|
|
6843
7777
|
|
|
6844
7778
|
}
|
|
6845
7779
|
}
|
|
@@ -6984,6 +7918,43 @@ class ExecuteSelectQueryRequest extends AbstractModel {
|
|
|
6984
7918
|
}
|
|
6985
7919
|
}
|
|
6986
7920
|
|
|
7921
|
+
/**
|
|
7922
|
+
* CreateCoolDownPolicy response structure.
|
|
7923
|
+
* @class
|
|
7924
|
+
*/
|
|
7925
|
+
class CreateCoolDownPolicyResponse extends AbstractModel {
|
|
7926
|
+
constructor(){
|
|
7927
|
+
super();
|
|
7928
|
+
|
|
7929
|
+
/**
|
|
7930
|
+
* Error message
|
|
7931
|
+
|
|
7932
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7933
|
+
* @type {string || null}
|
|
7934
|
+
*/
|
|
7935
|
+
this.ErrorMsg = null;
|
|
7936
|
+
|
|
7937
|
+
/**
|
|
7938
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
7939
|
+
* @type {string || null}
|
|
7940
|
+
*/
|
|
7941
|
+
this.RequestId = null;
|
|
7942
|
+
|
|
7943
|
+
}
|
|
7944
|
+
|
|
7945
|
+
/**
|
|
7946
|
+
* @private
|
|
7947
|
+
*/
|
|
7948
|
+
deserialize(params) {
|
|
7949
|
+
if (!params) {
|
|
7950
|
+
return;
|
|
7951
|
+
}
|
|
7952
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
7953
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7954
|
+
|
|
7955
|
+
}
|
|
7956
|
+
}
|
|
7957
|
+
|
|
6987
7958
|
/**
|
|
6988
7959
|
* ModifyWorkloadGroup response structure.
|
|
6989
7960
|
* @class
|
|
@@ -7327,6 +8298,43 @@ class RestartClusterForNodeRequest extends AbstractModel {
|
|
|
7327
8298
|
}
|
|
7328
8299
|
}
|
|
7329
8300
|
|
|
8301
|
+
/**
|
|
8302
|
+
* UpdateCoolDown response structure.
|
|
8303
|
+
* @class
|
|
8304
|
+
*/
|
|
8305
|
+
class UpdateCoolDownResponse extends AbstractModel {
|
|
8306
|
+
constructor(){
|
|
8307
|
+
super();
|
|
8308
|
+
|
|
8309
|
+
/**
|
|
8310
|
+
* Error message
|
|
8311
|
+
|
|
8312
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8313
|
+
* @type {string || null}
|
|
8314
|
+
*/
|
|
8315
|
+
this.ErrorMsg = null;
|
|
8316
|
+
|
|
8317
|
+
/**
|
|
8318
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8319
|
+
* @type {string || null}
|
|
8320
|
+
*/
|
|
8321
|
+
this.RequestId = null;
|
|
8322
|
+
|
|
8323
|
+
}
|
|
8324
|
+
|
|
8325
|
+
/**
|
|
8326
|
+
* @private
|
|
8327
|
+
*/
|
|
8328
|
+
deserialize(params) {
|
|
8329
|
+
if (!params) {
|
|
8330
|
+
return;
|
|
8331
|
+
}
|
|
8332
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
8333
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8334
|
+
|
|
8335
|
+
}
|
|
8336
|
+
}
|
|
8337
|
+
|
|
7330
8338
|
/**
|
|
7331
8339
|
* Progress details of the backup task
|
|
7332
8340
|
* @class
|
|
@@ -7504,6 +8512,90 @@ class SearchTags extends AbstractModel {
|
|
|
7504
8512
|
}
|
|
7505
8513
|
}
|
|
7506
8514
|
|
|
8515
|
+
/**
|
|
8516
|
+
* Add or modify the user
|
|
8517
|
+
* @class
|
|
8518
|
+
*/
|
|
8519
|
+
class UserInfo extends AbstractModel {
|
|
8520
|
+
constructor(){
|
|
8521
|
+
super();
|
|
8522
|
+
|
|
8523
|
+
/**
|
|
8524
|
+
* Cluster instance ID.
|
|
8525
|
+
* @type {string || null}
|
|
8526
|
+
*/
|
|
8527
|
+
this.InstanceId = null;
|
|
8528
|
+
|
|
8529
|
+
/**
|
|
8530
|
+
* Username
|
|
8531
|
+
* @type {string || null}
|
|
8532
|
+
*/
|
|
8533
|
+
this.UserName = null;
|
|
8534
|
+
|
|
8535
|
+
/**
|
|
8536
|
+
* Password
|
|
8537
|
+
* @type {string || null}
|
|
8538
|
+
*/
|
|
8539
|
+
this.PassWord = null;
|
|
8540
|
+
|
|
8541
|
+
/**
|
|
8542
|
+
* The IP address of the user link
|
|
8543
|
+
* @type {string || null}
|
|
8544
|
+
*/
|
|
8545
|
+
this.WhiteHost = null;
|
|
8546
|
+
|
|
8547
|
+
/**
|
|
8548
|
+
* IP address of the user link before modification
|
|
8549
|
+
* @type {string || null}
|
|
8550
|
+
*/
|
|
8551
|
+
this.OldWhiteHost = null;
|
|
8552
|
+
|
|
8553
|
+
/**
|
|
8554
|
+
* Description
|
|
8555
|
+
* @type {string || null}
|
|
8556
|
+
*/
|
|
8557
|
+
this.Describe = null;
|
|
8558
|
+
|
|
8559
|
+
/**
|
|
8560
|
+
* Original password
|
|
8561
|
+
* @type {string || null}
|
|
8562
|
+
*/
|
|
8563
|
+
this.OldPwd = null;
|
|
8564
|
+
|
|
8565
|
+
/**
|
|
8566
|
+
* UIN of the bound sub-user
|
|
8567
|
+
* @type {string || null}
|
|
8568
|
+
*/
|
|
8569
|
+
this.CamUin = null;
|
|
8570
|
+
|
|
8571
|
+
/**
|
|
8572
|
+
* Ranger group id list
|
|
8573
|
+
* @type {Array.<number> || null}
|
|
8574
|
+
*/
|
|
8575
|
+
this.CamRangerGroupIds = null;
|
|
8576
|
+
|
|
8577
|
+
}
|
|
8578
|
+
|
|
8579
|
+
/**
|
|
8580
|
+
* @private
|
|
8581
|
+
*/
|
|
8582
|
+
deserialize(params) {
|
|
8583
|
+
if (!params) {
|
|
8584
|
+
return;
|
|
8585
|
+
}
|
|
8586
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8587
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
8588
|
+
this.PassWord = 'PassWord' in params ? params.PassWord : null;
|
|
8589
|
+
this.WhiteHost = 'WhiteHost' in params ? params.WhiteHost : null;
|
|
8590
|
+
this.OldWhiteHost = 'OldWhiteHost' in params ? params.OldWhiteHost : null;
|
|
8591
|
+
this.Describe = 'Describe' in params ? params.Describe : null;
|
|
8592
|
+
this.OldPwd = 'OldPwd' in params ? params.OldPwd : null;
|
|
8593
|
+
this.CamUin = 'CamUin' in params ? params.CamUin : null;
|
|
8594
|
+
this.CamRangerGroupIds = 'CamRangerGroupIds' in params ? params.CamRangerGroupIds : null;
|
|
8595
|
+
|
|
8596
|
+
}
|
|
8597
|
+
}
|
|
8598
|
+
|
|
7507
8599
|
/**
|
|
7508
8600
|
* DescribeInstanceUsedSubnets request structure.
|
|
7509
8601
|
* @class
|
|
@@ -7889,19 +8981,34 @@ class DescribeBackUpJobDetailRequest extends AbstractModel {
|
|
|
7889
8981
|
}
|
|
7890
8982
|
|
|
7891
8983
|
/**
|
|
7892
|
-
*
|
|
8984
|
+
* DescribeCoolDownBackends response structure.
|
|
7893
8985
|
* @class
|
|
7894
8986
|
*/
|
|
7895
|
-
class
|
|
8987
|
+
class DescribeCoolDownBackendsResponse extends AbstractModel {
|
|
7896
8988
|
constructor(){
|
|
7897
8989
|
super();
|
|
7898
8990
|
|
|
7899
8991
|
/**
|
|
7900
|
-
*
|
|
8992
|
+
* Error message
|
|
8993
|
+
|
|
7901
8994
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7902
|
-
* @type {
|
|
8995
|
+
* @type {string || null}
|
|
7903
8996
|
*/
|
|
7904
|
-
this.
|
|
8997
|
+
this.ErrorMsg = null;
|
|
8998
|
+
|
|
8999
|
+
/**
|
|
9000
|
+
* Node information list
|
|
9001
|
+
|
|
9002
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9003
|
+
* @type {Array.<CoolDownBackend> || null}
|
|
9004
|
+
*/
|
|
9005
|
+
this.List = null;
|
|
9006
|
+
|
|
9007
|
+
/**
|
|
9008
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9009
|
+
* @type {string || null}
|
|
9010
|
+
*/
|
|
9011
|
+
this.RequestId = null;
|
|
7905
9012
|
|
|
7906
9013
|
}
|
|
7907
9014
|
|
|
@@ -7912,48 +9019,49 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7912
9019
|
if (!params) {
|
|
7913
9020
|
return;
|
|
7914
9021
|
}
|
|
7915
|
-
this.
|
|
9022
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
9023
|
+
|
|
9024
|
+
if (params.List) {
|
|
9025
|
+
this.List = new Array();
|
|
9026
|
+
for (let z in params.List) {
|
|
9027
|
+
let obj = new CoolDownBackend();
|
|
9028
|
+
obj.deserialize(params.List[z]);
|
|
9029
|
+
this.List.push(obj);
|
|
9030
|
+
}
|
|
9031
|
+
}
|
|
9032
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7916
9033
|
|
|
7917
9034
|
}
|
|
7918
9035
|
}
|
|
7919
9036
|
|
|
7920
9037
|
/**
|
|
7921
|
-
*
|
|
9038
|
+
* DescribeCoolDownPolicies response structure.
|
|
7922
9039
|
* @class
|
|
7923
9040
|
*/
|
|
7924
|
-
class
|
|
9041
|
+
class DescribeCoolDownPoliciesResponse extends AbstractModel {
|
|
7925
9042
|
constructor(){
|
|
7926
9043
|
super();
|
|
7927
9044
|
|
|
7928
9045
|
/**
|
|
7929
|
-
*
|
|
7930
|
-
* @type {string || null}
|
|
7931
|
-
*/
|
|
7932
|
-
this.InstanceId = null;
|
|
7933
|
-
|
|
7934
|
-
/**
|
|
7935
|
-
* Database for obtaining the list of tables
|
|
7936
|
-
* @type {string || null}
|
|
7937
|
-
*/
|
|
7938
|
-
this.DbName = null;
|
|
9046
|
+
* Error message
|
|
7939
9047
|
|
|
7940
|
-
|
|
7941
|
-
* Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
9048
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7942
9049
|
* @type {string || null}
|
|
7943
9050
|
*/
|
|
7944
|
-
this.
|
|
9051
|
+
this.ErrorMsg = null;
|
|
7945
9052
|
|
|
7946
9053
|
/**
|
|
7947
|
-
*
|
|
7948
|
-
|
|
9054
|
+
* List of hot/cold data layering policies
|
|
9055
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9056
|
+
* @type {Array.<CoolDownPolicyInfo> || null}
|
|
7949
9057
|
*/
|
|
7950
|
-
this.
|
|
9058
|
+
this.List = null;
|
|
7951
9059
|
|
|
7952
9060
|
/**
|
|
7953
|
-
*
|
|
9061
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
7954
9062
|
* @type {string || null}
|
|
7955
9063
|
*/
|
|
7956
|
-
this.
|
|
9064
|
+
this.RequestId = null;
|
|
7957
9065
|
|
|
7958
9066
|
}
|
|
7959
9067
|
|
|
@@ -7964,11 +9072,73 @@ class DescribeTableListRequest extends AbstractModel {
|
|
|
7964
9072
|
if (!params) {
|
|
7965
9073
|
return;
|
|
7966
9074
|
}
|
|
7967
|
-
this.
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
9075
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
9076
|
+
|
|
9077
|
+
if (params.List) {
|
|
9078
|
+
this.List = new Array();
|
|
9079
|
+
for (let z in params.List) {
|
|
9080
|
+
let obj = new CoolDownPolicyInfo();
|
|
9081
|
+
obj.deserialize(params.List[z]);
|
|
9082
|
+
this.List.push(obj);
|
|
9083
|
+
}
|
|
9084
|
+
}
|
|
9085
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9086
|
+
|
|
9087
|
+
}
|
|
9088
|
+
}
|
|
9089
|
+
|
|
9090
|
+
/**
|
|
9091
|
+
* DescribeTableList request structure.
|
|
9092
|
+
* @class
|
|
9093
|
+
*/
|
|
9094
|
+
class DescribeTableListRequest extends AbstractModel {
|
|
9095
|
+
constructor(){
|
|
9096
|
+
super();
|
|
9097
|
+
|
|
9098
|
+
/**
|
|
9099
|
+
* Resource ID, which is the TCHouse-D resource ID used for table creation.
|
|
9100
|
+
* @type {string || null}
|
|
9101
|
+
*/
|
|
9102
|
+
this.InstanceId = null;
|
|
9103
|
+
|
|
9104
|
+
/**
|
|
9105
|
+
* Database for obtaining the list of tables
|
|
9106
|
+
* @type {string || null}
|
|
9107
|
+
*/
|
|
9108
|
+
this.DbName = null;
|
|
9109
|
+
|
|
9110
|
+
/**
|
|
9111
|
+
* Use the user who has corresponding permissions for operations. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
9112
|
+
* @type {string || null}
|
|
9113
|
+
*/
|
|
9114
|
+
this.UserName = null;
|
|
9115
|
+
|
|
9116
|
+
/**
|
|
9117
|
+
* Password corresponding to the user. If the TCHouse-D cluster uses a kernel account registered by a CAM user, you do not need to fill it in.
|
|
9118
|
+
* @type {string || null}
|
|
9119
|
+
*/
|
|
9120
|
+
this.PassWord = null;
|
|
9121
|
+
|
|
9122
|
+
/**
|
|
9123
|
+
* Query the data source where the database is located. If it is not filled in, the internal data source (internal) will be used by default.
|
|
9124
|
+
* @type {string || null}
|
|
9125
|
+
*/
|
|
9126
|
+
this.CatalogName = null;
|
|
9127
|
+
|
|
9128
|
+
}
|
|
9129
|
+
|
|
9130
|
+
/**
|
|
9131
|
+
* @private
|
|
9132
|
+
*/
|
|
9133
|
+
deserialize(params) {
|
|
9134
|
+
if (!params) {
|
|
9135
|
+
return;
|
|
9136
|
+
}
|
|
9137
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
9138
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
9139
|
+
this.UserName = 'UserName' in params ? params.UserName : null;
|
|
9140
|
+
this.PassWord = 'PassWord' in params ? params.PassWord : null;
|
|
9141
|
+
this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
|
|
7972
9142
|
|
|
7973
9143
|
}
|
|
7974
9144
|
}
|
|
@@ -8030,6 +9200,59 @@ class DescribeWorkloadGroupResponse extends AbstractModel {
|
|
|
8030
9200
|
}
|
|
8031
9201
|
}
|
|
8032
9202
|
|
|
9203
|
+
/**
|
|
9204
|
+
* Information on the table containing layered cold and hot data
|
|
9205
|
+
* @class
|
|
9206
|
+
*/
|
|
9207
|
+
class CoolDownTableDataInfo extends AbstractModel {
|
|
9208
|
+
constructor(){
|
|
9209
|
+
super();
|
|
9210
|
+
|
|
9211
|
+
/**
|
|
9212
|
+
* Column: DatabaseName
|
|
9213
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9214
|
+
* @type {string || null}
|
|
9215
|
+
*/
|
|
9216
|
+
this.DatabaseName = null;
|
|
9217
|
+
|
|
9218
|
+
/**
|
|
9219
|
+
* Column: TableName
|
|
9220
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9221
|
+
* @type {string || null}
|
|
9222
|
+
*/
|
|
9223
|
+
this.TableName = null;
|
|
9224
|
+
|
|
9225
|
+
/**
|
|
9226
|
+
* Column: Size
|
|
9227
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9228
|
+
* @type {string || null}
|
|
9229
|
+
*/
|
|
9230
|
+
this.Size = null;
|
|
9231
|
+
|
|
9232
|
+
/**
|
|
9233
|
+
* Column: RemoteSize
|
|
9234
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9235
|
+
* @type {string || null}
|
|
9236
|
+
*/
|
|
9237
|
+
this.RemoteSize = null;
|
|
9238
|
+
|
|
9239
|
+
}
|
|
9240
|
+
|
|
9241
|
+
/**
|
|
9242
|
+
* @private
|
|
9243
|
+
*/
|
|
9244
|
+
deserialize(params) {
|
|
9245
|
+
if (!params) {
|
|
9246
|
+
return;
|
|
9247
|
+
}
|
|
9248
|
+
this.DatabaseName = 'DatabaseName' in params ? params.DatabaseName : null;
|
|
9249
|
+
this.TableName = 'TableName' in params ? params.TableName : null;
|
|
9250
|
+
this.Size = 'Size' in params ? params.Size : null;
|
|
9251
|
+
this.RemoteSize = 'RemoteSize' in params ? params.RemoteSize : null;
|
|
9252
|
+
|
|
9253
|
+
}
|
|
9254
|
+
}
|
|
9255
|
+
|
|
8033
9256
|
/**
|
|
8034
9257
|
* ModifySecurityGroups response structure.
|
|
8035
9258
|
* @class
|
|
@@ -8171,6 +9394,59 @@ class DescribeSpecRequest extends AbstractModel {
|
|
|
8171
9394
|
}
|
|
8172
9395
|
}
|
|
8173
9396
|
|
|
9397
|
+
/**
|
|
9398
|
+
* Information on the backend node supporting hot/cold data layering
|
|
9399
|
+
* @class
|
|
9400
|
+
*/
|
|
9401
|
+
class CoolDownBackend extends AbstractModel {
|
|
9402
|
+
constructor(){
|
|
9403
|
+
super();
|
|
9404
|
+
|
|
9405
|
+
/**
|
|
9406
|
+
* Field: Host
|
|
9407
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9408
|
+
* @type {string || null}
|
|
9409
|
+
*/
|
|
9410
|
+
this.Host = null;
|
|
9411
|
+
|
|
9412
|
+
/**
|
|
9413
|
+
* Field: DataUsedCapacity
|
|
9414
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9415
|
+
* @type {string || null}
|
|
9416
|
+
*/
|
|
9417
|
+
this.DataUsedCapacity = null;
|
|
9418
|
+
|
|
9419
|
+
/**
|
|
9420
|
+
* Field: TotalCapacity
|
|
9421
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9422
|
+
* @type {string || null}
|
|
9423
|
+
*/
|
|
9424
|
+
this.TotalCapacity = null;
|
|
9425
|
+
|
|
9426
|
+
/**
|
|
9427
|
+
* Field: RemoteUsedCapacity
|
|
9428
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9429
|
+
* @type {string || null}
|
|
9430
|
+
*/
|
|
9431
|
+
this.RemoteUsedCapacity = null;
|
|
9432
|
+
|
|
9433
|
+
}
|
|
9434
|
+
|
|
9435
|
+
/**
|
|
9436
|
+
* @private
|
|
9437
|
+
*/
|
|
9438
|
+
deserialize(params) {
|
|
9439
|
+
if (!params) {
|
|
9440
|
+
return;
|
|
9441
|
+
}
|
|
9442
|
+
this.Host = 'Host' in params ? params.Host : null;
|
|
9443
|
+
this.DataUsedCapacity = 'DataUsedCapacity' in params ? params.DataUsedCapacity : null;
|
|
9444
|
+
this.TotalCapacity = 'TotalCapacity' in params ? params.TotalCapacity : null;
|
|
9445
|
+
this.RemoteUsedCapacity = 'RemoteUsedCapacity' in params ? params.RemoteUsedCapacity : null;
|
|
9446
|
+
|
|
9447
|
+
}
|
|
9448
|
+
}
|
|
9449
|
+
|
|
8174
9450
|
/**
|
|
8175
9451
|
* DescribeBackUpTaskDetail response structure.
|
|
8176
9452
|
* @class
|
|
@@ -8507,63 +9783,33 @@ class DescribeInstanceOperationHistoryRequest extends AbstractModel {
|
|
|
8507
9783
|
}
|
|
8508
9784
|
|
|
8509
9785
|
/**
|
|
8510
|
-
*
|
|
9786
|
+
* DescribeCoolDownTableData response structure.
|
|
8511
9787
|
* @class
|
|
8512
9788
|
*/
|
|
8513
|
-
class
|
|
9789
|
+
class DescribeCoolDownTableDataResponse extends AbstractModel {
|
|
8514
9790
|
constructor(){
|
|
8515
9791
|
super();
|
|
8516
9792
|
|
|
8517
9793
|
/**
|
|
8518
|
-
*
|
|
8519
|
-
* @type {string || null}
|
|
8520
|
-
*/
|
|
8521
|
-
this.FileName = null;
|
|
8522
|
-
|
|
8523
|
-
/**
|
|
8524
|
-
* Related attribute information corresponding to the configuration files
|
|
8525
|
-
* @type {string || null}
|
|
8526
|
-
*/
|
|
8527
|
-
this.FileConf = null;
|
|
8528
|
-
|
|
8529
|
-
/**
|
|
8530
|
-
* Other attribute information corresponding to the configuration files
|
|
8531
|
-
* @type {string || null}
|
|
8532
|
-
*/
|
|
8533
|
-
this.KeyConf = null;
|
|
8534
|
-
|
|
8535
|
-
/**
|
|
8536
|
-
* Contents of the configuration files, base64 encoded
|
|
8537
|
-
* @type {string || null}
|
|
8538
|
-
*/
|
|
8539
|
-
this.OriParam = null;
|
|
8540
|
-
|
|
8541
|
-
/**
|
|
8542
|
-
* This is used to indicate whether the current configuration file has been modified without a restart, and reminds the user that a restart is needed.
|
|
8543
|
-
* @type {number || null}
|
|
8544
|
-
*/
|
|
8545
|
-
this.NeedRestart = null;
|
|
9794
|
+
* Error message
|
|
8546
9795
|
|
|
8547
|
-
/**
|
|
8548
|
-
* Configuration file path
|
|
8549
9796
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8550
9797
|
* @type {string || null}
|
|
8551
9798
|
*/
|
|
8552
|
-
this.
|
|
9799
|
+
this.ErrorMsg = null;
|
|
8553
9800
|
|
|
8554
9801
|
/**
|
|
8555
|
-
*
|
|
9802
|
+
* List of tables containing layered hot and cold data
|
|
8556
9803
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8557
|
-
* @type {
|
|
9804
|
+
* @type {Array.<CoolDownTableDataInfo> || null}
|
|
8558
9805
|
*/
|
|
8559
|
-
this.
|
|
9806
|
+
this.List = null;
|
|
8560
9807
|
|
|
8561
9808
|
/**
|
|
8562
|
-
*
|
|
8563
|
-
|
|
8564
|
-
* @type {Array.<ConfigKeyValue> || null}
|
|
9809
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9810
|
+
* @type {string || null}
|
|
8565
9811
|
*/
|
|
8566
|
-
this.
|
|
9812
|
+
this.RequestId = null;
|
|
8567
9813
|
|
|
8568
9814
|
}
|
|
8569
9815
|
|
|
@@ -8574,22 +9820,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8574
9820
|
if (!params) {
|
|
8575
9821
|
return;
|
|
8576
9822
|
}
|
|
8577
|
-
this.
|
|
8578
|
-
this.FileConf = 'FileConf' in params ? params.FileConf : null;
|
|
8579
|
-
this.KeyConf = 'KeyConf' in params ? params.KeyConf : null;
|
|
8580
|
-
this.OriParam = 'OriParam' in params ? params.OriParam : null;
|
|
8581
|
-
this.NeedRestart = 'NeedRestart' in params ? params.NeedRestart : null;
|
|
8582
|
-
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
8583
|
-
this.FileKeyValues = 'FileKeyValues' in params ? params.FileKeyValues : null;
|
|
9823
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
8584
9824
|
|
|
8585
|
-
if (params.
|
|
8586
|
-
this.
|
|
8587
|
-
for (let z in params.
|
|
8588
|
-
let obj = new
|
|
8589
|
-
obj.deserialize(params.
|
|
8590
|
-
this.
|
|
9825
|
+
if (params.List) {
|
|
9826
|
+
this.List = new Array();
|
|
9827
|
+
for (let z in params.List) {
|
|
9828
|
+
let obj = new CoolDownTableDataInfo();
|
|
9829
|
+
obj.deserialize(params.List[z]);
|
|
9830
|
+
this.List.push(obj);
|
|
8591
9831
|
}
|
|
8592
9832
|
}
|
|
9833
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8593
9834
|
|
|
8594
9835
|
}
|
|
8595
9836
|
}
|
|
@@ -8772,6 +10013,48 @@ class ModifyWorkloadGroupStatusResponse extends AbstractModel {
|
|
|
8772
10013
|
}
|
|
8773
10014
|
}
|
|
8774
10015
|
|
|
10016
|
+
/**
|
|
10017
|
+
* OpenCoolDownPolicy response structure.
|
|
10018
|
+
* @class
|
|
10019
|
+
*/
|
|
10020
|
+
class OpenCoolDownPolicyResponse extends AbstractModel {
|
|
10021
|
+
constructor(){
|
|
10022
|
+
super();
|
|
10023
|
+
|
|
10024
|
+
/**
|
|
10025
|
+
* Error message
|
|
10026
|
+
* @type {string || null}
|
|
10027
|
+
*/
|
|
10028
|
+
this.ErrorMsg = null;
|
|
10029
|
+
|
|
10030
|
+
/**
|
|
10031
|
+
* Returned information
|
|
10032
|
+
* @type {string || null}
|
|
10033
|
+
*/
|
|
10034
|
+
this.QueryDocument = null;
|
|
10035
|
+
|
|
10036
|
+
/**
|
|
10037
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10038
|
+
* @type {string || null}
|
|
10039
|
+
*/
|
|
10040
|
+
this.RequestId = null;
|
|
10041
|
+
|
|
10042
|
+
}
|
|
10043
|
+
|
|
10044
|
+
/**
|
|
10045
|
+
* @private
|
|
10046
|
+
*/
|
|
10047
|
+
deserialize(params) {
|
|
10048
|
+
if (!params) {
|
|
10049
|
+
return;
|
|
10050
|
+
}
|
|
10051
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
10052
|
+
this.QueryDocument = 'QueryDocument' in params ? params.QueryDocument : null;
|
|
10053
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10054
|
+
|
|
10055
|
+
}
|
|
10056
|
+
}
|
|
10057
|
+
|
|
8775
10058
|
/**
|
|
8776
10059
|
* ExecuteParametrizedQuery request structure.
|
|
8777
10060
|
* @class
|
|
@@ -8851,18 +10134,36 @@ class ExecuteParametrizedQueryRequest extends AbstractModel {
|
|
|
8851
10134
|
}
|
|
8852
10135
|
|
|
8853
10136
|
/**
|
|
8854
|
-
*
|
|
10137
|
+
* Configuration file modification information
|
|
8855
10138
|
* @class
|
|
8856
10139
|
*/
|
|
8857
|
-
class
|
|
10140
|
+
class ConfigSubmitContext extends AbstractModel {
|
|
8858
10141
|
constructor(){
|
|
8859
10142
|
super();
|
|
8860
10143
|
|
|
8861
10144
|
/**
|
|
8862
|
-
*
|
|
10145
|
+
* Configuration file's name
|
|
8863
10146
|
* @type {string || null}
|
|
8864
10147
|
*/
|
|
8865
|
-
this.
|
|
10148
|
+
this.FileName = null;
|
|
10149
|
+
|
|
10150
|
+
/**
|
|
10151
|
+
* New Base64-encoded content of the configuration file
|
|
10152
|
+
* @type {string || null}
|
|
10153
|
+
*/
|
|
10154
|
+
this.NewConfValue = null;
|
|
10155
|
+
|
|
10156
|
+
/**
|
|
10157
|
+
* Original Base64-encoded content of the configuration file
|
|
10158
|
+
* @type {string || null}
|
|
10159
|
+
*/
|
|
10160
|
+
this.OldConfValue = null;
|
|
10161
|
+
|
|
10162
|
+
/**
|
|
10163
|
+
* File path
|
|
10164
|
+
* @type {string || null}
|
|
10165
|
+
*/
|
|
10166
|
+
this.FilePath = null;
|
|
8866
10167
|
|
|
8867
10168
|
}
|
|
8868
10169
|
|
|
@@ -8873,98 +10174,51 @@ class DestroyInstanceRequest extends AbstractModel {
|
|
|
8873
10174
|
if (!params) {
|
|
8874
10175
|
return;
|
|
8875
10176
|
}
|
|
8876
|
-
this.
|
|
10177
|
+
this.FileName = 'FileName' in params ? params.FileName : null;
|
|
10178
|
+
this.NewConfValue = 'NewConfValue' in params ? params.NewConfValue : null;
|
|
10179
|
+
this.OldConfValue = 'OldConfValue' in params ? params.OldConfValue : null;
|
|
10180
|
+
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
8877
10181
|
|
|
8878
10182
|
}
|
|
8879
10183
|
}
|
|
8880
10184
|
|
|
8881
10185
|
/**
|
|
8882
|
-
*
|
|
10186
|
+
* DescribeInstances request structure.
|
|
8883
10187
|
* @class
|
|
8884
10188
|
*/
|
|
8885
|
-
class
|
|
10189
|
+
class DescribeInstancesRequest extends AbstractModel {
|
|
8886
10190
|
constructor(){
|
|
8887
10191
|
super();
|
|
8888
10192
|
|
|
8889
10193
|
/**
|
|
8890
|
-
*
|
|
8891
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8892
|
-
* @type {string || null}
|
|
8893
|
-
*/
|
|
8894
|
-
this.Name = null;
|
|
8895
|
-
|
|
8896
|
-
/**
|
|
8897
|
-
* Column type
|
|
8898
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8899
|
-
* @type {string || null}
|
|
8900
|
-
*/
|
|
8901
|
-
this.Type = null;
|
|
8902
|
-
|
|
8903
|
-
/**
|
|
8904
|
-
* Aggregation type: When the table is an aggregation model (AGG_KEY), the column with the aggregation type is set as the metric column, and other columns are dimension columns. Aggregation type: ●SUM: sum; the values of multiple rows are accumulated. ●REPLACE: replacement; the values in the next batch of data will replace the values in the previously imported rows. ●MAX: retain the maximum value.
|
|
8905
|
-
●MIN: retain the minimum value. ●REPLACE_IF_NOT_NULL: non-null values replacement. The difference from REPLACE is that null values are not replaced. ●HLL_UNION: aggregation method for HLL type columns, which is aggregated by HyperLogLog algorithm. ●BITMAP_UNION: aggregation method for BIMTAP type columns; bitmap union aggregation.
|
|
8906
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10194
|
+
* The name of the cluster ID for the search
|
|
8907
10195
|
* @type {string || null}
|
|
8908
10196
|
*/
|
|
8909
|
-
this.
|
|
8910
|
-
|
|
8911
|
-
/**
|
|
8912
|
-
* Whether the column value is allowed to be Null
|
|
8913
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8914
|
-
* @type {boolean || null}
|
|
8915
|
-
*/
|
|
8916
|
-
this.IsNull = null;
|
|
8917
|
-
|
|
8918
|
-
/**
|
|
8919
|
-
* Whether it is a Key column. The meaning of different data models:
|
|
8920
|
-
●DUP_KEY: The column specified afterwards is the sorting column.
|
|
8921
|
-
●AGG_KEY: The column specified afterwards is the dimension column.
|
|
8922
|
-
●UNI_KEY: The column specified afterward is the primary key column.
|
|
8923
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8924
|
-
* @type {boolean || null}
|
|
8925
|
-
*/
|
|
8926
|
-
this.IsKey = null;
|
|
10197
|
+
this.SearchInstanceId = null;
|
|
8927
10198
|
|
|
8928
10199
|
/**
|
|
8929
|
-
*
|
|
8930
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10200
|
+
* The cluster name for the search
|
|
8931
10201
|
* @type {string || null}
|
|
8932
10202
|
*/
|
|
8933
|
-
this.
|
|
8934
|
-
|
|
8935
|
-
/**
|
|
8936
|
-
* Whether it is a partition column. The partition column must be a Key column.
|
|
8937
|
-
|
|
8938
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8939
|
-
* @type {boolean || null}
|
|
8940
|
-
*/
|
|
8941
|
-
this.IsPartition = null;
|
|
10203
|
+
this.SearchInstanceName = null;
|
|
8942
10204
|
|
|
8943
10205
|
/**
|
|
8944
|
-
*
|
|
8945
|
-
|
|
8946
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8947
|
-
* @type {boolean || null}
|
|
10206
|
+
* Pagination parameters. The first page is 0, and the second page is 10.
|
|
10207
|
+
* @type {number || null}
|
|
8948
10208
|
*/
|
|
8949
|
-
this.
|
|
10209
|
+
this.Offset = null;
|
|
8950
10210
|
|
|
8951
10211
|
/**
|
|
8952
|
-
*
|
|
8953
|
-
|
|
8954
|
-
1. Only DUP_KEY and UNI_KEY model tables can contain auto-increment columns.
|
|
8955
|
-
2. A table can contain at most one auto-increment column.
|
|
8956
|
-
3. The type of the auto-increment column must be BIGINT type and cannot be null.
|
|
8957
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8958
|
-
* @type {boolean || null}
|
|
10212
|
+
* Pagination parameters. The pagination step length is 10 by default.
|
|
10213
|
+
* @type {number || null}
|
|
8959
10214
|
*/
|
|
8960
|
-
this.
|
|
10215
|
+
this.Limit = null;
|
|
8961
10216
|
|
|
8962
10217
|
/**
|
|
8963
|
-
*
|
|
8964
|
-
|
|
8965
|
-
* @type {string || null}
|
|
10218
|
+
* Search tag list
|
|
10219
|
+
* @type {Array.<SearchTags> || null}
|
|
8966
10220
|
*/
|
|
8967
|
-
this.
|
|
10221
|
+
this.SearchTags = null;
|
|
8968
10222
|
|
|
8969
10223
|
}
|
|
8970
10224
|
|
|
@@ -8975,16 +10229,19 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8975
10229
|
if (!params) {
|
|
8976
10230
|
return;
|
|
8977
10231
|
}
|
|
8978
|
-
this.
|
|
8979
|
-
this.
|
|
8980
|
-
this.
|
|
8981
|
-
this.
|
|
8982
|
-
|
|
8983
|
-
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
|
|
8987
|
-
|
|
10232
|
+
this.SearchInstanceId = 'SearchInstanceId' in params ? params.SearchInstanceId : null;
|
|
10233
|
+
this.SearchInstanceName = 'SearchInstanceName' in params ? params.SearchInstanceName : null;
|
|
10234
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
10235
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
10236
|
+
|
|
10237
|
+
if (params.SearchTags) {
|
|
10238
|
+
this.SearchTags = new Array();
|
|
10239
|
+
for (let z in params.SearchTags) {
|
|
10240
|
+
let obj = new SearchTags();
|
|
10241
|
+
obj.deserialize(params.SearchTags[z]);
|
|
10242
|
+
this.SearchTags.push(obj);
|
|
10243
|
+
}
|
|
10244
|
+
}
|
|
8988
10245
|
|
|
8989
10246
|
}
|
|
8990
10247
|
}
|
|
@@ -9036,11 +10293,54 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9036
10293
|
this.IsInternationalSite = null;
|
|
9037
10294
|
|
|
9038
10295
|
/**
|
|
9039
|
-
* Bucket
|
|
10296
|
+
* Bucket
|
|
10297
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10298
|
+
* @type {string || null}
|
|
10299
|
+
*/
|
|
10300
|
+
this.Bucket = null;
|
|
10301
|
+
|
|
10302
|
+
}
|
|
10303
|
+
|
|
10304
|
+
/**
|
|
10305
|
+
* @private
|
|
10306
|
+
*/
|
|
10307
|
+
deserialize(params) {
|
|
10308
|
+
if (!params) {
|
|
10309
|
+
return;
|
|
10310
|
+
}
|
|
10311
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
10312
|
+
this.Desc = 'Desc' in params ? params.Desc : null;
|
|
10313
|
+
this.RegionId = 'RegionId' in params ? params.RegionId : null;
|
|
10314
|
+
|
|
10315
|
+
if (params.Zones) {
|
|
10316
|
+
this.Zones = new Array();
|
|
10317
|
+
for (let z in params.Zones) {
|
|
10318
|
+
let obj = new ZoneInfo();
|
|
10319
|
+
obj.deserialize(params.Zones[z]);
|
|
10320
|
+
this.Zones.push(obj);
|
|
10321
|
+
}
|
|
10322
|
+
}
|
|
10323
|
+
this.Count = 'Count' in params ? params.Count : null;
|
|
10324
|
+
this.IsInternationalSite = 'IsInternationalSite' in params ? params.IsInternationalSite : null;
|
|
10325
|
+
this.Bucket = 'Bucket' in params ? params.Bucket : null;
|
|
10326
|
+
|
|
10327
|
+
}
|
|
10328
|
+
}
|
|
10329
|
+
|
|
10330
|
+
/**
|
|
10331
|
+
* Multiple rows of data
|
|
10332
|
+
* @class
|
|
10333
|
+
*/
|
|
10334
|
+
class Rows extends AbstractModel {
|
|
10335
|
+
constructor(){
|
|
10336
|
+
super();
|
|
10337
|
+
|
|
10338
|
+
/**
|
|
10339
|
+
* A row of data
|
|
9040
10340
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9041
|
-
* @type {string || null}
|
|
10341
|
+
* @type {Array.<string> || null}
|
|
9042
10342
|
*/
|
|
9043
|
-
this.
|
|
10343
|
+
this.DataRow = null;
|
|
9044
10344
|
|
|
9045
10345
|
}
|
|
9046
10346
|
|
|
@@ -9051,21 +10351,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9051
10351
|
if (!params) {
|
|
9052
10352
|
return;
|
|
9053
10353
|
}
|
|
9054
|
-
this.
|
|
9055
|
-
this.Desc = 'Desc' in params ? params.Desc : null;
|
|
9056
|
-
this.RegionId = 'RegionId' in params ? params.RegionId : null;
|
|
9057
|
-
|
|
9058
|
-
if (params.Zones) {
|
|
9059
|
-
this.Zones = new Array();
|
|
9060
|
-
for (let z in params.Zones) {
|
|
9061
|
-
let obj = new ZoneInfo();
|
|
9062
|
-
obj.deserialize(params.Zones[z]);
|
|
9063
|
-
this.Zones.push(obj);
|
|
9064
|
-
}
|
|
9065
|
-
}
|
|
9066
|
-
this.Count = 'Count' in params ? params.Count : null;
|
|
9067
|
-
this.IsInternationalSite = 'IsInternationalSite' in params ? params.IsInternationalSite : null;
|
|
9068
|
-
this.Bucket = 'Bucket' in params ? params.Bucket : null;
|
|
10354
|
+
this.DataRow = 'DataRow' in params ? params.DataRow : null;
|
|
9069
10355
|
|
|
9070
10356
|
}
|
|
9071
10357
|
}
|
|
@@ -9148,24 +10434,59 @@ class CreateWorkloadGroupResponse extends AbstractModel {
|
|
|
9148
10434
|
}
|
|
9149
10435
|
|
|
9150
10436
|
/**
|
|
9151
|
-
*
|
|
10437
|
+
* DescribeInstanceState response structure.
|
|
9152
10438
|
* @class
|
|
9153
10439
|
*/
|
|
9154
|
-
class
|
|
10440
|
+
class DescribeInstanceStateResponse extends AbstractModel {
|
|
9155
10441
|
constructor(){
|
|
9156
10442
|
super();
|
|
9157
10443
|
|
|
9158
10444
|
/**
|
|
9159
|
-
* Cluster
|
|
10445
|
+
* Cluster status. Example: Serving
|
|
9160
10446
|
* @type {string || null}
|
|
9161
10447
|
*/
|
|
9162
|
-
this.
|
|
10448
|
+
this.InstanceState = null;
|
|
9163
10449
|
|
|
9164
10450
|
/**
|
|
9165
|
-
*
|
|
9166
|
-
|
|
10451
|
+
* Creation time of cluster operation
|
|
10452
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10453
|
+
* @type {string || null}
|
|
9167
10454
|
*/
|
|
9168
|
-
this.
|
|
10455
|
+
this.FlowCreateTime = null;
|
|
10456
|
+
|
|
10457
|
+
/**
|
|
10458
|
+
* Cluster operation name
|
|
10459
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10460
|
+
* @type {string || null}
|
|
10461
|
+
*/
|
|
10462
|
+
this.FlowName = null;
|
|
10463
|
+
|
|
10464
|
+
/**
|
|
10465
|
+
* Cluster operation progress
|
|
10466
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10467
|
+
* @type {number || null}
|
|
10468
|
+
*/
|
|
10469
|
+
this.FlowProgress = null;
|
|
10470
|
+
|
|
10471
|
+
/**
|
|
10472
|
+
* Cluster status description. Example: running
|
|
10473
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10474
|
+
* @type {string || null}
|
|
10475
|
+
*/
|
|
10476
|
+
this.InstanceStateDesc = null;
|
|
10477
|
+
|
|
10478
|
+
/**
|
|
10479
|
+
* Cluster process error messages, such as "Creation failed, insufficient resources"
|
|
10480
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10481
|
+
* @type {string || null}
|
|
10482
|
+
*/
|
|
10483
|
+
this.FlowMsg = null;
|
|
10484
|
+
|
|
10485
|
+
/**
|
|
10486
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10487
|
+
* @type {string || null}
|
|
10488
|
+
*/
|
|
10489
|
+
this.RequestId = null;
|
|
9169
10490
|
|
|
9170
10491
|
}
|
|
9171
10492
|
|
|
@@ -9176,13 +10497,13 @@ class CreateWorkloadGroupRequest extends AbstractModel {
|
|
|
9176
10497
|
if (!params) {
|
|
9177
10498
|
return;
|
|
9178
10499
|
}
|
|
9179
|
-
this.
|
|
9180
|
-
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
10500
|
+
this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
|
|
10501
|
+
this.FlowCreateTime = 'FlowCreateTime' in params ? params.FlowCreateTime : null;
|
|
10502
|
+
this.FlowName = 'FlowName' in params ? params.FlowName : null;
|
|
10503
|
+
this.FlowProgress = 'FlowProgress' in params ? params.FlowProgress : null;
|
|
10504
|
+
this.InstanceStateDesc = 'InstanceStateDesc' in params ? params.InstanceStateDesc : null;
|
|
10505
|
+
this.FlowMsg = 'FlowMsg' in params ? params.FlowMsg : null;
|
|
10506
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9186
10507
|
|
|
9187
10508
|
}
|
|
9188
10509
|
}
|
|
@@ -9260,6 +10581,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9260
10581
|
}
|
|
9261
10582
|
}
|
|
9262
10583
|
|
|
10584
|
+
/**
|
|
10585
|
+
* DescribeCoolDownPolicies request structure.
|
|
10586
|
+
* @class
|
|
10587
|
+
*/
|
|
10588
|
+
class DescribeCoolDownPoliciesRequest extends AbstractModel {
|
|
10589
|
+
constructor(){
|
|
10590
|
+
super();
|
|
10591
|
+
|
|
10592
|
+
/**
|
|
10593
|
+
* Cluster ID
|
|
10594
|
+
* @type {string || null}
|
|
10595
|
+
*/
|
|
10596
|
+
this.InstanceId = null;
|
|
10597
|
+
|
|
10598
|
+
}
|
|
10599
|
+
|
|
10600
|
+
/**
|
|
10601
|
+
* @private
|
|
10602
|
+
*/
|
|
10603
|
+
deserialize(params) {
|
|
10604
|
+
if (!params) {
|
|
10605
|
+
return;
|
|
10606
|
+
}
|
|
10607
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
10608
|
+
|
|
10609
|
+
}
|
|
10610
|
+
}
|
|
10611
|
+
|
|
9263
10612
|
/**
|
|
9264
10613
|
* Resource specification description information
|
|
9265
10614
|
* @class
|
|
@@ -9367,6 +10716,48 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9367
10716
|
}
|
|
9368
10717
|
}
|
|
9369
10718
|
|
|
10719
|
+
/**
|
|
10720
|
+
* ModifyClusterConfigs response structure.
|
|
10721
|
+
* @class
|
|
10722
|
+
*/
|
|
10723
|
+
class ModifyClusterConfigsResponse extends AbstractModel {
|
|
10724
|
+
constructor(){
|
|
10725
|
+
super();
|
|
10726
|
+
|
|
10727
|
+
/**
|
|
10728
|
+
* Process related information
|
|
10729
|
+
* @type {number || null}
|
|
10730
|
+
*/
|
|
10731
|
+
this.FlowId = null;
|
|
10732
|
+
|
|
10733
|
+
/**
|
|
10734
|
+
* Error message
|
|
10735
|
+
* @type {string || null}
|
|
10736
|
+
*/
|
|
10737
|
+
this.ErrorMsg = null;
|
|
10738
|
+
|
|
10739
|
+
/**
|
|
10740
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10741
|
+
* @type {string || null}
|
|
10742
|
+
*/
|
|
10743
|
+
this.RequestId = null;
|
|
10744
|
+
|
|
10745
|
+
}
|
|
10746
|
+
|
|
10747
|
+
/**
|
|
10748
|
+
* @private
|
|
10749
|
+
*/
|
|
10750
|
+
deserialize(params) {
|
|
10751
|
+
if (!params) {
|
|
10752
|
+
return;
|
|
10753
|
+
}
|
|
10754
|
+
this.FlowId = 'FlowId' in params ? params.FlowId : null;
|
|
10755
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
10756
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10757
|
+
|
|
10758
|
+
}
|
|
10759
|
+
}
|
|
10760
|
+
|
|
9370
10761
|
/**
|
|
9371
10762
|
* Recover the task information
|
|
9372
10763
|
* @class
|
|
@@ -9856,6 +11247,94 @@ class ModifyUserBindWorkloadGroupResponse extends AbstractModel {
|
|
|
9856
11247
|
}
|
|
9857
11248
|
}
|
|
9858
11249
|
|
|
11250
|
+
/**
|
|
11251
|
+
* It is used to return configuration files and content in XML format, as well as other information related to the configuration files.
|
|
11252
|
+
* @class
|
|
11253
|
+
*/
|
|
11254
|
+
class ClusterConfigsInfoFromEMR extends AbstractModel {
|
|
11255
|
+
constructor(){
|
|
11256
|
+
super();
|
|
11257
|
+
|
|
11258
|
+
/**
|
|
11259
|
+
* Configuration file's name
|
|
11260
|
+
* @type {string || null}
|
|
11261
|
+
*/
|
|
11262
|
+
this.FileName = null;
|
|
11263
|
+
|
|
11264
|
+
/**
|
|
11265
|
+
* Related attribute information corresponding to the configuration files
|
|
11266
|
+
* @type {string || null}
|
|
11267
|
+
*/
|
|
11268
|
+
this.FileConf = null;
|
|
11269
|
+
|
|
11270
|
+
/**
|
|
11271
|
+
* Other attribute information corresponding to the configuration files
|
|
11272
|
+
* @type {string || null}
|
|
11273
|
+
*/
|
|
11274
|
+
this.KeyConf = null;
|
|
11275
|
+
|
|
11276
|
+
/**
|
|
11277
|
+
* Contents of the configuration files, base64 encoded
|
|
11278
|
+
* @type {string || null}
|
|
11279
|
+
*/
|
|
11280
|
+
this.OriParam = null;
|
|
11281
|
+
|
|
11282
|
+
/**
|
|
11283
|
+
* This is used to indicate whether the current configuration file has been modified without a restart, and reminds the user that a restart is needed.
|
|
11284
|
+
* @type {number || null}
|
|
11285
|
+
*/
|
|
11286
|
+
this.NeedRestart = null;
|
|
11287
|
+
|
|
11288
|
+
/**
|
|
11289
|
+
* Configuration file path
|
|
11290
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11291
|
+
* @type {string || null}
|
|
11292
|
+
*/
|
|
11293
|
+
this.FilePath = null;
|
|
11294
|
+
|
|
11295
|
+
/**
|
|
11296
|
+
* kv value of a configuration file
|
|
11297
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11298
|
+
* @type {string || null}
|
|
11299
|
+
*/
|
|
11300
|
+
this.FileKeyValues = null;
|
|
11301
|
+
|
|
11302
|
+
/**
|
|
11303
|
+
* kv value of a configuration file
|
|
11304
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11305
|
+
* @type {Array.<ConfigKeyValue> || null}
|
|
11306
|
+
*/
|
|
11307
|
+
this.FileKeyValuesNew = null;
|
|
11308
|
+
|
|
11309
|
+
}
|
|
11310
|
+
|
|
11311
|
+
/**
|
|
11312
|
+
* @private
|
|
11313
|
+
*/
|
|
11314
|
+
deserialize(params) {
|
|
11315
|
+
if (!params) {
|
|
11316
|
+
return;
|
|
11317
|
+
}
|
|
11318
|
+
this.FileName = 'FileName' in params ? params.FileName : null;
|
|
11319
|
+
this.FileConf = 'FileConf' in params ? params.FileConf : null;
|
|
11320
|
+
this.KeyConf = 'KeyConf' in params ? params.KeyConf : null;
|
|
11321
|
+
this.OriParam = 'OriParam' in params ? params.OriParam : null;
|
|
11322
|
+
this.NeedRestart = 'NeedRestart' in params ? params.NeedRestart : null;
|
|
11323
|
+
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
11324
|
+
this.FileKeyValues = 'FileKeyValues' in params ? params.FileKeyValues : null;
|
|
11325
|
+
|
|
11326
|
+
if (params.FileKeyValuesNew) {
|
|
11327
|
+
this.FileKeyValuesNew = new Array();
|
|
11328
|
+
for (let z in params.FileKeyValuesNew) {
|
|
11329
|
+
let obj = new ConfigKeyValue();
|
|
11330
|
+
obj.deserialize(params.FileKeyValuesNew[z]);
|
|
11331
|
+
this.FileKeyValuesNew.push(obj);
|
|
11332
|
+
}
|
|
11333
|
+
}
|
|
11334
|
+
|
|
11335
|
+
}
|
|
11336
|
+
}
|
|
11337
|
+
|
|
9859
11338
|
/**
|
|
9860
11339
|
* RecoverBackUpJob response structure.
|
|
9861
11340
|
* @class
|
|
@@ -9893,59 +11372,49 @@ class DescribeTableResponse extends AbstractModel {
|
|
|
9893
11372
|
super();
|
|
9894
11373
|
|
|
9895
11374
|
/**
|
|
9896
|
-
*
|
|
9897
|
-
AGG_KEY: aggregation model;
|
|
9898
|
-
UNI_KEY: primary key model;
|
|
9899
|
-
DUP_KEY: detail model
|
|
11375
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9900
11376
|
* @type {string || null}
|
|
9901
11377
|
*/
|
|
9902
11378
|
this.KeysType = null;
|
|
9903
11379
|
|
|
9904
11380
|
/**
|
|
9905
|
-
*
|
|
9906
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11381
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9907
11382
|
* @type {Array.<Column> || null}
|
|
9908
11383
|
*/
|
|
9909
11384
|
this.Columns = null;
|
|
9910
11385
|
|
|
9911
11386
|
/**
|
|
9912
|
-
*
|
|
9913
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11387
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9914
11388
|
* @type {Array.<IndexInfo> || null}
|
|
9915
11389
|
*/
|
|
9916
11390
|
this.IndexInfos = null;
|
|
9917
11391
|
|
|
9918
11392
|
/**
|
|
9919
|
-
*
|
|
9920
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11393
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9921
11394
|
* @type {Partition || null}
|
|
9922
11395
|
*/
|
|
9923
11396
|
this.Partition = null;
|
|
9924
11397
|
|
|
9925
11398
|
/**
|
|
9926
|
-
*
|
|
9927
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11399
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9928
11400
|
* @type {Distribution || null}
|
|
9929
11401
|
*/
|
|
9930
11402
|
this.Distribution = null;
|
|
9931
11403
|
|
|
9932
11404
|
/**
|
|
9933
|
-
*
|
|
9934
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11405
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9935
11406
|
* @type {string || null}
|
|
9936
11407
|
*/
|
|
9937
11408
|
this.TableComment = null;
|
|
9938
11409
|
|
|
9939
11410
|
/**
|
|
9940
|
-
*
|
|
9941
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11411
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9942
11412
|
* @type {Array.<Property> || null}
|
|
9943
11413
|
*/
|
|
9944
11414
|
this.Properties = null;
|
|
9945
11415
|
|
|
9946
11416
|
/**
|
|
9947
|
-
*
|
|
9948
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11417
|
+
* Note: This field may return null, indicating that no valid values can be obtained.
|
|
9949
11418
|
* @type {string || null}
|
|
9950
11419
|
*/
|
|
9951
11420
|
this.Message = null;
|
|
@@ -10056,6 +11525,63 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10056
11525
|
}
|
|
10057
11526
|
}
|
|
10058
11527
|
|
|
11528
|
+
/**
|
|
11529
|
+
* ModifyUserBindWorkloadGroup request structure.
|
|
11530
|
+
* @class
|
|
11531
|
+
*/
|
|
11532
|
+
class ModifyUserBindWorkloadGroupRequest extends AbstractModel {
|
|
11533
|
+
constructor(){
|
|
11534
|
+
super();
|
|
11535
|
+
|
|
11536
|
+
/**
|
|
11537
|
+
* Cluster ID
|
|
11538
|
+
* @type {string || null}
|
|
11539
|
+
*/
|
|
11540
|
+
this.InstanceId = null;
|
|
11541
|
+
|
|
11542
|
+
/**
|
|
11543
|
+
* The user information of the resource group needs to be bound. If an account has information of multiple hosts, all information needs to be uploaded.
|
|
11544
|
+
* @type {Array.<BindUser> || null}
|
|
11545
|
+
*/
|
|
11546
|
+
this.BindUsers = null;
|
|
11547
|
+
|
|
11548
|
+
/**
|
|
11549
|
+
* Name of the resource group bound before modification
|
|
11550
|
+
* @type {string || null}
|
|
11551
|
+
*/
|
|
11552
|
+
this.OldWorkloadGroupName = null;
|
|
11553
|
+
|
|
11554
|
+
/**
|
|
11555
|
+
* Name of the resource group bound after modification
|
|
11556
|
+
* @type {string || null}
|
|
11557
|
+
*/
|
|
11558
|
+
this.NewWorkloadGroupName = null;
|
|
11559
|
+
|
|
11560
|
+
}
|
|
11561
|
+
|
|
11562
|
+
/**
|
|
11563
|
+
* @private
|
|
11564
|
+
*/
|
|
11565
|
+
deserialize(params) {
|
|
11566
|
+
if (!params) {
|
|
11567
|
+
return;
|
|
11568
|
+
}
|
|
11569
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
11570
|
+
|
|
11571
|
+
if (params.BindUsers) {
|
|
11572
|
+
this.BindUsers = new Array();
|
|
11573
|
+
for (let z in params.BindUsers) {
|
|
11574
|
+
let obj = new BindUser();
|
|
11575
|
+
obj.deserialize(params.BindUsers[z]);
|
|
11576
|
+
this.BindUsers.push(obj);
|
|
11577
|
+
}
|
|
11578
|
+
}
|
|
11579
|
+
this.OldWorkloadGroupName = 'OldWorkloadGroupName' in params ? params.OldWorkloadGroupName : null;
|
|
11580
|
+
this.NewWorkloadGroupName = 'NewWorkloadGroupName' in params ? params.NewWorkloadGroupName : null;
|
|
11581
|
+
|
|
11582
|
+
}
|
|
11583
|
+
}
|
|
11584
|
+
|
|
10059
11585
|
/**
|
|
10060
11586
|
* Node role description information
|
|
10061
11587
|
* @class
|
|
@@ -10188,96 +11714,30 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10188
11714
|
}
|
|
10189
11715
|
|
|
10190
11716
|
/**
|
|
10191
|
-
*
|
|
11717
|
+
* Cluster specifications
|
|
10192
11718
|
* @class
|
|
10193
11719
|
*/
|
|
10194
|
-
class
|
|
11720
|
+
class CreateInstanceSpec extends AbstractModel {
|
|
10195
11721
|
constructor(){
|
|
10196
11722
|
super();
|
|
10197
11723
|
|
|
10198
11724
|
/**
|
|
10199
|
-
*
|
|
10200
|
-
* @type {string || null}
|
|
10201
|
-
*/
|
|
10202
|
-
this.InstanceId = null;
|
|
10203
|
-
|
|
10204
|
-
/**
|
|
10205
|
-
* Start time
|
|
10206
|
-
* @type {string || null}
|
|
10207
|
-
*/
|
|
10208
|
-
this.StartTime = null;
|
|
10209
|
-
|
|
10210
|
-
/**
|
|
10211
|
-
* End time
|
|
11725
|
+
* Specification name
|
|
10212
11726
|
* @type {string || null}
|
|
10213
11727
|
*/
|
|
10214
|
-
this.
|
|
11728
|
+
this.SpecName = null;
|
|
10215
11729
|
|
|
10216
11730
|
/**
|
|
10217
|
-
*
|
|
11731
|
+
* Quantities
|
|
10218
11732
|
* @type {number || null}
|
|
10219
11733
|
*/
|
|
10220
|
-
this.
|
|
11734
|
+
this.Count = null;
|
|
10221
11735
|
|
|
10222
11736
|
/**
|
|
10223
|
-
*
|
|
11737
|
+
* Cloud disk size
|
|
10224
11738
|
* @type {number || null}
|
|
10225
11739
|
*/
|
|
10226
|
-
this.
|
|
10227
|
-
|
|
10228
|
-
/**
|
|
10229
|
-
* Sort parameters
|
|
10230
|
-
* @type {string || null}
|
|
10231
|
-
*/
|
|
10232
|
-
this.OrderType = null;
|
|
10233
|
-
|
|
10234
|
-
/**
|
|
10235
|
-
* User
|
|
10236
|
-
* @type {string || null}
|
|
10237
|
-
*/
|
|
10238
|
-
this.User = null;
|
|
10239
|
-
|
|
10240
|
-
/**
|
|
10241
|
-
* Database
|
|
10242
|
-
* @type {string || null}
|
|
10243
|
-
*/
|
|
10244
|
-
this.DbName = null;
|
|
10245
|
-
|
|
10246
|
-
/**
|
|
10247
|
-
* SQL type
|
|
10248
|
-
* @type {string || null}
|
|
10249
|
-
*/
|
|
10250
|
-
this.SqlType = null;
|
|
10251
|
-
|
|
10252
|
-
/**
|
|
10253
|
-
* SQL statement
|
|
10254
|
-
* @type {string || null}
|
|
10255
|
-
*/
|
|
10256
|
-
this.Sql = null;
|
|
10257
|
-
|
|
10258
|
-
/**
|
|
10259
|
-
* Users (multiple selections)
|
|
10260
|
-
* @type {Array.<string> || null}
|
|
10261
|
-
*/
|
|
10262
|
-
this.Users = null;
|
|
10263
|
-
|
|
10264
|
-
/**
|
|
10265
|
-
* Databases (multiple selections)
|
|
10266
|
-
* @type {Array.<string> || null}
|
|
10267
|
-
*/
|
|
10268
|
-
this.DbNames = null;
|
|
10269
|
-
|
|
10270
|
-
/**
|
|
10271
|
-
* SQL types (multiple selections)
|
|
10272
|
-
* @type {Array.<string> || null}
|
|
10273
|
-
*/
|
|
10274
|
-
this.SqlTypes = null;
|
|
10275
|
-
|
|
10276
|
-
/**
|
|
10277
|
-
* Catalog names (multiple selections)
|
|
10278
|
-
* @type {Array.<string> || null}
|
|
10279
|
-
*/
|
|
10280
|
-
this.Catalogs = null;
|
|
11740
|
+
this.DiskSize = null;
|
|
10281
11741
|
|
|
10282
11742
|
}
|
|
10283
11743
|
|
|
@@ -10288,49 +11748,34 @@ class DescribeDatabaseAuditDownloadRequest extends AbstractModel {
|
|
|
10288
11748
|
if (!params) {
|
|
10289
11749
|
return;
|
|
10290
11750
|
}
|
|
10291
|
-
this.
|
|
10292
|
-
this.
|
|
10293
|
-
this.
|
|
10294
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
10295
|
-
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
10296
|
-
this.OrderType = 'OrderType' in params ? params.OrderType : null;
|
|
10297
|
-
this.User = 'User' in params ? params.User : null;
|
|
10298
|
-
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
10299
|
-
this.SqlType = 'SqlType' in params ? params.SqlType : null;
|
|
10300
|
-
this.Sql = 'Sql' in params ? params.Sql : null;
|
|
10301
|
-
this.Users = 'Users' in params ? params.Users : null;
|
|
10302
|
-
this.DbNames = 'DbNames' in params ? params.DbNames : null;
|
|
10303
|
-
this.SqlTypes = 'SqlTypes' in params ? params.SqlTypes : null;
|
|
10304
|
-
this.Catalogs = 'Catalogs' in params ? params.Catalogs : null;
|
|
11751
|
+
this.SpecName = 'SpecName' in params ? params.SpecName : null;
|
|
11752
|
+
this.Count = 'Count' in params ? params.Count : null;
|
|
11753
|
+
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
10305
11754
|
|
|
10306
11755
|
}
|
|
10307
11756
|
}
|
|
10308
11757
|
|
|
10309
11758
|
/**
|
|
10310
|
-
*
|
|
11759
|
+
* Database and table information
|
|
10311
11760
|
* @class
|
|
10312
11761
|
*/
|
|
10313
|
-
class
|
|
11762
|
+
class DbTablesInfo extends AbstractModel {
|
|
10314
11763
|
constructor(){
|
|
10315
11764
|
super();
|
|
10316
11765
|
|
|
10317
11766
|
/**
|
|
10318
|
-
*
|
|
11767
|
+
* Database name
|
|
11768
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10319
11769
|
* @type {string || null}
|
|
10320
11770
|
*/
|
|
10321
|
-
this.
|
|
10322
|
-
|
|
10323
|
-
/**
|
|
10324
|
-
* Quantities
|
|
10325
|
-
* @type {number || null}
|
|
10326
|
-
*/
|
|
10327
|
-
this.Count = null;
|
|
11771
|
+
this.DbName = null;
|
|
10328
11772
|
|
|
10329
11773
|
/**
|
|
10330
|
-
*
|
|
10331
|
-
|
|
11774
|
+
* The corresponding table list under this database.
|
|
11775
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11776
|
+
* @type {Array.<string> || null}
|
|
10332
11777
|
*/
|
|
10333
|
-
this.
|
|
11778
|
+
this.TablesName = null;
|
|
10334
11779
|
|
|
10335
11780
|
}
|
|
10336
11781
|
|
|
@@ -10341,9 +11786,8 @@ class CreateInstanceSpec extends AbstractModel {
|
|
|
10341
11786
|
if (!params) {
|
|
10342
11787
|
return;
|
|
10343
11788
|
}
|
|
10344
|
-
this.
|
|
10345
|
-
this.
|
|
10346
|
-
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
11789
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
11790
|
+
this.TablesName = 'TablesName' in params ? params.TablesName : null;
|
|
10347
11791
|
|
|
10348
11792
|
}
|
|
10349
11793
|
}
|
|
@@ -10439,6 +11883,53 @@ class DescribeBackUpJobRequest extends AbstractModel {
|
|
|
10439
11883
|
}
|
|
10440
11884
|
}
|
|
10441
11885
|
|
|
11886
|
+
/**
|
|
11887
|
+
* ActionAlterUser request structure.
|
|
11888
|
+
* @class
|
|
11889
|
+
*/
|
|
11890
|
+
class ActionAlterUserRequest extends AbstractModel {
|
|
11891
|
+
constructor(){
|
|
11892
|
+
super();
|
|
11893
|
+
|
|
11894
|
+
/**
|
|
11895
|
+
* User information
|
|
11896
|
+
* @type {UserInfo || null}
|
|
11897
|
+
*/
|
|
11898
|
+
this.UserInfo = null;
|
|
11899
|
+
|
|
11900
|
+
/**
|
|
11901
|
+
* API type
|
|
11902
|
+
* @type {string || null}
|
|
11903
|
+
*/
|
|
11904
|
+
this.ApiType = null;
|
|
11905
|
+
|
|
11906
|
+
/**
|
|
11907
|
+
* User permission type. 0: ordinary user; 1: administrator.
|
|
11908
|
+
* @type {number || null}
|
|
11909
|
+
*/
|
|
11910
|
+
this.UserPrivilege = null;
|
|
11911
|
+
|
|
11912
|
+
}
|
|
11913
|
+
|
|
11914
|
+
/**
|
|
11915
|
+
* @private
|
|
11916
|
+
*/
|
|
11917
|
+
deserialize(params) {
|
|
11918
|
+
if (!params) {
|
|
11919
|
+
return;
|
|
11920
|
+
}
|
|
11921
|
+
|
|
11922
|
+
if (params.UserInfo) {
|
|
11923
|
+
let obj = new UserInfo();
|
|
11924
|
+
obj.deserialize(params.UserInfo)
|
|
11925
|
+
this.UserInfo = obj;
|
|
11926
|
+
}
|
|
11927
|
+
this.ApiType = 'ApiType' in params ? params.ApiType : null;
|
|
11928
|
+
this.UserPrivilege = 'UserPrivilege' in params ? params.UserPrivilege : null;
|
|
11929
|
+
|
|
11930
|
+
}
|
|
11931
|
+
}
|
|
11932
|
+
|
|
10442
11933
|
/**
|
|
10443
11934
|
* DescribeBackUpTables request structure.
|
|
10444
11935
|
* @class
|
|
@@ -10816,8 +12307,8 @@ class ScaleUpInstanceResponse extends AbstractModel {
|
|
|
10816
12307
|
module.exports = {
|
|
10817
12308
|
UpdateDatabaseRequest: UpdateDatabaseRequest,
|
|
10818
12309
|
DescribeInstanceUsedSubnetsResponse: DescribeInstanceUsedSubnetsResponse,
|
|
10819
|
-
|
|
10820
|
-
|
|
12310
|
+
DescribeInstanceNodesResponse: DescribeInstanceNodesResponse,
|
|
12311
|
+
DescribeClusterConfigsHistoryResponse: DescribeClusterConfigsHistoryResponse,
|
|
10821
12312
|
DescribeInstanceOperationsRequest: DescribeInstanceOperationsRequest,
|
|
10822
12313
|
DescribeClusterConfigsResponse: DescribeClusterConfigsResponse,
|
|
10823
12314
|
ScaleOutInstanceResponse: ScaleOutInstanceResponse,
|
|
@@ -10825,7 +12316,7 @@ module.exports = {
|
|
|
10825
12316
|
ModifyUserPrivilegesV3Response: ModifyUserPrivilegesV3Response,
|
|
10826
12317
|
UpdateTableSchemaResponse: UpdateTableSchemaResponse,
|
|
10827
12318
|
ModifyUserPrivilegesV3Request: ModifyUserPrivilegesV3Request,
|
|
10828
|
-
|
|
12319
|
+
DestroyInstanceRequest: DestroyInstanceRequest,
|
|
10829
12320
|
BindUser: BindUser,
|
|
10830
12321
|
CancelBackupJobRequest: CancelBackupJobRequest,
|
|
10831
12322
|
ModifyWorkloadGroupRequest: ModifyWorkloadGroupRequest,
|
|
@@ -10835,33 +12326,41 @@ module.exports = {
|
|
|
10835
12326
|
WorkloadGroupConfig: WorkloadGroupConfig,
|
|
10836
12327
|
DescribeInstanceOperationHistoryResponse: DescribeInstanceOperationHistoryResponse,
|
|
10837
12328
|
InsertDatasToTableRequest: InsertDatasToTableRequest,
|
|
12329
|
+
InstanceDetail: InstanceDetail,
|
|
10838
12330
|
ModifyDatabaseTableAccessRequest: ModifyDatabaseTableAccessRequest,
|
|
10839
12331
|
DescribeInstancesResponse: DescribeInstancesResponse,
|
|
10840
12332
|
CosSourceInfo: CosSourceInfo,
|
|
10841
12333
|
ReduceInstanceResponse: ReduceInstanceResponse,
|
|
12334
|
+
ModifyCoolDownPolicyRequest: ModifyCoolDownPolicyRequest,
|
|
10842
12335
|
DescribeBackUpTaskDetailRequest: DescribeBackUpTaskDetailRequest,
|
|
10843
12336
|
RecoverBackUpJobRequest: RecoverBackUpJobRequest,
|
|
10844
12337
|
DiskSpec: DiskSpec,
|
|
10845
12338
|
DescribeInstanceOperationsResponse: DescribeInstanceOperationsResponse,
|
|
10846
12339
|
DescribeUserBindWorkloadGroupResponse: DescribeUserBindWorkloadGroupResponse,
|
|
12340
|
+
CreateTablesDDL: CreateTablesDDL,
|
|
10847
12341
|
ScaleOutInstanceRequest: ScaleOutInstanceRequest,
|
|
10848
12342
|
UpdateUserPrivileges: UpdateUserPrivileges,
|
|
12343
|
+
ModifyClusterConfigsRequest: ModifyClusterConfigsRequest,
|
|
10849
12344
|
DescribeQueryAnalyseRequest: DescribeQueryAnalyseRequest,
|
|
10850
|
-
|
|
12345
|
+
DescribeInstanceStateRequest: DescribeInstanceStateRequest,
|
|
10851
12346
|
NetworkInfo: NetworkInfo,
|
|
10852
12347
|
ZoneInfo: ZoneInfo,
|
|
10853
|
-
|
|
12348
|
+
DescribeAreaRegionResponse: DescribeAreaRegionResponse,
|
|
10854
12349
|
DeleteBackUpDataRequest: DeleteBackUpDataRequest,
|
|
10855
12350
|
ExecuteParametrizedQueryResponse: ExecuteParametrizedQueryResponse,
|
|
10856
12351
|
CreateDatabaseRequest: CreateDatabaseRequest,
|
|
10857
12352
|
ConfigKeyValue: ConfigKeyValue,
|
|
10858
12353
|
Tag: Tag,
|
|
10859
12354
|
ResizeDiskResponse: ResizeDiskResponse,
|
|
12355
|
+
OpenCoolDownRequest: OpenCoolDownRequest,
|
|
12356
|
+
DescribeCoolDownTableDataRequest: DescribeCoolDownTableDataRequest,
|
|
12357
|
+
CheckCoolDownWorkingVariableConfigCorrectResponse: CheckCoolDownWorkingVariableConfigCorrectResponse,
|
|
10860
12358
|
ModifyInstanceResponse: ModifyInstanceResponse,
|
|
10861
12359
|
DescribeSlowQueryRecordsDownloadRequest: DescribeSlowQueryRecordsDownloadRequest,
|
|
10862
|
-
|
|
12360
|
+
DescribeRestoreTaskDetailResponse: DescribeRestoreTaskDetailResponse,
|
|
10863
12361
|
DescribeUserPolicyResponse: DescribeUserPolicyResponse,
|
|
10864
12362
|
ModifyNodeStatusRequest: ModifyNodeStatusRequest,
|
|
12363
|
+
DescribeCreateTablesDDLRequest: DescribeCreateTablesDDLRequest,
|
|
10865
12364
|
RestartClusterForNodeResponse: RestartClusterForNodeResponse,
|
|
10866
12365
|
UpdateTableSchemaRequest: UpdateTableSchemaRequest,
|
|
10867
12366
|
CancelBackupJobResponse: CancelBackupJobResponse,
|
|
@@ -10870,17 +12369,23 @@ module.exports = {
|
|
|
10870
12369
|
DescribeInstanceNodesRequest: DescribeInstanceNodesRequest,
|
|
10871
12370
|
ChargeProperties: ChargeProperties,
|
|
10872
12371
|
DescribeWorkloadGroupRequest: DescribeWorkloadGroupRequest,
|
|
12372
|
+
DescribeCoolDownBackendsRequest: DescribeCoolDownBackendsRequest,
|
|
12373
|
+
CheckCoolDownWorkingVariableConfigCorrectRequest: CheckCoolDownWorkingVariableConfigCorrectRequest,
|
|
10873
12374
|
InstanceOperation: InstanceOperation,
|
|
10874
12375
|
BackupTableContent: BackupTableContent,
|
|
10875
|
-
|
|
12376
|
+
CreateInstanceNewResponse: CreateInstanceNewResponse,
|
|
10876
12377
|
DescribeSqlApisRequest: DescribeSqlApisRequest,
|
|
10877
12378
|
ModifySecurityGroupsRequest: ModifySecurityGroupsRequest,
|
|
10878
12379
|
PermissionHostInfo: PermissionHostInfo,
|
|
10879
12380
|
CreateInstanceNewRequest: CreateInstanceNewRequest,
|
|
10880
12381
|
DescribeDatabaseResponse: DescribeDatabaseResponse,
|
|
12382
|
+
UpdateCoolDownRequest: UpdateCoolDownRequest,
|
|
10881
12383
|
Partition: Partition,
|
|
12384
|
+
CoolDownPolicyInfo: CoolDownPolicyInfo,
|
|
12385
|
+
OpenCoolDownPolicyRequest: OpenCoolDownPolicyRequest,
|
|
10882
12386
|
RangeInfo: RangeInfo,
|
|
10883
12387
|
DorisSourceInfo: DorisSourceInfo,
|
|
12388
|
+
OpenCoolDownResponse: OpenCoolDownResponse,
|
|
10884
12389
|
AttachCBSSpec: AttachCBSSpec,
|
|
10885
12390
|
DataBaseAuditRecord: DataBaseAuditRecord,
|
|
10886
12391
|
CopyTableDatasResponse: CopyTableDatasResponse,
|
|
@@ -10893,14 +12398,16 @@ module.exports = {
|
|
|
10893
12398
|
TablePermissions: TablePermissions,
|
|
10894
12399
|
CreateBackUpScheduleRequest: CreateBackUpScheduleRequest,
|
|
10895
12400
|
DeleteTableRequest: DeleteTableRequest,
|
|
12401
|
+
ActionAlterUserResponse: ActionAlterUserResponse,
|
|
10896
12402
|
BackupCosInfo: BackupCosInfo,
|
|
10897
12403
|
DescribeClusterConfigsHistoryRequest: DescribeClusterConfigsHistoryRequest,
|
|
10898
12404
|
DeleteTableResponse: DeleteTableResponse,
|
|
10899
|
-
|
|
12405
|
+
CreateWorkloadGroupRequest: CreateWorkloadGroupRequest,
|
|
10900
12406
|
DescribeInstanceNodesInfoRequest: DescribeInstanceNodesInfoRequest,
|
|
10901
12407
|
DescribeInstancesHealthStateResponse: DescribeInstancesHealthStateResponse,
|
|
10902
|
-
|
|
12408
|
+
DescribeDatabaseAuditDownloadRequest: DescribeDatabaseAuditDownloadRequest,
|
|
10903
12409
|
DescribeInstanceNodesRoleResponse: DescribeInstanceNodesRoleResponse,
|
|
12410
|
+
ExecuteSelectQueryResponse: ExecuteSelectQueryResponse,
|
|
10904
12411
|
DestroyInstanceResponse: DestroyInstanceResponse,
|
|
10905
12412
|
QueryTableDataResponse: QueryTableDataResponse,
|
|
10906
12413
|
ResizeDiskRequest: ResizeDiskRequest,
|
|
@@ -10908,28 +12415,33 @@ module.exports = {
|
|
|
10908
12415
|
DescribeSlowQueryRecordsResponse: DescribeSlowQueryRecordsResponse,
|
|
10909
12416
|
ModifyWorkloadGroupStatusRequest: ModifyWorkloadGroupStatusRequest,
|
|
10910
12417
|
DbInfo: DbInfo,
|
|
10911
|
-
|
|
12418
|
+
CreateCoolDownPolicyRequest: CreateCoolDownPolicyRequest,
|
|
10912
12419
|
DescribeSqlApisResponse: DescribeSqlApisResponse,
|
|
12420
|
+
DescribeCreateTablesDDLResponse: DescribeCreateTablesDDLResponse,
|
|
10913
12421
|
ModifyInstanceRequest: ModifyInstanceRequest,
|
|
10914
12422
|
DescribeSpecResponse: DescribeSpecResponse,
|
|
10915
12423
|
ModifyInstanceKeyValConfigsResponse: ModifyInstanceKeyValConfigsResponse,
|
|
10916
12424
|
QueryDetails: QueryDetails,
|
|
10917
12425
|
DescribeBackUpSchedulesResponse: DescribeBackUpSchedulesResponse,
|
|
12426
|
+
TablesDDL: TablesDDL,
|
|
10918
12427
|
DescribeBackUpTablesResponse: DescribeBackUpTablesResponse,
|
|
10919
12428
|
DescribeDatabaseAuditRecordsResponse: DescribeDatabaseAuditRecordsResponse,
|
|
10920
12429
|
InstanceNode: InstanceNode,
|
|
12430
|
+
ModifyCoolDownPolicyResponse: ModifyCoolDownPolicyResponse,
|
|
10921
12431
|
DescribeInstancesHealthStateRequest: DescribeInstancesHealthStateRequest,
|
|
10922
12432
|
NodeInfo: NodeInfo,
|
|
10923
12433
|
FrontEndRule: FrontEndRule,
|
|
10924
12434
|
RestartClusterForConfigsResponse: RestartClusterForConfigsResponse,
|
|
10925
12435
|
InstanceInfo: InstanceInfo,
|
|
12436
|
+
DescribeSlowQueryRecordsRequest: DescribeSlowQueryRecordsRequest,
|
|
10926
12437
|
CreateTableResponse: CreateTableResponse,
|
|
10927
12438
|
DescribeUserBindWorkloadGroupRequest: DescribeUserBindWorkloadGroupRequest,
|
|
10928
12439
|
ScaleUpInstanceRequest: ScaleUpInstanceRequest,
|
|
10929
|
-
|
|
12440
|
+
Column: Column,
|
|
10930
12441
|
DescribeBackUpSchedulesRequest: DescribeBackUpSchedulesRequest,
|
|
10931
12442
|
DescribeClusterConfigsRequest: DescribeClusterConfigsRequest,
|
|
10932
12443
|
ExecuteSelectQueryRequest: ExecuteSelectQueryRequest,
|
|
12444
|
+
CreateCoolDownPolicyResponse: CreateCoolDownPolicyResponse,
|
|
10933
12445
|
ModifyWorkloadGroupResponse: ModifyWorkloadGroupResponse,
|
|
10934
12446
|
DescribeRestoreTaskDetailRequest: DescribeRestoreTaskDetailRequest,
|
|
10935
12447
|
CreateBackUpScheduleResponse: CreateBackUpScheduleResponse,
|
|
@@ -10938,8 +12450,10 @@ module.exports = {
|
|
|
10938
12450
|
DescribeBackUpJobResponse: DescribeBackUpJobResponse,
|
|
10939
12451
|
DescribeDatabaseRequest: DescribeDatabaseRequest,
|
|
10940
12452
|
RestartClusterForNodeRequest: RestartClusterForNodeRequest,
|
|
12453
|
+
UpdateCoolDownResponse: UpdateCoolDownResponse,
|
|
10941
12454
|
BackupStatus: BackupStatus,
|
|
10942
12455
|
SearchTags: SearchTags,
|
|
12456
|
+
UserInfo: UserInfo,
|
|
10943
12457
|
DescribeInstanceUsedSubnetsRequest: DescribeInstanceUsedSubnetsRequest,
|
|
10944
12458
|
ListInfo: ListInfo,
|
|
10945
12459
|
QueryTableDataRequest: QueryTableDataRequest,
|
|
@@ -10947,12 +12461,15 @@ module.exports = {
|
|
|
10947
12461
|
DescribeUserPolicyRequest: DescribeUserPolicyRequest,
|
|
10948
12462
|
DescribeBackUpJobDetailResponse: DescribeBackUpJobDetailResponse,
|
|
10949
12463
|
DescribeBackUpJobDetailRequest: DescribeBackUpJobDetailRequest,
|
|
10950
|
-
|
|
12464
|
+
DescribeCoolDownBackendsResponse: DescribeCoolDownBackendsResponse,
|
|
12465
|
+
DescribeCoolDownPoliciesResponse: DescribeCoolDownPoliciesResponse,
|
|
10951
12466
|
DescribeTableListRequest: DescribeTableListRequest,
|
|
10952
12467
|
DescribeWorkloadGroupResponse: DescribeWorkloadGroupResponse,
|
|
12468
|
+
CoolDownTableDataInfo: CoolDownTableDataInfo,
|
|
10953
12469
|
ModifySecurityGroupsResponse: ModifySecurityGroupsResponse,
|
|
10954
12470
|
DescribeTableRequest: DescribeTableRequest,
|
|
10955
12471
|
DescribeSpecRequest: DescribeSpecRequest,
|
|
12472
|
+
CoolDownBackend: CoolDownBackend,
|
|
10956
12473
|
DescribeBackUpTaskDetailResponse: DescribeBackUpTaskDetailResponse,
|
|
10957
12474
|
DatabasePermissions: DatabasePermissions,
|
|
10958
12475
|
ReduceInstanceRequest: ReduceInstanceRequest,
|
|
@@ -10960,33 +12477,40 @@ module.exports = {
|
|
|
10960
12477
|
DeleteWorkloadGroupResponse: DeleteWorkloadGroupResponse,
|
|
10961
12478
|
UpdateDatabaseResponse: UpdateDatabaseResponse,
|
|
10962
12479
|
DescribeInstanceOperationHistoryRequest: DescribeInstanceOperationHistoryRequest,
|
|
10963
|
-
|
|
12480
|
+
DescribeCoolDownTableDataResponse: DescribeCoolDownTableDataResponse,
|
|
10964
12481
|
DescribeQueryAnalyseResponse: DescribeQueryAnalyseResponse,
|
|
10965
12482
|
IndexInfo: IndexInfo,
|
|
10966
12483
|
ModifyWorkloadGroupStatusResponse: ModifyWorkloadGroupStatusResponse,
|
|
12484
|
+
OpenCoolDownPolicyResponse: OpenCoolDownPolicyResponse,
|
|
10967
12485
|
ExecuteParametrizedQueryRequest: ExecuteParametrizedQueryRequest,
|
|
10968
|
-
|
|
10969
|
-
|
|
12486
|
+
ConfigSubmitContext: ConfigSubmitContext,
|
|
12487
|
+
DescribeInstancesRequest: DescribeInstancesRequest,
|
|
10970
12488
|
RegionInfo: RegionInfo,
|
|
12489
|
+
Rows: Rows,
|
|
10971
12490
|
RestartClusterForConfigsRequest: RestartClusterForConfigsRequest,
|
|
10972
12491
|
CreateWorkloadGroupResponse: CreateWorkloadGroupResponse,
|
|
10973
|
-
|
|
12492
|
+
DescribeInstanceStateResponse: DescribeInstanceStateResponse,
|
|
10974
12493
|
CreateDatabaseResponse: CreateDatabaseResponse,
|
|
10975
12494
|
PropertiesMap: PropertiesMap,
|
|
12495
|
+
DescribeCoolDownPoliciesRequest: DescribeCoolDownPoliciesRequest,
|
|
10976
12496
|
ResourceSpec: ResourceSpec,
|
|
12497
|
+
ModifyClusterConfigsResponse: ModifyClusterConfigsResponse,
|
|
10977
12498
|
RestoreStatus: RestoreStatus,
|
|
10978
12499
|
DeleteBackUpDataResponse: DeleteBackUpDataResponse,
|
|
10979
12500
|
ModifyInstanceKeyValConfigsRequest: ModifyInstanceKeyValConfigsRequest,
|
|
10980
12501
|
BackUpJobDisplay: BackUpJobDisplay,
|
|
10981
12502
|
ModifyUserBindWorkloadGroupResponse: ModifyUserBindWorkloadGroupResponse,
|
|
12503
|
+
ClusterConfigsInfoFromEMR: ClusterConfigsInfoFromEMR,
|
|
10982
12504
|
RecoverBackUpJobResponse: RecoverBackUpJobResponse,
|
|
10983
12505
|
DescribeTableResponse: DescribeTableResponse,
|
|
10984
12506
|
DescribeTableListResponse: DescribeTableListResponse,
|
|
12507
|
+
ModifyUserBindWorkloadGroupRequest: ModifyUserBindWorkloadGroupRequest,
|
|
10985
12508
|
NodesSummary: NodesSummary,
|
|
10986
|
-
DescribeDatabaseAuditDownloadRequest: DescribeDatabaseAuditDownloadRequest,
|
|
10987
12509
|
CreateInstanceSpec: CreateInstanceSpec,
|
|
12510
|
+
DbTablesInfo: DbTablesInfo,
|
|
10988
12511
|
DescribeInstanceRequest: DescribeInstanceRequest,
|
|
10989
12512
|
DescribeBackUpJobRequest: DescribeBackUpJobRequest,
|
|
12513
|
+
ActionAlterUserRequest: ActionAlterUserRequest,
|
|
10990
12514
|
DescribeBackUpTablesRequest: DescribeBackUpTablesRequest,
|
|
10991
12515
|
RegionAreaInfo: RegionAreaInfo,
|
|
10992
12516
|
DescribeInstanceNodesRoleRequest: DescribeInstanceNodesRoleRequest,
|