@alicloud/cs20151215 4.8.0 → 4.8.2
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 +536 -51
- package/dist/client.js +264 -29
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +727 -52
package/dist/client.d.ts
CHANGED
|
@@ -1198,6 +1198,11 @@ export declare class CreateAutoscalingConfigRequest extends $tea.Model {
|
|
|
1198
1198
|
* true
|
|
1199
1199
|
*/
|
|
1200
1200
|
scaleUpFromZero?: boolean;
|
|
1201
|
+
/**
|
|
1202
|
+
* @example
|
|
1203
|
+
* cluster-autoscaler
|
|
1204
|
+
*/
|
|
1205
|
+
scalerType?: string;
|
|
1201
1206
|
/**
|
|
1202
1207
|
* @remarks
|
|
1203
1208
|
* The interval at which the system scans for events that trigger scaling activities. Unit: seconds. Default value: 60.
|
|
@@ -1256,11 +1261,38 @@ export declare class CreateAutoscalingConfigRequest extends $tea.Model {
|
|
|
1256
1261
|
[key: string]: any;
|
|
1257
1262
|
});
|
|
1258
1263
|
}
|
|
1264
|
+
export declare class CreateAutoscalingConfigResponseBody extends $tea.Model {
|
|
1265
|
+
/**
|
|
1266
|
+
* @example
|
|
1267
|
+
* cc212d04dfe184547bffaa596********
|
|
1268
|
+
*/
|
|
1269
|
+
clusterId?: string;
|
|
1270
|
+
/**
|
|
1271
|
+
* @example
|
|
1272
|
+
* AF8BE105-C32B-1269-9774-5510********
|
|
1273
|
+
*/
|
|
1274
|
+
requestId?: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* @example
|
|
1277
|
+
* T-5fd211e924e1d007********
|
|
1278
|
+
*/
|
|
1279
|
+
taskId?: string;
|
|
1280
|
+
static names(): {
|
|
1281
|
+
[key: string]: string;
|
|
1282
|
+
};
|
|
1283
|
+
static types(): {
|
|
1284
|
+
[key: string]: any;
|
|
1285
|
+
};
|
|
1286
|
+
constructor(map?: {
|
|
1287
|
+
[key: string]: any;
|
|
1288
|
+
});
|
|
1289
|
+
}
|
|
1259
1290
|
export declare class CreateAutoscalingConfigResponse extends $tea.Model {
|
|
1260
1291
|
headers?: {
|
|
1261
1292
|
[key: string]: string;
|
|
1262
1293
|
};
|
|
1263
1294
|
statusCode?: number;
|
|
1295
|
+
body?: CreateAutoscalingConfigResponseBody;
|
|
1264
1296
|
static names(): {
|
|
1265
1297
|
[key: string]: string;
|
|
1266
1298
|
};
|
|
@@ -1330,6 +1362,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1330
1362
|
*
|
|
1331
1363
|
* @example
|
|
1332
1364
|
* true
|
|
1365
|
+
*
|
|
1366
|
+
* @deprecated
|
|
1333
1367
|
*/
|
|
1334
1368
|
autoRenew?: boolean;
|
|
1335
1369
|
/**
|
|
@@ -1342,6 +1376,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1342
1376
|
*
|
|
1343
1377
|
* @example
|
|
1344
1378
|
* 1
|
|
1379
|
+
*
|
|
1380
|
+
* @deprecated
|
|
1345
1381
|
*/
|
|
1346
1382
|
autoRenewPeriod?: number;
|
|
1347
1383
|
/**
|
|
@@ -1362,6 +1398,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1362
1398
|
*
|
|
1363
1399
|
* @example
|
|
1364
1400
|
* 1
|
|
1401
|
+
*
|
|
1402
|
+
* @deprecated
|
|
1365
1403
|
*/
|
|
1366
1404
|
chargeType?: string;
|
|
1367
1405
|
/**
|
|
@@ -1385,6 +1423,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1385
1423
|
*
|
|
1386
1424
|
* @example
|
|
1387
1425
|
* true
|
|
1426
|
+
*
|
|
1427
|
+
* @deprecated
|
|
1388
1428
|
*/
|
|
1389
1429
|
cloudMonitorFlags?: boolean;
|
|
1390
1430
|
/**
|
|
@@ -1432,6 +1472,7 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1432
1472
|
* 172.20.0.0/16
|
|
1433
1473
|
*/
|
|
1434
1474
|
containerCidr?: string;
|
|
1475
|
+
controlPlaneConfig?: CreateClusterRequestControlPlaneConfig;
|
|
1435
1476
|
/**
|
|
1436
1477
|
* @remarks
|
|
1437
1478
|
* The control plane component for which you want to enable log collection.
|
|
@@ -1466,6 +1507,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1466
1507
|
*
|
|
1467
1508
|
* @example
|
|
1468
1509
|
* none
|
|
1510
|
+
*
|
|
1511
|
+
* @deprecated
|
|
1469
1512
|
*/
|
|
1470
1513
|
cpuPolicy?: string;
|
|
1471
1514
|
/**
|
|
@@ -1551,6 +1594,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1551
1594
|
*
|
|
1552
1595
|
* @example
|
|
1553
1596
|
* false
|
|
1597
|
+
*
|
|
1598
|
+
* @deprecated
|
|
1554
1599
|
*/
|
|
1555
1600
|
formatDisk?: boolean;
|
|
1556
1601
|
/**
|
|
@@ -1559,6 +1604,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1559
1604
|
*
|
|
1560
1605
|
* @example
|
|
1561
1606
|
* m-bp16z7xko3vvv8gt****
|
|
1607
|
+
*
|
|
1608
|
+
* @deprecated
|
|
1562
1609
|
*/
|
|
1563
1610
|
imageId?: string;
|
|
1564
1611
|
/**
|
|
@@ -1579,6 +1626,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1579
1626
|
*
|
|
1580
1627
|
* @example
|
|
1581
1628
|
* AliyunLinux
|
|
1629
|
+
*
|
|
1630
|
+
* @deprecated
|
|
1582
1631
|
*/
|
|
1583
1632
|
imageType?: string;
|
|
1584
1633
|
/**
|
|
@@ -1586,6 +1635,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1586
1635
|
* The existing Elastic Compute Service (ECS) instances that are specified as worker nodes for the cluster.
|
|
1587
1636
|
*
|
|
1588
1637
|
* > This parameter is required if you create worker nodes on existing ECS instances.
|
|
1638
|
+
*
|
|
1639
|
+
* @deprecated
|
|
1589
1640
|
*/
|
|
1590
1641
|
instances?: string[];
|
|
1591
1642
|
/**
|
|
@@ -1623,6 +1674,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1623
1674
|
*
|
|
1624
1675
|
* @example
|
|
1625
1676
|
* true
|
|
1677
|
+
*
|
|
1678
|
+
* @deprecated
|
|
1626
1679
|
*/
|
|
1627
1680
|
keepInstanceName?: boolean;
|
|
1628
1681
|
/**
|
|
@@ -1631,6 +1684,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1631
1684
|
*
|
|
1632
1685
|
* @example
|
|
1633
1686
|
* secrity-key
|
|
1687
|
+
*
|
|
1688
|
+
* @deprecated
|
|
1634
1689
|
*/
|
|
1635
1690
|
keyPair?: string;
|
|
1636
1691
|
/**
|
|
@@ -1666,6 +1721,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1666
1721
|
*
|
|
1667
1722
|
* @example
|
|
1668
1723
|
* slb.s2.small
|
|
1724
|
+
*
|
|
1725
|
+
* @deprecated
|
|
1669
1726
|
*/
|
|
1670
1727
|
loadBalancerSpec?: string;
|
|
1671
1728
|
/**
|
|
@@ -1682,6 +1739,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1682
1739
|
*
|
|
1683
1740
|
* @example
|
|
1684
1741
|
* Hello@1234
|
|
1742
|
+
*
|
|
1743
|
+
* @deprecated
|
|
1685
1744
|
*/
|
|
1686
1745
|
loginPassword?: string;
|
|
1687
1746
|
/**
|
|
@@ -1700,6 +1759,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1700
1759
|
*
|
|
1701
1760
|
* @example
|
|
1702
1761
|
* true
|
|
1762
|
+
*
|
|
1763
|
+
* @deprecated
|
|
1703
1764
|
*/
|
|
1704
1765
|
masterAutoRenew?: boolean;
|
|
1705
1766
|
/**
|
|
@@ -1712,6 +1773,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1712
1773
|
*
|
|
1713
1774
|
* @example
|
|
1714
1775
|
* 1
|
|
1776
|
+
*
|
|
1777
|
+
* @deprecated
|
|
1715
1778
|
*/
|
|
1716
1779
|
masterAutoRenewPeriod?: number;
|
|
1717
1780
|
/**
|
|
@@ -1722,6 +1785,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1722
1785
|
*
|
|
1723
1786
|
* @example
|
|
1724
1787
|
* 3
|
|
1788
|
+
*
|
|
1789
|
+
* @deprecated
|
|
1725
1790
|
*/
|
|
1726
1791
|
masterCount?: number;
|
|
1727
1792
|
/**
|
|
@@ -1735,11 +1800,15 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1735
1800
|
*
|
|
1736
1801
|
* @example
|
|
1737
1802
|
* PrePaid
|
|
1803
|
+
*
|
|
1804
|
+
* @deprecated
|
|
1738
1805
|
*/
|
|
1739
1806
|
masterInstanceChargeType?: string;
|
|
1740
1807
|
/**
|
|
1741
1808
|
* @remarks
|
|
1742
1809
|
* The instance types of master nodes. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html).
|
|
1810
|
+
*
|
|
1811
|
+
* @deprecated
|
|
1743
1812
|
*/
|
|
1744
1813
|
masterInstanceTypes?: string[];
|
|
1745
1814
|
/**
|
|
@@ -1752,6 +1821,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1752
1821
|
*
|
|
1753
1822
|
* @example
|
|
1754
1823
|
* 1
|
|
1824
|
+
*
|
|
1825
|
+
* @deprecated
|
|
1755
1826
|
*/
|
|
1756
1827
|
masterPeriod?: number;
|
|
1757
1828
|
/**
|
|
@@ -1762,6 +1833,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1762
1833
|
*
|
|
1763
1834
|
* @example
|
|
1764
1835
|
* Month
|
|
1836
|
+
*
|
|
1837
|
+
* @deprecated
|
|
1765
1838
|
*/
|
|
1766
1839
|
masterPeriodUnit?: string;
|
|
1767
1840
|
/**
|
|
@@ -1776,6 +1849,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1776
1849
|
*
|
|
1777
1850
|
* @example
|
|
1778
1851
|
* cloud_ssd
|
|
1852
|
+
*
|
|
1853
|
+
* @deprecated
|
|
1779
1854
|
*/
|
|
1780
1855
|
masterSystemDiskCategory?: string;
|
|
1781
1856
|
/**
|
|
@@ -1784,6 +1859,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1784
1859
|
*
|
|
1785
1860
|
* @example
|
|
1786
1861
|
* PL1
|
|
1862
|
+
*
|
|
1863
|
+
* @deprecated
|
|
1787
1864
|
*/
|
|
1788
1865
|
masterSystemDiskPerformanceLevel?: string;
|
|
1789
1866
|
/**
|
|
@@ -1794,6 +1871,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1794
1871
|
*
|
|
1795
1872
|
* @example
|
|
1796
1873
|
* 120
|
|
1874
|
+
*
|
|
1875
|
+
* @deprecated
|
|
1797
1876
|
*/
|
|
1798
1877
|
masterSystemDiskSize?: number;
|
|
1799
1878
|
/**
|
|
@@ -1802,6 +1881,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1802
1881
|
*
|
|
1803
1882
|
* @example
|
|
1804
1883
|
* sp-2zej1nogjvovnz4z****
|
|
1884
|
+
*
|
|
1885
|
+
* @deprecated
|
|
1805
1886
|
*/
|
|
1806
1887
|
masterSystemDiskSnapshotPolicyId?: string;
|
|
1807
1888
|
/**
|
|
@@ -1809,6 +1890,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1809
1890
|
* The IDs of the vSwitches that are specified for master nodes. You can specify up to three vSwitches. We recommend that you specify three vSwitches in different zones to ensure high availability.
|
|
1810
1891
|
*
|
|
1811
1892
|
* The number of vSwitches must be the same as that specified in `master_count` and the same as those specified in `master_vswitch_ids`.
|
|
1893
|
+
*
|
|
1894
|
+
* @deprecated
|
|
1812
1895
|
*/
|
|
1813
1896
|
masterVswitchIds?: string[];
|
|
1814
1897
|
/**
|
|
@@ -1854,6 +1937,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1854
1937
|
*
|
|
1855
1938
|
* @example
|
|
1856
1939
|
* aliyun.com00055test
|
|
1940
|
+
*
|
|
1941
|
+
* @deprecated
|
|
1857
1942
|
*/
|
|
1858
1943
|
nodeNameMode?: string;
|
|
1859
1944
|
/**
|
|
@@ -1897,6 +1982,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1897
1982
|
*
|
|
1898
1983
|
* @example
|
|
1899
1984
|
* Linux
|
|
1985
|
+
*
|
|
1986
|
+
* @deprecated
|
|
1900
1987
|
*/
|
|
1901
1988
|
osType?: string;
|
|
1902
1989
|
/**
|
|
@@ -1911,6 +1998,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1911
1998
|
*
|
|
1912
1999
|
* @example
|
|
1913
2000
|
* FY2023
|
|
2001
|
+
*
|
|
2002
|
+
* @deprecated
|
|
1914
2003
|
*/
|
|
1915
2004
|
period?: number;
|
|
1916
2005
|
/**
|
|
@@ -1923,6 +2012,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1923
2012
|
*
|
|
1924
2013
|
* @example
|
|
1925
2014
|
* Month
|
|
2015
|
+
*
|
|
2016
|
+
* @deprecated
|
|
1926
2017
|
*/
|
|
1927
2018
|
periodUnit?: string;
|
|
1928
2019
|
/**
|
|
@@ -1940,6 +2031,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1940
2031
|
*
|
|
1941
2032
|
* @example
|
|
1942
2033
|
* CentOS
|
|
2034
|
+
*
|
|
2035
|
+
* @deprecated
|
|
1943
2036
|
*/
|
|
1944
2037
|
platform?: string;
|
|
1945
2038
|
/**
|
|
@@ -1978,6 +2071,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
1978
2071
|
/**
|
|
1979
2072
|
* @remarks
|
|
1980
2073
|
* The ApsaraDB RDS instances. Select the ApsaraDB RDS instances that you want to add to the whitelist. We recommend that you add the pod CIDR block and node CIDR block to the ApsaraDB RDS instances in the ApsaraDB RDS console. When you configure the ApsaraDB RDS instances, you cannot scale out the number of nodes because the instances are not in the Running state.
|
|
2074
|
+
*
|
|
2075
|
+
* @deprecated
|
|
1981
2076
|
*/
|
|
1982
2077
|
rdsInstances?: string[];
|
|
1983
2078
|
/**
|
|
@@ -2024,6 +2119,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
2024
2119
|
*
|
|
2025
2120
|
* @example
|
|
2026
2121
|
* false
|
|
2122
|
+
*
|
|
2123
|
+
* @deprecated
|
|
2027
2124
|
*/
|
|
2028
2125
|
securityHardeningOs?: boolean;
|
|
2029
2126
|
/**
|
|
@@ -2086,6 +2183,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
2086
2183
|
*
|
|
2087
2184
|
* @example
|
|
2088
2185
|
* false
|
|
2186
|
+
*
|
|
2187
|
+
* @deprecated
|
|
2089
2188
|
*/
|
|
2090
2189
|
socEnabled?: boolean;
|
|
2091
2190
|
/**
|
|
@@ -2112,6 +2211,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
2112
2211
|
/**
|
|
2113
2212
|
* @remarks
|
|
2114
2213
|
* The taint. Taints can be used together with tolerations to avoid scheduling pods to specified nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
2214
|
+
*
|
|
2215
|
+
* @deprecated
|
|
2115
2216
|
*/
|
|
2116
2217
|
taints?: Taint[];
|
|
2117
2218
|
/**
|
|
@@ -2122,6 +2223,8 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
2122
2223
|
*
|
|
2123
2224
|
* @example
|
|
2124
2225
|
* 60
|
|
2226
|
+
*
|
|
2227
|
+
* @deprecated
|
|
2125
2228
|
*/
|
|
2126
2229
|
timeoutMins?: number;
|
|
2127
2230
|
/**
|
|
@@ -2526,6 +2629,16 @@ export declare class CreateClusterNodePoolRequest extends $tea.Model {
|
|
|
2526
2629
|
* @deprecated
|
|
2527
2630
|
*/
|
|
2528
2631
|
count?: number;
|
|
2632
|
+
/**
|
|
2633
|
+
* @remarks
|
|
2634
|
+
* Specifies whether set the network type of the pod to host network.
|
|
2635
|
+
*
|
|
2636
|
+
* * `true`: sets to host network.
|
|
2637
|
+
* * `false`: sets to container network.
|
|
2638
|
+
*
|
|
2639
|
+
* @example
|
|
2640
|
+
* true
|
|
2641
|
+
*/
|
|
2529
2642
|
hostNetwork?: boolean;
|
|
2530
2643
|
/**
|
|
2531
2644
|
* @remarks
|
|
@@ -2540,13 +2653,23 @@ export declare class CreateClusterNodePoolRequest extends $tea.Model {
|
|
|
2540
2653
|
* @remarks
|
|
2541
2654
|
* The network type of the edge node pool. This parameter takes effect only when the `type` of the node pool is set to `edge`. Valid values:
|
|
2542
2655
|
*
|
|
2543
|
-
* * `basic`:
|
|
2544
|
-
* * `private`:
|
|
2656
|
+
* * `basic`: Internet.
|
|
2657
|
+
* * `private`: private network.
|
|
2545
2658
|
*
|
|
2546
2659
|
* @example
|
|
2547
2660
|
* basic
|
|
2548
2661
|
*/
|
|
2549
2662
|
interconnectMode?: string;
|
|
2663
|
+
/**
|
|
2664
|
+
* @remarks
|
|
2665
|
+
* Specifies whether all nodes in the edge node pool can communicate with each other at Layer 3.
|
|
2666
|
+
*
|
|
2667
|
+
* * `true`: The nodes in the edge node pool can communicate with each other at Layer 3.
|
|
2668
|
+
* * `false`: The nodes in the edge node pool cannot communicate with each other at Layer 3.
|
|
2669
|
+
*
|
|
2670
|
+
* @example
|
|
2671
|
+
* true
|
|
2672
|
+
*/
|
|
2550
2673
|
intranet?: boolean;
|
|
2551
2674
|
/**
|
|
2552
2675
|
* @remarks
|
|
@@ -2560,10 +2683,9 @@ export declare class CreateClusterNodePoolRequest extends $tea.Model {
|
|
|
2560
2683
|
management?: CreateClusterNodePoolRequestManagement;
|
|
2561
2684
|
/**
|
|
2562
2685
|
* @remarks
|
|
2563
|
-
*
|
|
2686
|
+
* This parameter is deprecated.
|
|
2564
2687
|
*
|
|
2565
|
-
*
|
|
2566
|
-
* * This parameter is set to 0 for node pools whose types are ess or default edge node pools.
|
|
2688
|
+
* The maximum number of nodes that can be contained in the edge node pool.
|
|
2567
2689
|
*
|
|
2568
2690
|
* @example
|
|
2569
2691
|
* 10
|
|
@@ -4228,7 +4350,7 @@ export declare class DescribeClusterAttachScriptsRequest extends $tea.Model {
|
|
|
4228
4350
|
* * `true`: retains the instance name.
|
|
4229
4351
|
* * `false`: does not retain the instance name.
|
|
4230
4352
|
*
|
|
4231
|
-
* Default value: `true
|
|
4353
|
+
* Default value: `true`.
|
|
4232
4354
|
*
|
|
4233
4355
|
* @example
|
|
4234
4356
|
* true
|
|
@@ -4236,9 +4358,9 @@ export declare class DescribeClusterAttachScriptsRequest extends $tea.Model {
|
|
|
4236
4358
|
keepInstanceName?: boolean;
|
|
4237
4359
|
/**
|
|
4238
4360
|
* @remarks
|
|
4239
|
-
* The ID of the node pool to which you want to add an existing node.
|
|
4361
|
+
* The ID of the node pool to which you want to add an existing node.
|
|
4240
4362
|
*
|
|
4241
|
-
* > If you do not specify a node pool ID, the node is added to
|
|
4363
|
+
* > If you do not specify a node pool ID, the node is added to a default node pool.
|
|
4242
4364
|
*
|
|
4243
4365
|
* @example
|
|
4244
4366
|
* np1c9229d9be2d432c93f77a88fca0****
|
|
@@ -4256,7 +4378,7 @@ export declare class DescribeClusterAttachScriptsRequest extends $tea.Model {
|
|
|
4256
4378
|
options?: string;
|
|
4257
4379
|
/**
|
|
4258
4380
|
* @remarks
|
|
4259
|
-
*
|
|
4381
|
+
* The ApsaraDB RDS instances. If you specify a list of ApsaraDB RDS instances, ECS instances in the cluster are automatically added to the whitelist of the ApsaraDB RDS instances.
|
|
4260
4382
|
*/
|
|
4261
4383
|
rdsInstances?: string[];
|
|
4262
4384
|
static names(): {
|
|
@@ -4331,6 +4453,7 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
4331
4453
|
* 172.20.0.0/16
|
|
4332
4454
|
*/
|
|
4333
4455
|
containerCidr?: string;
|
|
4456
|
+
controlPlaneConfig?: DescribeClusterDetailResponseBodyControlPlaneConfig;
|
|
4334
4457
|
/**
|
|
4335
4458
|
* @remarks
|
|
4336
4459
|
* The time when the cluster was created.
|
|
@@ -4755,6 +4878,13 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $tea.Mode
|
|
|
4755
4878
|
* The auto scaling configuration of the node pool.
|
|
4756
4879
|
*/
|
|
4757
4880
|
autoScaling?: DescribeClusterNodePoolDetailResponseBodyAutoScaling;
|
|
4881
|
+
/**
|
|
4882
|
+
* @remarks
|
|
4883
|
+
* Indicates whether the pods in the edge node pool can use the host network.
|
|
4884
|
+
*
|
|
4885
|
+
* @example
|
|
4886
|
+
* true
|
|
4887
|
+
*/
|
|
4758
4888
|
hostNetwork?: boolean;
|
|
4759
4889
|
/**
|
|
4760
4890
|
* @remarks
|
|
@@ -4769,10 +4899,17 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $tea.Mode
|
|
|
4769
4899
|
* improved
|
|
4770
4900
|
*/
|
|
4771
4901
|
interconnectMode?: string;
|
|
4902
|
+
/**
|
|
4903
|
+
* @remarks
|
|
4904
|
+
* Indicates whether all nodes in the edge node pool can communicate with each other at Layer 3.
|
|
4905
|
+
*
|
|
4906
|
+
* @example
|
|
4907
|
+
* true
|
|
4908
|
+
*/
|
|
4772
4909
|
intranet?: boolean;
|
|
4773
4910
|
/**
|
|
4774
4911
|
* @remarks
|
|
4775
|
-
* The configurations of the cluster
|
|
4912
|
+
* The configurations of the cluster.
|
|
4776
4913
|
*/
|
|
4777
4914
|
kubernetesConfig?: DescribeClusterNodePoolDetailResponseBodyKubernetesConfig;
|
|
4778
4915
|
/**
|
|
@@ -4790,7 +4927,7 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $tea.Mode
|
|
|
4790
4927
|
maxNodes?: number;
|
|
4791
4928
|
/**
|
|
4792
4929
|
* @remarks
|
|
4793
|
-
*
|
|
4930
|
+
* The node configurations.
|
|
4794
4931
|
*/
|
|
4795
4932
|
nodeConfig?: DescribeClusterNodePoolDetailResponseBodyNodeConfig;
|
|
4796
4933
|
/**
|
|
@@ -4800,7 +4937,7 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $tea.Mode
|
|
|
4800
4937
|
nodepoolInfo?: DescribeClusterNodePoolDetailResponseBodyNodepoolInfo;
|
|
4801
4938
|
/**
|
|
4802
4939
|
* @remarks
|
|
4803
|
-
* The configurations of the scaling group.
|
|
4940
|
+
* The configurations of the scaling group used by the node pool.
|
|
4804
4941
|
*/
|
|
4805
4942
|
scalingGroup?: DescribeClusterNodePoolDetailResponseBodyScalingGroup;
|
|
4806
4943
|
/**
|
|
@@ -5289,36 +5426,57 @@ export declare class DescribeClustersResponse extends $tea.Model {
|
|
|
5289
5426
|
}
|
|
5290
5427
|
export declare class DescribeClustersForRegionRequest extends $tea.Model {
|
|
5291
5428
|
/**
|
|
5429
|
+
* @remarks
|
|
5430
|
+
* The cluster ID.
|
|
5431
|
+
*
|
|
5292
5432
|
* @example
|
|
5293
5433
|
* c8155823d057948c69a****
|
|
5294
5434
|
*/
|
|
5295
5435
|
clusterId?: string;
|
|
5296
5436
|
/**
|
|
5437
|
+
* @remarks
|
|
5438
|
+
* The specification of the cluster.
|
|
5439
|
+
*
|
|
5297
5440
|
* @example
|
|
5298
5441
|
* ack.standard
|
|
5299
5442
|
*/
|
|
5300
5443
|
clusterSpec?: string;
|
|
5301
5444
|
/**
|
|
5445
|
+
* @remarks
|
|
5446
|
+
* The type of the cluster.
|
|
5447
|
+
*
|
|
5302
5448
|
* @example
|
|
5303
5449
|
* Kubernetes
|
|
5304
5450
|
*/
|
|
5305
5451
|
clusterType?: string;
|
|
5306
5452
|
/**
|
|
5453
|
+
* @remarks
|
|
5454
|
+
* Perform a fuzzy search by using the cluster name.
|
|
5455
|
+
*
|
|
5307
5456
|
* @example
|
|
5308
5457
|
* test-cluster
|
|
5309
5458
|
*/
|
|
5310
5459
|
name?: string;
|
|
5311
5460
|
/**
|
|
5461
|
+
* @remarks
|
|
5462
|
+
* The number of pages.
|
|
5463
|
+
*
|
|
5312
5464
|
* @example
|
|
5313
5465
|
* 10
|
|
5314
5466
|
*/
|
|
5315
5467
|
pageNumber?: number;
|
|
5316
5468
|
/**
|
|
5469
|
+
* @remarks
|
|
5470
|
+
* The number of records on each page.
|
|
5471
|
+
*
|
|
5317
5472
|
* @example
|
|
5318
5473
|
* 3
|
|
5319
5474
|
*/
|
|
5320
5475
|
pageSize?: number;
|
|
5321
5476
|
/**
|
|
5477
|
+
* @remarks
|
|
5478
|
+
* The identifier of the cluster.
|
|
5479
|
+
*
|
|
5322
5480
|
* @example
|
|
5323
5481
|
* Serverless
|
|
5324
5482
|
*/
|
|
@@ -5334,7 +5492,15 @@ export declare class DescribeClustersForRegionRequest extends $tea.Model {
|
|
|
5334
5492
|
});
|
|
5335
5493
|
}
|
|
5336
5494
|
export declare class DescribeClustersForRegionResponseBody extends $tea.Model {
|
|
5495
|
+
/**
|
|
5496
|
+
* @remarks
|
|
5497
|
+
* The details of the clusters.
|
|
5498
|
+
*/
|
|
5337
5499
|
clusters?: DescribeClustersForRegionResponseBodyClusters[];
|
|
5500
|
+
/**
|
|
5501
|
+
* @remarks
|
|
5502
|
+
* The pagination details.
|
|
5503
|
+
*/
|
|
5338
5504
|
pageInfo?: DescribeClustersForRegionResponseBodyPageInfo;
|
|
5339
5505
|
static names(): {
|
|
5340
5506
|
[key: string]: string;
|
|
@@ -5866,16 +6032,25 @@ export declare class DescribeEventsResponse extends $tea.Model {
|
|
|
5866
6032
|
}
|
|
5867
6033
|
export declare class DescribeEventsForRegionRequest extends $tea.Model {
|
|
5868
6034
|
/**
|
|
6035
|
+
* @remarks
|
|
6036
|
+
* The cluster ID.
|
|
6037
|
+
*
|
|
5869
6038
|
* @example
|
|
5870
6039
|
* cf62854ac2130470897be7a27ed1f****
|
|
5871
6040
|
*/
|
|
5872
6041
|
clusterId?: string;
|
|
5873
6042
|
/**
|
|
6043
|
+
* @remarks
|
|
6044
|
+
* The number of pages.
|
|
6045
|
+
*
|
|
5874
6046
|
* @example
|
|
5875
6047
|
* 1
|
|
5876
6048
|
*/
|
|
5877
6049
|
pageNumber?: number;
|
|
5878
6050
|
/**
|
|
6051
|
+
* @remarks
|
|
6052
|
+
* The number of records on each page.
|
|
6053
|
+
*
|
|
5879
6054
|
* @example
|
|
5880
6055
|
* 50
|
|
5881
6056
|
*/
|
|
@@ -5891,7 +6066,15 @@ export declare class DescribeEventsForRegionRequest extends $tea.Model {
|
|
|
5891
6066
|
});
|
|
5892
6067
|
}
|
|
5893
6068
|
export declare class DescribeEventsForRegionResponseBody extends $tea.Model {
|
|
6069
|
+
/**
|
|
6070
|
+
* @remarks
|
|
6071
|
+
* The events.
|
|
6072
|
+
*/
|
|
5894
6073
|
events?: DescribeEventsForRegionResponseBodyEvents[];
|
|
6074
|
+
/**
|
|
6075
|
+
* @remarks
|
|
6076
|
+
* The pagination details.
|
|
6077
|
+
*/
|
|
5895
6078
|
pageInfo?: DescribeEventsForRegionResponseBodyPageInfo;
|
|
5896
6079
|
static names(): {
|
|
5897
6080
|
[key: string]: string;
|
|
@@ -8366,6 +8549,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
8366
8549
|
* cluster-new-name
|
|
8367
8550
|
*/
|
|
8368
8551
|
clusterName?: string;
|
|
8552
|
+
controlPlaneConfig?: ModifyClusterRequestControlPlaneConfig;
|
|
8369
8553
|
/**
|
|
8370
8554
|
* @remarks
|
|
8371
8555
|
* Specifies whether to enable cluster deletion protection. If you enable this option, the cluster cannot be deleted in the console or by calling API operations. Valid values:
|
|
@@ -8716,17 +8900,17 @@ export declare class ModifyClusterTagsResponse extends $tea.Model {
|
|
|
8716
8900
|
export declare class ModifyNodePoolNodeConfigRequest extends $tea.Model {
|
|
8717
8901
|
/**
|
|
8718
8902
|
* @remarks
|
|
8719
|
-
* The
|
|
8903
|
+
* The kubelet configuration.
|
|
8720
8904
|
*/
|
|
8721
8905
|
kubeletConfig?: KubeletConfig;
|
|
8722
8906
|
/**
|
|
8723
8907
|
* @remarks
|
|
8724
|
-
*
|
|
8908
|
+
* The OS configuration.
|
|
8725
8909
|
*/
|
|
8726
8910
|
osConfig?: ModifyNodePoolNodeConfigRequestOsConfig;
|
|
8727
8911
|
/**
|
|
8728
8912
|
* @remarks
|
|
8729
|
-
* The rotation
|
|
8913
|
+
* The rotation configuration.
|
|
8730
8914
|
*/
|
|
8731
8915
|
rollingPolicy?: ModifyNodePoolNodeConfigRequestRollingPolicy;
|
|
8732
8916
|
static names(): {
|
|
@@ -11697,6 +11881,41 @@ export declare class CheckServiceRoleResponseBodyRoles extends $tea.Model {
|
|
|
11697
11881
|
[key: string]: any;
|
|
11698
11882
|
});
|
|
11699
11883
|
}
|
|
11884
|
+
export declare class CreateClusterRequestControlPlaneConfig extends $tea.Model {
|
|
11885
|
+
autoRenew?: boolean;
|
|
11886
|
+
autoRenewPeriod?: number;
|
|
11887
|
+
chargeType?: string;
|
|
11888
|
+
cloudMonitorFlags?: boolean;
|
|
11889
|
+
cpuPolicy?: string;
|
|
11890
|
+
deploymentsetId?: string;
|
|
11891
|
+
imageId?: string;
|
|
11892
|
+
imageType?: string;
|
|
11893
|
+
instanceTypes?: string[];
|
|
11894
|
+
keyPair?: string;
|
|
11895
|
+
loginPassword?: string;
|
|
11896
|
+
nodePortRange?: string;
|
|
11897
|
+
period?: number;
|
|
11898
|
+
periodUnit?: string;
|
|
11899
|
+
runtime?: string;
|
|
11900
|
+
securityHardeningOs?: boolean;
|
|
11901
|
+
size?: number;
|
|
11902
|
+
socEnabled?: boolean;
|
|
11903
|
+
systemDiskBurstingEnabled?: boolean;
|
|
11904
|
+
systemDiskCategory?: string;
|
|
11905
|
+
systemDiskPerformanceLevel?: string;
|
|
11906
|
+
systemDiskProvisionedIops?: number;
|
|
11907
|
+
systemDiskSize?: number;
|
|
11908
|
+
systemDiskSnapshotPolicyId?: string;
|
|
11909
|
+
static names(): {
|
|
11910
|
+
[key: string]: string;
|
|
11911
|
+
};
|
|
11912
|
+
static types(): {
|
|
11913
|
+
[key: string]: any;
|
|
11914
|
+
};
|
|
11915
|
+
constructor(map?: {
|
|
11916
|
+
[key: string]: any;
|
|
11917
|
+
});
|
|
11918
|
+
}
|
|
11700
11919
|
export declare class CreateClusterRequestOperationPolicyClusterAutoUpgrade extends $tea.Model {
|
|
11701
11920
|
/**
|
|
11702
11921
|
* @remarks
|
|
@@ -11980,7 +12199,7 @@ export declare class CreateClusterNodePoolRequestKubernetesConfig extends $tea.M
|
|
|
11980
12199
|
* * `true`: installs the CloudMonitor agent on ECS nodes.
|
|
11981
12200
|
* * `false`: does not install the CloudMonitor agent on ECS nodes.
|
|
11982
12201
|
*
|
|
11983
|
-
* Default value: `false
|
|
12202
|
+
* Default value: `false`
|
|
11984
12203
|
*
|
|
11985
12204
|
* @example
|
|
11986
12205
|
* true
|
|
@@ -12049,7 +12268,7 @@ export declare class CreateClusterNodePoolRequestKubernetesConfig extends $tea.M
|
|
|
12049
12268
|
runtimeVersion?: string;
|
|
12050
12269
|
/**
|
|
12051
12270
|
* @remarks
|
|
12052
|
-
* The
|
|
12271
|
+
* The configuration of the taint.
|
|
12053
12272
|
*/
|
|
12054
12273
|
taints?: Taint[];
|
|
12055
12274
|
/**
|
|
@@ -12204,7 +12423,7 @@ export declare class CreateClusterNodePoolRequestManagementUpgradeConfig extends
|
|
|
12204
12423
|
* @remarks
|
|
12205
12424
|
* The maximum number of nodes that can be in the Unavailable state. Valid values: 1 to 1000.
|
|
12206
12425
|
*
|
|
12207
|
-
* Default value: 1
|
|
12426
|
+
* Default value: 1
|
|
12208
12427
|
*
|
|
12209
12428
|
* @example
|
|
12210
12429
|
* 1
|
|
@@ -12439,7 +12658,7 @@ export declare class CreateClusterNodePoolRequestScalingGroupSpotPriceLimit exte
|
|
|
12439
12658
|
export declare class CreateClusterNodePoolRequestScalingGroupTags extends $tea.Model {
|
|
12440
12659
|
/**
|
|
12441
12660
|
* @remarks
|
|
12442
|
-
* The
|
|
12661
|
+
* The tag key.
|
|
12443
12662
|
*
|
|
12444
12663
|
* @example
|
|
12445
12664
|
* node-k-1
|
|
@@ -12447,7 +12666,7 @@ export declare class CreateClusterNodePoolRequestScalingGroupTags extends $tea.M
|
|
|
12447
12666
|
key?: string;
|
|
12448
12667
|
/**
|
|
12449
12668
|
* @remarks
|
|
12450
|
-
* The
|
|
12669
|
+
* The tag value.
|
|
12451
12670
|
*
|
|
12452
12671
|
* @example
|
|
12453
12672
|
* node-v-1
|
|
@@ -12471,7 +12690,7 @@ export declare class CreateClusterNodePoolRequestScalingGroup extends $tea.Model
|
|
|
12471
12690
|
* * `true`: enables auto-renewal.
|
|
12472
12691
|
* * `false`: disables auto-renewal.
|
|
12473
12692
|
*
|
|
12474
|
-
* Default value: `false
|
|
12693
|
+
* Default value: `false`
|
|
12475
12694
|
*
|
|
12476
12695
|
* @example
|
|
12477
12696
|
* true
|
|
@@ -12479,9 +12698,12 @@ export declare class CreateClusterNodePoolRequestScalingGroup extends $tea.Model
|
|
|
12479
12698
|
autoRenew?: boolean;
|
|
12480
12699
|
/**
|
|
12481
12700
|
* @remarks
|
|
12482
|
-
* The auto-renewal
|
|
12701
|
+
* The auto-renewal period. Valid values:
|
|
12483
12702
|
*
|
|
12484
|
-
*
|
|
12703
|
+
* * Valid values when PeriodUnit is set to Week: 1, 2, and 3
|
|
12704
|
+
* * Valid values when PeriodUnit is set to Month: 1, 2, 3, 6, 12, 24, 36, 48, and 60
|
|
12705
|
+
*
|
|
12706
|
+
* Default value: 1
|
|
12485
12707
|
*
|
|
12486
12708
|
* @example
|
|
12487
12709
|
* 1
|
|
@@ -13115,6 +13337,40 @@ export declare class DescribeAddonsResponseBodyComponentGroups extends $tea.Mode
|
|
|
13115
13337
|
[key: string]: any;
|
|
13116
13338
|
});
|
|
13117
13339
|
}
|
|
13340
|
+
export declare class DescribeClusterDetailResponseBodyControlPlaneConfig extends $tea.Model {
|
|
13341
|
+
autoRenew?: boolean;
|
|
13342
|
+
autoRenewPeriod?: number;
|
|
13343
|
+
chargeType?: string;
|
|
13344
|
+
cloudMonitorFlags?: boolean;
|
|
13345
|
+
cpuPolicy?: string;
|
|
13346
|
+
deploymentsetId?: string;
|
|
13347
|
+
imageId?: string;
|
|
13348
|
+
imageType?: string;
|
|
13349
|
+
instanceTypes?: string[];
|
|
13350
|
+
keyPair?: string;
|
|
13351
|
+
nodePortRange?: string;
|
|
13352
|
+
period?: number;
|
|
13353
|
+
periodUnit?: string;
|
|
13354
|
+
runtime?: string;
|
|
13355
|
+
securityHardeningOs?: boolean;
|
|
13356
|
+
size?: number;
|
|
13357
|
+
socEnabled?: boolean;
|
|
13358
|
+
systemDiskBurstingEnabled?: boolean;
|
|
13359
|
+
systemDiskCategory?: string;
|
|
13360
|
+
systemDiskPerformanceLevel?: string;
|
|
13361
|
+
systemDiskProvisionedIops?: number;
|
|
13362
|
+
systemDiskSize?: number;
|
|
13363
|
+
systemDiskSnapshotPolicyId?: string;
|
|
13364
|
+
static names(): {
|
|
13365
|
+
[key: string]: string;
|
|
13366
|
+
};
|
|
13367
|
+
static types(): {
|
|
13368
|
+
[key: string]: any;
|
|
13369
|
+
};
|
|
13370
|
+
constructor(map?: {
|
|
13371
|
+
[key: string]: any;
|
|
13372
|
+
});
|
|
13373
|
+
}
|
|
13118
13374
|
export declare class DescribeClusterDetailResponseBodyOperationPolicyClusterAutoUpgrade extends $tea.Model {
|
|
13119
13375
|
/**
|
|
13120
13376
|
* @remarks
|
|
@@ -13532,10 +13788,10 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
13532
13788
|
cpuPolicy?: string;
|
|
13533
13789
|
/**
|
|
13534
13790
|
* @remarks
|
|
13535
|
-
* The labels
|
|
13791
|
+
* The labels that you want to add to the nodes in the cluster. You must add labels based on the following rules:
|
|
13536
13792
|
*
|
|
13537
|
-
* *
|
|
13538
|
-
* *
|
|
13793
|
+
* * A label is a case-sensitive key-value pair. You can add up to 20 labels.
|
|
13794
|
+
* * The key must be unique and cannot exceed 64 characters in length. The value can be empty and cannot exceed 128 characters in length. Keys and values cannot start with `aliyun`, `acs:`, `https://`, or `http://`. For more information, see [Labels and Selectors](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#syntax-and-character-set).
|
|
13539
13795
|
*/
|
|
13540
13796
|
labels?: Tag[];
|
|
13541
13797
|
/**
|
|
@@ -13554,6 +13810,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
13554
13810
|
/**
|
|
13555
13811
|
* @remarks
|
|
13556
13812
|
* The custom script to be executed before nodes in the node pool are initialized. For more information, see [Generate user-defined data](https://help.aliyun.com/document_detail/49121.html).
|
|
13813
|
+
*
|
|
13814
|
+
* @example
|
|
13815
|
+
* dGhpcyBpcyBhIGV4YW1wbGU
|
|
13557
13816
|
*/
|
|
13558
13817
|
preUserData?: string;
|
|
13559
13818
|
/**
|
|
@@ -13574,7 +13833,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
13574
13833
|
runtimeVersion?: string;
|
|
13575
13834
|
/**
|
|
13576
13835
|
* @remarks
|
|
13577
|
-
* The taints
|
|
13836
|
+
* The taints that you want to add to nodes. Taints can be used together with tolerations to prevent pods from being scheduled to specific nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
13578
13837
|
*/
|
|
13579
13838
|
taints?: Taint[];
|
|
13580
13839
|
/**
|
|
@@ -13788,7 +14047,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
13788
14047
|
export declare class DescribeClusterNodePoolDetailResponseBodyNodeConfig extends $tea.Model {
|
|
13789
14048
|
/**
|
|
13790
14049
|
* @remarks
|
|
13791
|
-
*
|
|
14050
|
+
* The configurations of the kubelet.
|
|
13792
14051
|
*/
|
|
13793
14052
|
kubeletConfiguration?: KubeletConfig;
|
|
13794
14053
|
static names(): {
|
|
@@ -13983,7 +14242,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
13983
14242
|
compensateWithOnDemand?: boolean;
|
|
13984
14243
|
/**
|
|
13985
14244
|
* @remarks
|
|
13986
|
-
* The configurations of the data disks that are attached to the nodes in the node pool. The configurations include the disk
|
|
14245
|
+
* The configurations of the data disks that are attached to the nodes in the node pool. The configurations include the disk category and disk size.
|
|
13987
14246
|
*/
|
|
13988
14247
|
dataDisks?: DataDisk[];
|
|
13989
14248
|
/**
|
|
@@ -14031,7 +14290,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
14031
14290
|
instanceChargeType?: string;
|
|
14032
14291
|
/**
|
|
14033
14292
|
* @remarks
|
|
14034
|
-
*
|
|
14293
|
+
* The instance properties.
|
|
14035
14294
|
*/
|
|
14036
14295
|
instancePatterns?: InstancePatterns[];
|
|
14037
14296
|
/**
|
|
@@ -14276,14 +14535,14 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
14276
14535
|
systemDiskBurstingEnabled?: boolean;
|
|
14277
14536
|
/**
|
|
14278
14537
|
* @remarks
|
|
14279
|
-
* The system disk
|
|
14538
|
+
* The categories of the system disk for nodes. The system attempts to create system disks of a disk category with a lower priority if the disk category with a higher priority is unavailable. Valid values: Valid values:
|
|
14280
14539
|
*
|
|
14281
|
-
* * `cloud`: basic disk
|
|
14282
|
-
* * `cloud_efficiency`: ultra disk
|
|
14283
|
-
* * `cloud_ssd`: standard SSD
|
|
14284
|
-
* * `cloud_essd`: ESSD
|
|
14285
|
-
* * `cloud_auto`: ESSD AutoPL disk
|
|
14286
|
-
* * `cloud_essd_entry`: ESSD Entry disk
|
|
14540
|
+
* * `cloud`: basic disk.
|
|
14541
|
+
* * `cloud_efficiency`: ultra disk.
|
|
14542
|
+
* * `cloud_ssd`: standard SSD.
|
|
14543
|
+
* * `cloud_essd`: Enterprise SSD (ESSD).
|
|
14544
|
+
* * `cloud_auto`: ESSD AutoPL disk.
|
|
14545
|
+
* * `cloud_essd_entry`: ESSD Entry disk.
|
|
14287
14546
|
*
|
|
14288
14547
|
* Default value: `cloud_efficiency`.
|
|
14289
14548
|
*/
|
|
@@ -14307,7 +14566,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
14307
14566
|
systemDiskCategory?: string;
|
|
14308
14567
|
/**
|
|
14309
14568
|
* @remarks
|
|
14310
|
-
*
|
|
14569
|
+
* The encryption algorithm that is used to encrypt the system disk. Set the value to aes-256.
|
|
14311
14570
|
*
|
|
14312
14571
|
* @example
|
|
14313
14572
|
* aes-256
|
|
@@ -14360,9 +14619,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
14360
14619
|
systemDiskSize?: number;
|
|
14361
14620
|
/**
|
|
14362
14621
|
* @remarks
|
|
14363
|
-
* The labels that you want to add to
|
|
14622
|
+
* The labels that you want to add only to ECS instances.
|
|
14364
14623
|
*
|
|
14365
|
-
*
|
|
14624
|
+
* The label key must be unique and cannot exceed 128 characters in length. The label key and value cannot start with aliyun or acs: or contain https:// or http://.
|
|
14366
14625
|
*/
|
|
14367
14626
|
tags?: Tag[];
|
|
14368
14627
|
/**
|
|
@@ -16355,92 +16614,165 @@ export declare class DescribeClustersResponseBody extends $tea.Model {
|
|
|
16355
16614
|
}
|
|
16356
16615
|
export declare class DescribeClustersForRegionResponseBodyClusters extends $tea.Model {
|
|
16357
16616
|
/**
|
|
16617
|
+
* @remarks
|
|
16618
|
+
* The domain name of the cluster.
|
|
16619
|
+
*
|
|
16358
16620
|
* @example
|
|
16359
16621
|
* cluster.local
|
|
16360
16622
|
*/
|
|
16361
16623
|
clusterDomain?: string;
|
|
16362
16624
|
/**
|
|
16625
|
+
* @remarks
|
|
16626
|
+
* The cluster ID.
|
|
16627
|
+
*
|
|
16363
16628
|
* @example
|
|
16364
16629
|
* c905d1364c2dd4b6284a3f41790c4****
|
|
16365
16630
|
*/
|
|
16366
16631
|
clusterId?: string;
|
|
16367
16632
|
/**
|
|
16633
|
+
* @remarks
|
|
16634
|
+
* The types of ACK managed clusters:
|
|
16635
|
+
*
|
|
16636
|
+
* * ack.pro.small: ACK Pro cluster
|
|
16637
|
+
* * ack.standard: ACK Basic cluster
|
|
16638
|
+
*
|
|
16368
16639
|
* @example
|
|
16369
16640
|
* ack.standard
|
|
16370
16641
|
*/
|
|
16371
16642
|
clusterSpec?: string;
|
|
16372
16643
|
/**
|
|
16644
|
+
* @remarks
|
|
16645
|
+
* The type of the cluster. Valid values:
|
|
16646
|
+
*
|
|
16647
|
+
* * Kubernetes: ACK dedicated cluster
|
|
16648
|
+
* * ManagedKubernetes: ACK managed clusters. ACK managed clusters include ACK Basic clusters, ACK Pro clusters, ACK Serverless Basic clusters, ACK Serverless Pro clusters, ACK Edge Basic clusters, ACK Edge Pro clusters, and ACK Lingjun Pro clusters.
|
|
16649
|
+
* * ExternalKubernetes: registered cluster
|
|
16650
|
+
*
|
|
16373
16651
|
* @example
|
|
16374
16652
|
* ManagedKubernetes
|
|
16375
16653
|
*/
|
|
16376
16654
|
clusterType?: string;
|
|
16377
16655
|
/**
|
|
16656
|
+
* @remarks
|
|
16657
|
+
* The CIDR block of pods in the cluster.
|
|
16658
|
+
*
|
|
16378
16659
|
* @example
|
|
16379
16660
|
* 172.20.0.0/16
|
|
16380
16661
|
*/
|
|
16381
16662
|
containerCidr?: string;
|
|
16382
16663
|
/**
|
|
16664
|
+
* @remarks
|
|
16665
|
+
* The time at which the instance is created.
|
|
16666
|
+
*
|
|
16383
16667
|
* @example
|
|
16384
16668
|
* 2020-12-01T20:40:40+08:00
|
|
16385
16669
|
*/
|
|
16386
16670
|
created?: string;
|
|
16387
16671
|
/**
|
|
16672
|
+
* @remarks
|
|
16673
|
+
* The current Kubernetes version of the cluster.
|
|
16674
|
+
*
|
|
16388
16675
|
* @example
|
|
16389
16676
|
* 1.16.6-aliyun.1
|
|
16390
16677
|
*/
|
|
16391
16678
|
currentVersion?: string;
|
|
16392
16679
|
/**
|
|
16680
|
+
* @remarks
|
|
16681
|
+
* Specifies whether to enable cluster deletion protection. If you enable this option, the cluster cannot be deleted in the console or by calling API operations. You can obtain the terminal ID by calling one of the following operations:
|
|
16682
|
+
*
|
|
16683
|
+
* * true: enables deletion protection for the cluster. This way, the cluster cannot be deleted in the ACK console or by calling API operations.
|
|
16684
|
+
* * false: disables deletion protection for the cluster. This way, the cluster can be deleted in the ACK console or by calling API operations.
|
|
16685
|
+
*
|
|
16393
16686
|
* @example
|
|
16394
16687
|
* false
|
|
16395
16688
|
*/
|
|
16396
16689
|
deletionProtection?: boolean;
|
|
16397
16690
|
/**
|
|
16691
|
+
* @remarks
|
|
16692
|
+
* The initial Kubernetes version of the cluster.
|
|
16693
|
+
*
|
|
16398
16694
|
* @example
|
|
16399
16695
|
* 1.16.6-aliyun.1
|
|
16400
16696
|
*/
|
|
16401
16697
|
initVersion?: string;
|
|
16402
16698
|
/**
|
|
16699
|
+
* @remarks
|
|
16700
|
+
* The IP protocol stack of the cluster.
|
|
16701
|
+
*
|
|
16403
16702
|
* @example
|
|
16404
16703
|
* ipv4
|
|
16405
16704
|
*/
|
|
16406
16705
|
ipStack?: string;
|
|
16407
16706
|
/**
|
|
16707
|
+
* @remarks
|
|
16708
|
+
* The name of the cluster.
|
|
16709
|
+
*
|
|
16408
16710
|
* @example
|
|
16409
16711
|
* test-cluster
|
|
16410
16712
|
*/
|
|
16411
16713
|
name?: string;
|
|
16412
16714
|
/**
|
|
16715
|
+
* @remarks
|
|
16716
|
+
* The Kubernetes version to which the cluster can be updated.
|
|
16717
|
+
*
|
|
16413
16718
|
* @example
|
|
16414
16719
|
* 1.18.8-aliyun.1
|
|
16415
16720
|
*/
|
|
16416
16721
|
nextVersion?: string;
|
|
16417
16722
|
/**
|
|
16723
|
+
* @remarks
|
|
16724
|
+
* The subtype of the cluster. Valid values:
|
|
16725
|
+
*
|
|
16726
|
+
* * Default: ACK managed clusters. ACK managed clusters include ACK Basic clusters and ACK Pro clusters.
|
|
16727
|
+
* * Edge: ACK Edge clusters. ACK Edge clusters include ACK Edge Basic clusters and ACK Edge Pro clusters.
|
|
16728
|
+
* * Serverless: ACK Serverless clusters. ACK Serverless clusters include ACK Serverless Basic clusters and ACK Serverless Pro clusters.
|
|
16729
|
+
* * Lingjun: ACK Lingjun Pro clusters.
|
|
16730
|
+
*
|
|
16418
16731
|
* @example
|
|
16419
16732
|
* Default
|
|
16420
16733
|
*/
|
|
16421
16734
|
profile?: string;
|
|
16422
16735
|
/**
|
|
16736
|
+
* @remarks
|
|
16737
|
+
* The kube-proxy mode of the cluster.
|
|
16738
|
+
*
|
|
16739
|
+
* Valid value:
|
|
16740
|
+
*
|
|
16741
|
+
* * iptables: iptables.
|
|
16742
|
+
* * ipvs: ipvs.
|
|
16743
|
+
*
|
|
16423
16744
|
* @example
|
|
16424
16745
|
* ipvs
|
|
16425
16746
|
*/
|
|
16426
16747
|
proxyMode?: string;
|
|
16427
16748
|
/**
|
|
16749
|
+
* @remarks
|
|
16750
|
+
* The region ID.
|
|
16751
|
+
*
|
|
16428
16752
|
* @example
|
|
16429
16753
|
* cn-beijing-a
|
|
16430
16754
|
*/
|
|
16431
16755
|
regionId?: string;
|
|
16432
16756
|
/**
|
|
16757
|
+
* @remarks
|
|
16758
|
+
* The ID of the cluster resource group.
|
|
16759
|
+
*
|
|
16433
16760
|
* @example
|
|
16434
16761
|
* rg-acfmyvw3wjm****
|
|
16435
16762
|
*/
|
|
16436
16763
|
resourceGroupId?: string;
|
|
16437
16764
|
/**
|
|
16765
|
+
* @remarks
|
|
16766
|
+
* The ID of the security group of the cluster.
|
|
16767
|
+
*
|
|
16438
16768
|
* @example
|
|
16439
16769
|
* sg-2zeihch86ooz9io4****
|
|
16440
16770
|
*/
|
|
16441
16771
|
securityGroupId?: string;
|
|
16442
16772
|
/**
|
|
16443
16773
|
* @remarks
|
|
16774
|
+
* The CIDR block of the service network.
|
|
16775
|
+
*
|
|
16444
16776
|
* This parameter is required.
|
|
16445
16777
|
*
|
|
16446
16778
|
* @example
|
|
@@ -16448,31 +16780,67 @@ export declare class DescribeClustersForRegionResponseBodyClusters extends $tea.
|
|
|
16448
16780
|
*/
|
|
16449
16781
|
serviceCidr?: string;
|
|
16450
16782
|
/**
|
|
16783
|
+
* @remarks
|
|
16784
|
+
* The number of nodes in the ACK cluster.
|
|
16785
|
+
*
|
|
16451
16786
|
* @example
|
|
16452
16787
|
* 2
|
|
16453
16788
|
*/
|
|
16454
16789
|
size?: number;
|
|
16455
16790
|
/**
|
|
16791
|
+
* @remarks
|
|
16792
|
+
* The status of the cluster. Valid values:
|
|
16793
|
+
*
|
|
16794
|
+
* * initial: The cluster is being created.
|
|
16795
|
+
* * failed: The cluster failed to be created.
|
|
16796
|
+
* * running: The cluster is running.
|
|
16797
|
+
* * Upgrading: The cluster is being updated.
|
|
16798
|
+
* * scaling: The cluster is being scaled.
|
|
16799
|
+
* * waiting: The cluster is waiting for connection requests.
|
|
16800
|
+
* * disconnected: The cluster is disconnected.
|
|
16801
|
+
* * inactive: The cluster is inactive.
|
|
16802
|
+
* * unavailable: The cluster is unavailable.
|
|
16803
|
+
* * deleting: The cluster is being deleted.
|
|
16804
|
+
* * deleted: The ACK cluster is deleted.
|
|
16805
|
+
* * delete_failed: The cluster failed to be deleted.
|
|
16806
|
+
*
|
|
16456
16807
|
* @example
|
|
16457
16808
|
* running
|
|
16458
16809
|
*/
|
|
16459
16810
|
state?: string;
|
|
16811
|
+
/**
|
|
16812
|
+
* @remarks
|
|
16813
|
+
* The list of tags.
|
|
16814
|
+
*/
|
|
16460
16815
|
tags?: Tag[];
|
|
16461
16816
|
/**
|
|
16817
|
+
* @remarks
|
|
16818
|
+
* The time zone.
|
|
16819
|
+
*
|
|
16462
16820
|
* @example
|
|
16463
16821
|
* Asia/Shanghai
|
|
16464
16822
|
*/
|
|
16465
16823
|
timezone?: string;
|
|
16466
16824
|
/**
|
|
16825
|
+
* @remarks
|
|
16826
|
+
* The time when the cluster was updated.
|
|
16827
|
+
*
|
|
16467
16828
|
* @example
|
|
16468
16829
|
* 2020-12-08T15:37:00+08:00
|
|
16469
16830
|
*/
|
|
16470
16831
|
updated?: string;
|
|
16471
16832
|
/**
|
|
16833
|
+
* @remarks
|
|
16834
|
+
* The ID of the virtual private cloud (VPC) to which the cluster belongs.
|
|
16835
|
+
*
|
|
16472
16836
|
* @example
|
|
16473
16837
|
* vpc-2zeg8nf1ukc0fcmvq****
|
|
16474
16838
|
*/
|
|
16475
16839
|
vpcId?: string;
|
|
16840
|
+
/**
|
|
16841
|
+
* @remarks
|
|
16842
|
+
* The vSwitches for the control plane of the cluster.
|
|
16843
|
+
*/
|
|
16476
16844
|
vswitchIds?: string[];
|
|
16477
16845
|
static names(): {
|
|
16478
16846
|
[key: string]: string;
|
|
@@ -16486,16 +16854,25 @@ export declare class DescribeClustersForRegionResponseBodyClusters extends $tea.
|
|
|
16486
16854
|
}
|
|
16487
16855
|
export declare class DescribeClustersForRegionResponseBodyPageInfo extends $tea.Model {
|
|
16488
16856
|
/**
|
|
16857
|
+
* @remarks
|
|
16858
|
+
* The number of pages.
|
|
16859
|
+
*
|
|
16489
16860
|
* @example
|
|
16490
16861
|
* 1
|
|
16491
16862
|
*/
|
|
16492
16863
|
pageNumber?: number;
|
|
16493
16864
|
/**
|
|
16865
|
+
* @remarks
|
|
16866
|
+
* The number of records on each page.
|
|
16867
|
+
*
|
|
16494
16868
|
* @example
|
|
16495
16869
|
* 10
|
|
16496
16870
|
*/
|
|
16497
16871
|
pageSize?: number;
|
|
16498
16872
|
/**
|
|
16873
|
+
* @remarks
|
|
16874
|
+
* The total number of entries returned.
|
|
16875
|
+
*
|
|
16499
16876
|
* @example
|
|
16500
16877
|
* 10
|
|
16501
16878
|
*/
|
|
@@ -17303,16 +17680,25 @@ export declare class DescribeEventsResponseBodyPageInfo extends $tea.Model {
|
|
|
17303
17680
|
}
|
|
17304
17681
|
export declare class DescribeEventsForRegionResponseBodyEventsData extends $tea.Model {
|
|
17305
17682
|
/**
|
|
17683
|
+
* @remarks
|
|
17684
|
+
* The severity level of the event.
|
|
17685
|
+
*
|
|
17306
17686
|
* @example
|
|
17307
17687
|
* info
|
|
17308
17688
|
*/
|
|
17309
17689
|
level?: string;
|
|
17310
17690
|
/**
|
|
17691
|
+
* @remarks
|
|
17692
|
+
* The details of the event.
|
|
17693
|
+
*
|
|
17311
17694
|
* @example
|
|
17312
17695
|
* Start to upgrade NodePool nodePool/nodePool-A
|
|
17313
17696
|
*/
|
|
17314
17697
|
message?: string;
|
|
17315
17698
|
/**
|
|
17699
|
+
* @remarks
|
|
17700
|
+
* The event status.
|
|
17701
|
+
*
|
|
17316
17702
|
* @example
|
|
17317
17703
|
* Started
|
|
17318
17704
|
*/
|
|
@@ -17329,28 +17715,51 @@ export declare class DescribeEventsForRegionResponseBodyEventsData extends $tea.
|
|
|
17329
17715
|
}
|
|
17330
17716
|
export declare class DescribeEventsForRegionResponseBodyEvents extends $tea.Model {
|
|
17331
17717
|
/**
|
|
17718
|
+
* @remarks
|
|
17719
|
+
* The cluster ID.
|
|
17720
|
+
*
|
|
17332
17721
|
* @example
|
|
17333
17722
|
* cluster-id
|
|
17334
17723
|
*/
|
|
17335
17724
|
clusterId?: string;
|
|
17725
|
+
/**
|
|
17726
|
+
* @remarks
|
|
17727
|
+
* The description of the event.
|
|
17728
|
+
*/
|
|
17336
17729
|
data?: DescribeEventsForRegionResponseBodyEventsData;
|
|
17337
17730
|
/**
|
|
17731
|
+
* @remarks
|
|
17732
|
+
* The event ID.
|
|
17733
|
+
*
|
|
17338
17734
|
* @example
|
|
17339
17735
|
* A234-1234-1234
|
|
17340
17736
|
*/
|
|
17341
17737
|
eventId?: string;
|
|
17738
|
+
/**
|
|
17739
|
+
* @remarks
|
|
17740
|
+
* The event source.
|
|
17741
|
+
*/
|
|
17342
17742
|
source?: string;
|
|
17343
17743
|
/**
|
|
17744
|
+
* @remarks
|
|
17745
|
+
* The object associated with the event.
|
|
17746
|
+
*
|
|
17344
17747
|
* @example
|
|
17345
17748
|
* nodePool-id
|
|
17346
17749
|
*/
|
|
17347
17750
|
subject?: string;
|
|
17348
17751
|
/**
|
|
17752
|
+
* @remarks
|
|
17753
|
+
* The time when the event was generated.
|
|
17754
|
+
*
|
|
17349
17755
|
* @example
|
|
17350
17756
|
* 2020-12-01T17:31:00Z
|
|
17351
17757
|
*/
|
|
17352
17758
|
time?: string;
|
|
17353
17759
|
/**
|
|
17760
|
+
* @remarks
|
|
17761
|
+
* The event type.
|
|
17762
|
+
*
|
|
17354
17763
|
* @example
|
|
17355
17764
|
* nodePool_upgrade
|
|
17356
17765
|
*/
|
|
@@ -17367,16 +17776,25 @@ export declare class DescribeEventsForRegionResponseBodyEvents extends $tea.Mode
|
|
|
17367
17776
|
}
|
|
17368
17777
|
export declare class DescribeEventsForRegionResponseBodyPageInfo extends $tea.Model {
|
|
17369
17778
|
/**
|
|
17779
|
+
* @remarks
|
|
17780
|
+
* The number of pages.
|
|
17781
|
+
*
|
|
17370
17782
|
* @example
|
|
17371
17783
|
* 1
|
|
17372
17784
|
*/
|
|
17373
17785
|
pageNumber?: number;
|
|
17374
17786
|
/**
|
|
17787
|
+
* @remarks
|
|
17788
|
+
* The number of records on each page.
|
|
17789
|
+
*
|
|
17375
17790
|
* @example
|
|
17376
17791
|
* 50
|
|
17377
17792
|
*/
|
|
17378
17793
|
pageSize?: number;
|
|
17379
17794
|
/**
|
|
17795
|
+
* @remarks
|
|
17796
|
+
* The total number of entries returned.
|
|
17797
|
+
*
|
|
17380
17798
|
* @example
|
|
17381
17799
|
* 3
|
|
17382
17800
|
*/
|
|
@@ -18047,22 +18465,52 @@ export declare class DescribePolicyInstancesResponseBody extends $tea.Model {
|
|
|
18047
18465
|
*/
|
|
18048
18466
|
policyAction?: string;
|
|
18049
18467
|
/**
|
|
18468
|
+
* @remarks
|
|
18469
|
+
* Creation time (deprecated, do not use).
|
|
18470
|
+
*
|
|
18471
|
+
* @example
|
|
18472
|
+
* 2024-10-29T18:09:12+08:00
|
|
18473
|
+
*
|
|
18050
18474
|
* @deprecated
|
|
18051
18475
|
*/
|
|
18052
18476
|
created?: string;
|
|
18053
18477
|
/**
|
|
18478
|
+
* @remarks
|
|
18479
|
+
* Update time (deprecated, do not use).
|
|
18480
|
+
*
|
|
18481
|
+
* @example
|
|
18482
|
+
* 2024-10-29T18:09:12+08:00
|
|
18483
|
+
*
|
|
18054
18484
|
* @deprecated
|
|
18055
18485
|
*/
|
|
18056
18486
|
updated?: string;
|
|
18057
18487
|
/**
|
|
18488
|
+
* @remarks
|
|
18489
|
+
* Resource ID (deprecated, do not use).
|
|
18490
|
+
*
|
|
18491
|
+
* @example
|
|
18492
|
+
* 123456***
|
|
18493
|
+
*
|
|
18058
18494
|
* @deprecated
|
|
18059
18495
|
*/
|
|
18060
18496
|
resourceId?: string;
|
|
18061
18497
|
/**
|
|
18498
|
+
* @remarks
|
|
18499
|
+
* Violation count processing in the cluster (deprecated, do not use).
|
|
18500
|
+
*
|
|
18501
|
+
* @example
|
|
18502
|
+
* 0
|
|
18503
|
+
*
|
|
18062
18504
|
* @deprecated
|
|
18063
18505
|
*/
|
|
18064
18506
|
totalViolations?: number;
|
|
18065
18507
|
/**
|
|
18508
|
+
* @remarks
|
|
18509
|
+
* Deletion status (deprecated, do not use).
|
|
18510
|
+
*
|
|
18511
|
+
* @example
|
|
18512
|
+
* 0
|
|
18513
|
+
*
|
|
18066
18514
|
* @deprecated
|
|
18067
18515
|
*/
|
|
18068
18516
|
isDeleted?: number;
|
|
@@ -19750,6 +20198,41 @@ export declare class ModifyClusterRequestApiServerCustomCertSans extends $tea.Mo
|
|
|
19750
20198
|
[key: string]: any;
|
|
19751
20199
|
});
|
|
19752
20200
|
}
|
|
20201
|
+
export declare class ModifyClusterRequestControlPlaneConfig extends $tea.Model {
|
|
20202
|
+
autoRenew?: boolean;
|
|
20203
|
+
autoRenewPeriod?: number;
|
|
20204
|
+
chargeType?: string;
|
|
20205
|
+
cloudMonitorFlags?: boolean;
|
|
20206
|
+
cpuPolicy?: string;
|
|
20207
|
+
deploymentsetId?: string;
|
|
20208
|
+
imageId?: string;
|
|
20209
|
+
imageType?: string;
|
|
20210
|
+
instanceTypes?: string[];
|
|
20211
|
+
keyPair?: string;
|
|
20212
|
+
loginPassword?: string;
|
|
20213
|
+
nodePortRange?: string;
|
|
20214
|
+
period?: number;
|
|
20215
|
+
periodUnit?: string;
|
|
20216
|
+
runtime?: string;
|
|
20217
|
+
securityHardeningOs?: boolean;
|
|
20218
|
+
size?: number;
|
|
20219
|
+
socEnabled?: boolean;
|
|
20220
|
+
systemDiskBurstingEnabled?: boolean;
|
|
20221
|
+
systemDiskCategory?: string;
|
|
20222
|
+
systemDiskPerformanceLevel?: string;
|
|
20223
|
+
systemDiskProvisionedIops?: number;
|
|
20224
|
+
systemDiskSize?: number;
|
|
20225
|
+
systemDiskSnapshotPolicyId?: string;
|
|
20226
|
+
static names(): {
|
|
20227
|
+
[key: string]: string;
|
|
20228
|
+
};
|
|
20229
|
+
static types(): {
|
|
20230
|
+
[key: string]: any;
|
|
20231
|
+
};
|
|
20232
|
+
constructor(map?: {
|
|
20233
|
+
[key: string]: any;
|
|
20234
|
+
});
|
|
20235
|
+
}
|
|
19753
20236
|
export declare class ModifyClusterRequestOperationPolicyClusterAutoUpgrade extends $tea.Model {
|
|
19754
20237
|
/**
|
|
19755
20238
|
* @remarks
|
|
@@ -20777,7 +21260,7 @@ export declare class ModifyClusterNodePoolRequestTeeConfig extends $tea.Model {
|
|
|
20777
21260
|
export declare class ModifyNodePoolNodeConfigRequestOsConfig extends $tea.Model {
|
|
20778
21261
|
/**
|
|
20779
21262
|
* @remarks
|
|
20780
|
-
* sysctl
|
|
21263
|
+
* The sysctl configuration.
|
|
20781
21264
|
*/
|
|
20782
21265
|
sysctl?: {
|
|
20783
21266
|
[key: string]: any;
|
|
@@ -22069,7 +22552,7 @@ export default class Client extends OpenApi {
|
|
|
22069
22552
|
*/
|
|
22070
22553
|
describeClusters(request: DescribeClustersRequest): Promise<DescribeClustersResponse>;
|
|
22071
22554
|
/**
|
|
22072
|
-
*
|
|
22555
|
+
* Queries all clusters in a specified region.
|
|
22073
22556
|
*
|
|
22074
22557
|
* @param request - DescribeClustersForRegionRequest
|
|
22075
22558
|
* @param headers - map
|
|
@@ -22080,7 +22563,7 @@ export default class Client extends OpenApi {
|
|
|
22080
22563
|
[key: string]: string;
|
|
22081
22564
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeClustersForRegionResponse>;
|
|
22082
22565
|
/**
|
|
22083
|
-
*
|
|
22566
|
+
* Queries all clusters in a specified region.
|
|
22084
22567
|
*
|
|
22085
22568
|
* @param request - DescribeClustersForRegionRequest
|
|
22086
22569
|
* @returns DescribeClustersForRegionResponse
|
|
@@ -22186,7 +22669,7 @@ export default class Client extends OpenApi {
|
|
|
22186
22669
|
*/
|
|
22187
22670
|
describeEvents(request: DescribeEventsRequest): Promise<DescribeEventsResponse>;
|
|
22188
22671
|
/**
|
|
22189
|
-
*
|
|
22672
|
+
* Queries all events in a specified region.
|
|
22190
22673
|
*
|
|
22191
22674
|
* @param request - DescribeEventsForRegionRequest
|
|
22192
22675
|
* @param headers - map
|
|
@@ -22197,7 +22680,7 @@ export default class Client extends OpenApi {
|
|
|
22197
22680
|
[key: string]: string;
|
|
22198
22681
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeEventsForRegionResponse>;
|
|
22199
22682
|
/**
|
|
22200
|
-
*
|
|
22683
|
+
* Queries all events in a specified region.
|
|
22201
22684
|
*
|
|
22202
22685
|
* @param request - DescribeEventsForRegionRequest
|
|
22203
22686
|
* @returns DescribeEventsForRegionResponse
|
|
@@ -23131,9 +23614,10 @@ export default class Client extends OpenApi {
|
|
|
23131
23614
|
* Removes nodes from a node pool.
|
|
23132
23615
|
*
|
|
23133
23616
|
* @remarks
|
|
23134
|
-
*
|
|
23135
|
-
*
|
|
23136
|
-
*
|
|
23617
|
+
* - When you remove a node, the pods that run on the node are migrated to other nodes. This may cause service interruptions. We recommend that you remove nodes during off-peak hours.
|
|
23618
|
+
* - The operation may have unexpected risks. Back up the data before you perform this operation.
|
|
23619
|
+
* - When the system removes a node, it sets the status of the node to Unschedulable.
|
|
23620
|
+
* - The system removes only worker nodes. It does not remove master nodes.
|
|
23137
23621
|
*
|
|
23138
23622
|
* @param tmpReq - RemoveNodePoolNodesRequest
|
|
23139
23623
|
* @param headers - map
|
|
@@ -23147,9 +23631,10 @@ export default class Client extends OpenApi {
|
|
|
23147
23631
|
* Removes nodes from a node pool.
|
|
23148
23632
|
*
|
|
23149
23633
|
* @remarks
|
|
23150
|
-
*
|
|
23151
|
-
*
|
|
23152
|
-
*
|
|
23634
|
+
* - When you remove a node, the pods that run on the node are migrated to other nodes. This may cause service interruptions. We recommend that you remove nodes during off-peak hours.
|
|
23635
|
+
* - The operation may have unexpected risks. Back up the data before you perform this operation.
|
|
23636
|
+
* - When the system removes a node, it sets the status of the node to Unschedulable.
|
|
23637
|
+
* - The system removes only worker nodes. It does not remove master nodes.
|
|
23153
23638
|
*
|
|
23154
23639
|
* @param request - RemoveNodePoolNodesRequest
|
|
23155
23640
|
* @returns RemoveNodePoolNodesResponse
|