@alicloud/cs20151215 3.0.10 → 3.0.13

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/src/client.ts CHANGED
@@ -240,10 +240,12 @@ export class AttachInstancesResponseBody extends $tea.Model {
240
240
 
241
241
  export class AttachInstancesResponse extends $tea.Model {
242
242
  headers: { [key: string]: string };
243
+ statusCode: number;
243
244
  body: AttachInstancesResponseBody;
244
245
  static names(): { [key: string]: string } {
245
246
  return {
246
247
  headers: 'headers',
248
+ statusCode: 'statusCode',
247
249
  body: 'body',
248
250
  };
249
251
  }
@@ -251,6 +253,7 @@ export class AttachInstancesResponse extends $tea.Model {
251
253
  static types(): { [key: string]: any } {
252
254
  return {
253
255
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
256
+ statusCode: 'number',
254
257
  body: AttachInstancesResponseBody,
255
258
  };
256
259
  }
@@ -262,15 +265,18 @@ export class AttachInstancesResponse extends $tea.Model {
262
265
 
263
266
  export class CancelClusterUpgradeResponse extends $tea.Model {
264
267
  headers: { [key: string]: string };
268
+ statusCode: number;
265
269
  static names(): { [key: string]: string } {
266
270
  return {
267
271
  headers: 'headers',
272
+ statusCode: 'statusCode',
268
273
  };
269
274
  }
270
275
 
271
276
  static types(): { [key: string]: any } {
272
277
  return {
273
278
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
279
+ statusCode: 'number',
274
280
  };
275
281
  }
276
282
 
@@ -281,15 +287,40 @@ export class CancelClusterUpgradeResponse extends $tea.Model {
281
287
 
282
288
  export class CancelComponentUpgradeResponse extends $tea.Model {
283
289
  headers: { [key: string]: string };
290
+ statusCode: number;
284
291
  static names(): { [key: string]: string } {
285
292
  return {
286
293
  headers: 'headers',
294
+ statusCode: 'statusCode',
287
295
  };
288
296
  }
289
297
 
290
298
  static types(): { [key: string]: any } {
291
299
  return {
292
300
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
301
+ statusCode: 'number',
302
+ };
303
+ }
304
+
305
+ constructor(map?: { [key: string]: any }) {
306
+ super(map);
307
+ }
308
+ }
309
+
310
+ export class CancelTaskResponse extends $tea.Model {
311
+ headers: { [key: string]: string };
312
+ statusCode: number;
313
+ static names(): { [key: string]: string } {
314
+ return {
315
+ headers: 'headers',
316
+ statusCode: 'statusCode',
317
+ };
318
+ }
319
+
320
+ static types(): { [key: string]: any } {
321
+ return {
322
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
323
+ statusCode: 'number',
293
324
  };
294
325
  }
295
326
 
@@ -319,15 +350,18 @@ export class CancelWorkflowRequest extends $tea.Model {
319
350
 
320
351
  export class CancelWorkflowResponse extends $tea.Model {
321
352
  headers: { [key: string]: string };
353
+ statusCode: number;
322
354
  static names(): { [key: string]: string } {
323
355
  return {
324
356
  headers: 'headers',
357
+ statusCode: 'statusCode',
325
358
  };
326
359
  }
327
360
 
328
361
  static types(): { [key: string]: any } {
329
362
  return {
330
363
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
364
+ statusCode: 'number',
331
365
  };
332
366
  }
333
367
 
@@ -338,14 +372,18 @@ export class CancelWorkflowResponse extends $tea.Model {
338
372
 
339
373
  export class CreateAutoscalingConfigRequest extends $tea.Model {
340
374
  coolDownDuration?: string;
375
+ expander?: string;
341
376
  gpuUtilizationThreshold?: string;
377
+ scaleDownEnabled?: boolean;
342
378
  scanInterval?: string;
343
379
  unneededDuration?: string;
344
380
  utilizationThreshold?: string;
345
381
  static names(): { [key: string]: string } {
346
382
  return {
347
383
  coolDownDuration: 'cool_down_duration',
384
+ expander: 'expander',
348
385
  gpuUtilizationThreshold: 'gpu_utilization_threshold',
386
+ scaleDownEnabled: 'scale_down_enabled',
349
387
  scanInterval: 'scan_interval',
350
388
  unneededDuration: 'unneeded_duration',
351
389
  utilizationThreshold: 'utilization_threshold',
@@ -355,7 +393,9 @@ export class CreateAutoscalingConfigRequest extends $tea.Model {
355
393
  static types(): { [key: string]: any } {
356
394
  return {
357
395
  coolDownDuration: 'string',
396
+ expander: 'string',
358
397
  gpuUtilizationThreshold: 'string',
398
+ scaleDownEnabled: 'boolean',
359
399
  scanInterval: 'string',
360
400
  unneededDuration: 'string',
361
401
  utilizationThreshold: 'string',
@@ -369,15 +409,18 @@ export class CreateAutoscalingConfigRequest extends $tea.Model {
369
409
 
370
410
  export class CreateAutoscalingConfigResponse extends $tea.Model {
371
411
  headers: { [key: string]: string };
412
+ statusCode: number;
372
413
  static names(): { [key: string]: string } {
373
414
  return {
374
415
  headers: 'headers',
416
+ statusCode: 'statusCode',
375
417
  };
376
418
  }
377
419
 
378
420
  static types(): { [key: string]: any } {
379
421
  return {
380
422
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
423
+ statusCode: 'number',
381
424
  };
382
425
  }
383
426
 
@@ -681,10 +724,12 @@ export class CreateClusterResponseBody extends $tea.Model {
681
724
 
682
725
  export class CreateClusterResponse extends $tea.Model {
683
726
  headers: { [key: string]: string };
727
+ statusCode: number;
684
728
  body: CreateClusterResponseBody;
685
729
  static names(): { [key: string]: string } {
686
730
  return {
687
731
  headers: 'headers',
732
+ statusCode: 'statusCode',
688
733
  body: 'body',
689
734
  };
690
735
  }
@@ -692,6 +737,7 @@ export class CreateClusterResponse extends $tea.Model {
692
737
  static types(): { [key: string]: any } {
693
738
  return {
694
739
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
740
+ statusCode: 'number',
695
741
  body: CreateClusterResponseBody,
696
742
  };
697
743
  }
@@ -768,10 +814,12 @@ export class CreateClusterNodePoolResponseBody extends $tea.Model {
768
814
 
769
815
  export class CreateClusterNodePoolResponse extends $tea.Model {
770
816
  headers: { [key: string]: string };
817
+ statusCode: number;
771
818
  body: CreateClusterNodePoolResponseBody;
772
819
  static names(): { [key: string]: string } {
773
820
  return {
774
821
  headers: 'headers',
822
+ statusCode: 'statusCode',
775
823
  body: 'body',
776
824
  };
777
825
  }
@@ -779,6 +827,7 @@ export class CreateClusterNodePoolResponse extends $tea.Model {
779
827
  static types(): { [key: string]: any } {
780
828
  return {
781
829
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
830
+ statusCode: 'number',
782
831
  body: CreateClusterNodePoolResponseBody,
783
832
  };
784
833
  }
@@ -837,10 +886,12 @@ export class CreateEdgeMachineResponseBody extends $tea.Model {
837
886
 
838
887
  export class CreateEdgeMachineResponse extends $tea.Model {
839
888
  headers: { [key: string]: string };
889
+ statusCode: number;
840
890
  body: CreateEdgeMachineResponseBody;
841
891
  static names(): { [key: string]: string } {
842
892
  return {
843
893
  headers: 'headers',
894
+ statusCode: 'statusCode',
844
895
  body: 'body',
845
896
  };
846
897
  }
@@ -848,6 +899,7 @@ export class CreateEdgeMachineResponse extends $tea.Model {
848
899
  static types(): { [key: string]: any } {
849
900
  return {
850
901
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
902
+ statusCode: 'number',
851
903
  body: CreateEdgeMachineResponseBody,
852
904
  };
853
905
  }
@@ -918,10 +970,12 @@ export class CreateKubernetesTriggerResponseBody extends $tea.Model {
918
970
 
919
971
  export class CreateKubernetesTriggerResponse extends $tea.Model {
920
972
  headers: { [key: string]: string };
973
+ statusCode: number;
921
974
  body: CreateKubernetesTriggerResponseBody;
922
975
  static names(): { [key: string]: string } {
923
976
  return {
924
977
  headers: 'headers',
978
+ statusCode: 'statusCode',
925
979
  body: 'body',
926
980
  };
927
981
  }
@@ -929,6 +983,7 @@ export class CreateKubernetesTriggerResponse extends $tea.Model {
929
983
  static types(): { [key: string]: any } {
930
984
  return {
931
985
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
986
+ statusCode: 'number',
932
987
  body: CreateKubernetesTriggerResponseBody,
933
988
  };
934
989
  }
@@ -990,10 +1045,12 @@ export class CreateTemplateResponseBody extends $tea.Model {
990
1045
 
991
1046
  export class CreateTemplateResponse extends $tea.Model {
992
1047
  headers: { [key: string]: string };
1048
+ statusCode: number;
993
1049
  body: CreateTemplateResponseBody;
994
1050
  static names(): { [key: string]: string } {
995
1051
  return {
996
1052
  headers: 'headers',
1053
+ statusCode: 'statusCode',
997
1054
  body: 'body',
998
1055
  };
999
1056
  }
@@ -1001,6 +1058,7 @@ export class CreateTemplateResponse extends $tea.Model {
1001
1058
  static types(): { [key: string]: any } {
1002
1059
  return {
1003
1060
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1061
+ statusCode: 'number',
1004
1062
  body: CreateTemplateResponseBody,
1005
1063
  };
1006
1064
  }
@@ -1071,10 +1129,12 @@ export class CreateTriggerResponseBody extends $tea.Model {
1071
1129
 
1072
1130
  export class CreateTriggerResponse extends $tea.Model {
1073
1131
  headers: { [key: string]: string };
1132
+ statusCode: number;
1074
1133
  body: CreateTriggerResponseBody;
1075
1134
  static names(): { [key: string]: string } {
1076
1135
  return {
1077
1136
  headers: 'headers',
1137
+ statusCode: 'statusCode',
1078
1138
  body: 'body',
1079
1139
  };
1080
1140
  }
@@ -1082,6 +1142,7 @@ export class CreateTriggerResponse extends $tea.Model {
1082
1142
  static types(): { [key: string]: any } {
1083
1143
  return {
1084
1144
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1145
+ statusCode: 'number',
1085
1146
  body: CreateTriggerResponseBody,
1086
1147
  };
1087
1148
  }
@@ -1093,15 +1154,18 @@ export class CreateTriggerResponse extends $tea.Model {
1093
1154
 
1094
1155
  export class DeleteAlertContactResponse extends $tea.Model {
1095
1156
  headers: { [key: string]: string };
1157
+ statusCode: number;
1096
1158
  static names(): { [key: string]: string } {
1097
1159
  return {
1098
1160
  headers: 'headers',
1161
+ statusCode: 'statusCode',
1099
1162
  };
1100
1163
  }
1101
1164
 
1102
1165
  static types(): { [key: string]: any } {
1103
1166
  return {
1104
1167
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1168
+ statusCode: 'number',
1105
1169
  };
1106
1170
  }
1107
1171
 
@@ -1112,15 +1176,18 @@ export class DeleteAlertContactResponse extends $tea.Model {
1112
1176
 
1113
1177
  export class DeleteAlertContactGroupResponse extends $tea.Model {
1114
1178
  headers: { [key: string]: string };
1179
+ statusCode: number;
1115
1180
  static names(): { [key: string]: string } {
1116
1181
  return {
1117
1182
  headers: 'headers',
1183
+ statusCode: 'statusCode',
1118
1184
  };
1119
1185
  }
1120
1186
 
1121
1187
  static types(): { [key: string]: any } {
1122
1188
  return {
1123
1189
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1190
+ statusCode: 'number',
1124
1191
  };
1125
1192
  }
1126
1193
 
@@ -1181,15 +1248,18 @@ export class DeleteClusterShrinkRequest extends $tea.Model {
1181
1248
 
1182
1249
  export class DeleteClusterResponse extends $tea.Model {
1183
1250
  headers: { [key: string]: string };
1251
+ statusCode: number;
1184
1252
  static names(): { [key: string]: string } {
1185
1253
  return {
1186
1254
  headers: 'headers',
1255
+ statusCode: 'statusCode',
1187
1256
  };
1188
1257
  }
1189
1258
 
1190
1259
  static types(): { [key: string]: any } {
1191
1260
  return {
1192
1261
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1262
+ statusCode: 'number',
1193
1263
  };
1194
1264
  }
1195
1265
 
@@ -1238,10 +1308,12 @@ export class DeleteClusterNodepoolResponseBody extends $tea.Model {
1238
1308
 
1239
1309
  export class DeleteClusterNodepoolResponse extends $tea.Model {
1240
1310
  headers: { [key: string]: string };
1311
+ statusCode: number;
1241
1312
  body: DeleteClusterNodepoolResponseBody;
1242
1313
  static names(): { [key: string]: string } {
1243
1314
  return {
1244
1315
  headers: 'headers',
1316
+ statusCode: 'statusCode',
1245
1317
  body: 'body',
1246
1318
  };
1247
1319
  }
@@ -1249,6 +1321,7 @@ export class DeleteClusterNodepoolResponse extends $tea.Model {
1249
1321
  static types(): { [key: string]: any } {
1250
1322
  return {
1251
1323
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1324
+ statusCode: 'number',
1252
1325
  body: DeleteClusterNodepoolResponseBody,
1253
1326
  };
1254
1327
  }
@@ -1310,10 +1383,12 @@ export class DeleteClusterNodesResponseBody extends $tea.Model {
1310
1383
 
1311
1384
  export class DeleteClusterNodesResponse extends $tea.Model {
1312
1385
  headers: { [key: string]: string };
1386
+ statusCode: number;
1313
1387
  body: DeleteClusterNodesResponseBody;
1314
1388
  static names(): { [key: string]: string } {
1315
1389
  return {
1316
1390
  headers: 'headers',
1391
+ statusCode: 'statusCode',
1317
1392
  body: 'body',
1318
1393
  };
1319
1394
  }
@@ -1321,6 +1396,7 @@ export class DeleteClusterNodesResponse extends $tea.Model {
1321
1396
  static types(): { [key: string]: any } {
1322
1397
  return {
1323
1398
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1399
+ statusCode: 'number',
1324
1400
  body: DeleteClusterNodesResponseBody,
1325
1401
  };
1326
1402
  }
@@ -1351,15 +1427,18 @@ export class DeleteEdgeMachineRequest extends $tea.Model {
1351
1427
 
1352
1428
  export class DeleteEdgeMachineResponse extends $tea.Model {
1353
1429
  headers: { [key: string]: string };
1430
+ statusCode: number;
1354
1431
  static names(): { [key: string]: string } {
1355
1432
  return {
1356
1433
  headers: 'headers',
1434
+ statusCode: 'statusCode',
1357
1435
  };
1358
1436
  }
1359
1437
 
1360
1438
  static types(): { [key: string]: any } {
1361
1439
  return {
1362
1440
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1441
+ statusCode: 'number',
1363
1442
  };
1364
1443
  }
1365
1444
 
@@ -1370,15 +1449,18 @@ export class DeleteEdgeMachineResponse extends $tea.Model {
1370
1449
 
1371
1450
  export class DeleteKubernetesTriggerResponse extends $tea.Model {
1372
1451
  headers: { [key: string]: string };
1452
+ statusCode: number;
1373
1453
  static names(): { [key: string]: string } {
1374
1454
  return {
1375
1455
  headers: 'headers',
1456
+ statusCode: 'statusCode',
1376
1457
  };
1377
1458
  }
1378
1459
 
1379
1460
  static types(): { [key: string]: any } {
1380
1461
  return {
1381
1462
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1463
+ statusCode: 'number',
1382
1464
  };
1383
1465
  }
1384
1466
 
@@ -1427,10 +1509,12 @@ export class DeletePolicyInstanceResponseBody extends $tea.Model {
1427
1509
 
1428
1510
  export class DeletePolicyInstanceResponse extends $tea.Model {
1429
1511
  headers: { [key: string]: string };
1512
+ statusCode: number;
1430
1513
  body: DeletePolicyInstanceResponseBody;
1431
1514
  static names(): { [key: string]: string } {
1432
1515
  return {
1433
1516
  headers: 'headers',
1517
+ statusCode: 'statusCode',
1434
1518
  body: 'body',
1435
1519
  };
1436
1520
  }
@@ -1438,6 +1522,7 @@ export class DeletePolicyInstanceResponse extends $tea.Model {
1438
1522
  static types(): { [key: string]: any } {
1439
1523
  return {
1440
1524
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1525
+ statusCode: 'number',
1441
1526
  body: DeletePolicyInstanceResponseBody,
1442
1527
  };
1443
1528
  }
@@ -1449,15 +1534,18 @@ export class DeletePolicyInstanceResponse extends $tea.Model {
1449
1534
 
1450
1535
  export class DeleteTemplateResponse extends $tea.Model {
1451
1536
  headers: { [key: string]: string };
1537
+ statusCode: number;
1452
1538
  static names(): { [key: string]: string } {
1453
1539
  return {
1454
1540
  headers: 'headers',
1541
+ statusCode: 'statusCode',
1455
1542
  };
1456
1543
  }
1457
1544
 
1458
1545
  static types(): { [key: string]: any } {
1459
1546
  return {
1460
1547
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1548
+ statusCode: 'number',
1461
1549
  };
1462
1550
  }
1463
1551
 
@@ -1468,15 +1556,18 @@ export class DeleteTemplateResponse extends $tea.Model {
1468
1556
 
1469
1557
  export class DeleteTriggerResponse extends $tea.Model {
1470
1558
  headers: { [key: string]: string };
1559
+ statusCode: number;
1471
1560
  static names(): { [key: string]: string } {
1472
1561
  return {
1473
1562
  headers: 'headers',
1563
+ statusCode: 'statusCode',
1474
1564
  };
1475
1565
  }
1476
1566
 
1477
1567
  static types(): { [key: string]: any } {
1478
1568
  return {
1479
1569
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1570
+ statusCode: 'number',
1480
1571
  };
1481
1572
  }
1482
1573
 
@@ -1531,10 +1622,12 @@ export class DeployPolicyInstanceResponseBody extends $tea.Model {
1531
1622
 
1532
1623
  export class DeployPolicyInstanceResponse extends $tea.Model {
1533
1624
  headers: { [key: string]: string };
1625
+ statusCode: number;
1534
1626
  body: DeployPolicyInstanceResponseBody;
1535
1627
  static names(): { [key: string]: string } {
1536
1628
  return {
1537
1629
  headers: 'headers',
1630
+ statusCode: 'statusCode',
1538
1631
  body: 'body',
1539
1632
  };
1540
1633
  }
@@ -1542,6 +1635,7 @@ export class DeployPolicyInstanceResponse extends $tea.Model {
1542
1635
  static types(): { [key: string]: any } {
1543
1636
  return {
1544
1637
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1638
+ statusCode: 'number',
1545
1639
  body: DeployPolicyInstanceResponseBody,
1546
1640
  };
1547
1641
  }
@@ -1602,10 +1696,12 @@ export class DescirbeWorkflowResponseBody extends $tea.Model {
1602
1696
 
1603
1697
  export class DescirbeWorkflowResponse extends $tea.Model {
1604
1698
  headers: { [key: string]: string };
1699
+ statusCode: number;
1605
1700
  body: DescirbeWorkflowResponseBody;
1606
1701
  static names(): { [key: string]: string } {
1607
1702
  return {
1608
1703
  headers: 'headers',
1704
+ statusCode: 'statusCode',
1609
1705
  body: 'body',
1610
1706
  };
1611
1707
  }
@@ -1613,6 +1709,7 @@ export class DescirbeWorkflowResponse extends $tea.Model {
1613
1709
  static types(): { [key: string]: any } {
1614
1710
  return {
1615
1711
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1712
+ statusCode: 'number',
1616
1713
  body: DescirbeWorkflowResponseBody,
1617
1714
  };
1618
1715
  }
@@ -1668,10 +1765,12 @@ export class DescribeAddonsResponseBody extends $tea.Model {
1668
1765
 
1669
1766
  export class DescribeAddonsResponse extends $tea.Model {
1670
1767
  headers: { [key: string]: string };
1768
+ statusCode: number;
1671
1769
  body: DescribeAddonsResponseBody;
1672
1770
  static names(): { [key: string]: string } {
1673
1771
  return {
1674
1772
  headers: 'headers',
1773
+ statusCode: 'statusCode',
1675
1774
  body: 'body',
1676
1775
  };
1677
1776
  }
@@ -1679,6 +1778,7 @@ export class DescribeAddonsResponse extends $tea.Model {
1679
1778
  static types(): { [key: string]: any } {
1680
1779
  return {
1681
1780
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1781
+ statusCode: 'number',
1682
1782
  body: DescribeAddonsResponseBody,
1683
1783
  };
1684
1784
  }
@@ -1715,10 +1815,12 @@ export class DescribeClusterAddonMetadataResponseBody extends $tea.Model {
1715
1815
 
1716
1816
  export class DescribeClusterAddonMetadataResponse extends $tea.Model {
1717
1817
  headers: { [key: string]: string };
1818
+ statusCode: number;
1718
1819
  body: DescribeClusterAddonMetadataResponseBody;
1719
1820
  static names(): { [key: string]: string } {
1720
1821
  return {
1721
1822
  headers: 'headers',
1823
+ statusCode: 'statusCode',
1722
1824
  body: 'body',
1723
1825
  };
1724
1826
  }
@@ -1726,6 +1828,7 @@ export class DescribeClusterAddonMetadataResponse extends $tea.Model {
1726
1828
  static types(): { [key: string]: any } {
1727
1829
  return {
1728
1830
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1831
+ statusCode: 'number',
1729
1832
  body: DescribeClusterAddonMetadataResponseBody,
1730
1833
  };
1731
1834
  }
@@ -1737,10 +1840,12 @@ export class DescribeClusterAddonMetadataResponse extends $tea.Model {
1737
1840
 
1738
1841
  export class DescribeClusterAddonUpgradeStatusResponse extends $tea.Model {
1739
1842
  headers: { [key: string]: string };
1843
+ statusCode: number;
1740
1844
  body: {[key: string]: any};
1741
1845
  static names(): { [key: string]: string } {
1742
1846
  return {
1743
1847
  headers: 'headers',
1848
+ statusCode: 'statusCode',
1744
1849
  body: 'body',
1745
1850
  };
1746
1851
  }
@@ -1748,6 +1853,7 @@ export class DescribeClusterAddonUpgradeStatusResponse extends $tea.Model {
1748
1853
  static types(): { [key: string]: any } {
1749
1854
  return {
1750
1855
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1856
+ statusCode: 'number',
1751
1857
  body: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1752
1858
  };
1753
1859
  }
@@ -1797,10 +1903,12 @@ export class DescribeClusterAddonsUpgradeStatusShrinkRequest extends $tea.Model
1797
1903
 
1798
1904
  export class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Model {
1799
1905
  headers: { [key: string]: string };
1906
+ statusCode: number;
1800
1907
  body: {[key: string]: any};
1801
1908
  static names(): { [key: string]: string } {
1802
1909
  return {
1803
1910
  headers: 'headers',
1911
+ statusCode: 'statusCode',
1804
1912
  body: 'body',
1805
1913
  };
1806
1914
  }
@@ -1808,6 +1916,7 @@ export class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Model {
1808
1916
  static types(): { [key: string]: any } {
1809
1917
  return {
1810
1918
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1919
+ statusCode: 'number',
1811
1920
  body: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1812
1921
  };
1813
1922
  }
@@ -1819,10 +1928,12 @@ export class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Model {
1819
1928
 
1820
1929
  export class DescribeClusterAddonsVersionResponse extends $tea.Model {
1821
1930
  headers: { [key: string]: string };
1931
+ statusCode: number;
1822
1932
  body: {[key: string]: any};
1823
1933
  static names(): { [key: string]: string } {
1824
1934
  return {
1825
1935
  headers: 'headers',
1936
+ statusCode: 'statusCode',
1826
1937
  body: 'body',
1827
1938
  };
1828
1939
  }
@@ -1830,6 +1941,7 @@ export class DescribeClusterAddonsVersionResponse extends $tea.Model {
1830
1941
  static types(): { [key: string]: any } {
1831
1942
  return {
1832
1943
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1944
+ statusCode: 'number',
1833
1945
  body: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1834
1946
  };
1835
1947
  }
@@ -1875,10 +1987,12 @@ export class DescribeClusterAttachScriptsRequest extends $tea.Model {
1875
1987
 
1876
1988
  export class DescribeClusterAttachScriptsResponse extends $tea.Model {
1877
1989
  headers: { [key: string]: string };
1990
+ statusCode: number;
1878
1991
  body: string;
1879
1992
  static names(): { [key: string]: string } {
1880
1993
  return {
1881
1994
  headers: 'headers',
1995
+ statusCode: 'statusCode',
1882
1996
  body: 'body',
1883
1997
  };
1884
1998
  }
@@ -1886,6 +2000,7 @@ export class DescribeClusterAttachScriptsResponse extends $tea.Model {
1886
2000
  static types(): { [key: string]: any } {
1887
2001
  return {
1888
2002
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2003
+ statusCode: 'number',
1889
2004
  body: 'string',
1890
2005
  };
1891
2006
  }
@@ -2000,10 +2115,12 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
2000
2115
 
2001
2116
  export class DescribeClusterDetailResponse extends $tea.Model {
2002
2117
  headers: { [key: string]: string };
2118
+ statusCode: number;
2003
2119
  body: DescribeClusterDetailResponseBody;
2004
2120
  static names(): { [key: string]: string } {
2005
2121
  return {
2006
2122
  headers: 'headers',
2123
+ statusCode: 'statusCode',
2007
2124
  body: 'body',
2008
2125
  };
2009
2126
  }
@@ -2011,6 +2128,7 @@ export class DescribeClusterDetailResponse extends $tea.Model {
2011
2128
  static types(): { [key: string]: any } {
2012
2129
  return {
2013
2130
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2131
+ statusCode: 'number',
2014
2132
  body: DescribeClusterDetailResponseBody,
2015
2133
  };
2016
2134
  }
@@ -2022,10 +2140,12 @@ export class DescribeClusterDetailResponse extends $tea.Model {
2022
2140
 
2023
2141
  export class DescribeClusterLogsResponse extends $tea.Model {
2024
2142
  headers: { [key: string]: string };
2143
+ statusCode: number;
2025
2144
  body: DescribeClusterLogsResponseBody[];
2026
2145
  static names(): { [key: string]: string } {
2027
2146
  return {
2028
2147
  headers: 'headers',
2148
+ statusCode: 'statusCode',
2029
2149
  body: 'body',
2030
2150
  };
2031
2151
  }
@@ -2033,6 +2153,7 @@ export class DescribeClusterLogsResponse extends $tea.Model {
2033
2153
  static types(): { [key: string]: any } {
2034
2154
  return {
2035
2155
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2156
+ statusCode: 'number',
2036
2157
  body: { 'type': 'array', 'itemType': DescribeClusterLogsResponseBody },
2037
2158
  };
2038
2159
  }
@@ -2042,28 +2163,6 @@ export class DescribeClusterLogsResponse extends $tea.Model {
2042
2163
  }
2043
2164
  }
2044
2165
 
2045
- export class DescribeClusterNamespacesResponse extends $tea.Model {
2046
- headers: { [key: string]: string };
2047
- body: string[];
2048
- static names(): { [key: string]: string } {
2049
- return {
2050
- headers: 'headers',
2051
- body: 'body',
2052
- };
2053
- }
2054
-
2055
- static types(): { [key: string]: any } {
2056
- return {
2057
- headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2058
- body: { 'type': 'array', 'itemType': 'string' },
2059
- };
2060
- }
2061
-
2062
- constructor(map?: { [key: string]: any }) {
2063
- super(map);
2064
- }
2065
- }
2066
-
2067
2166
  export class DescribeClusterNodePoolDetailResponseBody extends $tea.Model {
2068
2167
  autoScaling?: DescribeClusterNodePoolDetailResponseBodyAutoScaling;
2069
2168
  interconnectConfig?: DescribeClusterNodePoolDetailResponseBodyInterconnectConfig;
@@ -2112,10 +2211,12 @@ export class DescribeClusterNodePoolDetailResponseBody extends $tea.Model {
2112
2211
 
2113
2212
  export class DescribeClusterNodePoolDetailResponse extends $tea.Model {
2114
2213
  headers: { [key: string]: string };
2214
+ statusCode: number;
2115
2215
  body: DescribeClusterNodePoolDetailResponseBody;
2116
2216
  static names(): { [key: string]: string } {
2117
2217
  return {
2118
2218
  headers: 'headers',
2219
+ statusCode: 'statusCode',
2119
2220
  body: 'body',
2120
2221
  };
2121
2222
  }
@@ -2123,6 +2224,7 @@ export class DescribeClusterNodePoolDetailResponse extends $tea.Model {
2123
2224
  static types(): { [key: string]: any } {
2124
2225
  return {
2125
2226
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2227
+ statusCode: 'number',
2126
2228
  body: DescribeClusterNodePoolDetailResponseBody,
2127
2229
  };
2128
2230
  }
@@ -2153,10 +2255,12 @@ export class DescribeClusterNodePoolsResponseBody extends $tea.Model {
2153
2255
 
2154
2256
  export class DescribeClusterNodePoolsResponse extends $tea.Model {
2155
2257
  headers: { [key: string]: string };
2258
+ statusCode: number;
2156
2259
  body: DescribeClusterNodePoolsResponseBody;
2157
2260
  static names(): { [key: string]: string } {
2158
2261
  return {
2159
2262
  headers: 'headers',
2263
+ statusCode: 'statusCode',
2160
2264
  body: 'body',
2161
2265
  };
2162
2266
  }
@@ -2164,6 +2268,7 @@ export class DescribeClusterNodePoolsResponse extends $tea.Model {
2164
2268
  static types(): { [key: string]: any } {
2165
2269
  return {
2166
2270
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2271
+ statusCode: 'number',
2167
2272
  body: DescribeClusterNodePoolsResponseBody,
2168
2273
  };
2169
2274
  }
@@ -2228,10 +2333,12 @@ export class DescribeClusterNodesResponseBody extends $tea.Model {
2228
2333
 
2229
2334
  export class DescribeClusterNodesResponse extends $tea.Model {
2230
2335
  headers: { [key: string]: string };
2336
+ statusCode: number;
2231
2337
  body: DescribeClusterNodesResponseBody;
2232
2338
  static names(): { [key: string]: string } {
2233
2339
  return {
2234
2340
  headers: 'headers',
2341
+ statusCode: 'statusCode',
2235
2342
  body: 'body',
2236
2343
  };
2237
2344
  }
@@ -2239,6 +2346,7 @@ export class DescribeClusterNodesResponse extends $tea.Model {
2239
2346
  static types(): { [key: string]: any } {
2240
2347
  return {
2241
2348
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2349
+ statusCode: 'number',
2242
2350
  body: DescribeClusterNodesResponseBody,
2243
2351
  };
2244
2352
  }
@@ -2250,10 +2358,12 @@ export class DescribeClusterNodesResponse extends $tea.Model {
2250
2358
 
2251
2359
  export class DescribeClusterResourcesResponse extends $tea.Model {
2252
2360
  headers: { [key: string]: string };
2361
+ statusCode: number;
2253
2362
  body: DescribeClusterResourcesResponseBody[];
2254
2363
  static names(): { [key: string]: string } {
2255
2364
  return {
2256
2365
  headers: 'headers',
2366
+ statusCode: 'statusCode',
2257
2367
  body: 'body',
2258
2368
  };
2259
2369
  }
@@ -2261,6 +2371,7 @@ export class DescribeClusterResourcesResponse extends $tea.Model {
2261
2371
  static types(): { [key: string]: any } {
2262
2372
  return {
2263
2373
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2374
+ statusCode: 'number',
2264
2375
  body: { 'type': 'array', 'itemType': DescribeClusterResourcesResponseBody },
2265
2376
  };
2266
2377
  }
@@ -2316,10 +2427,12 @@ export class DescribeClusterUserKubeconfigResponseBody extends $tea.Model {
2316
2427
 
2317
2428
  export class DescribeClusterUserKubeconfigResponse extends $tea.Model {
2318
2429
  headers: { [key: string]: string };
2430
+ statusCode: number;
2319
2431
  body: DescribeClusterUserKubeconfigResponseBody;
2320
2432
  static names(): { [key: string]: string } {
2321
2433
  return {
2322
2434
  headers: 'headers',
2435
+ statusCode: 'statusCode',
2323
2436
  body: 'body',
2324
2437
  };
2325
2438
  }
@@ -2327,6 +2440,7 @@ export class DescribeClusterUserKubeconfigResponse extends $tea.Model {
2327
2440
  static types(): { [key: string]: any } {
2328
2441
  return {
2329
2442
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2443
+ statusCode: 'number',
2330
2444
  body: DescribeClusterUserKubeconfigResponseBody,
2331
2445
  };
2332
2446
  }
@@ -2376,10 +2490,12 @@ export class DescribeClusterV2UserKubeconfigResponseBody extends $tea.Model {
2376
2490
 
2377
2491
  export class DescribeClusterV2UserKubeconfigResponse extends $tea.Model {
2378
2492
  headers: { [key: string]: string };
2493
+ statusCode: number;
2379
2494
  body: DescribeClusterV2UserKubeconfigResponseBody;
2380
2495
  static names(): { [key: string]: string } {
2381
2496
  return {
2382
2497
  headers: 'headers',
2498
+ statusCode: 'statusCode',
2383
2499
  body: 'body',
2384
2500
  };
2385
2501
  }
@@ -2387,6 +2503,7 @@ export class DescribeClusterV2UserKubeconfigResponse extends $tea.Model {
2387
2503
  static types(): { [key: string]: any } {
2388
2504
  return {
2389
2505
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2506
+ statusCode: 'number',
2390
2507
  body: DescribeClusterV2UserKubeconfigResponseBody,
2391
2508
  };
2392
2509
  }
@@ -2420,10 +2537,12 @@ export class DescribeClustersRequest extends $tea.Model {
2420
2537
 
2421
2538
  export class DescribeClustersResponse extends $tea.Model {
2422
2539
  headers: { [key: string]: string };
2540
+ statusCode: number;
2423
2541
  body: DescribeClustersResponseBody[];
2424
2542
  static names(): { [key: string]: string } {
2425
2543
  return {
2426
2544
  headers: 'headers',
2545
+ statusCode: 'statusCode',
2427
2546
  body: 'body',
2428
2547
  };
2429
2548
  }
@@ -2431,6 +2550,7 @@ export class DescribeClustersResponse extends $tea.Model {
2431
2550
  static types(): { [key: string]: any } {
2432
2551
  return {
2433
2552
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2553
+ statusCode: 'number',
2434
2554
  body: { 'type': 'array', 'itemType': DescribeClustersResponseBody },
2435
2555
  };
2436
2556
  }
@@ -2501,10 +2621,12 @@ export class DescribeClustersV1ResponseBody extends $tea.Model {
2501
2621
 
2502
2622
  export class DescribeClustersV1Response extends $tea.Model {
2503
2623
  headers: { [key: string]: string };
2624
+ statusCode: number;
2504
2625
  body: DescribeClustersV1ResponseBody;
2505
2626
  static names(): { [key: string]: string } {
2506
2627
  return {
2507
2628
  headers: 'headers',
2629
+ statusCode: 'statusCode',
2508
2630
  body: 'body',
2509
2631
  };
2510
2632
  }
@@ -2512,6 +2634,7 @@ export class DescribeClustersV1Response extends $tea.Model {
2512
2634
  static types(): { [key: string]: any } {
2513
2635
  return {
2514
2636
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2637
+ statusCode: 'number',
2515
2638
  body: DescribeClustersV1ResponseBody,
2516
2639
  };
2517
2640
  }
@@ -2554,10 +2677,12 @@ export class DescribeEdgeMachineActiveProcessResponseBody extends $tea.Model {
2554
2677
 
2555
2678
  export class DescribeEdgeMachineActiveProcessResponse extends $tea.Model {
2556
2679
  headers: { [key: string]: string };
2680
+ statusCode: number;
2557
2681
  body: DescribeEdgeMachineActiveProcessResponseBody;
2558
2682
  static names(): { [key: string]: string } {
2559
2683
  return {
2560
2684
  headers: 'headers',
2685
+ statusCode: 'statusCode',
2561
2686
  body: 'body',
2562
2687
  };
2563
2688
  }
@@ -2565,6 +2690,7 @@ export class DescribeEdgeMachineActiveProcessResponse extends $tea.Model {
2565
2690
  static types(): { [key: string]: any } {
2566
2691
  return {
2567
2692
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2693
+ statusCode: 'number',
2568
2694
  body: DescribeEdgeMachineActiveProcessResponseBody,
2569
2695
  };
2570
2696
  }
@@ -2595,10 +2721,12 @@ export class DescribeEdgeMachineModelsResponseBody extends $tea.Model {
2595
2721
 
2596
2722
  export class DescribeEdgeMachineModelsResponse extends $tea.Model {
2597
2723
  headers: { [key: string]: string };
2724
+ statusCode: number;
2598
2725
  body: DescribeEdgeMachineModelsResponseBody;
2599
2726
  static names(): { [key: string]: string } {
2600
2727
  return {
2601
2728
  headers: 'headers',
2729
+ statusCode: 'statusCode',
2602
2730
  body: 'body',
2603
2731
  };
2604
2732
  }
@@ -2606,6 +2734,7 @@ export class DescribeEdgeMachineModelsResponse extends $tea.Model {
2606
2734
  static types(): { [key: string]: any } {
2607
2735
  return {
2608
2736
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2737
+ statusCode: 'number',
2609
2738
  body: DescribeEdgeMachineModelsResponseBody,
2610
2739
  };
2611
2740
  }
@@ -2654,10 +2783,12 @@ export class DescribeEdgeMachineTunnelConfigDetailResponseBody extends $tea.Mode
2654
2783
 
2655
2784
  export class DescribeEdgeMachineTunnelConfigDetailResponse extends $tea.Model {
2656
2785
  headers: { [key: string]: string };
2786
+ statusCode: number;
2657
2787
  body: DescribeEdgeMachineTunnelConfigDetailResponseBody;
2658
2788
  static names(): { [key: string]: string } {
2659
2789
  return {
2660
2790
  headers: 'headers',
2791
+ statusCode: 'statusCode',
2661
2792
  body: 'body',
2662
2793
  };
2663
2794
  }
@@ -2665,6 +2796,7 @@ export class DescribeEdgeMachineTunnelConfigDetailResponse extends $tea.Model {
2665
2796
  static types(): { [key: string]: any } {
2666
2797
  return {
2667
2798
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2799
+ statusCode: 'number',
2668
2800
  body: DescribeEdgeMachineTunnelConfigDetailResponseBody,
2669
2801
  };
2670
2802
  }
@@ -2732,10 +2864,12 @@ export class DescribeEdgeMachinesResponseBody extends $tea.Model {
2732
2864
 
2733
2865
  export class DescribeEdgeMachinesResponse extends $tea.Model {
2734
2866
  headers: { [key: string]: string };
2867
+ statusCode: number;
2735
2868
  body: DescribeEdgeMachinesResponseBody;
2736
2869
  static names(): { [key: string]: string } {
2737
2870
  return {
2738
2871
  headers: 'headers',
2872
+ statusCode: 'statusCode',
2739
2873
  body: 'body',
2740
2874
  };
2741
2875
  }
@@ -2743,6 +2877,7 @@ export class DescribeEdgeMachinesResponse extends $tea.Model {
2743
2877
  static types(): { [key: string]: any } {
2744
2878
  return {
2745
2879
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2880
+ statusCode: 'number',
2746
2881
  body: DescribeEdgeMachinesResponseBody,
2747
2882
  };
2748
2883
  }
@@ -2804,10 +2939,12 @@ export class DescribeEventsResponseBody extends $tea.Model {
2804
2939
 
2805
2940
  export class DescribeEventsResponse extends $tea.Model {
2806
2941
  headers: { [key: string]: string };
2942
+ statusCode: number;
2807
2943
  body: DescribeEventsResponseBody;
2808
2944
  static names(): { [key: string]: string } {
2809
2945
  return {
2810
2946
  headers: 'headers',
2947
+ statusCode: 'statusCode',
2811
2948
  body: 'body',
2812
2949
  };
2813
2950
  }
@@ -2815,6 +2952,7 @@ export class DescribeEventsResponse extends $tea.Model {
2815
2952
  static types(): { [key: string]: any } {
2816
2953
  return {
2817
2954
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2955
+ statusCode: 'number',
2818
2956
  body: DescribeEventsResponseBody,
2819
2957
  };
2820
2958
  }
@@ -2864,10 +3002,12 @@ export class DescribeExternalAgentResponseBody extends $tea.Model {
2864
3002
 
2865
3003
  export class DescribeExternalAgentResponse extends $tea.Model {
2866
3004
  headers: { [key: string]: string };
3005
+ statusCode: number;
2867
3006
  body: DescribeExternalAgentResponseBody;
2868
3007
  static names(): { [key: string]: string } {
2869
3008
  return {
2870
3009
  headers: 'headers',
3010
+ statusCode: 'statusCode',
2871
3011
  body: 'body',
2872
3012
  };
2873
3013
  }
@@ -2875,6 +3015,7 @@ export class DescribeExternalAgentResponse extends $tea.Model {
2875
3015
  static types(): { [key: string]: any } {
2876
3016
  return {
2877
3017
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3018
+ statusCode: 'number',
2878
3019
  body: DescribeExternalAgentResponseBody,
2879
3020
  };
2880
3021
  }
@@ -2917,10 +3058,12 @@ export class DescribeKubernetesVersionMetadataRequest extends $tea.Model {
2917
3058
 
2918
3059
  export class DescribeKubernetesVersionMetadataResponse extends $tea.Model {
2919
3060
  headers: { [key: string]: string };
3061
+ statusCode: number;
2920
3062
  body: DescribeKubernetesVersionMetadataResponseBody[];
2921
3063
  static names(): { [key: string]: string } {
2922
3064
  return {
2923
3065
  headers: 'headers',
3066
+ statusCode: 'statusCode',
2924
3067
  body: 'body',
2925
3068
  };
2926
3069
  }
@@ -2928,6 +3071,7 @@ export class DescribeKubernetesVersionMetadataResponse extends $tea.Model {
2928
3071
  static types(): { [key: string]: any } {
2929
3072
  return {
2930
3073
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3074
+ statusCode: 'number',
2931
3075
  body: { 'type': 'array', 'itemType': DescribeKubernetesVersionMetadataResponseBody },
2932
3076
  };
2933
3077
  }
@@ -2937,12 +3081,58 @@ export class DescribeKubernetesVersionMetadataResponse extends $tea.Model {
2937
3081
  }
2938
3082
  }
2939
3083
 
3084
+ export class DescribeNodePoolVulsResponseBody extends $tea.Model {
3085
+ vulRecords?: DescribeNodePoolVulsResponseBodyVulRecords[];
3086
+ static names(): { [key: string]: string } {
3087
+ return {
3088
+ vulRecords: 'vul_records',
3089
+ };
3090
+ }
3091
+
3092
+ static types(): { [key: string]: any } {
3093
+ return {
3094
+ vulRecords: { 'type': 'array', 'itemType': DescribeNodePoolVulsResponseBodyVulRecords },
3095
+ };
3096
+ }
3097
+
3098
+ constructor(map?: { [key: string]: any }) {
3099
+ super(map);
3100
+ }
3101
+ }
3102
+
3103
+ export class DescribeNodePoolVulsResponse extends $tea.Model {
3104
+ headers: { [key: string]: string };
3105
+ statusCode: number;
3106
+ body: DescribeNodePoolVulsResponseBody;
3107
+ static names(): { [key: string]: string } {
3108
+ return {
3109
+ headers: 'headers',
3110
+ statusCode: 'statusCode',
3111
+ body: 'body',
3112
+ };
3113
+ }
3114
+
3115
+ static types(): { [key: string]: any } {
3116
+ return {
3117
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3118
+ statusCode: 'number',
3119
+ body: DescribeNodePoolVulsResponseBody,
3120
+ };
3121
+ }
3122
+
3123
+ constructor(map?: { [key: string]: any }) {
3124
+ super(map);
3125
+ }
3126
+ }
3127
+
2940
3128
  export class DescribePoliciesResponse extends $tea.Model {
2941
3129
  headers: { [key: string]: string };
3130
+ statusCode: number;
2942
3131
  body: {[key: string]: any};
2943
3132
  static names(): { [key: string]: string } {
2944
3133
  return {
2945
3134
  headers: 'headers',
3135
+ statusCode: 'statusCode',
2946
3136
  body: 'body',
2947
3137
  };
2948
3138
  }
@@ -2950,6 +3140,7 @@ export class DescribePoliciesResponse extends $tea.Model {
2950
3140
  static types(): { [key: string]: any } {
2951
3141
  return {
2952
3142
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3143
+ statusCode: 'number',
2953
3144
  body: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
2954
3145
  };
2955
3146
  }
@@ -3001,10 +3192,12 @@ export class DescribePolicyDetailsResponseBody extends $tea.Model {
3001
3192
 
3002
3193
  export class DescribePolicyDetailsResponse extends $tea.Model {
3003
3194
  headers: { [key: string]: string };
3195
+ statusCode: number;
3004
3196
  body: DescribePolicyDetailsResponseBody;
3005
3197
  static names(): { [key: string]: string } {
3006
3198
  return {
3007
3199
  headers: 'headers',
3200
+ statusCode: 'statusCode',
3008
3201
  body: 'body',
3009
3202
  };
3010
3203
  }
@@ -3012,6 +3205,7 @@ export class DescribePolicyDetailsResponse extends $tea.Model {
3012
3205
  static types(): { [key: string]: any } {
3013
3206
  return {
3014
3207
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3208
+ statusCode: 'number',
3015
3209
  body: DescribePolicyDetailsResponseBody,
3016
3210
  };
3017
3211
  }
@@ -3051,10 +3245,12 @@ export class DescribePolicyGovernanceInClusterResponseBody extends $tea.Model {
3051
3245
 
3052
3246
  export class DescribePolicyGovernanceInClusterResponse extends $tea.Model {
3053
3247
  headers: { [key: string]: string };
3248
+ statusCode: number;
3054
3249
  body: DescribePolicyGovernanceInClusterResponseBody;
3055
3250
  static names(): { [key: string]: string } {
3056
3251
  return {
3057
3252
  headers: 'headers',
3253
+ statusCode: 'statusCode',
3058
3254
  body: 'body',
3059
3255
  };
3060
3256
  }
@@ -3062,6 +3258,7 @@ export class DescribePolicyGovernanceInClusterResponse extends $tea.Model {
3062
3258
  static types(): { [key: string]: any } {
3063
3259
  return {
3064
3260
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3261
+ statusCode: 'number',
3065
3262
  body: DescribePolicyGovernanceInClusterResponseBody,
3066
3263
  };
3067
3264
  }
@@ -3095,10 +3292,12 @@ export class DescribePolicyInstancesRequest extends $tea.Model {
3095
3292
 
3096
3293
  export class DescribePolicyInstancesResponse extends $tea.Model {
3097
3294
  headers: { [key: string]: string };
3295
+ statusCode: number;
3098
3296
  body: DescribePolicyInstancesResponseBody[];
3099
3297
  static names(): { [key: string]: string } {
3100
3298
  return {
3101
3299
  headers: 'headers',
3300
+ statusCode: 'statusCode',
3102
3301
  body: 'body',
3103
3302
  };
3104
3303
  }
@@ -3106,6 +3305,7 @@ export class DescribePolicyInstancesResponse extends $tea.Model {
3106
3305
  static types(): { [key: string]: any } {
3107
3306
  return {
3108
3307
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3308
+ statusCode: 'number',
3109
3309
  body: { 'type': 'array', 'itemType': DescribePolicyInstancesResponseBody },
3110
3310
  };
3111
3311
  }
@@ -3139,10 +3339,12 @@ export class DescribePolicyInstancesStatusResponseBody extends $tea.Model {
3139
3339
 
3140
3340
  export class DescribePolicyInstancesStatusResponse extends $tea.Model {
3141
3341
  headers: { [key: string]: string };
3342
+ statusCode: number;
3142
3343
  body: DescribePolicyInstancesStatusResponseBody;
3143
3344
  static names(): { [key: string]: string } {
3144
3345
  return {
3145
3346
  headers: 'headers',
3347
+ statusCode: 'statusCode',
3146
3348
  body: 'body',
3147
3349
  };
3148
3350
  }
@@ -3150,6 +3352,7 @@ export class DescribePolicyInstancesStatusResponse extends $tea.Model {
3150
3352
  static types(): { [key: string]: any } {
3151
3353
  return {
3152
3354
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3355
+ statusCode: 'number',
3153
3356
  body: DescribePolicyInstancesStatusResponseBody,
3154
3357
  };
3155
3358
  }
@@ -3198,10 +3401,12 @@ export class DescribeTaskInfoResponseBody extends $tea.Model {
3198
3401
 
3199
3402
  export class DescribeTaskInfoResponse extends $tea.Model {
3200
3403
  headers: { [key: string]: string };
3404
+ statusCode: number;
3201
3405
  body: DescribeTaskInfoResponseBody;
3202
3406
  static names(): { [key: string]: string } {
3203
3407
  return {
3204
3408
  headers: 'headers',
3409
+ statusCode: 'statusCode',
3205
3410
  body: 'body',
3206
3411
  };
3207
3412
  }
@@ -3209,6 +3414,7 @@ export class DescribeTaskInfoResponse extends $tea.Model {
3209
3414
  static types(): { [key: string]: any } {
3210
3415
  return {
3211
3416
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3417
+ statusCode: 'number',
3212
3418
  body: DescribeTaskInfoResponseBody,
3213
3419
  };
3214
3420
  }
@@ -3239,10 +3445,12 @@ export class DescribeTemplateAttributeRequest extends $tea.Model {
3239
3445
 
3240
3446
  export class DescribeTemplateAttributeResponse extends $tea.Model {
3241
3447
  headers: { [key: string]: string };
3448
+ statusCode: number;
3242
3449
  body: DescribeTemplateAttributeResponseBody[];
3243
3450
  static names(): { [key: string]: string } {
3244
3451
  return {
3245
3452
  headers: 'headers',
3453
+ statusCode: 'statusCode',
3246
3454
  body: 'body',
3247
3455
  };
3248
3456
  }
@@ -3250,6 +3458,7 @@ export class DescribeTemplateAttributeResponse extends $tea.Model {
3250
3458
  static types(): { [key: string]: any } {
3251
3459
  return {
3252
3460
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3461
+ statusCode: 'number',
3253
3462
  body: { 'type': 'array', 'itemType': DescribeTemplateAttributeResponseBody },
3254
3463
  };
3255
3464
  }
@@ -3308,10 +3517,12 @@ export class DescribeTemplatesResponseBody extends $tea.Model {
3308
3517
 
3309
3518
  export class DescribeTemplatesResponse extends $tea.Model {
3310
3519
  headers: { [key: string]: string };
3520
+ statusCode: number;
3311
3521
  body: DescribeTemplatesResponseBody;
3312
3522
  static names(): { [key: string]: string } {
3313
3523
  return {
3314
3524
  headers: 'headers',
3525
+ statusCode: 'statusCode',
3315
3526
  body: 'body',
3316
3527
  };
3317
3528
  }
@@ -3319,6 +3530,7 @@ export class DescribeTemplatesResponse extends $tea.Model {
3319
3530
  static types(): { [key: string]: any } {
3320
3531
  return {
3321
3532
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3533
+ statusCode: 'number',
3322
3534
  body: DescribeTemplatesResponseBody,
3323
3535
  };
3324
3536
  }
@@ -3358,10 +3570,12 @@ export class DescribeTriggerRequest extends $tea.Model {
3358
3570
 
3359
3571
  export class DescribeTriggerResponse extends $tea.Model {
3360
3572
  headers: { [key: string]: string };
3573
+ statusCode: number;
3361
3574
  body: DescribeTriggerResponseBody[];
3362
3575
  static names(): { [key: string]: string } {
3363
3576
  return {
3364
3577
  headers: 'headers',
3578
+ statusCode: 'statusCode',
3365
3579
  body: 'body',
3366
3580
  };
3367
3581
  }
@@ -3369,6 +3583,7 @@ export class DescribeTriggerResponse extends $tea.Model {
3369
3583
  static types(): { [key: string]: any } {
3370
3584
  return {
3371
3585
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3586
+ statusCode: 'number',
3372
3587
  body: { 'type': 'array', 'itemType': DescribeTriggerResponseBody },
3373
3588
  };
3374
3589
  }
@@ -3380,10 +3595,12 @@ export class DescribeTriggerResponse extends $tea.Model {
3380
3595
 
3381
3596
  export class DescribeUserPermissionResponse extends $tea.Model {
3382
3597
  headers: { [key: string]: string };
3598
+ statusCode: number;
3383
3599
  body: DescribeUserPermissionResponseBody[];
3384
3600
  static names(): { [key: string]: string } {
3385
3601
  return {
3386
3602
  headers: 'headers',
3603
+ statusCode: 'statusCode',
3387
3604
  body: 'body',
3388
3605
  };
3389
3606
  }
@@ -3391,6 +3608,7 @@ export class DescribeUserPermissionResponse extends $tea.Model {
3391
3608
  static types(): { [key: string]: any } {
3392
3609
  return {
3393
3610
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3611
+ statusCode: 'number',
3394
3612
  body: { 'type': 'array', 'itemType': DescribeUserPermissionResponseBody },
3395
3613
  };
3396
3614
  }
@@ -3433,10 +3651,12 @@ export class DescribeUserQuotaResponseBody extends $tea.Model {
3433
3651
 
3434
3652
  export class DescribeUserQuotaResponse extends $tea.Model {
3435
3653
  headers: { [key: string]: string };
3654
+ statusCode: number;
3436
3655
  body: DescribeUserQuotaResponseBody;
3437
3656
  static names(): { [key: string]: string } {
3438
3657
  return {
3439
3658
  headers: 'headers',
3659
+ statusCode: 'statusCode',
3440
3660
  body: 'body',
3441
3661
  };
3442
3662
  }
@@ -3444,6 +3664,7 @@ export class DescribeUserQuotaResponse extends $tea.Model {
3444
3664
  static types(): { [key: string]: any } {
3445
3665
  return {
3446
3666
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3667
+ statusCode: 'number',
3447
3668
  body: DescribeUserQuotaResponseBody,
3448
3669
  };
3449
3670
  }
@@ -3474,10 +3695,12 @@ export class DescribeWorkflowsResponseBody extends $tea.Model {
3474
3695
 
3475
3696
  export class DescribeWorkflowsResponse extends $tea.Model {
3476
3697
  headers: { [key: string]: string };
3698
+ statusCode: number;
3477
3699
  body: DescribeWorkflowsResponseBody;
3478
3700
  static names(): { [key: string]: string } {
3479
3701
  return {
3480
3702
  headers: 'headers',
3703
+ statusCode: 'statusCode',
3481
3704
  body: 'body',
3482
3705
  };
3483
3706
  }
@@ -3485,6 +3708,7 @@ export class DescribeWorkflowsResponse extends $tea.Model {
3485
3708
  static types(): { [key: string]: any } {
3486
3709
  return {
3487
3710
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3711
+ statusCode: 'number',
3488
3712
  body: DescribeWorkflowsResponseBody,
3489
3713
  };
3490
3714
  }
@@ -3543,10 +3767,12 @@ export class EdgeClusterAddEdgeMachineResponseBody extends $tea.Model {
3543
3767
 
3544
3768
  export class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
3545
3769
  headers: { [key: string]: string };
3770
+ statusCode: number;
3546
3771
  body: EdgeClusterAddEdgeMachineResponseBody;
3547
3772
  static names(): { [key: string]: string } {
3548
3773
  return {
3549
3774
  headers: 'headers',
3775
+ statusCode: 'statusCode',
3550
3776
  body: 'body',
3551
3777
  };
3552
3778
  }
@@ -3554,6 +3780,7 @@ export class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
3554
3780
  static types(): { [key: string]: any } {
3555
3781
  return {
3556
3782
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3783
+ statusCode: 'number',
3557
3784
  body: EdgeClusterAddEdgeMachineResponseBody,
3558
3785
  };
3559
3786
  }
@@ -3563,6 +3790,75 @@ export class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
3563
3790
  }
3564
3791
  }
3565
3792
 
3793
+ export class FixNodePoolVulsRequest extends $tea.Model {
3794
+ nodes?: string[];
3795
+ rolloutPolicy?: FixNodePoolVulsRequestRolloutPolicy;
3796
+ vulList?: string[];
3797
+ static names(): { [key: string]: string } {
3798
+ return {
3799
+ nodes: 'nodes',
3800
+ rolloutPolicy: 'rollout_policy',
3801
+ vulList: 'vul_list',
3802
+ };
3803
+ }
3804
+
3805
+ static types(): { [key: string]: any } {
3806
+ return {
3807
+ nodes: { 'type': 'array', 'itemType': 'string' },
3808
+ rolloutPolicy: FixNodePoolVulsRequestRolloutPolicy,
3809
+ vulList: { 'type': 'array', 'itemType': 'string' },
3810
+ };
3811
+ }
3812
+
3813
+ constructor(map?: { [key: string]: any }) {
3814
+ super(map);
3815
+ }
3816
+ }
3817
+
3818
+ export class FixNodePoolVulsResponseBody extends $tea.Model {
3819
+ taskId?: string;
3820
+ static names(): { [key: string]: string } {
3821
+ return {
3822
+ taskId: 'task_id',
3823
+ };
3824
+ }
3825
+
3826
+ static types(): { [key: string]: any } {
3827
+ return {
3828
+ taskId: 'string',
3829
+ };
3830
+ }
3831
+
3832
+ constructor(map?: { [key: string]: any }) {
3833
+ super(map);
3834
+ }
3835
+ }
3836
+
3837
+ export class FixNodePoolVulsResponse extends $tea.Model {
3838
+ headers: { [key: string]: string };
3839
+ statusCode: number;
3840
+ body: FixNodePoolVulsResponseBody;
3841
+ static names(): { [key: string]: string } {
3842
+ return {
3843
+ headers: 'headers',
3844
+ statusCode: 'statusCode',
3845
+ body: 'body',
3846
+ };
3847
+ }
3848
+
3849
+ static types(): { [key: string]: any } {
3850
+ return {
3851
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3852
+ statusCode: 'number',
3853
+ body: FixNodePoolVulsResponseBody,
3854
+ };
3855
+ }
3856
+
3857
+ constructor(map?: { [key: string]: any }) {
3858
+ super(map);
3859
+ }
3860
+ }
3861
+
3566
3862
  export class GetKubernetesTriggerRequest extends $tea.Model {
3567
3863
  name?: string;
3568
3864
  namespace?: string;
@@ -3593,10 +3889,12 @@ export class GetKubernetesTriggerRequest extends $tea.Model {
3593
3889
 
3594
3890
  export class GetKubernetesTriggerResponse extends $tea.Model {
3595
3891
  headers: { [key: string]: string };
3892
+ statusCode: number;
3596
3893
  body: GetKubernetesTriggerResponseBody[];
3597
3894
  static names(): { [key: string]: string } {
3598
3895
  return {
3599
3896
  headers: 'headers',
3897
+ statusCode: 'statusCode',
3600
3898
  body: 'body',
3601
3899
  };
3602
3900
  }
@@ -3604,6 +3902,7 @@ export class GetKubernetesTriggerResponse extends $tea.Model {
3604
3902
  static types(): { [key: string]: any } {
3605
3903
  return {
3606
3904
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3905
+ statusCode: 'number',
3607
3906
  body: { 'type': 'array', 'itemType': GetKubernetesTriggerResponseBody },
3608
3907
  };
3609
3908
  }
@@ -3646,10 +3945,12 @@ export class GetUpgradeStatusResponseBody extends $tea.Model {
3646
3945
 
3647
3946
  export class GetUpgradeStatusResponse extends $tea.Model {
3648
3947
  headers: { [key: string]: string };
3948
+ statusCode: number;
3649
3949
  body: GetUpgradeStatusResponseBody;
3650
3950
  static names(): { [key: string]: string } {
3651
3951
  return {
3652
3952
  headers: 'headers',
3953
+ statusCode: 'statusCode',
3653
3954
  body: 'body',
3654
3955
  };
3655
3956
  }
@@ -3657,6 +3958,7 @@ export class GetUpgradeStatusResponse extends $tea.Model {
3657
3958
  static types(): { [key: string]: any } {
3658
3959
  return {
3659
3960
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3961
+ statusCode: 'number',
3660
3962
  body: GetUpgradeStatusResponseBody,
3661
3963
  };
3662
3964
  }
@@ -3687,15 +3989,18 @@ export class GrantPermissionsRequest extends $tea.Model {
3687
3989
 
3688
3990
  export class GrantPermissionsResponse extends $tea.Model {
3689
3991
  headers: { [key: string]: string };
3992
+ statusCode: number;
3690
3993
  static names(): { [key: string]: string } {
3691
3994
  return {
3692
3995
  headers: 'headers',
3996
+ statusCode: 'statusCode',
3693
3997
  };
3694
3998
  }
3695
3999
 
3696
4000
  static types(): { [key: string]: any } {
3697
4001
  return {
3698
4002
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4003
+ statusCode: 'number',
3699
4004
  };
3700
4005
  }
3701
4006
 
@@ -3725,15 +4030,18 @@ export class InstallClusterAddonsRequest extends $tea.Model {
3725
4030
 
3726
4031
  export class InstallClusterAddonsResponse extends $tea.Model {
3727
4032
  headers: { [key: string]: string };
4033
+ statusCode: number;
3728
4034
  static names(): { [key: string]: string } {
3729
4035
  return {
3730
4036
  headers: 'headers',
4037
+ statusCode: 'statusCode',
3731
4038
  };
3732
4039
  }
3733
4040
 
3734
4041
  static types(): { [key: string]: any } {
3735
4042
  return {
3736
4043
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4044
+ statusCode: 'number',
3737
4045
  };
3738
4046
  }
3739
4047
 
@@ -3831,10 +4139,12 @@ export class ListTagResourcesResponseBody extends $tea.Model {
3831
4139
 
3832
4140
  export class ListTagResourcesResponse extends $tea.Model {
3833
4141
  headers: { [key: string]: string };
4142
+ statusCode: number;
3834
4143
  body: ListTagResourcesResponseBody;
3835
4144
  static names(): { [key: string]: string } {
3836
4145
  return {
3837
4146
  headers: 'headers',
4147
+ statusCode: 'statusCode',
3838
4148
  body: 'body',
3839
4149
  };
3840
4150
  }
@@ -3842,6 +4152,7 @@ export class ListTagResourcesResponse extends $tea.Model {
3842
4152
  static types(): { [key: string]: any } {
3843
4153
  return {
3844
4154
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4155
+ statusCode: 'number',
3845
4156
  body: ListTagResourcesResponseBody,
3846
4157
  };
3847
4158
  }
@@ -3853,15 +4164,18 @@ export class ListTagResourcesResponse extends $tea.Model {
3853
4164
 
3854
4165
  export class MigrateClusterResponse extends $tea.Model {
3855
4166
  headers: { [key: string]: string };
4167
+ statusCode: number;
3856
4168
  static names(): { [key: string]: string } {
3857
4169
  return {
3858
4170
  headers: 'headers',
4171
+ statusCode: 'statusCode',
3859
4172
  };
3860
4173
  }
3861
4174
 
3862
4175
  static types(): { [key: string]: any } {
3863
4176
  return {
3864
4177
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4178
+ statusCode: 'number',
3865
4179
  };
3866
4180
  }
3867
4181
 
@@ -3940,10 +4254,12 @@ export class ModifyClusterResponseBody extends $tea.Model {
3940
4254
 
3941
4255
  export class ModifyClusterResponse extends $tea.Model {
3942
4256
  headers: { [key: string]: string };
4257
+ statusCode: number;
3943
4258
  body: ModifyClusterResponseBody;
3944
4259
  static names(): { [key: string]: string } {
3945
4260
  return {
3946
4261
  headers: 'headers',
4262
+ statusCode: 'statusCode',
3947
4263
  body: 'body',
3948
4264
  };
3949
4265
  }
@@ -3951,6 +4267,7 @@ export class ModifyClusterResponse extends $tea.Model {
3951
4267
  static types(): { [key: string]: any } {
3952
4268
  return {
3953
4269
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4270
+ statusCode: 'number',
3954
4271
  body: ModifyClusterResponseBody,
3955
4272
  };
3956
4273
  }
@@ -3981,15 +4298,18 @@ export class ModifyClusterAddonRequest extends $tea.Model {
3981
4298
 
3982
4299
  export class ModifyClusterAddonResponse extends $tea.Model {
3983
4300
  headers: { [key: string]: string };
4301
+ statusCode: number;
3984
4302
  static names(): { [key: string]: string } {
3985
4303
  return {
3986
4304
  headers: 'headers',
4305
+ statusCode: 'statusCode',
3987
4306
  };
3988
4307
  }
3989
4308
 
3990
4309
  static types(): { [key: string]: any } {
3991
4310
  return {
3992
4311
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4312
+ statusCode: 'number',
3993
4313
  };
3994
4314
  }
3995
4315
 
@@ -4019,15 +4339,18 @@ export class ModifyClusterConfigurationRequest extends $tea.Model {
4019
4339
 
4020
4340
  export class ModifyClusterConfigurationResponse extends $tea.Model {
4021
4341
  headers: { [key: string]: string };
4342
+ statusCode: number;
4022
4343
  static names(): { [key: string]: string } {
4023
4344
  return {
4024
4345
  headers: 'headers',
4346
+ statusCode: 'statusCode',
4025
4347
  };
4026
4348
  }
4027
4349
 
4028
4350
  static types(): { [key: string]: any } {
4029
4351
  return {
4030
4352
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4353
+ statusCode: 'number',
4031
4354
  };
4032
4355
  }
4033
4356
 
@@ -4097,10 +4420,12 @@ export class ModifyClusterNodePoolResponseBody extends $tea.Model {
4097
4420
 
4098
4421
  export class ModifyClusterNodePoolResponse extends $tea.Model {
4099
4422
  headers: { [key: string]: string };
4423
+ statusCode: number;
4100
4424
  body: ModifyClusterNodePoolResponseBody;
4101
4425
  static names(): { [key: string]: string } {
4102
4426
  return {
4103
4427
  headers: 'headers',
4428
+ statusCode: 'statusCode',
4104
4429
  body: 'body',
4105
4430
  };
4106
4431
  }
@@ -4108,6 +4433,7 @@ export class ModifyClusterNodePoolResponse extends $tea.Model {
4108
4433
  static types(): { [key: string]: any } {
4109
4434
  return {
4110
4435
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4436
+ statusCode: 'number',
4111
4437
  body: ModifyClusterNodePoolResponseBody,
4112
4438
  };
4113
4439
  }
@@ -4138,15 +4464,18 @@ export class ModifyClusterTagsRequest extends $tea.Model {
4138
4464
 
4139
4465
  export class ModifyClusterTagsResponse extends $tea.Model {
4140
4466
  headers: { [key: string]: string };
4467
+ statusCode: number;
4141
4468
  static names(): { [key: string]: string } {
4142
4469
  return {
4143
4470
  headers: 'headers',
4471
+ statusCode: 'statusCode',
4144
4472
  };
4145
4473
  }
4146
4474
 
4147
4475
  static types(): { [key: string]: any } {
4148
4476
  return {
4149
4477
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4478
+ statusCode: 'number',
4150
4479
  };
4151
4480
  }
4152
4481
 
@@ -4204,10 +4533,12 @@ export class ModifyPolicyInstanceResponseBody extends $tea.Model {
4204
4533
 
4205
4534
  export class ModifyPolicyInstanceResponse extends $tea.Model {
4206
4535
  headers: { [key: string]: string };
4536
+ statusCode: number;
4207
4537
  body: ModifyPolicyInstanceResponseBody;
4208
4538
  static names(): { [key: string]: string } {
4209
4539
  return {
4210
4540
  headers: 'headers',
4541
+ statusCode: 'statusCode',
4211
4542
  body: 'body',
4212
4543
  };
4213
4544
  }
@@ -4215,6 +4546,7 @@ export class ModifyPolicyInstanceResponse extends $tea.Model {
4215
4546
  static types(): { [key: string]: any } {
4216
4547
  return {
4217
4548
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4549
+ statusCode: 'number',
4218
4550
  body: ModifyPolicyInstanceResponseBody,
4219
4551
  };
4220
4552
  }
@@ -4267,10 +4599,12 @@ export class OpenAckServiceResponseBody extends $tea.Model {
4267
4599
 
4268
4600
  export class OpenAckServiceResponse extends $tea.Model {
4269
4601
  headers: { [key: string]: string };
4602
+ statusCode: number;
4270
4603
  body: OpenAckServiceResponseBody;
4271
4604
  static names(): { [key: string]: string } {
4272
4605
  return {
4273
4606
  headers: 'headers',
4607
+ statusCode: 'statusCode',
4274
4608
  body: 'body',
4275
4609
  };
4276
4610
  }
@@ -4278,6 +4612,7 @@ export class OpenAckServiceResponse extends $tea.Model {
4278
4612
  static types(): { [key: string]: any } {
4279
4613
  return {
4280
4614
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4615
+ statusCode: 'number',
4281
4616
  body: OpenAckServiceResponseBody,
4282
4617
  };
4283
4618
  }
@@ -4289,15 +4624,18 @@ export class OpenAckServiceResponse extends $tea.Model {
4289
4624
 
4290
4625
  export class PauseClusterUpgradeResponse extends $tea.Model {
4291
4626
  headers: { [key: string]: string };
4627
+ statusCode: number;
4292
4628
  static names(): { [key: string]: string } {
4293
4629
  return {
4294
4630
  headers: 'headers',
4631
+ statusCode: 'statusCode',
4295
4632
  };
4296
4633
  }
4297
4634
 
4298
4635
  static types(): { [key: string]: any } {
4299
4636
  return {
4300
4637
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4638
+ statusCode: 'number',
4301
4639
  };
4302
4640
  }
4303
4641
 
@@ -4308,15 +4646,40 @@ export class PauseClusterUpgradeResponse extends $tea.Model {
4308
4646
 
4309
4647
  export class PauseComponentUpgradeResponse extends $tea.Model {
4310
4648
  headers: { [key: string]: string };
4649
+ statusCode: number;
4311
4650
  static names(): { [key: string]: string } {
4312
4651
  return {
4313
4652
  headers: 'headers',
4653
+ statusCode: 'statusCode',
4314
4654
  };
4315
4655
  }
4316
4656
 
4317
4657
  static types(): { [key: string]: any } {
4318
4658
  return {
4319
4659
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4660
+ statusCode: 'number',
4661
+ };
4662
+ }
4663
+
4664
+ constructor(map?: { [key: string]: any }) {
4665
+ super(map);
4666
+ }
4667
+ }
4668
+
4669
+ export class PauseTaskResponse extends $tea.Model {
4670
+ headers: { [key: string]: string };
4671
+ statusCode: number;
4672
+ static names(): { [key: string]: string } {
4673
+ return {
4674
+ headers: 'headers',
4675
+ statusCode: 'statusCode',
4676
+ };
4677
+ }
4678
+
4679
+ static types(): { [key: string]: any } {
4680
+ return {
4681
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4682
+ statusCode: 'number',
4320
4683
  };
4321
4684
  }
4322
4685
 
@@ -4352,15 +4715,18 @@ export class RemoveClusterNodesRequest extends $tea.Model {
4352
4715
 
4353
4716
  export class RemoveClusterNodesResponse extends $tea.Model {
4354
4717
  headers: { [key: string]: string };
4718
+ statusCode: number;
4355
4719
  static names(): { [key: string]: string } {
4356
4720
  return {
4357
4721
  headers: 'headers',
4722
+ statusCode: 'statusCode',
4358
4723
  };
4359
4724
  }
4360
4725
 
4361
4726
  static types(): { [key: string]: any } {
4362
4727
  return {
4363
4728
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4729
+ statusCode: 'number',
4364
4730
  };
4365
4731
  }
4366
4732
 
@@ -4371,15 +4737,18 @@ export class RemoveClusterNodesResponse extends $tea.Model {
4371
4737
 
4372
4738
  export class RemoveWorkflowResponse extends $tea.Model {
4373
4739
  headers: { [key: string]: string };
4740
+ statusCode: number;
4374
4741
  static names(): { [key: string]: string } {
4375
4742
  return {
4376
4743
  headers: 'headers',
4744
+ statusCode: 'statusCode',
4377
4745
  };
4378
4746
  }
4379
4747
 
4380
4748
  static types(): { [key: string]: any } {
4381
4749
  return {
4382
4750
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4751
+ statusCode: 'number',
4383
4752
  };
4384
4753
  }
4385
4754
 
@@ -4431,10 +4800,12 @@ export class RepairClusterNodePoolResponseBody extends $tea.Model {
4431
4800
 
4432
4801
  export class RepairClusterNodePoolResponse extends $tea.Model {
4433
4802
  headers: { [key: string]: string };
4803
+ statusCode: number;
4434
4804
  body: RepairClusterNodePoolResponseBody;
4435
4805
  static names(): { [key: string]: string } {
4436
4806
  return {
4437
4807
  headers: 'headers',
4808
+ statusCode: 'statusCode',
4438
4809
  body: 'body',
4439
4810
  };
4440
4811
  }
@@ -4442,6 +4813,7 @@ export class RepairClusterNodePoolResponse extends $tea.Model {
4442
4813
  static types(): { [key: string]: any } {
4443
4814
  return {
4444
4815
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4816
+ statusCode: 'number',
4445
4817
  body: RepairClusterNodePoolResponseBody,
4446
4818
  };
4447
4819
  }
@@ -4453,15 +4825,40 @@ export class RepairClusterNodePoolResponse extends $tea.Model {
4453
4825
 
4454
4826
  export class ResumeComponentUpgradeResponse extends $tea.Model {
4455
4827
  headers: { [key: string]: string };
4828
+ statusCode: number;
4456
4829
  static names(): { [key: string]: string } {
4457
4830
  return {
4458
4831
  headers: 'headers',
4832
+ statusCode: 'statusCode',
4459
4833
  };
4460
4834
  }
4461
4835
 
4462
4836
  static types(): { [key: string]: any } {
4463
4837
  return {
4464
4838
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4839
+ statusCode: 'number',
4840
+ };
4841
+ }
4842
+
4843
+ constructor(map?: { [key: string]: any }) {
4844
+ super(map);
4845
+ }
4846
+ }
4847
+
4848
+ export class ResumeTaskResponse extends $tea.Model {
4849
+ headers: { [key: string]: string };
4850
+ statusCode: number;
4851
+ static names(): { [key: string]: string } {
4852
+ return {
4853
+ headers: 'headers',
4854
+ statusCode: 'statusCode',
4855
+ };
4856
+ }
4857
+
4858
+ static types(): { [key: string]: any } {
4859
+ return {
4860
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4861
+ statusCode: 'number',
4465
4862
  };
4466
4863
  }
4467
4864
 
@@ -4472,15 +4869,18 @@ export class ResumeComponentUpgradeResponse extends $tea.Model {
4472
4869
 
4473
4870
  export class ResumeUpgradeClusterResponse extends $tea.Model {
4474
4871
  headers: { [key: string]: string };
4872
+ statusCode: number;
4475
4873
  static names(): { [key: string]: string } {
4476
4874
  return {
4477
4875
  headers: 'headers',
4876
+ statusCode: 'statusCode',
4478
4877
  };
4479
4878
  }
4480
4879
 
4481
4880
  static types(): { [key: string]: any } {
4482
4881
  return {
4483
4882
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4883
+ statusCode: 'number',
4484
4884
  };
4485
4885
  }
4486
4886
 
@@ -4589,10 +4989,12 @@ export class ScaleClusterResponseBody extends $tea.Model {
4589
4989
 
4590
4990
  export class ScaleClusterResponse extends $tea.Model {
4591
4991
  headers: { [key: string]: string };
4992
+ statusCode: number;
4592
4993
  body: ScaleClusterResponseBody;
4593
4994
  static names(): { [key: string]: string } {
4594
4995
  return {
4595
4996
  headers: 'headers',
4997
+ statusCode: 'statusCode',
4596
4998
  body: 'body',
4597
4999
  };
4598
5000
  }
@@ -4600,6 +5002,7 @@ export class ScaleClusterResponse extends $tea.Model {
4600
5002
  static types(): { [key: string]: any } {
4601
5003
  return {
4602
5004
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5005
+ statusCode: 'number',
4603
5006
  body: ScaleClusterResponseBody,
4604
5007
  };
4605
5008
  }
@@ -4649,10 +5052,12 @@ export class ScaleClusterNodePoolResponseBody extends $tea.Model {
4649
5052
 
4650
5053
  export class ScaleClusterNodePoolResponse extends $tea.Model {
4651
5054
  headers: { [key: string]: string };
5055
+ statusCode: number;
4652
5056
  body: ScaleClusterNodePoolResponseBody;
4653
5057
  static names(): { [key: string]: string } {
4654
5058
  return {
4655
5059
  headers: 'headers',
5060
+ statusCode: 'statusCode',
4656
5061
  body: 'body',
4657
5062
  };
4658
5063
  }
@@ -4660,6 +5065,7 @@ export class ScaleClusterNodePoolResponse extends $tea.Model {
4660
5065
  static types(): { [key: string]: any } {
4661
5066
  return {
4662
5067
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5068
+ statusCode: 'number',
4663
5069
  body: ScaleClusterNodePoolResponseBody,
4664
5070
  };
4665
5071
  }
@@ -4775,10 +5181,12 @@ export class ScaleOutClusterResponseBody extends $tea.Model {
4775
5181
 
4776
5182
  export class ScaleOutClusterResponse extends $tea.Model {
4777
5183
  headers: { [key: string]: string };
5184
+ statusCode: number;
4778
5185
  body: ScaleOutClusterResponseBody;
4779
5186
  static names(): { [key: string]: string } {
4780
5187
  return {
4781
5188
  headers: 'headers',
5189
+ statusCode: 'statusCode',
4782
5190
  body: 'body',
4783
5191
  };
4784
5192
  }
@@ -4786,6 +5194,7 @@ export class ScaleOutClusterResponse extends $tea.Model {
4786
5194
  static types(): { [key: string]: any } {
4787
5195
  return {
4788
5196
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5197
+ statusCode: 'number',
4789
5198
  body: ScaleOutClusterResponseBody,
4790
5199
  };
4791
5200
  }
@@ -4889,10 +5298,12 @@ export class StartWorkflowResponseBody extends $tea.Model {
4889
5298
 
4890
5299
  export class StartWorkflowResponse extends $tea.Model {
4891
5300
  headers: { [key: string]: string };
5301
+ statusCode: number;
4892
5302
  body: StartWorkflowResponseBody;
4893
5303
  static names(): { [key: string]: string } {
4894
5304
  return {
4895
5305
  headers: 'headers',
5306
+ statusCode: 'statusCode',
4896
5307
  body: 'body',
4897
5308
  };
4898
5309
  }
@@ -4900,6 +5311,7 @@ export class StartWorkflowResponse extends $tea.Model {
4900
5311
  static types(): { [key: string]: any } {
4901
5312
  return {
4902
5313
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5314
+ statusCode: 'number',
4903
5315
  body: StartWorkflowResponseBody,
4904
5316
  };
4905
5317
  }
@@ -4958,10 +5370,12 @@ export class TagResourcesResponseBody extends $tea.Model {
4958
5370
 
4959
5371
  export class TagResourcesResponse extends $tea.Model {
4960
5372
  headers: { [key: string]: string };
5373
+ statusCode: number;
4961
5374
  body: TagResourcesResponseBody;
4962
5375
  static names(): { [key: string]: string } {
4963
5376
  return {
4964
5377
  headers: 'headers',
5378
+ statusCode: 'statusCode',
4965
5379
  body: 'body',
4966
5380
  };
4967
5381
  }
@@ -4969,6 +5383,7 @@ export class TagResourcesResponse extends $tea.Model {
4969
5383
  static types(): { [key: string]: any } {
4970
5384
  return {
4971
5385
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5386
+ statusCode: 'number',
4972
5387
  body: TagResourcesResponseBody,
4973
5388
  };
4974
5389
  }
@@ -4999,15 +5414,18 @@ export class UnInstallClusterAddonsRequest extends $tea.Model {
4999
5414
 
5000
5415
  export class UnInstallClusterAddonsResponse extends $tea.Model {
5001
5416
  headers: { [key: string]: string };
5417
+ statusCode: number;
5002
5418
  static names(): { [key: string]: string } {
5003
5419
  return {
5004
5420
  headers: 'headers',
5421
+ statusCode: 'statusCode',
5005
5422
  };
5006
5423
  }
5007
5424
 
5008
5425
  static types(): { [key: string]: any } {
5009
5426
  return {
5010
5427
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5428
+ statusCode: 'number',
5011
5429
  };
5012
5430
  }
5013
5431
 
@@ -5068,10 +5486,12 @@ export class UntagResourcesResponseBody extends $tea.Model {
5068
5486
 
5069
5487
  export class UntagResourcesResponse extends $tea.Model {
5070
5488
  headers: { [key: string]: string };
5489
+ statusCode: number;
5071
5490
  body: UntagResourcesResponseBody;
5072
5491
  static names(): { [key: string]: string } {
5073
5492
  return {
5074
5493
  headers: 'headers',
5494
+ statusCode: 'statusCode',
5075
5495
  body: 'body',
5076
5496
  };
5077
5497
  }
@@ -5079,6 +5499,7 @@ export class UntagResourcesResponse extends $tea.Model {
5079
5499
  static types(): { [key: string]: any } {
5080
5500
  return {
5081
5501
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5502
+ statusCode: 'number',
5082
5503
  body: UntagResourcesResponseBody,
5083
5504
  };
5084
5505
  }
@@ -5090,15 +5511,18 @@ export class UntagResourcesResponse extends $tea.Model {
5090
5511
 
5091
5512
  export class UpdateContactGroupForAlertResponse extends $tea.Model {
5092
5513
  headers: { [key: string]: string };
5514
+ statusCode: number;
5093
5515
  static names(): { [key: string]: string } {
5094
5516
  return {
5095
5517
  headers: 'headers',
5518
+ statusCode: 'statusCode',
5096
5519
  };
5097
5520
  }
5098
5521
 
5099
5522
  static types(): { [key: string]: any } {
5100
5523
  return {
5101
5524
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5525
+ statusCode: 'number',
5102
5526
  };
5103
5527
  }
5104
5528
 
@@ -5131,15 +5555,18 @@ export class UpdateK8sClusterUserConfigExpireRequest extends $tea.Model {
5131
5555
 
5132
5556
  export class UpdateK8sClusterUserConfigExpireResponse extends $tea.Model {
5133
5557
  headers: { [key: string]: string };
5558
+ statusCode: number;
5134
5559
  static names(): { [key: string]: string } {
5135
5560
  return {
5136
5561
  headers: 'headers',
5562
+ statusCode: 'statusCode',
5137
5563
  };
5138
5564
  }
5139
5565
 
5140
5566
  static types(): { [key: string]: any } {
5141
5567
  return {
5142
5568
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5569
+ statusCode: 'number',
5143
5570
  };
5144
5571
  }
5145
5572
 
@@ -5181,15 +5608,18 @@ export class UpdateTemplateRequest extends $tea.Model {
5181
5608
 
5182
5609
  export class UpdateTemplateResponse extends $tea.Model {
5183
5610
  headers: { [key: string]: string };
5611
+ statusCode: number;
5184
5612
  static names(): { [key: string]: string } {
5185
5613
  return {
5186
5614
  headers: 'headers',
5615
+ statusCode: 'statusCode',
5187
5616
  };
5188
5617
  }
5189
5618
 
5190
5619
  static types(): { [key: string]: any } {
5191
5620
  return {
5192
5621
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5622
+ statusCode: 'number',
5193
5623
  };
5194
5624
  }
5195
5625
 
@@ -5225,15 +5655,18 @@ export class UpgradeClusterRequest extends $tea.Model {
5225
5655
 
5226
5656
  export class UpgradeClusterResponse extends $tea.Model {
5227
5657
  headers: { [key: string]: string };
5658
+ statusCode: number;
5228
5659
  static names(): { [key: string]: string } {
5229
5660
  return {
5230
5661
  headers: 'headers',
5662
+ statusCode: 'statusCode',
5231
5663
  };
5232
5664
  }
5233
5665
 
5234
5666
  static types(): { [key: string]: any } {
5235
5667
  return {
5236
5668
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5669
+ statusCode: 'number',
5237
5670
  };
5238
5671
  }
5239
5672
 
@@ -5263,15 +5696,18 @@ export class UpgradeClusterAddonsRequest extends $tea.Model {
5263
5696
 
5264
5697
  export class UpgradeClusterAddonsResponse extends $tea.Model {
5265
5698
  headers: { [key: string]: string };
5699
+ statusCode: number;
5266
5700
  static names(): { [key: string]: string } {
5267
5701
  return {
5268
5702
  headers: 'headers',
5703
+ statusCode: 'statusCode',
5269
5704
  };
5270
5705
  }
5271
5706
 
5272
5707
  static types(): { [key: string]: any } {
5273
5708
  return {
5274
5709
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
5710
+ statusCode: 'number',
5275
5711
  };
5276
5712
  }
5277
5713
 
@@ -6754,6 +7190,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
6754
7190
  resourceInfo?: string;
6755
7191
  resourceType?: string;
6756
7192
  state?: string;
7193
+ autoCreate?: number;
6757
7194
  static names(): { [key: string]: string } {
6758
7195
  return {
6759
7196
  clusterId: 'cluster_id',
@@ -6762,6 +7199,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
6762
7199
  resourceInfo: 'resource_info',
6763
7200
  resourceType: 'resource_type',
6764
7201
  state: 'state',
7202
+ autoCreate: 'auto_create',
6765
7203
  };
6766
7204
  }
6767
7205
 
@@ -6773,6 +7211,7 @@ export class DescribeClusterResourcesResponseBody extends $tea.Model {
6773
7211
  resourceInfo: 'string',
6774
7212
  resourceType: 'string',
6775
7213
  state: 'string',
7214
+ autoCreate: 'number',
6776
7215
  };
6777
7216
  }
6778
7217
 
@@ -7303,6 +7742,56 @@ export class DescribeKubernetesVersionMetadataResponseBody extends $tea.Model {
7303
7742
  }
7304
7743
  }
7305
7744
 
7745
+ export class DescribeNodePoolVulsResponseBodyVulRecordsVulList extends $tea.Model {
7746
+ aliasName?: string;
7747
+ cveList?: string[];
7748
+ name?: string;
7749
+ necessity?: string;
7750
+ static names(): { [key: string]: string } {
7751
+ return {
7752
+ aliasName: 'alias_name',
7753
+ cveList: 'cve_list',
7754
+ name: 'name',
7755
+ necessity: 'necessity',
7756
+ };
7757
+ }
7758
+
7759
+ static types(): { [key: string]: any } {
7760
+ return {
7761
+ aliasName: 'string',
7762
+ cveList: { 'type': 'array', 'itemType': 'string' },
7763
+ name: 'string',
7764
+ necessity: 'string',
7765
+ };
7766
+ }
7767
+
7768
+ constructor(map?: { [key: string]: any }) {
7769
+ super(map);
7770
+ }
7771
+ }
7772
+
7773
+ export class DescribeNodePoolVulsResponseBodyVulRecords extends $tea.Model {
7774
+ instanceId?: string;
7775
+ vulList?: DescribeNodePoolVulsResponseBodyVulRecordsVulList[];
7776
+ static names(): { [key: string]: string } {
7777
+ return {
7778
+ instanceId: 'instance_id',
7779
+ vulList: 'vul_list',
7780
+ };
7781
+ }
7782
+
7783
+ static types(): { [key: string]: any } {
7784
+ return {
7785
+ instanceId: 'string',
7786
+ vulList: { 'type': 'array', 'itemType': DescribeNodePoolVulsResponseBodyVulRecordsVulList },
7787
+ };
7788
+ }
7789
+
7790
+ constructor(map?: { [key: string]: any }) {
7791
+ super(map);
7792
+ }
7793
+ }
7794
+
7306
7795
  export class DescribePolicyGovernanceInClusterResponseBodyAdmitLogLog extends $tea.Model {
7307
7796
  clusterId?: string;
7308
7797
  constraintKind?: string;
@@ -7843,6 +8332,25 @@ export class DescribeWorkflowsResponseBodyJobs extends $tea.Model {
7843
8332
  }
7844
8333
  }
7845
8334
 
8335
+ export class FixNodePoolVulsRequestRolloutPolicy extends $tea.Model {
8336
+ maxParallelism?: number;
8337
+ static names(): { [key: string]: string } {
8338
+ return {
8339
+ maxParallelism: 'max_parallelism',
8340
+ };
8341
+ }
8342
+
8343
+ static types(): { [key: string]: any } {
8344
+ return {
8345
+ maxParallelism: 'number',
8346
+ };
8347
+ }
8348
+
8349
+ constructor(map?: { [key: string]: any }) {
8350
+ super(map);
8351
+ }
8352
+ }
8353
+
7846
8354
  export class GetKubernetesTriggerResponseBody extends $tea.Model {
7847
8355
  id?: string;
7848
8356
  name?: string;
@@ -8680,6 +9188,31 @@ export default class Client extends OpenApi {
8680
9188
  return $tea.cast<CancelComponentUpgradeResponse>(await this.callApi(params, req, runtime), new CancelComponentUpgradeResponse({}));
8681
9189
  }
8682
9190
 
9191
+ async cancelTask(taskId: string): Promise<CancelTaskResponse> {
9192
+ let runtime = new $Util.RuntimeOptions({ });
9193
+ let headers : {[key: string ]: string} = { };
9194
+ return await this.cancelTaskWithOptions(taskId, headers, runtime);
9195
+ }
9196
+
9197
+ async cancelTaskWithOptions(taskId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelTaskResponse> {
9198
+ taskId = OpenApiUtil.getEncodeParam(taskId);
9199
+ let req = new $OpenApi.OpenApiRequest({
9200
+ headers: headers,
9201
+ });
9202
+ let params = new $OpenApi.Params({
9203
+ action: "CancelTask",
9204
+ version: "2015-12-15",
9205
+ protocol: "HTTPS",
9206
+ pathname: `/tasks/${taskId}/cancel`,
9207
+ method: "POST",
9208
+ authType: "AK",
9209
+ style: "ROA",
9210
+ reqBodyType: "json",
9211
+ bodyType: "none",
9212
+ });
9213
+ return $tea.cast<CancelTaskResponse>(await this.callApi(params, req, runtime), new CancelTaskResponse({}));
9214
+ }
9215
+
8683
9216
  async cancelWorkflow(workflowName: string, request: CancelWorkflowRequest): Promise<CancelWorkflowResponse> {
8684
9217
  let runtime = new $Util.RuntimeOptions({ });
8685
9218
  let headers : {[key: string ]: string} = { };
@@ -8726,10 +9259,18 @@ export default class Client extends OpenApi {
8726
9259
  body["cool_down_duration"] = request.coolDownDuration;
8727
9260
  }
8728
9261
 
9262
+ if (!Util.isUnset(request.expander)) {
9263
+ body["expander"] = request.expander;
9264
+ }
9265
+
8729
9266
  if (!Util.isUnset(request.gpuUtilizationThreshold)) {
8730
9267
  body["gpu_utilization_threshold"] = request.gpuUtilizationThreshold;
8731
9268
  }
8732
9269
 
9270
+ if (!Util.isUnset(request.scaleDownEnabled)) {
9271
+ body["scale_down_enabled"] = request.scaleDownEnabled;
9272
+ }
9273
+
8733
9274
  if (!Util.isUnset(request.scanInterval)) {
8734
9275
  body["scan_interval"] = request.scanInterval;
8735
9276
  }
@@ -9468,14 +10009,14 @@ export default class Client extends OpenApi {
9468
10009
  Util.validateModel(request);
9469
10010
  ClusterId = OpenApiUtil.getEncodeParam(ClusterId);
9470
10011
  NodepoolId = OpenApiUtil.getEncodeParam(NodepoolId);
9471
- let body : {[key: string ]: any} = { };
10012
+ let query : {[key: string ]: any} = { };
9472
10013
  if (!Util.isUnset(request.force)) {
9473
- body["force"] = request.force;
10014
+ query["force"] = request.force;
9474
10015
  }
9475
10016
 
9476
10017
  let req = new $OpenApi.OpenApiRequest({
9477
10018
  headers: headers,
9478
- body: OpenApiUtil.parseToMap(body),
10019
+ query: OpenApiUtil.query(query),
9479
10020
  });
9480
10021
  let params = new $OpenApi.Params({
9481
10022
  action: "DeleteClusterNodepool",
@@ -9991,31 +10532,6 @@ export default class Client extends OpenApi {
9991
10532
  return $tea.cast<DescribeClusterLogsResponse>(await this.callApi(params, req, runtime), new DescribeClusterLogsResponse({}));
9992
10533
  }
9993
10534
 
9994
- async describeClusterNamespaces(ClusterId: string): Promise<DescribeClusterNamespacesResponse> {
9995
- let runtime = new $Util.RuntimeOptions({ });
9996
- let headers : {[key: string ]: string} = { };
9997
- return await this.describeClusterNamespacesWithOptions(ClusterId, headers, runtime);
9998
- }
9999
-
10000
- async describeClusterNamespacesWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterNamespacesResponse> {
10001
- ClusterId = OpenApiUtil.getEncodeParam(ClusterId);
10002
- let req = new $OpenApi.OpenApiRequest({
10003
- headers: headers,
10004
- });
10005
- let params = new $OpenApi.Params({
10006
- action: "DescribeClusterNamespaces",
10007
- version: "2015-12-15",
10008
- protocol: "HTTPS",
10009
- pathname: `/k8s/${ClusterId}/namespaces`,
10010
- method: "GET",
10011
- authType: "AK",
10012
- style: "ROA",
10013
- reqBodyType: "json",
10014
- bodyType: "array",
10015
- });
10016
- return $tea.cast<DescribeClusterNamespacesResponse>(await this.callApi(params, req, runtime), new DescribeClusterNamespacesResponse({}));
10017
- }
10018
-
10019
10535
  async describeClusterNodePoolDetail(ClusterId: string, NodepoolId: string): Promise<DescribeClusterNodePoolDetailResponse> {
10020
10536
  let runtime = new $Util.RuntimeOptions({ });
10021
10537
  let headers : {[key: string ]: string} = { };
@@ -10545,6 +11061,32 @@ export default class Client extends OpenApi {
10545
11061
  return $tea.cast<DescribeKubernetesVersionMetadataResponse>(await this.callApi(params, req, runtime), new DescribeKubernetesVersionMetadataResponse({}));
10546
11062
  }
10547
11063
 
11064
+ async describeNodePoolVuls(clusterId: string, nodepoolId: string): Promise<DescribeNodePoolVulsResponse> {
11065
+ let runtime = new $Util.RuntimeOptions({ });
11066
+ let headers : {[key: string ]: string} = { };
11067
+ return await this.describeNodePoolVulsWithOptions(clusterId, nodepoolId, headers, runtime);
11068
+ }
11069
+
11070
+ async describeNodePoolVulsWithOptions(clusterId: string, nodepoolId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNodePoolVulsResponse> {
11071
+ clusterId = OpenApiUtil.getEncodeParam(clusterId);
11072
+ nodepoolId = OpenApiUtil.getEncodeParam(nodepoolId);
11073
+ let req = new $OpenApi.OpenApiRequest({
11074
+ headers: headers,
11075
+ });
11076
+ let params = new $OpenApi.Params({
11077
+ action: "DescribeNodePoolVuls",
11078
+ version: "2015-12-15",
11079
+ protocol: "HTTPS",
11080
+ pathname: `/clusters/${clusterId}/nodepools/${nodepoolId}/vuls`,
11081
+ method: "GET",
11082
+ authType: "AK",
11083
+ style: "ROA",
11084
+ reqBodyType: "json",
11085
+ bodyType: "json",
11086
+ });
11087
+ return $tea.cast<DescribeNodePoolVulsResponse>(await this.callApi(params, req, runtime), new DescribeNodePoolVulsResponse({}));
11088
+ }
11089
+
10548
11090
  async describePolicies(): Promise<DescribePoliciesResponse> {
10549
11091
  let runtime = new $Util.RuntimeOptions({ });
10550
11092
  let headers : {[key: string ]: string} = { };
@@ -10934,6 +11476,47 @@ export default class Client extends OpenApi {
10934
11476
  return $tea.cast<EdgeClusterAddEdgeMachineResponse>(await this.callApi(params, req, runtime), new EdgeClusterAddEdgeMachineResponse({}));
10935
11477
  }
10936
11478
 
11479
+ async fixNodePoolVuls(clusterId: string, nodepoolId: string, request: FixNodePoolVulsRequest): Promise<FixNodePoolVulsResponse> {
11480
+ let runtime = new $Util.RuntimeOptions({ });
11481
+ let headers : {[key: string ]: string} = { };
11482
+ return await this.fixNodePoolVulsWithOptions(clusterId, nodepoolId, request, headers, runtime);
11483
+ }
11484
+
11485
+ async fixNodePoolVulsWithOptions(clusterId: string, nodepoolId: string, request: FixNodePoolVulsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<FixNodePoolVulsResponse> {
11486
+ Util.validateModel(request);
11487
+ clusterId = OpenApiUtil.getEncodeParam(clusterId);
11488
+ nodepoolId = OpenApiUtil.getEncodeParam(nodepoolId);
11489
+ let body : {[key: string ]: any} = { };
11490
+ if (!Util.isUnset(request.nodes)) {
11491
+ body["nodes"] = request.nodes;
11492
+ }
11493
+
11494
+ if (!Util.isUnset($tea.toMap(request.rolloutPolicy))) {
11495
+ body["rollout_policy"] = request.rolloutPolicy;
11496
+ }
11497
+
11498
+ if (!Util.isUnset(request.vulList)) {
11499
+ body["vul_list"] = request.vulList;
11500
+ }
11501
+
11502
+ let req = new $OpenApi.OpenApiRequest({
11503
+ headers: headers,
11504
+ body: OpenApiUtil.parseToMap(body),
11505
+ });
11506
+ let params = new $OpenApi.Params({
11507
+ action: "FixNodePoolVuls",
11508
+ version: "2015-12-15",
11509
+ protocol: "HTTPS",
11510
+ pathname: `/clusters/${clusterId}/nodepools/${nodepoolId}/vuls/fix`,
11511
+ method: "POST",
11512
+ authType: "AK",
11513
+ style: "ROA",
11514
+ reqBodyType: "json",
11515
+ bodyType: "json",
11516
+ });
11517
+ return $tea.cast<FixNodePoolVulsResponse>(await this.callApi(params, req, runtime), new FixNodePoolVulsResponse({}));
11518
+ }
11519
+
10937
11520
  async getKubernetesTrigger(ClusterId: string, request: GetKubernetesTriggerRequest): Promise<GetKubernetesTriggerResponse> {
10938
11521
  let runtime = new $Util.RuntimeOptions({ });
10939
11522
  let headers : {[key: string ]: string} = { };
@@ -11479,6 +12062,31 @@ export default class Client extends OpenApi {
11479
12062
  return $tea.cast<PauseComponentUpgradeResponse>(await this.callApi(params, req, runtime), new PauseComponentUpgradeResponse({}));
11480
12063
  }
11481
12064
 
12065
+ async pauseTask(taskId: string): Promise<PauseTaskResponse> {
12066
+ let runtime = new $Util.RuntimeOptions({ });
12067
+ let headers : {[key: string ]: string} = { };
12068
+ return await this.pauseTaskWithOptions(taskId, headers, runtime);
12069
+ }
12070
+
12071
+ async pauseTaskWithOptions(taskId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PauseTaskResponse> {
12072
+ taskId = OpenApiUtil.getEncodeParam(taskId);
12073
+ let req = new $OpenApi.OpenApiRequest({
12074
+ headers: headers,
12075
+ });
12076
+ let params = new $OpenApi.Params({
12077
+ action: "PauseTask",
12078
+ version: "2015-12-15",
12079
+ protocol: "HTTPS",
12080
+ pathname: `/tasks/${taskId}/pause`,
12081
+ method: "POST",
12082
+ authType: "AK",
12083
+ style: "ROA",
12084
+ reqBodyType: "json",
12085
+ bodyType: "none",
12086
+ });
12087
+ return $tea.cast<PauseTaskResponse>(await this.callApi(params, req, runtime), new PauseTaskResponse({}));
12088
+ }
12089
+
11482
12090
  async removeClusterNodes(ClusterId: string, request: RemoveClusterNodesRequest): Promise<RemoveClusterNodesResponse> {
11483
12091
  let runtime = new $Util.RuntimeOptions({ });
11484
12092
  let headers : {[key: string ]: string} = { };
@@ -11603,6 +12211,31 @@ export default class Client extends OpenApi {
11603
12211
  return $tea.cast<ResumeComponentUpgradeResponse>(await this.callApi(params, req, runtime), new ResumeComponentUpgradeResponse({}));
11604
12212
  }
11605
12213
 
12214
+ async resumeTask(taskId: string): Promise<ResumeTaskResponse> {
12215
+ let runtime = new $Util.RuntimeOptions({ });
12216
+ let headers : {[key: string ]: string} = { };
12217
+ return await this.resumeTaskWithOptions(taskId, headers, runtime);
12218
+ }
12219
+
12220
+ async resumeTaskWithOptions(taskId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ResumeTaskResponse> {
12221
+ taskId = OpenApiUtil.getEncodeParam(taskId);
12222
+ let req = new $OpenApi.OpenApiRequest({
12223
+ headers: headers,
12224
+ });
12225
+ let params = new $OpenApi.Params({
12226
+ action: "ResumeTask",
12227
+ version: "2015-12-15",
12228
+ protocol: "HTTPS",
12229
+ pathname: `/tasks/${taskId}/resume`,
12230
+ method: "POST",
12231
+ authType: "AK",
12232
+ style: "ROA",
12233
+ reqBodyType: "json",
12234
+ bodyType: "none",
12235
+ });
12236
+ return $tea.cast<ResumeTaskResponse>(await this.callApi(params, req, runtime), new ResumeTaskResponse({}));
12237
+ }
12238
+
11606
12239
  async resumeUpgradeCluster(ClusterId: string): Promise<ResumeUpgradeClusterResponse> {
11607
12240
  let runtime = new $Util.RuntimeOptions({ });
11608
12241
  let headers : {[key: string ]: string} = { };