@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/dist/client.d.ts +269 -19
- package/dist/client.js +528 -44
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +683 -50
package/dist/client.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export declare class AttachInstancesResponse extends $tea.Model {
|
|
|
130
130
|
headers: {
|
|
131
131
|
[key: string]: string;
|
|
132
132
|
};
|
|
133
|
+
statusCode: number;
|
|
133
134
|
body: AttachInstancesResponseBody;
|
|
134
135
|
static names(): {
|
|
135
136
|
[key: string]: string;
|
|
@@ -145,6 +146,7 @@ export declare class CancelClusterUpgradeResponse extends $tea.Model {
|
|
|
145
146
|
headers: {
|
|
146
147
|
[key: string]: string;
|
|
147
148
|
};
|
|
149
|
+
statusCode: number;
|
|
148
150
|
static names(): {
|
|
149
151
|
[key: string]: string;
|
|
150
152
|
};
|
|
@@ -159,6 +161,22 @@ export declare class CancelComponentUpgradeResponse extends $tea.Model {
|
|
|
159
161
|
headers: {
|
|
160
162
|
[key: string]: string;
|
|
161
163
|
};
|
|
164
|
+
statusCode: number;
|
|
165
|
+
static names(): {
|
|
166
|
+
[key: string]: string;
|
|
167
|
+
};
|
|
168
|
+
static types(): {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
};
|
|
171
|
+
constructor(map?: {
|
|
172
|
+
[key: string]: any;
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
export declare class CancelTaskResponse extends $tea.Model {
|
|
176
|
+
headers: {
|
|
177
|
+
[key: string]: string;
|
|
178
|
+
};
|
|
179
|
+
statusCode: number;
|
|
162
180
|
static names(): {
|
|
163
181
|
[key: string]: string;
|
|
164
182
|
};
|
|
@@ -185,6 +203,7 @@ export declare class CancelWorkflowResponse extends $tea.Model {
|
|
|
185
203
|
headers: {
|
|
186
204
|
[key: string]: string;
|
|
187
205
|
};
|
|
206
|
+
statusCode: number;
|
|
188
207
|
static names(): {
|
|
189
208
|
[key: string]: string;
|
|
190
209
|
};
|
|
@@ -197,7 +216,9 @@ export declare class CancelWorkflowResponse extends $tea.Model {
|
|
|
197
216
|
}
|
|
198
217
|
export declare class CreateAutoscalingConfigRequest extends $tea.Model {
|
|
199
218
|
coolDownDuration?: string;
|
|
219
|
+
expander?: string;
|
|
200
220
|
gpuUtilizationThreshold?: string;
|
|
221
|
+
scaleDownEnabled?: boolean;
|
|
201
222
|
scanInterval?: string;
|
|
202
223
|
unneededDuration?: string;
|
|
203
224
|
utilizationThreshold?: string;
|
|
@@ -215,6 +236,7 @@ export declare class CreateAutoscalingConfigResponse extends $tea.Model {
|
|
|
215
236
|
headers: {
|
|
216
237
|
[key: string]: string;
|
|
217
238
|
};
|
|
239
|
+
statusCode: number;
|
|
218
240
|
static names(): {
|
|
219
241
|
[key: string]: string;
|
|
220
242
|
};
|
|
@@ -338,6 +360,7 @@ export declare class CreateClusterResponse extends $tea.Model {
|
|
|
338
360
|
headers: {
|
|
339
361
|
[key: string]: string;
|
|
340
362
|
};
|
|
363
|
+
statusCode: number;
|
|
341
364
|
body: CreateClusterResponseBody;
|
|
342
365
|
static names(): {
|
|
343
366
|
[key: string]: string;
|
|
@@ -386,6 +409,7 @@ export declare class CreateClusterNodePoolResponse extends $tea.Model {
|
|
|
386
409
|
headers: {
|
|
387
410
|
[key: string]: string;
|
|
388
411
|
};
|
|
412
|
+
statusCode: number;
|
|
389
413
|
body: CreateClusterNodePoolResponseBody;
|
|
390
414
|
static names(): {
|
|
391
415
|
[key: string]: string;
|
|
@@ -428,6 +452,7 @@ export declare class CreateEdgeMachineResponse extends $tea.Model {
|
|
|
428
452
|
headers: {
|
|
429
453
|
[key: string]: string;
|
|
430
454
|
};
|
|
455
|
+
statusCode: number;
|
|
431
456
|
body: CreateEdgeMachineResponseBody;
|
|
432
457
|
static names(): {
|
|
433
458
|
[key: string]: string;
|
|
@@ -474,6 +499,7 @@ export declare class CreateKubernetesTriggerResponse extends $tea.Model {
|
|
|
474
499
|
headers: {
|
|
475
500
|
[key: string]: string;
|
|
476
501
|
};
|
|
502
|
+
statusCode: number;
|
|
477
503
|
body: CreateKubernetesTriggerResponseBody;
|
|
478
504
|
static names(): {
|
|
479
505
|
[key: string]: string;
|
|
@@ -517,6 +543,7 @@ export declare class CreateTemplateResponse extends $tea.Model {
|
|
|
517
543
|
headers: {
|
|
518
544
|
[key: string]: string;
|
|
519
545
|
};
|
|
546
|
+
statusCode: number;
|
|
520
547
|
body: CreateTemplateResponseBody;
|
|
521
548
|
static names(): {
|
|
522
549
|
[key: string]: string;
|
|
@@ -563,6 +590,7 @@ export declare class CreateTriggerResponse extends $tea.Model {
|
|
|
563
590
|
headers: {
|
|
564
591
|
[key: string]: string;
|
|
565
592
|
};
|
|
593
|
+
statusCode: number;
|
|
566
594
|
body: CreateTriggerResponseBody;
|
|
567
595
|
static names(): {
|
|
568
596
|
[key: string]: string;
|
|
@@ -578,6 +606,7 @@ export declare class DeleteAlertContactResponse extends $tea.Model {
|
|
|
578
606
|
headers: {
|
|
579
607
|
[key: string]: string;
|
|
580
608
|
};
|
|
609
|
+
statusCode: number;
|
|
581
610
|
static names(): {
|
|
582
611
|
[key: string]: string;
|
|
583
612
|
};
|
|
@@ -592,6 +621,7 @@ export declare class DeleteAlertContactGroupResponse extends $tea.Model {
|
|
|
592
621
|
headers: {
|
|
593
622
|
[key: string]: string;
|
|
594
623
|
};
|
|
624
|
+
statusCode: number;
|
|
595
625
|
static names(): {
|
|
596
626
|
[key: string]: string;
|
|
597
627
|
};
|
|
@@ -634,6 +664,7 @@ export declare class DeleteClusterResponse extends $tea.Model {
|
|
|
634
664
|
headers: {
|
|
635
665
|
[key: string]: string;
|
|
636
666
|
};
|
|
667
|
+
statusCode: number;
|
|
637
668
|
static names(): {
|
|
638
669
|
[key: string]: string;
|
|
639
670
|
};
|
|
@@ -672,6 +703,7 @@ export declare class DeleteClusterNodepoolResponse extends $tea.Model {
|
|
|
672
703
|
headers: {
|
|
673
704
|
[key: string]: string;
|
|
674
705
|
};
|
|
706
|
+
statusCode: number;
|
|
675
707
|
body: DeleteClusterNodepoolResponseBody;
|
|
676
708
|
static names(): {
|
|
677
709
|
[key: string]: string;
|
|
@@ -715,6 +747,7 @@ export declare class DeleteClusterNodesResponse extends $tea.Model {
|
|
|
715
747
|
headers: {
|
|
716
748
|
[key: string]: string;
|
|
717
749
|
};
|
|
750
|
+
statusCode: number;
|
|
718
751
|
body: DeleteClusterNodesResponseBody;
|
|
719
752
|
static names(): {
|
|
720
753
|
[key: string]: string;
|
|
@@ -742,6 +775,7 @@ export declare class DeleteEdgeMachineResponse extends $tea.Model {
|
|
|
742
775
|
headers: {
|
|
743
776
|
[key: string]: string;
|
|
744
777
|
};
|
|
778
|
+
statusCode: number;
|
|
745
779
|
static names(): {
|
|
746
780
|
[key: string]: string;
|
|
747
781
|
};
|
|
@@ -756,6 +790,7 @@ export declare class DeleteKubernetesTriggerResponse extends $tea.Model {
|
|
|
756
790
|
headers: {
|
|
757
791
|
[key: string]: string;
|
|
758
792
|
};
|
|
793
|
+
statusCode: number;
|
|
759
794
|
static names(): {
|
|
760
795
|
[key: string]: string;
|
|
761
796
|
};
|
|
@@ -794,6 +829,7 @@ export declare class DeletePolicyInstanceResponse extends $tea.Model {
|
|
|
794
829
|
headers: {
|
|
795
830
|
[key: string]: string;
|
|
796
831
|
};
|
|
832
|
+
statusCode: number;
|
|
797
833
|
body: DeletePolicyInstanceResponseBody;
|
|
798
834
|
static names(): {
|
|
799
835
|
[key: string]: string;
|
|
@@ -809,6 +845,7 @@ export declare class DeleteTemplateResponse extends $tea.Model {
|
|
|
809
845
|
headers: {
|
|
810
846
|
[key: string]: string;
|
|
811
847
|
};
|
|
848
|
+
statusCode: number;
|
|
812
849
|
static names(): {
|
|
813
850
|
[key: string]: string;
|
|
814
851
|
};
|
|
@@ -823,6 +860,7 @@ export declare class DeleteTriggerResponse extends $tea.Model {
|
|
|
823
860
|
headers: {
|
|
824
861
|
[key: string]: string;
|
|
825
862
|
};
|
|
863
|
+
statusCode: number;
|
|
826
864
|
static names(): {
|
|
827
865
|
[key: string]: string;
|
|
828
866
|
};
|
|
@@ -865,6 +903,7 @@ export declare class DeployPolicyInstanceResponse extends $tea.Model {
|
|
|
865
903
|
headers: {
|
|
866
904
|
[key: string]: string;
|
|
867
905
|
};
|
|
906
|
+
statusCode: number;
|
|
868
907
|
body: DeployPolicyInstanceResponseBody;
|
|
869
908
|
static names(): {
|
|
870
909
|
[key: string]: string;
|
|
@@ -902,6 +941,7 @@ export declare class DescirbeWorkflowResponse extends $tea.Model {
|
|
|
902
941
|
headers: {
|
|
903
942
|
[key: string]: string;
|
|
904
943
|
};
|
|
944
|
+
statusCode: number;
|
|
905
945
|
body: DescirbeWorkflowResponseBody;
|
|
906
946
|
static names(): {
|
|
907
947
|
[key: string]: string;
|
|
@@ -945,6 +985,7 @@ export declare class DescribeAddonsResponse extends $tea.Model {
|
|
|
945
985
|
headers: {
|
|
946
986
|
[key: string]: string;
|
|
947
987
|
};
|
|
988
|
+
statusCode: number;
|
|
948
989
|
body: DescribeAddonsResponseBody;
|
|
949
990
|
static names(): {
|
|
950
991
|
[key: string]: string;
|
|
@@ -974,6 +1015,7 @@ export declare class DescribeClusterAddonMetadataResponse extends $tea.Model {
|
|
|
974
1015
|
headers: {
|
|
975
1016
|
[key: string]: string;
|
|
976
1017
|
};
|
|
1018
|
+
statusCode: number;
|
|
977
1019
|
body: DescribeClusterAddonMetadataResponseBody;
|
|
978
1020
|
static names(): {
|
|
979
1021
|
[key: string]: string;
|
|
@@ -989,6 +1031,7 @@ export declare class DescribeClusterAddonUpgradeStatusResponse extends $tea.Mode
|
|
|
989
1031
|
headers: {
|
|
990
1032
|
[key: string]: string;
|
|
991
1033
|
};
|
|
1034
|
+
statusCode: number;
|
|
992
1035
|
body: {
|
|
993
1036
|
[key: string]: any;
|
|
994
1037
|
};
|
|
@@ -1030,6 +1073,7 @@ export declare class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Mod
|
|
|
1030
1073
|
headers: {
|
|
1031
1074
|
[key: string]: string;
|
|
1032
1075
|
};
|
|
1076
|
+
statusCode: number;
|
|
1033
1077
|
body: {
|
|
1034
1078
|
[key: string]: any;
|
|
1035
1079
|
};
|
|
@@ -1047,6 +1091,7 @@ export declare class DescribeClusterAddonsVersionResponse extends $tea.Model {
|
|
|
1047
1091
|
headers: {
|
|
1048
1092
|
[key: string]: string;
|
|
1049
1093
|
};
|
|
1094
|
+
statusCode: number;
|
|
1050
1095
|
body: {
|
|
1051
1096
|
[key: string]: any;
|
|
1052
1097
|
};
|
|
@@ -1081,6 +1126,7 @@ export declare class DescribeClusterAttachScriptsResponse extends $tea.Model {
|
|
|
1081
1126
|
headers: {
|
|
1082
1127
|
[key: string]: string;
|
|
1083
1128
|
};
|
|
1129
|
+
statusCode: number;
|
|
1084
1130
|
body: string;
|
|
1085
1131
|
static names(): {
|
|
1086
1132
|
[key: string]: string;
|
|
@@ -1136,6 +1182,7 @@ export declare class DescribeClusterDetailResponse extends $tea.Model {
|
|
|
1136
1182
|
headers: {
|
|
1137
1183
|
[key: string]: string;
|
|
1138
1184
|
};
|
|
1185
|
+
statusCode: number;
|
|
1139
1186
|
body: DescribeClusterDetailResponseBody;
|
|
1140
1187
|
static names(): {
|
|
1141
1188
|
[key: string]: string;
|
|
@@ -1151,6 +1198,7 @@ export declare class DescribeClusterLogsResponse extends $tea.Model {
|
|
|
1151
1198
|
headers: {
|
|
1152
1199
|
[key: string]: string;
|
|
1153
1200
|
};
|
|
1201
|
+
statusCode: number;
|
|
1154
1202
|
body: DescribeClusterLogsResponseBody[];
|
|
1155
1203
|
static names(): {
|
|
1156
1204
|
[key: string]: string;
|
|
@@ -1162,21 +1210,6 @@ export declare class DescribeClusterLogsResponse extends $tea.Model {
|
|
|
1162
1210
|
[key: string]: any;
|
|
1163
1211
|
});
|
|
1164
1212
|
}
|
|
1165
|
-
export declare class DescribeClusterNamespacesResponse extends $tea.Model {
|
|
1166
|
-
headers: {
|
|
1167
|
-
[key: string]: string;
|
|
1168
|
-
};
|
|
1169
|
-
body: string[];
|
|
1170
|
-
static names(): {
|
|
1171
|
-
[key: string]: string;
|
|
1172
|
-
};
|
|
1173
|
-
static types(): {
|
|
1174
|
-
[key: string]: any;
|
|
1175
|
-
};
|
|
1176
|
-
constructor(map?: {
|
|
1177
|
-
[key: string]: any;
|
|
1178
|
-
});
|
|
1179
|
-
}
|
|
1180
1213
|
export declare class DescribeClusterNodePoolDetailResponseBody extends $tea.Model {
|
|
1181
1214
|
autoScaling?: DescribeClusterNodePoolDetailResponseBodyAutoScaling;
|
|
1182
1215
|
interconnectConfig?: DescribeClusterNodePoolDetailResponseBodyInterconnectConfig;
|
|
@@ -1202,6 +1235,7 @@ export declare class DescribeClusterNodePoolDetailResponse extends $tea.Model {
|
|
|
1202
1235
|
headers: {
|
|
1203
1236
|
[key: string]: string;
|
|
1204
1237
|
};
|
|
1238
|
+
statusCode: number;
|
|
1205
1239
|
body: DescribeClusterNodePoolDetailResponseBody;
|
|
1206
1240
|
static names(): {
|
|
1207
1241
|
[key: string]: string;
|
|
@@ -1229,6 +1263,7 @@ export declare class DescribeClusterNodePoolsResponse extends $tea.Model {
|
|
|
1229
1263
|
headers: {
|
|
1230
1264
|
[key: string]: string;
|
|
1231
1265
|
};
|
|
1266
|
+
statusCode: number;
|
|
1232
1267
|
body: DescribeClusterNodePoolsResponseBody;
|
|
1233
1268
|
static names(): {
|
|
1234
1269
|
[key: string]: string;
|
|
@@ -1273,6 +1308,7 @@ export declare class DescribeClusterNodesResponse extends $tea.Model {
|
|
|
1273
1308
|
headers: {
|
|
1274
1309
|
[key: string]: string;
|
|
1275
1310
|
};
|
|
1311
|
+
statusCode: number;
|
|
1276
1312
|
body: DescribeClusterNodesResponseBody;
|
|
1277
1313
|
static names(): {
|
|
1278
1314
|
[key: string]: string;
|
|
@@ -1288,6 +1324,7 @@ export declare class DescribeClusterResourcesResponse extends $tea.Model {
|
|
|
1288
1324
|
headers: {
|
|
1289
1325
|
[key: string]: string;
|
|
1290
1326
|
};
|
|
1327
|
+
statusCode: number;
|
|
1291
1328
|
body: DescribeClusterResourcesResponseBody[];
|
|
1292
1329
|
static names(): {
|
|
1293
1330
|
[key: string]: string;
|
|
@@ -1329,6 +1366,7 @@ export declare class DescribeClusterUserKubeconfigResponse extends $tea.Model {
|
|
|
1329
1366
|
headers: {
|
|
1330
1367
|
[key: string]: string;
|
|
1331
1368
|
};
|
|
1369
|
+
statusCode: number;
|
|
1332
1370
|
body: DescribeClusterUserKubeconfigResponseBody;
|
|
1333
1371
|
static names(): {
|
|
1334
1372
|
[key: string]: string;
|
|
@@ -1368,6 +1406,7 @@ export declare class DescribeClusterV2UserKubeconfigResponse extends $tea.Model
|
|
|
1368
1406
|
headers: {
|
|
1369
1407
|
[key: string]: string;
|
|
1370
1408
|
};
|
|
1409
|
+
statusCode: number;
|
|
1371
1410
|
body: DescribeClusterV2UserKubeconfigResponseBody;
|
|
1372
1411
|
static names(): {
|
|
1373
1412
|
[key: string]: string;
|
|
@@ -1396,6 +1435,7 @@ export declare class DescribeClustersResponse extends $tea.Model {
|
|
|
1396
1435
|
headers: {
|
|
1397
1436
|
[key: string]: string;
|
|
1398
1437
|
};
|
|
1438
|
+
statusCode: number;
|
|
1399
1439
|
body: DescribeClustersResponseBody[];
|
|
1400
1440
|
static names(): {
|
|
1401
1441
|
[key: string]: string;
|
|
@@ -1442,6 +1482,7 @@ export declare class DescribeClustersV1Response extends $tea.Model {
|
|
|
1442
1482
|
headers: {
|
|
1443
1483
|
[key: string]: string;
|
|
1444
1484
|
};
|
|
1485
|
+
statusCode: number;
|
|
1445
1486
|
body: DescribeClustersV1ResponseBody;
|
|
1446
1487
|
static names(): {
|
|
1447
1488
|
[key: string]: string;
|
|
@@ -1473,6 +1514,7 @@ export declare class DescribeEdgeMachineActiveProcessResponse extends $tea.Model
|
|
|
1473
1514
|
headers: {
|
|
1474
1515
|
[key: string]: string;
|
|
1475
1516
|
};
|
|
1517
|
+
statusCode: number;
|
|
1476
1518
|
body: DescribeEdgeMachineActiveProcessResponseBody;
|
|
1477
1519
|
static names(): {
|
|
1478
1520
|
[key: string]: string;
|
|
@@ -1500,6 +1542,7 @@ export declare class DescribeEdgeMachineModelsResponse extends $tea.Model {
|
|
|
1500
1542
|
headers: {
|
|
1501
1543
|
[key: string]: string;
|
|
1502
1544
|
};
|
|
1545
|
+
statusCode: number;
|
|
1503
1546
|
body: DescribeEdgeMachineModelsResponseBody;
|
|
1504
1547
|
static names(): {
|
|
1505
1548
|
[key: string]: string;
|
|
@@ -1533,6 +1576,7 @@ export declare class DescribeEdgeMachineTunnelConfigDetailResponse extends $tea.
|
|
|
1533
1576
|
headers: {
|
|
1534
1577
|
[key: string]: string;
|
|
1535
1578
|
};
|
|
1579
|
+
statusCode: number;
|
|
1536
1580
|
body: DescribeEdgeMachineTunnelConfigDetailResponseBody;
|
|
1537
1581
|
static names(): {
|
|
1538
1582
|
[key: string]: string;
|
|
@@ -1578,6 +1622,7 @@ export declare class DescribeEdgeMachinesResponse extends $tea.Model {
|
|
|
1578
1622
|
headers: {
|
|
1579
1623
|
[key: string]: string;
|
|
1580
1624
|
};
|
|
1625
|
+
statusCode: number;
|
|
1581
1626
|
body: DescribeEdgeMachinesResponseBody;
|
|
1582
1627
|
static names(): {
|
|
1583
1628
|
[key: string]: string;
|
|
@@ -1621,6 +1666,7 @@ export declare class DescribeEventsResponse extends $tea.Model {
|
|
|
1621
1666
|
headers: {
|
|
1622
1667
|
[key: string]: string;
|
|
1623
1668
|
};
|
|
1669
|
+
statusCode: number;
|
|
1624
1670
|
body: DescribeEventsResponseBody;
|
|
1625
1671
|
static names(): {
|
|
1626
1672
|
[key: string]: string;
|
|
@@ -1660,6 +1706,7 @@ export declare class DescribeExternalAgentResponse extends $tea.Model {
|
|
|
1660
1706
|
headers: {
|
|
1661
1707
|
[key: string]: string;
|
|
1662
1708
|
};
|
|
1709
|
+
statusCode: number;
|
|
1663
1710
|
body: DescribeExternalAgentResponseBody;
|
|
1664
1711
|
static names(): {
|
|
1665
1712
|
[key: string]: string;
|
|
@@ -1691,6 +1738,7 @@ export declare class DescribeKubernetesVersionMetadataResponse extends $tea.Mode
|
|
|
1691
1738
|
headers: {
|
|
1692
1739
|
[key: string]: string;
|
|
1693
1740
|
};
|
|
1741
|
+
statusCode: number;
|
|
1694
1742
|
body: DescribeKubernetesVersionMetadataResponseBody[];
|
|
1695
1743
|
static names(): {
|
|
1696
1744
|
[key: string]: string;
|
|
@@ -1702,10 +1750,39 @@ export declare class DescribeKubernetesVersionMetadataResponse extends $tea.Mode
|
|
|
1702
1750
|
[key: string]: any;
|
|
1703
1751
|
});
|
|
1704
1752
|
}
|
|
1753
|
+
export declare class DescribeNodePoolVulsResponseBody extends $tea.Model {
|
|
1754
|
+
vulRecords?: DescribeNodePoolVulsResponseBodyVulRecords[];
|
|
1755
|
+
static names(): {
|
|
1756
|
+
[key: string]: string;
|
|
1757
|
+
};
|
|
1758
|
+
static types(): {
|
|
1759
|
+
[key: string]: any;
|
|
1760
|
+
};
|
|
1761
|
+
constructor(map?: {
|
|
1762
|
+
[key: string]: any;
|
|
1763
|
+
});
|
|
1764
|
+
}
|
|
1765
|
+
export declare class DescribeNodePoolVulsResponse extends $tea.Model {
|
|
1766
|
+
headers: {
|
|
1767
|
+
[key: string]: string;
|
|
1768
|
+
};
|
|
1769
|
+
statusCode: number;
|
|
1770
|
+
body: DescribeNodePoolVulsResponseBody;
|
|
1771
|
+
static names(): {
|
|
1772
|
+
[key: string]: string;
|
|
1773
|
+
};
|
|
1774
|
+
static types(): {
|
|
1775
|
+
[key: string]: any;
|
|
1776
|
+
};
|
|
1777
|
+
constructor(map?: {
|
|
1778
|
+
[key: string]: any;
|
|
1779
|
+
});
|
|
1780
|
+
}
|
|
1705
1781
|
export declare class DescribePoliciesResponse extends $tea.Model {
|
|
1706
1782
|
headers: {
|
|
1707
1783
|
[key: string]: string;
|
|
1708
1784
|
};
|
|
1785
|
+
statusCode: number;
|
|
1709
1786
|
body: {
|
|
1710
1787
|
[key: string]: any;
|
|
1711
1788
|
};
|
|
@@ -1742,6 +1819,7 @@ export declare class DescribePolicyDetailsResponse extends $tea.Model {
|
|
|
1742
1819
|
headers: {
|
|
1743
1820
|
[key: string]: string;
|
|
1744
1821
|
};
|
|
1822
|
+
statusCode: number;
|
|
1745
1823
|
body: DescribePolicyDetailsResponseBody;
|
|
1746
1824
|
static names(): {
|
|
1747
1825
|
[key: string]: string;
|
|
@@ -1772,6 +1850,7 @@ export declare class DescribePolicyGovernanceInClusterResponse extends $tea.Mode
|
|
|
1772
1850
|
headers: {
|
|
1773
1851
|
[key: string]: string;
|
|
1774
1852
|
};
|
|
1853
|
+
statusCode: number;
|
|
1775
1854
|
body: DescribePolicyGovernanceInClusterResponseBody;
|
|
1776
1855
|
static names(): {
|
|
1777
1856
|
[key: string]: string;
|
|
@@ -1800,6 +1879,7 @@ export declare class DescribePolicyInstancesResponse extends $tea.Model {
|
|
|
1800
1879
|
headers: {
|
|
1801
1880
|
[key: string]: string;
|
|
1802
1881
|
};
|
|
1882
|
+
statusCode: number;
|
|
1803
1883
|
body: DescribePolicyInstancesResponseBody[];
|
|
1804
1884
|
static names(): {
|
|
1805
1885
|
[key: string]: string;
|
|
@@ -1830,6 +1910,7 @@ export declare class DescribePolicyInstancesStatusResponse extends $tea.Model {
|
|
|
1830
1910
|
headers: {
|
|
1831
1911
|
[key: string]: string;
|
|
1832
1912
|
};
|
|
1913
|
+
statusCode: number;
|
|
1833
1914
|
body: DescribePolicyInstancesStatusResponseBody;
|
|
1834
1915
|
static names(): {
|
|
1835
1916
|
[key: string]: string;
|
|
@@ -1863,6 +1944,7 @@ export declare class DescribeTaskInfoResponse extends $tea.Model {
|
|
|
1863
1944
|
headers: {
|
|
1864
1945
|
[key: string]: string;
|
|
1865
1946
|
};
|
|
1947
|
+
statusCode: number;
|
|
1866
1948
|
body: DescribeTaskInfoResponseBody;
|
|
1867
1949
|
static names(): {
|
|
1868
1950
|
[key: string]: string;
|
|
@@ -1890,6 +1972,7 @@ export declare class DescribeTemplateAttributeResponse extends $tea.Model {
|
|
|
1890
1972
|
headers: {
|
|
1891
1973
|
[key: string]: string;
|
|
1892
1974
|
};
|
|
1975
|
+
statusCode: number;
|
|
1893
1976
|
body: DescribeTemplateAttributeResponseBody[];
|
|
1894
1977
|
static names(): {
|
|
1895
1978
|
[key: string]: string;
|
|
@@ -1932,6 +2015,7 @@ export declare class DescribeTemplatesResponse extends $tea.Model {
|
|
|
1932
2015
|
headers: {
|
|
1933
2016
|
[key: string]: string;
|
|
1934
2017
|
};
|
|
2018
|
+
statusCode: number;
|
|
1935
2019
|
body: DescribeTemplatesResponseBody;
|
|
1936
2020
|
static names(): {
|
|
1937
2021
|
[key: string]: string;
|
|
@@ -1962,6 +2046,7 @@ export declare class DescribeTriggerResponse extends $tea.Model {
|
|
|
1962
2046
|
headers: {
|
|
1963
2047
|
[key: string]: string;
|
|
1964
2048
|
};
|
|
2049
|
+
statusCode: number;
|
|
1965
2050
|
body: DescribeTriggerResponseBody[];
|
|
1966
2051
|
static names(): {
|
|
1967
2052
|
[key: string]: string;
|
|
@@ -1977,6 +2062,7 @@ export declare class DescribeUserPermissionResponse extends $tea.Model {
|
|
|
1977
2062
|
headers: {
|
|
1978
2063
|
[key: string]: string;
|
|
1979
2064
|
};
|
|
2065
|
+
statusCode: number;
|
|
1980
2066
|
body: DescribeUserPermissionResponseBody[];
|
|
1981
2067
|
static names(): {
|
|
1982
2068
|
[key: string]: string;
|
|
@@ -2008,6 +2094,7 @@ export declare class DescribeUserQuotaResponse extends $tea.Model {
|
|
|
2008
2094
|
headers: {
|
|
2009
2095
|
[key: string]: string;
|
|
2010
2096
|
};
|
|
2097
|
+
statusCode: number;
|
|
2011
2098
|
body: DescribeUserQuotaResponseBody;
|
|
2012
2099
|
static names(): {
|
|
2013
2100
|
[key: string]: string;
|
|
@@ -2035,6 +2122,7 @@ export declare class DescribeWorkflowsResponse extends $tea.Model {
|
|
|
2035
2122
|
headers: {
|
|
2036
2123
|
[key: string]: string;
|
|
2037
2124
|
};
|
|
2125
|
+
statusCode: number;
|
|
2038
2126
|
body: DescribeWorkflowsResponseBody;
|
|
2039
2127
|
static names(): {
|
|
2040
2128
|
[key: string]: string;
|
|
@@ -2077,6 +2165,7 @@ export declare class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
|
|
|
2077
2165
|
headers: {
|
|
2078
2166
|
[key: string]: string;
|
|
2079
2167
|
};
|
|
2168
|
+
statusCode: number;
|
|
2080
2169
|
body: EdgeClusterAddEdgeMachineResponseBody;
|
|
2081
2170
|
static names(): {
|
|
2082
2171
|
[key: string]: string;
|
|
@@ -2088,6 +2177,48 @@ export declare class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
|
|
|
2088
2177
|
[key: string]: any;
|
|
2089
2178
|
});
|
|
2090
2179
|
}
|
|
2180
|
+
export declare class FixNodePoolVulsRequest extends $tea.Model {
|
|
2181
|
+
nodes?: string[];
|
|
2182
|
+
rolloutPolicy?: FixNodePoolVulsRequestRolloutPolicy;
|
|
2183
|
+
vulList?: string[];
|
|
2184
|
+
static names(): {
|
|
2185
|
+
[key: string]: string;
|
|
2186
|
+
};
|
|
2187
|
+
static types(): {
|
|
2188
|
+
[key: string]: any;
|
|
2189
|
+
};
|
|
2190
|
+
constructor(map?: {
|
|
2191
|
+
[key: string]: any;
|
|
2192
|
+
});
|
|
2193
|
+
}
|
|
2194
|
+
export declare class FixNodePoolVulsResponseBody extends $tea.Model {
|
|
2195
|
+
taskId?: string;
|
|
2196
|
+
static names(): {
|
|
2197
|
+
[key: string]: string;
|
|
2198
|
+
};
|
|
2199
|
+
static types(): {
|
|
2200
|
+
[key: string]: any;
|
|
2201
|
+
};
|
|
2202
|
+
constructor(map?: {
|
|
2203
|
+
[key: string]: any;
|
|
2204
|
+
});
|
|
2205
|
+
}
|
|
2206
|
+
export declare class FixNodePoolVulsResponse extends $tea.Model {
|
|
2207
|
+
headers: {
|
|
2208
|
+
[key: string]: string;
|
|
2209
|
+
};
|
|
2210
|
+
statusCode: number;
|
|
2211
|
+
body: FixNodePoolVulsResponseBody;
|
|
2212
|
+
static names(): {
|
|
2213
|
+
[key: string]: string;
|
|
2214
|
+
};
|
|
2215
|
+
static types(): {
|
|
2216
|
+
[key: string]: any;
|
|
2217
|
+
};
|
|
2218
|
+
constructor(map?: {
|
|
2219
|
+
[key: string]: any;
|
|
2220
|
+
});
|
|
2221
|
+
}
|
|
2091
2222
|
export declare class GetKubernetesTriggerRequest extends $tea.Model {
|
|
2092
2223
|
name?: string;
|
|
2093
2224
|
namespace?: string;
|
|
@@ -2107,6 +2238,7 @@ export declare class GetKubernetesTriggerResponse extends $tea.Model {
|
|
|
2107
2238
|
headers: {
|
|
2108
2239
|
[key: string]: string;
|
|
2109
2240
|
};
|
|
2241
|
+
statusCode: number;
|
|
2110
2242
|
body: GetKubernetesTriggerResponseBody[];
|
|
2111
2243
|
static names(): {
|
|
2112
2244
|
[key: string]: string;
|
|
@@ -2138,6 +2270,7 @@ export declare class GetUpgradeStatusResponse extends $tea.Model {
|
|
|
2138
2270
|
headers: {
|
|
2139
2271
|
[key: string]: string;
|
|
2140
2272
|
};
|
|
2273
|
+
statusCode: number;
|
|
2141
2274
|
body: GetUpgradeStatusResponseBody;
|
|
2142
2275
|
static names(): {
|
|
2143
2276
|
[key: string]: string;
|
|
@@ -2165,6 +2298,7 @@ export declare class GrantPermissionsResponse extends $tea.Model {
|
|
|
2165
2298
|
headers: {
|
|
2166
2299
|
[key: string]: string;
|
|
2167
2300
|
};
|
|
2301
|
+
statusCode: number;
|
|
2168
2302
|
static names(): {
|
|
2169
2303
|
[key: string]: string;
|
|
2170
2304
|
};
|
|
@@ -2191,6 +2325,7 @@ export declare class InstallClusterAddonsResponse extends $tea.Model {
|
|
|
2191
2325
|
headers: {
|
|
2192
2326
|
[key: string]: string;
|
|
2193
2327
|
};
|
|
2328
|
+
statusCode: number;
|
|
2194
2329
|
static names(): {
|
|
2195
2330
|
[key: string]: string;
|
|
2196
2331
|
};
|
|
@@ -2251,6 +2386,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
2251
2386
|
headers: {
|
|
2252
2387
|
[key: string]: string;
|
|
2253
2388
|
};
|
|
2389
|
+
statusCode: number;
|
|
2254
2390
|
body: ListTagResourcesResponseBody;
|
|
2255
2391
|
static names(): {
|
|
2256
2392
|
[key: string]: string;
|
|
@@ -2266,6 +2402,7 @@ export declare class MigrateClusterResponse extends $tea.Model {
|
|
|
2266
2402
|
headers: {
|
|
2267
2403
|
[key: string]: string;
|
|
2268
2404
|
};
|
|
2405
|
+
statusCode: number;
|
|
2269
2406
|
static names(): {
|
|
2270
2407
|
[key: string]: string;
|
|
2271
2408
|
};
|
|
@@ -2314,6 +2451,7 @@ export declare class ModifyClusterResponse extends $tea.Model {
|
|
|
2314
2451
|
headers: {
|
|
2315
2452
|
[key: string]: string;
|
|
2316
2453
|
};
|
|
2454
|
+
statusCode: number;
|
|
2317
2455
|
body: ModifyClusterResponseBody;
|
|
2318
2456
|
static names(): {
|
|
2319
2457
|
[key: string]: string;
|
|
@@ -2341,6 +2479,7 @@ export declare class ModifyClusterAddonResponse extends $tea.Model {
|
|
|
2341
2479
|
headers: {
|
|
2342
2480
|
[key: string]: string;
|
|
2343
2481
|
};
|
|
2482
|
+
statusCode: number;
|
|
2344
2483
|
static names(): {
|
|
2345
2484
|
[key: string]: string;
|
|
2346
2485
|
};
|
|
@@ -2367,6 +2506,7 @@ export declare class ModifyClusterConfigurationResponse extends $tea.Model {
|
|
|
2367
2506
|
headers: {
|
|
2368
2507
|
[key: string]: string;
|
|
2369
2508
|
};
|
|
2509
|
+
statusCode: number;
|
|
2370
2510
|
static names(): {
|
|
2371
2511
|
[key: string]: string;
|
|
2372
2512
|
};
|
|
@@ -2412,6 +2552,7 @@ export declare class ModifyClusterNodePoolResponse extends $tea.Model {
|
|
|
2412
2552
|
headers: {
|
|
2413
2553
|
[key: string]: string;
|
|
2414
2554
|
};
|
|
2555
|
+
statusCode: number;
|
|
2415
2556
|
body: ModifyClusterNodePoolResponseBody;
|
|
2416
2557
|
static names(): {
|
|
2417
2558
|
[key: string]: string;
|
|
@@ -2439,6 +2580,7 @@ export declare class ModifyClusterTagsResponse extends $tea.Model {
|
|
|
2439
2580
|
headers: {
|
|
2440
2581
|
[key: string]: string;
|
|
2441
2582
|
};
|
|
2583
|
+
statusCode: number;
|
|
2442
2584
|
static names(): {
|
|
2443
2585
|
[key: string]: string;
|
|
2444
2586
|
};
|
|
@@ -2482,6 +2624,7 @@ export declare class ModifyPolicyInstanceResponse extends $tea.Model {
|
|
|
2482
2624
|
headers: {
|
|
2483
2625
|
[key: string]: string;
|
|
2484
2626
|
};
|
|
2627
|
+
statusCode: number;
|
|
2485
2628
|
body: ModifyPolicyInstanceResponseBody;
|
|
2486
2629
|
static names(): {
|
|
2487
2630
|
[key: string]: string;
|
|
@@ -2522,6 +2665,7 @@ export declare class OpenAckServiceResponse extends $tea.Model {
|
|
|
2522
2665
|
headers: {
|
|
2523
2666
|
[key: string]: string;
|
|
2524
2667
|
};
|
|
2668
|
+
statusCode: number;
|
|
2525
2669
|
body: OpenAckServiceResponseBody;
|
|
2526
2670
|
static names(): {
|
|
2527
2671
|
[key: string]: string;
|
|
@@ -2537,6 +2681,7 @@ export declare class PauseClusterUpgradeResponse extends $tea.Model {
|
|
|
2537
2681
|
headers: {
|
|
2538
2682
|
[key: string]: string;
|
|
2539
2683
|
};
|
|
2684
|
+
statusCode: number;
|
|
2540
2685
|
static names(): {
|
|
2541
2686
|
[key: string]: string;
|
|
2542
2687
|
};
|
|
@@ -2551,6 +2696,22 @@ export declare class PauseComponentUpgradeResponse extends $tea.Model {
|
|
|
2551
2696
|
headers: {
|
|
2552
2697
|
[key: string]: string;
|
|
2553
2698
|
};
|
|
2699
|
+
statusCode: number;
|
|
2700
|
+
static names(): {
|
|
2701
|
+
[key: string]: string;
|
|
2702
|
+
};
|
|
2703
|
+
static types(): {
|
|
2704
|
+
[key: string]: any;
|
|
2705
|
+
};
|
|
2706
|
+
constructor(map?: {
|
|
2707
|
+
[key: string]: any;
|
|
2708
|
+
});
|
|
2709
|
+
}
|
|
2710
|
+
export declare class PauseTaskResponse extends $tea.Model {
|
|
2711
|
+
headers: {
|
|
2712
|
+
[key: string]: string;
|
|
2713
|
+
};
|
|
2714
|
+
statusCode: number;
|
|
2554
2715
|
static names(): {
|
|
2555
2716
|
[key: string]: string;
|
|
2556
2717
|
};
|
|
@@ -2579,6 +2740,7 @@ export declare class RemoveClusterNodesResponse extends $tea.Model {
|
|
|
2579
2740
|
headers: {
|
|
2580
2741
|
[key: string]: string;
|
|
2581
2742
|
};
|
|
2743
|
+
statusCode: number;
|
|
2582
2744
|
static names(): {
|
|
2583
2745
|
[key: string]: string;
|
|
2584
2746
|
};
|
|
@@ -2593,6 +2755,7 @@ export declare class RemoveWorkflowResponse extends $tea.Model {
|
|
|
2593
2755
|
headers: {
|
|
2594
2756
|
[key: string]: string;
|
|
2595
2757
|
};
|
|
2758
|
+
statusCode: number;
|
|
2596
2759
|
static names(): {
|
|
2597
2760
|
[key: string]: string;
|
|
2598
2761
|
};
|
|
@@ -2632,6 +2795,7 @@ export declare class RepairClusterNodePoolResponse extends $tea.Model {
|
|
|
2632
2795
|
headers: {
|
|
2633
2796
|
[key: string]: string;
|
|
2634
2797
|
};
|
|
2798
|
+
statusCode: number;
|
|
2635
2799
|
body: RepairClusterNodePoolResponseBody;
|
|
2636
2800
|
static names(): {
|
|
2637
2801
|
[key: string]: string;
|
|
@@ -2647,6 +2811,22 @@ export declare class ResumeComponentUpgradeResponse extends $tea.Model {
|
|
|
2647
2811
|
headers: {
|
|
2648
2812
|
[key: string]: string;
|
|
2649
2813
|
};
|
|
2814
|
+
statusCode: number;
|
|
2815
|
+
static names(): {
|
|
2816
|
+
[key: string]: string;
|
|
2817
|
+
};
|
|
2818
|
+
static types(): {
|
|
2819
|
+
[key: string]: any;
|
|
2820
|
+
};
|
|
2821
|
+
constructor(map?: {
|
|
2822
|
+
[key: string]: any;
|
|
2823
|
+
});
|
|
2824
|
+
}
|
|
2825
|
+
export declare class ResumeTaskResponse extends $tea.Model {
|
|
2826
|
+
headers: {
|
|
2827
|
+
[key: string]: string;
|
|
2828
|
+
};
|
|
2829
|
+
statusCode: number;
|
|
2650
2830
|
static names(): {
|
|
2651
2831
|
[key: string]: string;
|
|
2652
2832
|
};
|
|
@@ -2661,6 +2841,7 @@ export declare class ResumeUpgradeClusterResponse extends $tea.Model {
|
|
|
2661
2841
|
headers: {
|
|
2662
2842
|
[key: string]: string;
|
|
2663
2843
|
};
|
|
2844
|
+
statusCode: number;
|
|
2664
2845
|
static names(): {
|
|
2665
2846
|
[key: string]: string;
|
|
2666
2847
|
};
|
|
@@ -2719,6 +2900,7 @@ export declare class ScaleClusterResponse extends $tea.Model {
|
|
|
2719
2900
|
headers: {
|
|
2720
2901
|
[key: string]: string;
|
|
2721
2902
|
};
|
|
2903
|
+
statusCode: number;
|
|
2722
2904
|
body: ScaleClusterResponseBody;
|
|
2723
2905
|
static names(): {
|
|
2724
2906
|
[key: string]: string;
|
|
@@ -2758,6 +2940,7 @@ export declare class ScaleClusterNodePoolResponse extends $tea.Model {
|
|
|
2758
2940
|
headers: {
|
|
2759
2941
|
[key: string]: string;
|
|
2760
2942
|
};
|
|
2943
|
+
statusCode: number;
|
|
2761
2944
|
body: ScaleClusterNodePoolResponseBody;
|
|
2762
2945
|
static names(): {
|
|
2763
2946
|
[key: string]: string;
|
|
@@ -2819,6 +3002,7 @@ export declare class ScaleOutClusterResponse extends $tea.Model {
|
|
|
2819
3002
|
headers: {
|
|
2820
3003
|
[key: string]: string;
|
|
2821
3004
|
};
|
|
3005
|
+
statusCode: number;
|
|
2822
3006
|
body: ScaleOutClusterResponseBody;
|
|
2823
3007
|
static names(): {
|
|
2824
3008
|
[key: string]: string;
|
|
@@ -2876,6 +3060,7 @@ export declare class StartWorkflowResponse extends $tea.Model {
|
|
|
2876
3060
|
headers: {
|
|
2877
3061
|
[key: string]: string;
|
|
2878
3062
|
};
|
|
3063
|
+
statusCode: number;
|
|
2879
3064
|
body: StartWorkflowResponseBody;
|
|
2880
3065
|
static names(): {
|
|
2881
3066
|
[key: string]: string;
|
|
@@ -2918,6 +3103,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
2918
3103
|
headers: {
|
|
2919
3104
|
[key: string]: string;
|
|
2920
3105
|
};
|
|
3106
|
+
statusCode: number;
|
|
2921
3107
|
body: TagResourcesResponseBody;
|
|
2922
3108
|
static names(): {
|
|
2923
3109
|
[key: string]: string;
|
|
@@ -2945,6 +3131,7 @@ export declare class UnInstallClusterAddonsResponse extends $tea.Model {
|
|
|
2945
3131
|
headers: {
|
|
2946
3132
|
[key: string]: string;
|
|
2947
3133
|
};
|
|
3134
|
+
statusCode: number;
|
|
2948
3135
|
static names(): {
|
|
2949
3136
|
[key: string]: string;
|
|
2950
3137
|
};
|
|
@@ -2987,6 +3174,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
2987
3174
|
headers: {
|
|
2988
3175
|
[key: string]: string;
|
|
2989
3176
|
};
|
|
3177
|
+
statusCode: number;
|
|
2990
3178
|
body: UntagResourcesResponseBody;
|
|
2991
3179
|
static names(): {
|
|
2992
3180
|
[key: string]: string;
|
|
@@ -3002,6 +3190,7 @@ export declare class UpdateContactGroupForAlertResponse extends $tea.Model {
|
|
|
3002
3190
|
headers: {
|
|
3003
3191
|
[key: string]: string;
|
|
3004
3192
|
};
|
|
3193
|
+
statusCode: number;
|
|
3005
3194
|
static names(): {
|
|
3006
3195
|
[key: string]: string;
|
|
3007
3196
|
};
|
|
@@ -3029,6 +3218,7 @@ export declare class UpdateK8sClusterUserConfigExpireResponse extends $tea.Model
|
|
|
3029
3218
|
headers: {
|
|
3030
3219
|
[key: string]: string;
|
|
3031
3220
|
};
|
|
3221
|
+
statusCode: number;
|
|
3032
3222
|
static names(): {
|
|
3033
3223
|
[key: string]: string;
|
|
3034
3224
|
};
|
|
@@ -3059,6 +3249,7 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
3059
3249
|
headers: {
|
|
3060
3250
|
[key: string]: string;
|
|
3061
3251
|
};
|
|
3252
|
+
statusCode: number;
|
|
3062
3253
|
static names(): {
|
|
3063
3254
|
[key: string]: string;
|
|
3064
3255
|
};
|
|
@@ -3087,6 +3278,7 @@ export declare class UpgradeClusterResponse extends $tea.Model {
|
|
|
3087
3278
|
headers: {
|
|
3088
3279
|
[key: string]: string;
|
|
3089
3280
|
};
|
|
3281
|
+
statusCode: number;
|
|
3090
3282
|
static names(): {
|
|
3091
3283
|
[key: string]: string;
|
|
3092
3284
|
};
|
|
@@ -3113,6 +3305,7 @@ export declare class UpgradeClusterAddonsResponse extends $tea.Model {
|
|
|
3113
3305
|
headers: {
|
|
3114
3306
|
[key: string]: string;
|
|
3115
3307
|
};
|
|
3308
|
+
statusCode: number;
|
|
3116
3309
|
static names(): {
|
|
3117
3310
|
[key: string]: string;
|
|
3118
3311
|
};
|
|
@@ -3840,6 +4033,7 @@ export declare class DescribeClusterResourcesResponseBody extends $tea.Model {
|
|
|
3840
4033
|
resourceInfo?: string;
|
|
3841
4034
|
resourceType?: string;
|
|
3842
4035
|
state?: string;
|
|
4036
|
+
autoCreate?: number;
|
|
3843
4037
|
static names(): {
|
|
3844
4038
|
[key: string]: string;
|
|
3845
4039
|
};
|
|
@@ -4096,6 +4290,34 @@ export declare class DescribeKubernetesVersionMetadataResponseBody extends $tea.
|
|
|
4096
4290
|
[key: string]: any;
|
|
4097
4291
|
});
|
|
4098
4292
|
}
|
|
4293
|
+
export declare class DescribeNodePoolVulsResponseBodyVulRecordsVulList extends $tea.Model {
|
|
4294
|
+
aliasName?: string;
|
|
4295
|
+
cveList?: string[];
|
|
4296
|
+
name?: string;
|
|
4297
|
+
necessity?: string;
|
|
4298
|
+
static names(): {
|
|
4299
|
+
[key: string]: string;
|
|
4300
|
+
};
|
|
4301
|
+
static types(): {
|
|
4302
|
+
[key: string]: any;
|
|
4303
|
+
};
|
|
4304
|
+
constructor(map?: {
|
|
4305
|
+
[key: string]: any;
|
|
4306
|
+
});
|
|
4307
|
+
}
|
|
4308
|
+
export declare class DescribeNodePoolVulsResponseBodyVulRecords extends $tea.Model {
|
|
4309
|
+
instanceId?: string;
|
|
4310
|
+
vulList?: DescribeNodePoolVulsResponseBodyVulRecordsVulList[];
|
|
4311
|
+
static names(): {
|
|
4312
|
+
[key: string]: string;
|
|
4313
|
+
};
|
|
4314
|
+
static types(): {
|
|
4315
|
+
[key: string]: any;
|
|
4316
|
+
};
|
|
4317
|
+
constructor(map?: {
|
|
4318
|
+
[key: string]: any;
|
|
4319
|
+
});
|
|
4320
|
+
}
|
|
4099
4321
|
export declare class DescribePolicyGovernanceInClusterResponseBodyAdmitLogLog extends $tea.Model {
|
|
4100
4322
|
clusterId?: string;
|
|
4101
4323
|
constraintKind?: string;
|
|
@@ -4378,6 +4600,18 @@ export declare class DescribeWorkflowsResponseBodyJobs extends $tea.Model {
|
|
|
4378
4600
|
[key: string]: any;
|
|
4379
4601
|
});
|
|
4380
4602
|
}
|
|
4603
|
+
export declare class FixNodePoolVulsRequestRolloutPolicy extends $tea.Model {
|
|
4604
|
+
maxParallelism?: number;
|
|
4605
|
+
static names(): {
|
|
4606
|
+
[key: string]: string;
|
|
4607
|
+
};
|
|
4608
|
+
static types(): {
|
|
4609
|
+
[key: string]: any;
|
|
4610
|
+
};
|
|
4611
|
+
constructor(map?: {
|
|
4612
|
+
[key: string]: any;
|
|
4613
|
+
});
|
|
4614
|
+
}
|
|
4381
4615
|
export declare class GetKubernetesTriggerResponseBody extends $tea.Model {
|
|
4382
4616
|
id?: string;
|
|
4383
4617
|
name?: string;
|
|
@@ -4735,6 +4969,10 @@ export default class Client extends OpenApi {
|
|
|
4735
4969
|
cancelComponentUpgradeWithOptions(clusterId: string, componentId: string, headers: {
|
|
4736
4970
|
[key: string]: string;
|
|
4737
4971
|
}, runtime: $Util.RuntimeOptions): Promise<CancelComponentUpgradeResponse>;
|
|
4972
|
+
cancelTask(taskId: string): Promise<CancelTaskResponse>;
|
|
4973
|
+
cancelTaskWithOptions(taskId: string, headers: {
|
|
4974
|
+
[key: string]: string;
|
|
4975
|
+
}, runtime: $Util.RuntimeOptions): Promise<CancelTaskResponse>;
|
|
4738
4976
|
cancelWorkflow(workflowName: string, request: CancelWorkflowRequest): Promise<CancelWorkflowResponse>;
|
|
4739
4977
|
cancelWorkflowWithOptions(workflowName: string, request: CancelWorkflowRequest, headers: {
|
|
4740
4978
|
[key: string]: string;
|
|
@@ -4847,10 +5085,6 @@ export default class Client extends OpenApi {
|
|
|
4847
5085
|
describeClusterLogsWithOptions(ClusterId: string, headers: {
|
|
4848
5086
|
[key: string]: string;
|
|
4849
5087
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterLogsResponse>;
|
|
4850
|
-
describeClusterNamespaces(ClusterId: string): Promise<DescribeClusterNamespacesResponse>;
|
|
4851
|
-
describeClusterNamespacesWithOptions(ClusterId: string, headers: {
|
|
4852
|
-
[key: string]: string;
|
|
4853
|
-
}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterNamespacesResponse>;
|
|
4854
5088
|
describeClusterNodePoolDetail(ClusterId: string, NodepoolId: string): Promise<DescribeClusterNodePoolDetailResponse>;
|
|
4855
5089
|
describeClusterNodePoolDetailWithOptions(ClusterId: string, NodepoolId: string, headers: {
|
|
4856
5090
|
[key: string]: string;
|
|
@@ -4911,6 +5145,10 @@ export default class Client extends OpenApi {
|
|
|
4911
5145
|
describeKubernetesVersionMetadataWithOptions(request: DescribeKubernetesVersionMetadataRequest, headers: {
|
|
4912
5146
|
[key: string]: string;
|
|
4913
5147
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeKubernetesVersionMetadataResponse>;
|
|
5148
|
+
describeNodePoolVuls(clusterId: string, nodepoolId: string): Promise<DescribeNodePoolVulsResponse>;
|
|
5149
|
+
describeNodePoolVulsWithOptions(clusterId: string, nodepoolId: string, headers: {
|
|
5150
|
+
[key: string]: string;
|
|
5151
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeNodePoolVulsResponse>;
|
|
4914
5152
|
describePolicies(): Promise<DescribePoliciesResponse>;
|
|
4915
5153
|
describePoliciesWithOptions(headers: {
|
|
4916
5154
|
[key: string]: string;
|
|
@@ -4963,6 +5201,10 @@ export default class Client extends OpenApi {
|
|
|
4963
5201
|
edgeClusterAddEdgeMachineWithOptions(clusterid: string, edgeMachineid: string, request: EdgeClusterAddEdgeMachineRequest, headers: {
|
|
4964
5202
|
[key: string]: string;
|
|
4965
5203
|
}, runtime: $Util.RuntimeOptions): Promise<EdgeClusterAddEdgeMachineResponse>;
|
|
5204
|
+
fixNodePoolVuls(clusterId: string, nodepoolId: string, request: FixNodePoolVulsRequest): Promise<FixNodePoolVulsResponse>;
|
|
5205
|
+
fixNodePoolVulsWithOptions(clusterId: string, nodepoolId: string, request: FixNodePoolVulsRequest, headers: {
|
|
5206
|
+
[key: string]: string;
|
|
5207
|
+
}, runtime: $Util.RuntimeOptions): Promise<FixNodePoolVulsResponse>;
|
|
4966
5208
|
getKubernetesTrigger(ClusterId: string, request: GetKubernetesTriggerRequest): Promise<GetKubernetesTriggerResponse>;
|
|
4967
5209
|
getKubernetesTriggerWithOptions(ClusterId: string, request: GetKubernetesTriggerRequest, headers: {
|
|
4968
5210
|
[key: string]: string;
|
|
@@ -5023,6 +5265,10 @@ export default class Client extends OpenApi {
|
|
|
5023
5265
|
pauseComponentUpgradeWithOptions(clusterid: string, componentid: string, headers: {
|
|
5024
5266
|
[key: string]: string;
|
|
5025
5267
|
}, runtime: $Util.RuntimeOptions): Promise<PauseComponentUpgradeResponse>;
|
|
5268
|
+
pauseTask(taskId: string): Promise<PauseTaskResponse>;
|
|
5269
|
+
pauseTaskWithOptions(taskId: string, headers: {
|
|
5270
|
+
[key: string]: string;
|
|
5271
|
+
}, runtime: $Util.RuntimeOptions): Promise<PauseTaskResponse>;
|
|
5026
5272
|
removeClusterNodes(ClusterId: string, request: RemoveClusterNodesRequest): Promise<RemoveClusterNodesResponse>;
|
|
5027
5273
|
removeClusterNodesWithOptions(ClusterId: string, request: RemoveClusterNodesRequest, headers: {
|
|
5028
5274
|
[key: string]: string;
|
|
@@ -5039,6 +5285,10 @@ export default class Client extends OpenApi {
|
|
|
5039
5285
|
resumeComponentUpgradeWithOptions(clusterid: string, componentid: string, headers: {
|
|
5040
5286
|
[key: string]: string;
|
|
5041
5287
|
}, runtime: $Util.RuntimeOptions): Promise<ResumeComponentUpgradeResponse>;
|
|
5288
|
+
resumeTask(taskId: string): Promise<ResumeTaskResponse>;
|
|
5289
|
+
resumeTaskWithOptions(taskId: string, headers: {
|
|
5290
|
+
[key: string]: string;
|
|
5291
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResumeTaskResponse>;
|
|
5042
5292
|
resumeUpgradeCluster(ClusterId: string): Promise<ResumeUpgradeClusterResponse>;
|
|
5043
5293
|
resumeUpgradeClusterWithOptions(ClusterId: string, headers: {
|
|
5044
5294
|
[key: string]: string;
|