@alicloud/cs20151215 6.6.5 → 6.7.0
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 +26 -8
- package/dist/client.js +53 -8
- package/dist/client.js.map +1 -1
- package/dist/models/CreateClusterNodePoolRequest.d.ts +396 -287
- package/dist/models/CreateClusterNodePoolRequest.js.map +1 -1
- package/dist/models/CreateClusterNodePoolResponseBody.d.ts +1 -1
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.d.ts +241 -244
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.js.map +1 -1
- package/dist/models/DescribeClusterNodePoolsRequest.d.ts +1 -1
- package/dist/models/DescribeClusterNodePoolsResponseBody.d.ts +254 -254
- package/dist/models/ModifyClusterNodePoolRequest.d.ts +225 -218
- package/dist/models/ModifyClusterNodePoolRequest.js.map +1 -1
- package/dist/models/Nodepool.d.ts +183 -183
- package/dist/models/RunNodeOperationRequest.d.ts +22 -0
- package/dist/models/RunNodeOperationRequest.js +63 -0
- package/dist/models/RunNodeOperationRequest.js.map +1 -0
- package/dist/models/RunNodeOperationResponse.d.ts +19 -0
- package/dist/models/RunNodeOperationResponse.js +69 -0
- package/dist/models/RunNodeOperationResponse.js.map +1 -0
- package/dist/models/RunNodeOperationResponseBody.d.ts +28 -0
- package/dist/models/RunNodeOperationResponseBody.js +62 -0
- package/dist/models/RunNodeOperationResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +57 -8
- package/src/models/CreateClusterNodePoolRequest.ts +397 -288
- package/src/models/CreateClusterNodePoolResponseBody.ts +1 -1
- package/src/models/DescribeClusterNodePoolDetailResponseBody.ts +241 -244
- package/src/models/DescribeClusterNodePoolsRequest.ts +1 -1
- package/src/models/DescribeClusterNodePoolsResponseBody.ts +254 -254
- package/src/models/ModifyClusterNodePoolRequest.ts +225 -218
- package/src/models/Nodepool.ts +183 -183
- package/src/models/RunNodeOperationRequest.ts +40 -0
- package/src/models/RunNodeOperationResponse.ts +40 -0
- package/src/models/RunNodeOperationResponseBody.ts +45 -0
- package/src/models/model.ts +3 -0
|
@@ -12,7 +12,7 @@ import { Taint } from "./Taint";
|
|
|
12
12
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode extends $dara.Model {
|
|
13
13
|
/**
|
|
14
14
|
* @remarks
|
|
15
|
-
* Indicates whether
|
|
15
|
+
* Indicates whether to enable intelligent hosting.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
18
|
* true
|
|
@@ -42,9 +42,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode extends $dara
|
|
|
42
42
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $dara.Model {
|
|
43
43
|
/**
|
|
44
44
|
* @remarks
|
|
45
|
-
*
|
|
45
|
+
* The maximum bandwidth of the EIP.
|
|
46
46
|
*
|
|
47
|
-
* Valid values:
|
|
47
|
+
* Valid values: 1 to 100. Unit: Mbit/s.
|
|
48
48
|
*
|
|
49
49
|
* @example
|
|
50
50
|
* 5
|
|
@@ -52,11 +52,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
52
52
|
eipBandwidth?: number;
|
|
53
53
|
/**
|
|
54
54
|
* @remarks
|
|
55
|
-
*
|
|
55
|
+
* The billing method of the EIP. Valid values:
|
|
56
56
|
*
|
|
57
|
-
* - `PayByBandwidth`:
|
|
57
|
+
* - `PayByBandwidth`: pay-by-bandwidth.
|
|
58
58
|
*
|
|
59
|
-
* - `PayByTraffic`:
|
|
59
|
+
* - `PayByTraffic`: pay-by-traffic.
|
|
60
60
|
*
|
|
61
61
|
* @example
|
|
62
62
|
* PayByBandwidth
|
|
@@ -64,13 +64,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
64
64
|
eipInternetChargeType?: string;
|
|
65
65
|
/**
|
|
66
66
|
* @remarks
|
|
67
|
-
* Indicates whether
|
|
67
|
+
* Indicates whether auto scaling is enabled. Valid values:
|
|
68
68
|
*
|
|
69
|
-
* - `true`: Enables
|
|
69
|
+
* - `true`: Enables auto scaling for the node pool. When cluster resources are insufficient for pod scheduling, ACK automatically scales nodes based on the configured minimum and maximum number of instances. For clusters running Kubernetes 1.24 or later, on-demand node scaling is enabled by default. For clusters running Kubernetes versions earlier than 1.24, node autoscaling is enabled by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
|
|
70
70
|
*
|
|
71
|
-
* - `false`:
|
|
71
|
+
* - `false`: Auto scaling is disabled. ACK adjusts the number of nodes in the node pool to the expected number of nodes.
|
|
72
72
|
*
|
|
73
|
-
* If this parameter is set to false, other parameters in
|
|
73
|
+
* If this parameter is set to false, other parameters in the auto_scaling object do not take effect.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* true
|
|
@@ -78,11 +78,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
78
78
|
enable?: boolean;
|
|
79
79
|
/**
|
|
80
80
|
* @remarks
|
|
81
|
-
* Indicates whether an EIP
|
|
81
|
+
* Indicates whether to associate an EIP with the node. Valid values:
|
|
82
82
|
*
|
|
83
|
-
* - `true`:
|
|
83
|
+
* - `true`: Associates an EIP with the node.
|
|
84
84
|
*
|
|
85
|
-
* - `false`: Does not
|
|
85
|
+
* - `false`: Does not associate an EIP with the node.
|
|
86
86
|
*
|
|
87
87
|
* @example
|
|
88
88
|
* true
|
|
@@ -90,7 +90,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
90
90
|
isBondEip?: boolean;
|
|
91
91
|
/**
|
|
92
92
|
* @remarks
|
|
93
|
-
*
|
|
93
|
+
* The maximum number of instances that can be created in the node pool. This value does not include existing instances.
|
|
94
94
|
*
|
|
95
95
|
* @example
|
|
96
96
|
* 10
|
|
@@ -98,7 +98,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
98
98
|
maxInstances?: number;
|
|
99
99
|
/**
|
|
100
100
|
* @remarks
|
|
101
|
-
*
|
|
101
|
+
* The minimum number of instances that must be kept in the node pool. This value does not include existing instances.
|
|
102
102
|
*
|
|
103
103
|
* @example
|
|
104
104
|
* 2
|
|
@@ -106,15 +106,15 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
106
106
|
minInstances?: number;
|
|
107
107
|
/**
|
|
108
108
|
* @remarks
|
|
109
|
-
*
|
|
109
|
+
* The type of auto scaling. This parameter specifies the type of instances that are used for auto scaling. Valid values:
|
|
110
110
|
*
|
|
111
|
-
* - `cpu`:
|
|
111
|
+
* - `cpu`: regular instances.
|
|
112
112
|
*
|
|
113
|
-
* - `gpu`: GPU
|
|
113
|
+
* - `gpu`: GPU-accelerated instances.
|
|
114
114
|
*
|
|
115
|
-
* - `gpushare`:
|
|
115
|
+
* - `gpushare`: shared GPU-accelerated instances.
|
|
116
116
|
*
|
|
117
|
-
* - `spot`:
|
|
117
|
+
* - `spot`: spot instances.
|
|
118
118
|
*
|
|
119
119
|
* @example
|
|
120
120
|
* cpu
|
|
@@ -156,7 +156,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $d
|
|
|
156
156
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup extends $dara.Model {
|
|
157
157
|
/**
|
|
158
158
|
* @remarks
|
|
159
|
-
* Lingjun cluster
|
|
159
|
+
* The ID of the Lingjun cluster.
|
|
160
160
|
*
|
|
161
161
|
* @example
|
|
162
162
|
* i113790071760688002461
|
|
@@ -164,7 +164,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup extends
|
|
|
164
164
|
clusterId?: string;
|
|
165
165
|
/**
|
|
166
166
|
* @remarks
|
|
167
|
-
* Lingjun group
|
|
167
|
+
* The ID of the Lingjun group.
|
|
168
168
|
*
|
|
169
169
|
* @example
|
|
170
170
|
* i128147721760688002463
|
|
@@ -196,9 +196,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup extends
|
|
|
196
196
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig extends $dara.Model {
|
|
197
197
|
/**
|
|
198
198
|
* @remarks
|
|
199
|
-
* [This
|
|
199
|
+
* [This parameter is deprecated]
|
|
200
200
|
*
|
|
201
|
-
*
|
|
201
|
+
* The network bandwidth of the enhanced edge node pool. Unit: Mbit/s.
|
|
202
202
|
*
|
|
203
203
|
* @example
|
|
204
204
|
* 10
|
|
@@ -206,9 +206,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig ext
|
|
|
206
206
|
bandwidth?: number;
|
|
207
207
|
/**
|
|
208
208
|
* @remarks
|
|
209
|
-
* [This
|
|
209
|
+
* [This parameter is deprecated]
|
|
210
210
|
*
|
|
211
|
-
* CCN instance
|
|
211
|
+
* The ID of the Cloud Connect Network (CCN) instance that is associated with the enhanced edge node pool.
|
|
212
212
|
*
|
|
213
213
|
* @example
|
|
214
214
|
* ccn-qm5i0i0q9yi*******
|
|
@@ -216,9 +216,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig ext
|
|
|
216
216
|
ccnId?: string;
|
|
217
217
|
/**
|
|
218
218
|
* @remarks
|
|
219
|
-
* [This
|
|
219
|
+
* [This parameter is deprecated]
|
|
220
220
|
*
|
|
221
|
-
*
|
|
221
|
+
* The region where the CCN instance associated with the enhanced edge node pool resides.
|
|
222
222
|
*
|
|
223
223
|
* @example
|
|
224
224
|
* cn-shanghai
|
|
@@ -226,9 +226,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig ext
|
|
|
226
226
|
ccnRegionId?: string;
|
|
227
227
|
/**
|
|
228
228
|
* @remarks
|
|
229
|
-
* [This
|
|
229
|
+
* [This parameter is deprecated]
|
|
230
230
|
*
|
|
231
|
-
* CEN instance
|
|
231
|
+
* The ID of the Cloud Enterprise Network (CEN) instance that is associated with the enhanced edge node pool.
|
|
232
232
|
*
|
|
233
233
|
* @example
|
|
234
234
|
* cen-ey9k9nfhz0f*******
|
|
@@ -236,9 +236,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig ext
|
|
|
236
236
|
cenId?: string;
|
|
237
237
|
/**
|
|
238
238
|
* @remarks
|
|
239
|
-
* [This
|
|
239
|
+
* [This parameter is deprecated]
|
|
240
240
|
*
|
|
241
|
-
*
|
|
241
|
+
* The subscription duration of the enhanced edge node pool. Unit: month.
|
|
242
242
|
*
|
|
243
243
|
* @example
|
|
244
244
|
* 1
|
|
@@ -276,11 +276,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig ext
|
|
|
276
276
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig extends $dara.Model {
|
|
277
277
|
/**
|
|
278
278
|
* @remarks
|
|
279
|
-
* Indicates whether
|
|
279
|
+
* Indicates whether to install CloudMonitor on the ECS nodes. After CloudMonitor is installed, you can view the monitoring information of the created ECS instances in the CloudMonitor console. We recommend that you enable this feature. Valid values:
|
|
280
280
|
*
|
|
281
|
-
* - `true`: Installs
|
|
281
|
+
* - `true`: Installs CloudMonitor on the ECS nodes.
|
|
282
282
|
*
|
|
283
|
-
* - `false`: Does not install
|
|
283
|
+
* - `false`: Does not install CloudMonitor on the ECS nodes
|
|
284
284
|
*
|
|
285
285
|
* @example
|
|
286
286
|
* true
|
|
@@ -288,11 +288,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
288
288
|
cmsEnabled?: boolean;
|
|
289
289
|
/**
|
|
290
290
|
* @remarks
|
|
291
|
-
*
|
|
291
|
+
* The CPU management policy of the node. The following policies are supported for clusters of Kubernetes 1.12.6 and later:
|
|
292
292
|
*
|
|
293
|
-
* - `static`:
|
|
293
|
+
* - `static`: allows pods with specific resource characteristics on the node to be granted enhanced CPU affinity and exclusivity.
|
|
294
294
|
*
|
|
295
|
-
* - `none`:
|
|
295
|
+
* - `none`: indicates that the default CPU affinity scheme is enabled.
|
|
296
296
|
*
|
|
297
297
|
* @example
|
|
298
298
|
* none
|
|
@@ -300,20 +300,20 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
300
300
|
cpuPolicy?: string;
|
|
301
301
|
/**
|
|
302
302
|
* @remarks
|
|
303
|
-
*
|
|
303
|
+
* The node labels.
|
|
304
304
|
*/
|
|
305
305
|
labels?: Tag[];
|
|
306
306
|
/**
|
|
307
307
|
* @remarks
|
|
308
|
-
*
|
|
308
|
+
* The custom node name.
|
|
309
309
|
*
|
|
310
|
-
* A node name consists of three parts: prefix
|
|
310
|
+
* A node name consists of three parts: a prefix, the middle part of an IP address, and a suffix:
|
|
311
311
|
*
|
|
312
|
-
* -
|
|
312
|
+
* - The prefix and suffix can contain one or more parts that are separated by periods (.). Each part can contain lowercase letters, digits, and hyphens (-). The node name must start and end with a lowercase letter or a digit.
|
|
313
313
|
*
|
|
314
|
-
* - The IP address
|
|
314
|
+
* - The IP address segment length specifies the number of digits to be truncated from the end of the node IP address. Valid values: 5 to 12.
|
|
315
315
|
*
|
|
316
|
-
*
|
|
316
|
+
* For example, if the node IP address is 192.1.168.0.55, the prefix is aliyun.com, the IP address segment length is 5, and the suffix is test, the node name is aliyun.com00055test.
|
|
317
317
|
*
|
|
318
318
|
* @example
|
|
319
319
|
* aliyun.com192.XX.YY.55test
|
|
@@ -321,7 +321,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
321
321
|
nodeNameMode?: string;
|
|
322
322
|
/**
|
|
323
323
|
* @remarks
|
|
324
|
-
*
|
|
324
|
+
* The pre-custom data of the node pool. The script is run before the node is initialized. For more information, see [Generate instance user data](https://help.aliyun.com/document_detail/49121.html).
|
|
325
325
|
*
|
|
326
326
|
* @example
|
|
327
327
|
* IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFD
|
|
@@ -329,13 +329,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
329
329
|
preUserData?: string;
|
|
330
330
|
/**
|
|
331
331
|
* @remarks
|
|
332
|
-
*
|
|
332
|
+
* The name of the container runtime. ACK supports the following container runtimes.
|
|
333
333
|
*
|
|
334
|
-
* - containerd:
|
|
334
|
+
* - containerd: recommended. This runtime is supported by all cluster versions.
|
|
335
335
|
*
|
|
336
|
-
* - Sandboxed-Container.runv:
|
|
336
|
+
* - Sandboxed-Container.runv: a sandboxed container that provides higher isolation. This runtime is supported by clusters of Kubernetes 1.31 and earlier.
|
|
337
337
|
*
|
|
338
|
-
* - docker:
|
|
338
|
+
* - docker: no longer maintained. This runtime is supported by clusters of Kubernetes 1.22 and earlier.
|
|
339
339
|
*
|
|
340
340
|
* @example
|
|
341
341
|
* containerd
|
|
@@ -343,7 +343,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
343
343
|
runtime?: string;
|
|
344
344
|
/**
|
|
345
345
|
* @remarks
|
|
346
|
-
*
|
|
346
|
+
* The version of the container runtime.
|
|
347
347
|
*
|
|
348
348
|
* @example
|
|
349
349
|
* 1.6.38
|
|
@@ -351,16 +351,16 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
351
351
|
runtimeVersion?: string;
|
|
352
352
|
/**
|
|
353
353
|
* @remarks
|
|
354
|
-
*
|
|
354
|
+
* The node taints. Taints and tolerations work together to prevent pods from being scheduled to unsuitable nodes. For more information, see [Taints and Tolerations](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
355
355
|
*/
|
|
356
356
|
taints?: Taint[];
|
|
357
357
|
/**
|
|
358
358
|
* @remarks
|
|
359
|
-
* Indicates whether
|
|
359
|
+
* Indicates whether the scaled-out nodes are unschedulable.
|
|
360
360
|
*
|
|
361
|
-
* - true:
|
|
361
|
+
* - true: The scaled-out nodes are unschedulable.
|
|
362
362
|
*
|
|
363
|
-
* - false:
|
|
363
|
+
* - false: The scaled-out nodes are schedulable.
|
|
364
364
|
*
|
|
365
365
|
* @example
|
|
366
366
|
* true
|
|
@@ -368,7 +368,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig exten
|
|
|
368
368
|
unschedulable?: boolean;
|
|
369
369
|
/**
|
|
370
370
|
* @remarks
|
|
371
|
-
*
|
|
371
|
+
* The custom data of the node pool. The script is run after the node is initialized. For more information, see [Generate instance user data](https://help.aliyun.com/document_detail/49121.html).
|
|
372
372
|
*
|
|
373
373
|
* @example
|
|
374
374
|
* IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFD****
|
|
@@ -430,7 +430,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPo
|
|
|
430
430
|
approvalRequired?: boolean;
|
|
431
431
|
/**
|
|
432
432
|
* @remarks
|
|
433
|
-
* ID of the
|
|
433
|
+
* The ID of the auto repair policy
|
|
434
434
|
*
|
|
435
435
|
* @example
|
|
436
436
|
* r-xxxxxxxxx
|
|
@@ -438,11 +438,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPo
|
|
|
438
438
|
autoRepairPolicyId?: string;
|
|
439
439
|
/**
|
|
440
440
|
* @remarks
|
|
441
|
-
* Indicates whether node restart
|
|
441
|
+
* Indicates whether to allow node restart. This parameter takes effect only when auto_repair is set to true.
|
|
442
442
|
*
|
|
443
443
|
* - `true`: Allows node restart.
|
|
444
444
|
*
|
|
445
|
-
* - `false`:
|
|
445
|
+
* - `false`: Does not allow node restart.
|
|
446
446
|
*
|
|
447
447
|
* @example
|
|
448
448
|
* true
|
|
@@ -476,11 +476,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPo
|
|
|
476
476
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradePolicy extends $dara.Model {
|
|
477
477
|
/**
|
|
478
478
|
* @remarks
|
|
479
|
-
* Indicates whether
|
|
479
|
+
* Indicates whether to allow auto update of the kubelet. This parameter takes effect only when auto_upgrade is set to true. Valid values:
|
|
480
480
|
*
|
|
481
|
-
* - `true`: Allows kubelet
|
|
481
|
+
* - `true`: Allows auto update of the kubelet.
|
|
482
482
|
*
|
|
483
|
-
* - `false`:
|
|
483
|
+
* - `false`: Does not allow auto update of the kubelet.
|
|
484
484
|
*
|
|
485
485
|
* @example
|
|
486
486
|
* true
|
|
@@ -510,7 +510,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradeP
|
|
|
510
510
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPolicy extends $dara.Model {
|
|
511
511
|
/**
|
|
512
512
|
* @remarks
|
|
513
|
-
*
|
|
513
|
+
* The packages that should be excluded during CVE fixing.
|
|
514
514
|
*
|
|
515
515
|
* @example
|
|
516
516
|
* kernel
|
|
@@ -518,11 +518,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPo
|
|
|
518
518
|
excludePackages?: string;
|
|
519
519
|
/**
|
|
520
520
|
* @remarks
|
|
521
|
-
* Indicates whether node restart
|
|
521
|
+
* Indicates whether to allow node restart. This parameter takes effect only when auto_vul_fix is set to true. Valid values:
|
|
522
522
|
*
|
|
523
523
|
* - `true`: Allows node restart.
|
|
524
524
|
*
|
|
525
|
-
* - `false`:
|
|
525
|
+
* - `false`: Does not allow node restart.
|
|
526
526
|
*
|
|
527
527
|
* @example
|
|
528
528
|
* true
|
|
@@ -530,13 +530,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPo
|
|
|
530
530
|
restartNode?: boolean;
|
|
531
531
|
/**
|
|
532
532
|
* @remarks
|
|
533
|
-
*
|
|
533
|
+
* The CVE levels that are allowed to be automatically fixed. Separate multiple CVE levels with commas.
|
|
534
534
|
*
|
|
535
|
-
* - `asap`:
|
|
535
|
+
* - `asap`: high
|
|
536
536
|
*
|
|
537
|
-
* - `later`:
|
|
537
|
+
* - `later`: medium
|
|
538
538
|
*
|
|
539
|
-
* - `nntf`:
|
|
539
|
+
* - `nntf`: low
|
|
540
540
|
*
|
|
541
541
|
* @example
|
|
542
542
|
* asap,nntf
|
|
@@ -570,11 +570,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPo
|
|
|
570
570
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfig extends $dara.Model {
|
|
571
571
|
/**
|
|
572
572
|
* @remarks
|
|
573
|
-
* Indicates whether auto
|
|
573
|
+
* Indicates whether to enable auto update. Valid values:
|
|
574
574
|
*
|
|
575
|
-
* - `true`: Enables auto
|
|
575
|
+
* - `true`: Enables auto update.
|
|
576
576
|
*
|
|
577
|
-
* - `false`: Disables auto
|
|
577
|
+
* - `false`: Disables auto update.
|
|
578
578
|
*
|
|
579
579
|
* @example
|
|
580
580
|
* true
|
|
@@ -582,7 +582,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfi
|
|
|
582
582
|
autoUpgrade?: boolean;
|
|
583
583
|
/**
|
|
584
584
|
* @remarks
|
|
585
|
-
*
|
|
585
|
+
* The maximum number of unavailable nodes. Valid values: 1 to 1000
|
|
586
586
|
*
|
|
587
587
|
* Default value: 1.
|
|
588
588
|
*
|
|
@@ -592,7 +592,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfi
|
|
|
592
592
|
maxUnavailable?: number;
|
|
593
593
|
/**
|
|
594
594
|
* @remarks
|
|
595
|
-
*
|
|
595
|
+
* The number of extra nodes. You can specify only one of surge and surge_percentage.
|
|
596
596
|
*
|
|
597
597
|
* @example
|
|
598
598
|
* 5
|
|
@@ -600,9 +600,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfi
|
|
|
600
600
|
surge?: number;
|
|
601
601
|
/**
|
|
602
602
|
* @remarks
|
|
603
|
-
*
|
|
603
|
+
* The percentage of extra nodes. You can specify only one of surge and surge_percentage.
|
|
604
604
|
*
|
|
605
|
-
*
|
|
605
|
+
* The number of extra nodes = Percentage of extra nodes × Number of nodes. For example, if you set the percentage of extra nodes to 50% and the number of existing nodes is 6, three extra nodes are created.
|
|
606
606
|
*
|
|
607
607
|
* @example
|
|
608
608
|
* 50
|
|
@@ -639,11 +639,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
639
639
|
autoFaultDiagnosis?: boolean;
|
|
640
640
|
/**
|
|
641
641
|
* @remarks
|
|
642
|
-
*
|
|
642
|
+
* Indicates whether to enable auto repair. This parameter takes effect only when enable is set to true.
|
|
643
643
|
*
|
|
644
|
-
* - `true`: Enables
|
|
644
|
+
* - `true`: Enables auto repair.
|
|
645
645
|
*
|
|
646
|
-
* - `false`: Disables
|
|
646
|
+
* - `false`: Disables auto repair.
|
|
647
647
|
*
|
|
648
648
|
* @example
|
|
649
649
|
* true
|
|
@@ -651,16 +651,16 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
651
651
|
autoRepair?: boolean;
|
|
652
652
|
/**
|
|
653
653
|
* @remarks
|
|
654
|
-
*
|
|
654
|
+
* The auto repair policy for nodes.
|
|
655
655
|
*/
|
|
656
656
|
autoRepairPolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPolicy;
|
|
657
657
|
/**
|
|
658
658
|
* @remarks
|
|
659
|
-
* Indicates whether
|
|
659
|
+
* Indicates whether to enable auto update. This parameter takes effect only when enable is set to true.
|
|
660
660
|
*
|
|
661
|
-
* - `true`: Enables auto
|
|
661
|
+
* - `true`: Enables auto update.
|
|
662
662
|
*
|
|
663
|
-
* - `false`: Disables auto
|
|
663
|
+
* - `false`: Disables auto update.
|
|
664
664
|
*
|
|
665
665
|
* @example
|
|
666
666
|
* true
|
|
@@ -668,16 +668,16 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
668
668
|
autoUpgrade?: boolean;
|
|
669
669
|
/**
|
|
670
670
|
* @remarks
|
|
671
|
-
*
|
|
671
|
+
* The auto update policy.
|
|
672
672
|
*/
|
|
673
673
|
autoUpgradePolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradePolicy;
|
|
674
674
|
/**
|
|
675
675
|
* @remarks
|
|
676
|
-
* Indicates whether
|
|
676
|
+
* Indicates whether to automatically fix CVEs. This parameter takes effect only when enable is set to true.
|
|
677
677
|
*
|
|
678
|
-
* - `true`:
|
|
678
|
+
* - `true`: Allows CVEs to be automatically fixed.
|
|
679
679
|
*
|
|
680
|
-
* - `false`:
|
|
680
|
+
* - `false`: Does not allow CVEs to be automatically fixed.
|
|
681
681
|
*
|
|
682
682
|
* @example
|
|
683
683
|
* true
|
|
@@ -685,16 +685,16 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
685
685
|
autoVulFix?: boolean;
|
|
686
686
|
/**
|
|
687
687
|
* @remarks
|
|
688
|
-
*
|
|
688
|
+
* The policy for automatically fixing CVEs.
|
|
689
689
|
*/
|
|
690
690
|
autoVulFixPolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPolicy;
|
|
691
691
|
/**
|
|
692
692
|
* @remarks
|
|
693
|
-
* Indicates whether the managed node pool feature
|
|
693
|
+
* Indicates whether to enable the managed node pool feature. Valid values:
|
|
694
694
|
*
|
|
695
|
-
* - `true`: Enables the managed node pool.
|
|
695
|
+
* - `true`: Enables the managed node pool feature.
|
|
696
696
|
*
|
|
697
|
-
* - `false`:
|
|
697
|
+
* - `false`: The managed node pool feature is disabled. If you set this parameter to true, the other parameters take effect.
|
|
698
698
|
*
|
|
699
699
|
* @example
|
|
700
700
|
* true
|
|
@@ -702,7 +702,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
702
702
|
enable?: boolean;
|
|
703
703
|
/**
|
|
704
704
|
* @remarks
|
|
705
|
-
*
|
|
705
|
+
* The auto update configurations. This parameter takes effect only when enable is set to true.
|
|
706
706
|
*/
|
|
707
707
|
upgradeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfig;
|
|
708
708
|
static names(): { [key: string]: string } {
|
|
@@ -757,7 +757,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsManagement extends $da
|
|
|
757
757
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig extends $dara.Model {
|
|
758
758
|
/**
|
|
759
759
|
* @remarks
|
|
760
|
-
*
|
|
760
|
+
* The custom configurations of the node component.
|
|
761
761
|
*/
|
|
762
762
|
customConfig?: { [key: string]: string };
|
|
763
763
|
static names(): { [key: string]: string } {
|
|
@@ -787,12 +787,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig e
|
|
|
787
787
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents extends $dara.Model {
|
|
788
788
|
/**
|
|
789
789
|
* @remarks
|
|
790
|
-
*
|
|
790
|
+
* The configurations of the node component.
|
|
791
791
|
*/
|
|
792
792
|
config?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig;
|
|
793
793
|
/**
|
|
794
794
|
* @remarks
|
|
795
|
-
*
|
|
795
|
+
* The name of the node component.
|
|
796
796
|
*
|
|
797
797
|
* @example
|
|
798
798
|
* kubelet
|
|
@@ -800,7 +800,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents extends
|
|
|
800
800
|
name?: string;
|
|
801
801
|
/**
|
|
802
802
|
* @remarks
|
|
803
|
-
*
|
|
803
|
+
* The version of the node component.
|
|
804
804
|
*
|
|
805
805
|
* @example
|
|
806
806
|
* 1.33.3-aliyun.1
|
|
@@ -837,7 +837,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents extends
|
|
|
837
837
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig extends $dara.Model {
|
|
838
838
|
/**
|
|
839
839
|
* @remarks
|
|
840
|
-
* Hugepage configuration.
|
|
840
|
+
* The Hugepage configuration.
|
|
841
841
|
*/
|
|
842
842
|
hugepage?: Hugepage;
|
|
843
843
|
static names(): { [key: string]: string } {
|
|
@@ -867,12 +867,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig
|
|
|
867
867
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig extends $dara.Model {
|
|
868
868
|
/**
|
|
869
869
|
* @remarks
|
|
870
|
-
* Kubelet parameter
|
|
870
|
+
* The Kubelet parameter configurations.
|
|
871
871
|
*/
|
|
872
872
|
kubeletConfiguration?: KubeletConfig;
|
|
873
873
|
/**
|
|
874
874
|
* @remarks
|
|
875
|
-
*
|
|
875
|
+
* The node OS configurations.
|
|
876
876
|
*/
|
|
877
877
|
nodeOsConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig;
|
|
878
878
|
static names(): { [key: string]: string } {
|
|
@@ -907,7 +907,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig extends $da
|
|
|
907
907
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $dara.Model {
|
|
908
908
|
/**
|
|
909
909
|
* @remarks
|
|
910
|
-
*
|
|
910
|
+
* The time when the node pool was created.
|
|
911
911
|
*
|
|
912
912
|
* @example
|
|
913
913
|
* 2025-04-15T16:33:29.362888807+08:00
|
|
@@ -915,11 +915,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
915
915
|
created?: string;
|
|
916
916
|
/**
|
|
917
917
|
* @remarks
|
|
918
|
-
* Indicates whether the node pool is the default node pool. A cluster
|
|
918
|
+
* Indicates whether the node pool is the default node pool. A cluster has only one default node pool. Valid values:
|
|
919
919
|
*
|
|
920
|
-
* - `true`:
|
|
920
|
+
* - `true`: The node pool is the default node pool.
|
|
921
921
|
*
|
|
922
|
-
* - `false`:
|
|
922
|
+
* - `false`: The node pool is not the default node pool.
|
|
923
923
|
*
|
|
924
924
|
* @example
|
|
925
925
|
* true
|
|
@@ -927,7 +927,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
927
927
|
isDefault?: boolean;
|
|
928
928
|
/**
|
|
929
929
|
* @remarks
|
|
930
|
-
*
|
|
930
|
+
* The name of the node pool.
|
|
931
931
|
*
|
|
932
932
|
* @example
|
|
933
933
|
* default-nodepool
|
|
@@ -935,7 +935,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
935
935
|
name?: string;
|
|
936
936
|
/**
|
|
937
937
|
* @remarks
|
|
938
|
-
*
|
|
938
|
+
* The node pool ID.
|
|
939
939
|
*
|
|
940
940
|
* @example
|
|
941
941
|
* np615c0e0966124216a0412e10afe0****
|
|
@@ -943,7 +943,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
943
943
|
nodepoolId?: string;
|
|
944
944
|
/**
|
|
945
945
|
* @remarks
|
|
946
|
-
*
|
|
946
|
+
* The region ID.
|
|
947
947
|
*
|
|
948
948
|
* @example
|
|
949
949
|
* cn-beijing
|
|
@@ -951,7 +951,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
951
951
|
regionId?: string;
|
|
952
952
|
/**
|
|
953
953
|
* @remarks
|
|
954
|
-
*
|
|
954
|
+
* The resource group ID.
|
|
955
955
|
*
|
|
956
956
|
* @example
|
|
957
957
|
* rg-acfmyvw3wjm****
|
|
@@ -959,13 +959,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
959
959
|
resourceGroupId?: string;
|
|
960
960
|
/**
|
|
961
961
|
* @remarks
|
|
962
|
-
*
|
|
962
|
+
* The type of the node pool. Valid values:
|
|
963
963
|
*
|
|
964
|
-
* - `ess`:
|
|
964
|
+
* - `ess`: a regular node pool. This type of node pool provides managed features and supports automatic scaling.
|
|
965
965
|
*
|
|
966
|
-
* - `edge`:
|
|
966
|
+
* - `edge`: an edge node pool.
|
|
967
967
|
*
|
|
968
|
-
* - `lingjun`: Lingjun node pool.
|
|
968
|
+
* - `lingjun`: a Lingjun node pool.
|
|
969
969
|
*
|
|
970
970
|
* @example
|
|
971
971
|
* ess
|
|
@@ -973,7 +973,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
973
973
|
type?: string;
|
|
974
974
|
/**
|
|
975
975
|
* @remarks
|
|
976
|
-
*
|
|
976
|
+
* The time when the node pool was last updated.
|
|
977
977
|
*
|
|
978
978
|
* @example
|
|
979
979
|
* 2025-04-15T16:33:32.823+08:00
|
|
@@ -1017,7 +1017,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $
|
|
|
1017
1017
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoolOptions extends $dara.Model {
|
|
1018
1018
|
/**
|
|
1019
1019
|
* @remarks
|
|
1020
|
-
*
|
|
1020
|
+
* The private pool ID. This is the ID of the elasticity assurance or capacity reservation.
|
|
1021
1021
|
*
|
|
1022
1022
|
* @example
|
|
1023
1023
|
* eap-bp67acfmxazb4****
|
|
@@ -1025,13 +1025,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoo
|
|
|
1025
1025
|
id?: string;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @remarks
|
|
1028
|
-
*
|
|
1028
|
+
* The type of the private node pool. This parameter specifies the capacity of the private pool that is used to start an instance. The capacity of a private pool is generated after an elasticity assurance or a capacity reservation takes effect. You can select a capacity option when you start an instance. Valid values:
|
|
1029
1029
|
*
|
|
1030
|
-
* - `Open`:
|
|
1030
|
+
* - `Open`: The system automatically matches the capacity of an open private pool. If no matching private pool is found, the resources in the public pool are used.
|
|
1031
1031
|
*
|
|
1032
|
-
* - `Target`:
|
|
1032
|
+
* - `Target`: The system uses the capacity of the specified private pool to start the instance. If the capacity of the private pool is unavailable, the instance fails to be started.
|
|
1033
1033
|
*
|
|
1034
|
-
* - `None`:
|
|
1034
|
+
* - `None`: The instance is started without using the capacity of a private pool.
|
|
1035
1035
|
*
|
|
1036
1036
|
* @example
|
|
1037
1037
|
* Open
|
|
@@ -1063,15 +1063,15 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoo
|
|
|
1063
1063
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupResourcePoolOptions extends $dara.Model {
|
|
1064
1064
|
/**
|
|
1065
1065
|
* @remarks
|
|
1066
|
-
*
|
|
1066
|
+
* The list of private pool IDs.
|
|
1067
1067
|
*/
|
|
1068
1068
|
privatePoolIds?: string[];
|
|
1069
1069
|
/**
|
|
1070
1070
|
* @remarks
|
|
1071
|
-
*
|
|
1072
|
-
* PrivatePoolFirst:
|
|
1073
|
-
* PrivatePoolOnly:
|
|
1074
|
-
* None:
|
|
1071
|
+
* The resource pool policy that is used when an instance is created. Valid values:
|
|
1072
|
+
* PrivatePoolFirst: The private pool is used first.
|
|
1073
|
+
* PrivatePoolOnly: Only the private pool is used.
|
|
1074
|
+
* None: No resource pool policy is used.
|
|
1075
1075
|
*
|
|
1076
1076
|
* @example
|
|
1077
1077
|
* PrivatePoolFirst
|
|
@@ -1106,7 +1106,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupResourcePo
|
|
|
1106
1106
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit extends $dara.Model {
|
|
1107
1107
|
/**
|
|
1108
1108
|
* @remarks
|
|
1109
|
-
*
|
|
1109
|
+
* The instance type of the spot instance.
|
|
1110
1110
|
*
|
|
1111
1111
|
* @example
|
|
1112
1112
|
* ecs.c6.large
|
|
@@ -1114,7 +1114,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceL
|
|
|
1114
1114
|
instanceType?: string;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* @remarks
|
|
1117
|
-
*
|
|
1117
|
+
* The price range for a single instance.
|
|
1118
1118
|
*
|
|
1119
1119
|
* <props="china">
|
|
1120
1120
|
*
|
|
@@ -1156,7 +1156,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceL
|
|
|
1156
1156
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $dara.Model {
|
|
1157
1157
|
/**
|
|
1158
1158
|
* @remarks
|
|
1159
|
-
* Indicates whether auto-renewal
|
|
1159
|
+
* Indicates whether to enable auto-renewal for the nodes. This parameter takes effect only when instance_charge_type is set to PrePaid. Valid values:
|
|
1160
1160
|
*
|
|
1161
1161
|
* - `true`: Enables auto-renewal.
|
|
1162
1162
|
*
|
|
@@ -1168,11 +1168,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1168
1168
|
autoRenew?: boolean;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* @remarks
|
|
1171
|
-
*
|
|
1171
|
+
* The duration of each auto-renewal. Valid values:
|
|
1172
1172
|
*
|
|
1173
|
-
* -
|
|
1173
|
+
* - If PeriodUnit is set to Week: 1, 2, and 3.
|
|
1174
1174
|
*
|
|
1175
|
-
* -
|
|
1175
|
+
* - If PeriodUnit is set to Month: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
1176
1176
|
*
|
|
1177
1177
|
* @example
|
|
1178
1178
|
* 0
|
|
@@ -1180,7 +1180,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1180
1180
|
autoRenewPeriod?: number;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* @remarks
|
|
1183
|
-
* [This
|
|
1183
|
+
* [This parameter is deprecated]
|
|
1184
1184
|
*
|
|
1185
1185
|
* Use the security_hardening_os parameter instead.
|
|
1186
1186
|
*
|
|
@@ -1192,11 +1192,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1192
1192
|
cisEnabled?: boolean;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* @remarks
|
|
1195
|
-
*
|
|
1195
|
+
* If multi_az_policy is set to `COST_OPTIMIZED`, this parameter specifies whether to allow the system to automatically create pay-as-you-go instances to meet the required number of ECS instances when preemptible instances cannot be created due to reasons such as price and inventory. Valid values:
|
|
1196
1196
|
*
|
|
1197
|
-
* - `true`: Allows
|
|
1197
|
+
* - `true`: Allows the system to automatically create pay-as-you-go instances to meet the required number of ECS instances.
|
|
1198
1198
|
*
|
|
1199
|
-
* - `false`:
|
|
1199
|
+
* - `false`: Does not allow the system to automatically create pay-as-you-go instances to meet the required number of ECS instances.
|
|
1200
1200
|
*
|
|
1201
1201
|
* @example
|
|
1202
1202
|
* true
|
|
@@ -1204,12 +1204,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1204
1204
|
compensateWithOnDemand?: boolean;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* @remarks
|
|
1207
|
-
*
|
|
1207
|
+
* The combination of the configurations of the data disks of the node, such as the disk type and size.
|
|
1208
1208
|
*/
|
|
1209
1209
|
dataDisks?: DataDisk[];
|
|
1210
1210
|
/**
|
|
1211
1211
|
* @remarks
|
|
1212
|
-
*
|
|
1212
|
+
* The deployment set ID.
|
|
1213
1213
|
*
|
|
1214
1214
|
* @example
|
|
1215
1215
|
* ds-bp1d19mmbsv3jf6xxxxx
|
|
@@ -1217,7 +1217,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1217
1217
|
deploymentsetId?: string;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* @remarks
|
|
1220
|
-
*
|
|
1220
|
+
* The expected number of nodes in the node pool.
|
|
1221
1221
|
*
|
|
1222
1222
|
* @example
|
|
1223
1223
|
* 2
|
|
@@ -1225,12 +1225,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1225
1225
|
desiredSize?: number;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* @remarks
|
|
1228
|
-
*
|
|
1228
|
+
* The block device initialization configuration.
|
|
1229
1229
|
*/
|
|
1230
1230
|
diskInit?: DiskInit[];
|
|
1231
1231
|
/**
|
|
1232
1232
|
* @remarks
|
|
1233
|
-
*
|
|
1233
|
+
* The custom image ID. You can call the `DescribeKubernetesVersionMetadata` operation to query the images supported by the system.
|
|
1234
1234
|
*
|
|
1235
1235
|
* @example
|
|
1236
1236
|
* aliyun_3_x64_20G_alibase_20241218.vhd
|
|
@@ -1238,17 +1238,17 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1238
1238
|
imageId?: string;
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @remarks
|
|
1241
|
-
*
|
|
1241
|
+
* The OS image type.
|
|
1242
1242
|
*
|
|
1243
|
-
* - `AliyunLinux`:
|
|
1243
|
+
* - `AliyunLinux`: Alibaba Cloud Linux 2 image.
|
|
1244
1244
|
*
|
|
1245
|
-
* - `AliyunLinuxSecurity`:
|
|
1245
|
+
* - `AliyunLinuxSecurity`: Alibaba Cloud Linux 2 UEFI image.
|
|
1246
1246
|
*
|
|
1247
|
-
* - `AliyunLinux3`:
|
|
1247
|
+
* - `AliyunLinux3`: Alibaba Cloud Linux 3 image.
|
|
1248
1248
|
*
|
|
1249
|
-
* - `AliyunLinux3Arm64`:
|
|
1249
|
+
* - `AliyunLinux3Arm64`: Alibaba Cloud Linux 3 ARM image.
|
|
1250
1250
|
*
|
|
1251
|
-
* - `AliyunLinux3Security`:
|
|
1251
|
+
* - `AliyunLinux3Security`: Alibaba Cloud Linux 3 UEFI image.
|
|
1252
1252
|
*
|
|
1253
1253
|
* - `CentOS`: CentOS image.
|
|
1254
1254
|
*
|
|
@@ -1258,7 +1258,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1258
1258
|
*
|
|
1259
1259
|
* - `ContainerOS`: Container-optimized image.
|
|
1260
1260
|
*
|
|
1261
|
-
* - `AliyunLinux3ContainerOptimized`:
|
|
1261
|
+
* - `AliyunLinux3ContainerOptimized`: Alibaba Cloud Linux 3 container-optimized image.
|
|
1262
1262
|
*
|
|
1263
1263
|
* @example
|
|
1264
1264
|
* AliyunLinux3
|
|
@@ -1266,11 +1266,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1266
1266
|
imageType?: string;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* @remarks
|
|
1269
|
-
*
|
|
1269
|
+
* The billing method of the nodes in the node pool. Valid values:
|
|
1270
1270
|
*
|
|
1271
|
-
* - `PrePaid`:
|
|
1271
|
+
* - `PrePaid`: subscription.
|
|
1272
1272
|
*
|
|
1273
|
-
* - `PostPaid`:
|
|
1273
|
+
* - `PostPaid`: pay-as-you-go.
|
|
1274
1274
|
*
|
|
1275
1275
|
* @example
|
|
1276
1276
|
* PostPaid
|
|
@@ -1278,12 +1278,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1278
1278
|
instanceChargeType?: string;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* @remarks
|
|
1281
|
-
*
|
|
1281
|
+
* The instance attribute configurations.
|
|
1282
1282
|
*/
|
|
1283
1283
|
instancePatterns?: InstancePatterns[];
|
|
1284
1284
|
/**
|
|
1285
1285
|
* @remarks
|
|
1286
|
-
*
|
|
1286
|
+
* The list of node instance types. You can select multiple instance types as alternatives. When a node is created, the system starts from the first instance type until the node is created. The instance type that is used to create the node may vary based on the inventory.
|
|
1287
1287
|
*
|
|
1288
1288
|
* @example
|
|
1289
1289
|
* ecs.n4.large
|
|
@@ -1291,11 +1291,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1291
1291
|
instanceTypes?: string[];
|
|
1292
1292
|
/**
|
|
1293
1293
|
* @remarks
|
|
1294
|
-
*
|
|
1294
|
+
* The billing method of the public IP address of the node.
|
|
1295
1295
|
*
|
|
1296
|
-
* - PayByBandwidth:
|
|
1296
|
+
* - PayByBandwidth: pay-by-bandwidth.
|
|
1297
1297
|
*
|
|
1298
|
-
* - PayByTraffic:
|
|
1298
|
+
* - PayByTraffic: pay-by-traffic.
|
|
1299
1299
|
*
|
|
1300
1300
|
* @example
|
|
1301
1301
|
* PayByBandwidth
|
|
@@ -1303,7 +1303,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1303
1303
|
internetChargeType?: string;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* @remarks
|
|
1306
|
-
*
|
|
1306
|
+
* The maximum outbound bandwidth of the public IP address of the node. Unit: Mbit/s. Valid values: 1 to 100.
|
|
1307
1307
|
*
|
|
1308
1308
|
* @example
|
|
1309
1309
|
* 10
|
|
@@ -1311,9 +1311,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1311
1311
|
internetMaxBandwidthOut?: number;
|
|
1312
1312
|
/**
|
|
1313
1313
|
* @remarks
|
|
1314
|
-
*
|
|
1314
|
+
* The name of the key pair. You must set one of key_pair and login_password.
|
|
1315
1315
|
*
|
|
1316
|
-
*
|
|
1316
|
+
* You can set only `key_pair` for managed node pools.
|
|
1317
1317
|
*
|
|
1318
1318
|
* @example
|
|
1319
1319
|
* pro-nodepool
|
|
@@ -1321,9 +1321,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1321
1321
|
keyPair?: string;
|
|
1322
1322
|
/**
|
|
1323
1323
|
* @remarks
|
|
1324
|
-
* Indicates whether to log on to the ECS instance as a non-root user.
|
|
1324
|
+
* Indicates whether to log on to the created ECS instance as a non-root user.
|
|
1325
1325
|
*
|
|
1326
|
-
* - true: Log on as
|
|
1326
|
+
* - true: Log on as a non-root user (ecs-user).
|
|
1327
1327
|
*
|
|
1328
1328
|
* - false: Log on as the root user.
|
|
1329
1329
|
*
|
|
@@ -1333,9 +1333,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1333
1333
|
loginAsNonRoot?: boolean;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* @remarks
|
|
1336
|
-
* SSH logon password.
|
|
1336
|
+
* The SSH logon password. You must set one of key_pair and login_password. The password must be 8 to 30 characters in length, and contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
1337
1337
|
*
|
|
1338
|
-
* For security reasons, the
|
|
1338
|
+
* For security reasons, the password is encrypted.
|
|
1339
1339
|
*
|
|
1340
1340
|
* @example
|
|
1341
1341
|
* ******
|
|
@@ -1343,15 +1343,15 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1343
1343
|
loginPassword?: string;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* @remarks
|
|
1346
|
-
*
|
|
1346
|
+
* The scaling policy for the ECS instances in the multi-zone scaling group. Valid values:
|
|
1347
1347
|
*
|
|
1348
|
-
* - `PRIORITY`:
|
|
1348
|
+
* - `PRIORITY`: The system scales ECS instances based on the vSwitches that you specify (VSwitchIds.N). If an ECS instance cannot be created in the zone where the vSwitch with a higher priority resides, the system uses the vSwitch with the next priority to create the ECS instance.
|
|
1349
1349
|
*
|
|
1350
|
-
* - `COST_OPTIMIZED`:
|
|
1350
|
+
* - `COST_OPTIMIZED`: The system creates ECS instances at the lowest vCPU price. If multiple instance types are specified in the scaling configuration and the preemptible instance feature is enabled, the system preferentially creates preemptible instances. You can use the `CompensateWithOnDemand` parameter to specify whether to automatically create pay-as-you-go instances when preemptible instances cannot be created due to reasons such as insufficient inventory.
|
|
1351
1351
|
*
|
|
1352
|
-
* > `COST_OPTIMIZED` takes effect only
|
|
1352
|
+
* > `COST_OPTIMIZED` takes effect only if the scaling configuration uses multiple instance types or spot instances.
|
|
1353
1353
|
*
|
|
1354
|
-
* - `BALANCE`:
|
|
1354
|
+
* - `BALANCE`: The system evenly distributes ECS instances across the specified zones of the scaling group. If the distribution of ECS instances becomes unbalanced due to insufficient inventory, you can call the API `RebalanceInstances` operation to balance the resource distribution. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html) .
|
|
1355
1355
|
*
|
|
1356
1356
|
* @example
|
|
1357
1357
|
* COST_OPTIMIZED
|
|
@@ -1359,7 +1359,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1359
1359
|
multiAzPolicy?: string;
|
|
1360
1360
|
/**
|
|
1361
1361
|
* @remarks
|
|
1362
|
-
*
|
|
1362
|
+
* The minimum number of pay-as-you-go instances that must be contained in the scaling group. Valid values: 0 to 1000. If the number of pay-as-you-go instances is less than this value, the system preferentially creates pay-as-you-go instances.
|
|
1363
1363
|
*
|
|
1364
1364
|
* @example
|
|
1365
1365
|
* 0
|
|
@@ -1367,7 +1367,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1367
1367
|
onDemandBaseCapacity?: number;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* @remarks
|
|
1370
|
-
*
|
|
1370
|
+
* The percentage of pay-as-you-go instances among the extra instances that are created after the minimum number of pay-as-you-go instances (`on_demand_base_capacity`) is met. Valid values: 0 to 100.
|
|
1371
1371
|
*
|
|
1372
1372
|
* @example
|
|
1373
1373
|
* 20
|
|
@@ -1375,11 +1375,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1375
1375
|
onDemandPercentageAboveBaseCapacity?: number;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* @remarks
|
|
1378
|
-
*
|
|
1378
|
+
* The subscription duration of the nodes. This parameter is required and takes effect only when instance_charge_type is set to PrePaid.
|
|
1379
1379
|
*
|
|
1380
|
-
* -
|
|
1380
|
+
* - If period_unit is set to Week, the valid values of period are 1, 2, 3, and 4.
|
|
1381
1381
|
*
|
|
1382
|
-
* -
|
|
1382
|
+
* - If period_unit is set to Month, the valid values of period are 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, and 60.
|
|
1383
1383
|
*
|
|
1384
1384
|
* @example
|
|
1385
1385
|
* 1
|
|
@@ -1387,11 +1387,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1387
1387
|
period?: number;
|
|
1388
1388
|
/**
|
|
1389
1389
|
* @remarks
|
|
1390
|
-
*
|
|
1390
|
+
* The billing cycle of the nodes. This parameter is required when instance_charge_type is set to PrePaid.
|
|
1391
1391
|
*
|
|
1392
|
-
* - `Month`:
|
|
1392
|
+
* - `Month`: The billing cycle is measured in months.
|
|
1393
1393
|
*
|
|
1394
|
-
* - `Week`:
|
|
1394
|
+
* - `Week`: The billing cycle is measured in weeks.
|
|
1395
1395
|
*
|
|
1396
1396
|
* @example
|
|
1397
1397
|
* Month
|
|
@@ -1399,9 +1399,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1399
1399
|
periodUnit?: string;
|
|
1400
1400
|
/**
|
|
1401
1401
|
* @remarks
|
|
1402
|
-
* [This
|
|
1402
|
+
* [This parameter is deprecated]
|
|
1403
1403
|
*
|
|
1404
|
-
*
|
|
1404
|
+
* The OS distribution. Valid values:
|
|
1405
1405
|
*
|
|
1406
1406
|
* - `CentOS`
|
|
1407
1407
|
*
|
|
@@ -1417,12 +1417,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1417
1417
|
platform?: string;
|
|
1418
1418
|
/**
|
|
1419
1419
|
* @remarks
|
|
1420
|
-
*
|
|
1420
|
+
* The private pool options.
|
|
1421
1421
|
*/
|
|
1422
1422
|
privatePoolOptions?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoolOptions;
|
|
1423
1423
|
/**
|
|
1424
1424
|
* @remarks
|
|
1425
|
-
* This
|
|
1425
|
+
* This parameter is deprecated. Use ram_role_name instead.
|
|
1426
1426
|
*
|
|
1427
1427
|
* @example
|
|
1428
1428
|
* KubernetesWorkerRole-021dc54f-929b-437a-8ae0-34c24d3e****
|
|
@@ -1430,7 +1430,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1430
1430
|
ramPolicy?: string;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* @remarks
|
|
1433
|
-
*
|
|
1433
|
+
* The name of the worker RAM role.
|
|
1434
1434
|
*
|
|
1435
1435
|
* @example
|
|
1436
1436
|
* KubernetesWorkerRole-4a4fa089-80c1-48a5-b3c6-9349311f****
|
|
@@ -1438,17 +1438,17 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1438
1438
|
ramRoleName?: string;
|
|
1439
1439
|
/**
|
|
1440
1440
|
* @remarks
|
|
1441
|
-
* If RDS instances
|
|
1441
|
+
* If you specify a list of RDS instances, the ECS instances of the cluster nodes are automatically added to the RDS instance whitelist.
|
|
1442
1442
|
*/
|
|
1443
1443
|
rdsInstances?: string[];
|
|
1444
1444
|
/**
|
|
1445
1445
|
* @remarks
|
|
1446
|
-
*
|
|
1446
|
+
* The resource pool and resource pool policy that are used when an instance is created.
|
|
1447
1447
|
*/
|
|
1448
1448
|
resourcePoolOptions?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupResourcePoolOptions;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* @remarks
|
|
1451
|
-
*
|
|
1451
|
+
* The scaling group ID.
|
|
1452
1452
|
*
|
|
1453
1453
|
* @example
|
|
1454
1454
|
* asg-2ze8n5qw4atggut8****
|
|
@@ -1456,11 +1456,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1456
1456
|
scalingGroupId?: string;
|
|
1457
1457
|
/**
|
|
1458
1458
|
* @remarks
|
|
1459
|
-
*
|
|
1459
|
+
* The scaling mode of the scaling group. Valid values:
|
|
1460
1460
|
*
|
|
1461
|
-
* - `release`:
|
|
1461
|
+
* - `release`: standard mode. The system creates and releases ECS instances to scale resources based on the resource usage.
|
|
1462
1462
|
*
|
|
1463
|
-
* - `recycle`:
|
|
1463
|
+
* - `recycle`: fast mode. The system creates, stops, and starts ECS instances to scale resources. This improves the scaling speed. When an instance is stopped, its computing resources are not billed, but its storage resources are. This does not apply to instance types with local disks.
|
|
1464
1464
|
*
|
|
1465
1465
|
* @example
|
|
1466
1466
|
* release
|
|
@@ -1468,9 +1468,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1468
1468
|
scalingPolicy?: string;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* @remarks
|
|
1471
|
-
* [This
|
|
1471
|
+
* [This parameter is deprecated]
|
|
1472
1472
|
*
|
|
1473
|
-
*
|
|
1473
|
+
* The ID of the security group for the node pool. If the node pool is associated with multiple security groups, this parameter returns the first security group ID in the `security_group_ids` list.
|
|
1474
1474
|
*
|
|
1475
1475
|
* @example
|
|
1476
1476
|
* sg-2ze1iuk12m2sb4c4****
|
|
@@ -1478,7 +1478,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1478
1478
|
securityGroupId?: string;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* @remarks
|
|
1481
|
-
*
|
|
1481
|
+
* The list of security group IDs for the node pool.
|
|
1482
1482
|
*/
|
|
1483
1483
|
securityGroupIds?: string[];
|
|
1484
1484
|
/**
|
|
@@ -1497,7 +1497,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1497
1497
|
securityHardeningOs?: boolean;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* @remarks
|
|
1500
|
-
* Indicates whether
|
|
1500
|
+
* Indicates whether to enable MLPS 2.0 security hardening. You can enable MLPS 2.0 security hardening for nodes only when you select Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3 as the OS image. Alibaba Cloud provides classified protection compliance baseline check standards and scanning programs for MLPS 2.0 Level 3-compliant versions of Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3.
|
|
1501
1501
|
*
|
|
1502
1502
|
* @example
|
|
1503
1503
|
* false
|
|
@@ -1505,7 +1505,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1505
1505
|
socEnabled?: boolean;
|
|
1506
1506
|
/**
|
|
1507
1507
|
* @remarks
|
|
1508
|
-
*
|
|
1508
|
+
* The number of available instance types. The scaling group creates preemptible instances of multiple instance types that are available at the lowest cost. Valid values: 1 to 10.
|
|
1509
1509
|
*
|
|
1510
1510
|
* @example
|
|
1511
1511
|
* 5
|
|
@@ -1513,11 +1513,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1513
1513
|
spotInstancePools?: number;
|
|
1514
1514
|
/**
|
|
1515
1515
|
* @remarks
|
|
1516
|
-
* Indicates whether to
|
|
1516
|
+
* Indicates whether to enable the feature of supplementing preemptible instances. If this feature is enabled, the scaling group attempts to create a new instance to replace a preemptible instance when the scaling group receives a system message that the preemptible instance is to be reclaimed. Valid values:
|
|
1517
1517
|
*
|
|
1518
|
-
* - `true`: Enables
|
|
1518
|
+
* - `true`: Enables the feature of supplementing preemptible instances.
|
|
1519
1519
|
*
|
|
1520
|
-
* - `false`: Disables
|
|
1520
|
+
* - `false`: Disables the feature of supplementing preemptible instances.
|
|
1521
1521
|
*
|
|
1522
1522
|
* @example
|
|
1523
1523
|
* false
|
|
@@ -1525,18 +1525,18 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1525
1525
|
spotInstanceRemedy?: boolean;
|
|
1526
1526
|
/**
|
|
1527
1527
|
* @remarks
|
|
1528
|
-
*
|
|
1528
|
+
* The configurations of the price range for the spot instances.
|
|
1529
1529
|
*/
|
|
1530
1530
|
spotPriceLimit?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit[];
|
|
1531
1531
|
/**
|
|
1532
1532
|
* @remarks
|
|
1533
|
-
*
|
|
1533
|
+
* The bidding policy for the spot instances. Valid values:
|
|
1534
1534
|
*
|
|
1535
|
-
* - NoSpot:
|
|
1535
|
+
* - NoSpot: The instances are not spot instances.
|
|
1536
1536
|
*
|
|
1537
|
-
* - SpotWithPriceLimit:
|
|
1537
|
+
* - SpotWithPriceLimit: The maximum bid price is specified for the spot instances.
|
|
1538
1538
|
*
|
|
1539
|
-
* - SpotAsPriceGo:
|
|
1539
|
+
* - SpotAsPriceGo: The system automatically places bids based on the market price.
|
|
1540
1540
|
*
|
|
1541
1541
|
* For more information, see [Spot instances](https://help.aliyun.com/document_detail/157759.html).
|
|
1542
1542
|
*
|
|
@@ -1546,13 +1546,13 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1546
1546
|
spotStrategy?: string;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* @remarks
|
|
1549
|
-
* Indicates whether
|
|
1549
|
+
* Indicates whether to enable bursting for the system disk of the node. Valid values:
|
|
1550
1550
|
*
|
|
1551
|
-
* - true:
|
|
1551
|
+
* - true: enables bursting. After bursting is enabled, the performance of the cloud disk is temporarily improved to handle sudden data read and write pressure when the business is unstable. The performance of the cloud disk is restored after the business becomes stable.
|
|
1552
1552
|
*
|
|
1553
|
-
* - false:
|
|
1553
|
+
* - false: disables bursting.
|
|
1554
1554
|
*
|
|
1555
|
-
* This parameter
|
|
1555
|
+
* This parameter can be set only when system_disk_category is set to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
1556
1556
|
*
|
|
1557
1557
|
* @example
|
|
1558
1558
|
* true
|
|
@@ -1560,18 +1560,18 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1560
1560
|
systemDiskBurstingEnabled?: boolean;
|
|
1561
1561
|
/**
|
|
1562
1562
|
* @remarks
|
|
1563
|
-
*
|
|
1563
|
+
* The multi-disk type of the system disk. When a disk of a higher priority is unavailable, the system automatically uses a disk of a lower priority to create the system disk.
|
|
1564
1564
|
*/
|
|
1565
1565
|
systemDiskCategories?: string[];
|
|
1566
1566
|
/**
|
|
1567
1567
|
* @remarks
|
|
1568
|
-
*
|
|
1568
|
+
* The type of the system disk of the node. Valid values:
|
|
1569
1569
|
*
|
|
1570
|
-
* - `cloud_efficiency`:
|
|
1570
|
+
* - `cloud_efficiency`: ultra disk.
|
|
1571
1571
|
*
|
|
1572
|
-
* - `cloud_ssd`:
|
|
1572
|
+
* - `cloud_ssd`: standard SSD.
|
|
1573
1573
|
*
|
|
1574
|
-
* - `cloud_essd`:
|
|
1574
|
+
* - `cloud_essd`: ESSD.
|
|
1575
1575
|
*
|
|
1576
1576
|
* - `cloud_auto`: ESSD AutoPL disk.
|
|
1577
1577
|
*
|
|
@@ -1583,7 +1583,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1583
1583
|
systemDiskCategory?: string;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* @remarks
|
|
1586
|
-
*
|
|
1586
|
+
* The encryption algorithm that is used to encrypt the system disk. Valid value: aes-256.
|
|
1587
1587
|
*
|
|
1588
1588
|
* @example
|
|
1589
1589
|
* aes-256
|
|
@@ -1591,11 +1591,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1591
1591
|
systemDiskEncryptAlgorithm?: string;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* @remarks
|
|
1594
|
-
* Indicates whether the system disk
|
|
1594
|
+
* Indicates whether to encrypt the system disk. Valid values:
|
|
1595
1595
|
*
|
|
1596
|
-
* - true:
|
|
1596
|
+
* - true: Encrypts the system disk.
|
|
1597
1597
|
*
|
|
1598
|
-
* - false:
|
|
1598
|
+
* - false: Does not encrypt the system disk.
|
|
1599
1599
|
*
|
|
1600
1600
|
* @example
|
|
1601
1601
|
* false
|
|
@@ -1603,7 +1603,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1603
1603
|
systemDiskEncrypted?: boolean;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* @remarks
|
|
1606
|
-
* KMS key
|
|
1606
|
+
* The ID of the KMS key that is used to encrypt the system disk.
|
|
1607
1607
|
*
|
|
1608
1608
|
* @example
|
|
1609
1609
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
@@ -1611,15 +1611,15 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1611
1611
|
systemDiskKmsKeyId?: string;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* @remarks
|
|
1614
|
-
*
|
|
1614
|
+
* The performance level of the system disk of the node. This parameter is valid only for ESSDs. The performance level of the disk is related to the disk size. For more information, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
1615
1615
|
*
|
|
1616
|
-
* - PL0:
|
|
1616
|
+
* - PL0: The disk has medium concurrent I/O performance and stable read and write latency.
|
|
1617
1617
|
*
|
|
1618
|
-
* - PL1:
|
|
1618
|
+
* - PL1: The disk has medium concurrent I/O performance and stable read and write latency.
|
|
1619
1619
|
*
|
|
1620
|
-
* - PL2:
|
|
1620
|
+
* - PL2: The disk has high concurrent I/O performance and stable read and write latency.
|
|
1621
1621
|
*
|
|
1622
|
-
* - PL3:
|
|
1622
|
+
* - PL3: The disk has ultra-high concurrent I/O performance and ultra-stable read and write latency.
|
|
1623
1623
|
*
|
|
1624
1624
|
* @example
|
|
1625
1625
|
* PL1
|
|
@@ -1627,7 +1627,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1627
1627
|
systemDiskPerformanceLevel?: string;
|
|
1628
1628
|
/**
|
|
1629
1629
|
* @remarks
|
|
1630
|
-
*
|
|
1630
|
+
* The pre-configured read and write IOPS of the system disk of the node. This parameter is configured when the disk type is cloud_auto.
|
|
1631
1631
|
*
|
|
1632
1632
|
* @example
|
|
1633
1633
|
* 1000
|
|
@@ -1635,9 +1635,9 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1635
1635
|
systemDiskProvisionedIops?: number;
|
|
1636
1636
|
/**
|
|
1637
1637
|
* @remarks
|
|
1638
|
-
*
|
|
1638
|
+
* The size of the system disk of the node. Unit: GiB.
|
|
1639
1639
|
*
|
|
1640
|
-
* Valid values:
|
|
1640
|
+
* Valid values: 20 to 2048.
|
|
1641
1641
|
*
|
|
1642
1642
|
* @example
|
|
1643
1643
|
* 120
|
|
@@ -1645,7 +1645,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1645
1645
|
systemDiskSize?: number;
|
|
1646
1646
|
/**
|
|
1647
1647
|
* @remarks
|
|
1648
|
-
*
|
|
1648
|
+
* The snapshot policy for the system disk
|
|
1649
1649
|
*
|
|
1650
1650
|
* @example
|
|
1651
1651
|
* sp-0jl6xnmme8v7o935****
|
|
@@ -1653,12 +1653,12 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1653
1653
|
systemDiskSnapshotPolicyId?: string;
|
|
1654
1654
|
/**
|
|
1655
1655
|
* @remarks
|
|
1656
|
-
* ECS
|
|
1656
|
+
* The tags of the ECS instances.
|
|
1657
1657
|
*/
|
|
1658
1658
|
tags?: Tag[];
|
|
1659
1659
|
/**
|
|
1660
1660
|
* @remarks
|
|
1661
|
-
*
|
|
1661
|
+
* The list of vSwitch IDs.
|
|
1662
1662
|
*/
|
|
1663
1663
|
vswitchIds?: string[];
|
|
1664
1664
|
static names(): { [key: string]: string } {
|
|
@@ -1821,7 +1821,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $
|
|
|
1821
1821
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.Model {
|
|
1822
1822
|
/**
|
|
1823
1823
|
* @remarks
|
|
1824
|
-
*
|
|
1824
|
+
* The number of failed nodes.
|
|
1825
1825
|
*
|
|
1826
1826
|
* @example
|
|
1827
1827
|
* 0
|
|
@@ -1829,7 +1829,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1829
1829
|
failedNodes?: number;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* @remarks
|
|
1832
|
-
*
|
|
1832
|
+
* The number of healthy nodes.
|
|
1833
1833
|
*
|
|
1834
1834
|
* @example
|
|
1835
1835
|
* 3
|
|
@@ -1837,7 +1837,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1837
1837
|
healthyNodes?: number;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* @remarks
|
|
1840
|
-
*
|
|
1840
|
+
* The number of nodes that are being created.
|
|
1841
1841
|
*
|
|
1842
1842
|
* @example
|
|
1843
1843
|
* 0
|
|
@@ -1845,7 +1845,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1845
1845
|
initialNodes?: number;
|
|
1846
1846
|
/**
|
|
1847
1847
|
* @remarks
|
|
1848
|
-
*
|
|
1848
|
+
* The number of offline nodes.
|
|
1849
1849
|
*
|
|
1850
1850
|
* @example
|
|
1851
1851
|
* 0
|
|
@@ -1853,7 +1853,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1853
1853
|
offlineNodes?: number;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* @remarks
|
|
1856
|
-
*
|
|
1856
|
+
* The number of nodes that are being removed.
|
|
1857
1857
|
*
|
|
1858
1858
|
* @example
|
|
1859
1859
|
* 0
|
|
@@ -1861,7 +1861,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1861
1861
|
removingNodes?: number;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* @remarks
|
|
1864
|
-
*
|
|
1864
|
+
* The number of running nodes.
|
|
1865
1865
|
*
|
|
1866
1866
|
* @example
|
|
1867
1867
|
* 3
|
|
@@ -1869,17 +1869,17 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1869
1869
|
servingNodes?: number;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* @remarks
|
|
1872
|
-
*
|
|
1872
|
+
* The status of the node pool. Valid values:
|
|
1873
1873
|
*
|
|
1874
|
-
* - `active`:
|
|
1874
|
+
* - `active`: The node pool is active.
|
|
1875
1875
|
*
|
|
1876
|
-
* - `scaling`:
|
|
1876
|
+
* - `scaling`: The node pool is being scaled.
|
|
1877
1877
|
*
|
|
1878
|
-
* - `removing`:
|
|
1878
|
+
* - `removing`: Nodes are being removed from the node pool.
|
|
1879
1879
|
*
|
|
1880
|
-
* - `deleting`:
|
|
1880
|
+
* - `deleting`: The node pool is being deleted.
|
|
1881
1881
|
*
|
|
1882
|
-
* - `updating`:
|
|
1882
|
+
* - `updating`: The node pool is being updated.
|
|
1883
1883
|
*
|
|
1884
1884
|
* @example
|
|
1885
1885
|
* active
|
|
@@ -1887,7 +1887,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1887
1887
|
state?: string;
|
|
1888
1888
|
/**
|
|
1889
1889
|
* @remarks
|
|
1890
|
-
*
|
|
1890
|
+
* The total number of nodes in the node pool.
|
|
1891
1891
|
*
|
|
1892
1892
|
* @example
|
|
1893
1893
|
* 3
|
|
@@ -1931,11 +1931,11 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.M
|
|
|
1931
1931
|
export class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig extends $dara.Model {
|
|
1932
1932
|
/**
|
|
1933
1933
|
* @remarks
|
|
1934
|
-
* Indicates whether confidential computing
|
|
1934
|
+
* Indicates whether to enable the confidential computing cluster. Valid values:
|
|
1935
1935
|
*
|
|
1936
|
-
* - `true`:
|
|
1936
|
+
* - `true`: Enables the confidential computing cluster.
|
|
1937
1937
|
*
|
|
1938
|
-
* - `false`:
|
|
1938
|
+
* - `false`: Disables the confidential computing cluster.
|
|
1939
1939
|
*
|
|
1940
1940
|
* @example
|
|
1941
1941
|
* false
|
|
@@ -1965,33 +1965,33 @@ export class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig extends $dar
|
|
|
1965
1965
|
export class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
|
|
1966
1966
|
/**
|
|
1967
1967
|
* @remarks
|
|
1968
|
-
*
|
|
1968
|
+
* The intelligent hosting configurations.
|
|
1969
1969
|
*/
|
|
1970
1970
|
autoMode?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode;
|
|
1971
1971
|
/**
|
|
1972
1972
|
* @remarks
|
|
1973
|
-
*
|
|
1973
|
+
* The auto scaling configuration.
|
|
1974
1974
|
*/
|
|
1975
1975
|
autoScaling?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* @remarks
|
|
1978
|
-
* Lingjun node group
|
|
1978
|
+
* The information about the Lingjun node group.
|
|
1979
1979
|
*/
|
|
1980
1980
|
efloNodeGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* @remarks
|
|
1983
|
-
* [This
|
|
1983
|
+
* [This parameter is deprecated]
|
|
1984
1984
|
*
|
|
1985
|
-
*
|
|
1985
|
+
* The network configurations of the edge node pool. This parameter is valid only for edge node pools.
|
|
1986
1986
|
*/
|
|
1987
1987
|
interconnectConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig;
|
|
1988
1988
|
/**
|
|
1989
1989
|
* @remarks
|
|
1990
|
-
*
|
|
1990
|
+
* The network type of the edge node pool. This parameter is valid only for node pools of the `edge` type. Valid values:
|
|
1991
1991
|
*
|
|
1992
|
-
* - `basic`:
|
|
1992
|
+
* - `basic`: public network. The nodes in the node pool interact with cloud nodes over the Internet. Applications in the node pool cannot directly access the VPC on the cloud.
|
|
1993
1993
|
*
|
|
1994
|
-
* - `private`:
|
|
1994
|
+
* - `private`: private network. The nodes in the node pool are connected to the cloud over a leased line, a VPN connection, or a CEN instance. This provides higher cloud-to-edge communication quality and enhanced security.
|
|
1995
1995
|
*
|
|
1996
1996
|
* @example
|
|
1997
1997
|
* basic
|
|
@@ -1999,17 +1999,17 @@ export class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
|
|
|
1999
1999
|
interconnectMode?: string;
|
|
2000
2000
|
/**
|
|
2001
2001
|
* @remarks
|
|
2002
|
-
*
|
|
2002
|
+
* The cluster-related configurations.
|
|
2003
2003
|
*/
|
|
2004
2004
|
kubernetesConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* @remarks
|
|
2007
|
-
*
|
|
2007
|
+
* The configurations of the managed node pool. This parameter takes effect only in ACK Pro clusters.
|
|
2008
2008
|
*/
|
|
2009
2009
|
management?: DescribeClusterNodePoolsResponseBodyNodepoolsManagement;
|
|
2010
2010
|
/**
|
|
2011
2011
|
* @remarks
|
|
2012
|
-
*
|
|
2012
|
+
* The maximum number of nodes that the edge node pool can contain. The value of this parameter must be greater than or equal to 0. A value of 0 indicates that no limit is imposed on the number of nodes in the node pool, except for the limit on the total number of nodes in the cluster. The value of this parameter is usually greater than 0 for edge node pools. The value is 0 for ess node pools and default edge node pools
|
|
2013
2013
|
*
|
|
2014
2014
|
* @example
|
|
2015
2015
|
* 10
|
|
@@ -2017,32 +2017,32 @@ export class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
|
|
|
2017
2017
|
maxNodes?: number;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* @remarks
|
|
2020
|
-
*
|
|
2020
|
+
* The list of node components.
|
|
2021
2021
|
*/
|
|
2022
2022
|
nodeComponents?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents[];
|
|
2023
2023
|
/**
|
|
2024
2024
|
* @remarks
|
|
2025
|
-
*
|
|
2025
|
+
* The node configurations.
|
|
2026
2026
|
*/
|
|
2027
2027
|
nodeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig;
|
|
2028
2028
|
/**
|
|
2029
2029
|
* @remarks
|
|
2030
|
-
*
|
|
2030
|
+
* The information about the node pool.
|
|
2031
2031
|
*/
|
|
2032
2032
|
nodepoolInfo?: DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* @remarks
|
|
2035
|
-
*
|
|
2035
|
+
* The configurations of the scaling group for the node pool.
|
|
2036
2036
|
*/
|
|
2037
2037
|
scalingGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* @remarks
|
|
2040
|
-
*
|
|
2040
|
+
* The status of the node pool.
|
|
2041
2041
|
*/
|
|
2042
2042
|
status?: DescribeClusterNodePoolsResponseBodyNodepoolsStatus;
|
|
2043
2043
|
/**
|
|
2044
2044
|
* @remarks
|
|
2045
|
-
*
|
|
2045
|
+
* The confidential computing configurations.
|
|
2046
2046
|
*/
|
|
2047
2047
|
teeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig;
|
|
2048
2048
|
static names(): { [key: string]: string } {
|
|
@@ -2131,7 +2131,7 @@ export class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
|
|
|
2131
2131
|
export class DescribeClusterNodePoolsResponseBody extends $dara.Model {
|
|
2132
2132
|
/**
|
|
2133
2133
|
* @remarks
|
|
2134
|
-
*
|
|
2134
|
+
* The list of node pools.
|
|
2135
2135
|
*/
|
|
2136
2136
|
nodepools?: DescribeClusterNodePoolsResponseBodyNodepools[];
|
|
2137
2137
|
static names(): { [key: string]: string } {
|