@alicloud/cs20151215 6.7.1 → 7.0.1
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 +6 -6
- package/dist/client.js +9 -6
- package/dist/client.js.map +1 -1
- package/dist/models/CreateClusterNodePoolRequest.d.ts +267 -263
- package/dist/models/CreateClusterNodePoolRequest.js +1 -1
- package/dist/models/CreateClusterNodePoolRequest.js.map +1 -1
- package/dist/models/CreateClusterNodePoolResponseBody.d.ts +3 -3
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.d.ts +235 -232
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.js +1 -1
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.js.map +1 -1
- package/dist/models/DescribeClusterNodePoolsResponseBody.d.ts +92 -88
- package/dist/models/DescribeClusterNodePoolsResponseBody.js +1 -1
- package/dist/models/DescribeClusterNodePoolsResponseBody.js.map +1 -1
- package/dist/models/InstallNodePoolComponentsRequest.d.ts +4 -1
- package/dist/models/InstallNodePoolComponentsRequest.js +1 -1
- package/dist/models/InstallNodePoolComponentsRequest.js.map +1 -1
- package/dist/models/Nodepool.d.ts +8 -5
- package/dist/models/Nodepool.js +1 -1
- package/dist/models/Nodepool.js.map +1 -1
- package/dist/models/UpdateNodePoolComponentRequest.d.ts +6 -3
- package/dist/models/UpdateNodePoolComponentRequest.js +1 -1
- package/dist/models/UpdateNodePoolComponentRequest.js.map +1 -1
- package/dist/models/UpgradeClusterNodepoolRequest.d.ts +4 -3
- package/dist/models/UpgradeClusterNodepoolRequest.js +2 -0
- package/dist/models/UpgradeClusterNodepoolRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -6
- package/src/models/CreateClusterNodePoolRequest.ts +268 -264
- package/src/models/CreateClusterNodePoolResponseBody.ts +3 -3
- package/src/models/DescribeClusterNodePoolDetailResponseBody.ts +236 -233
- package/src/models/DescribeClusterNodePoolsResponseBody.ts +93 -89
- package/src/models/InstallNodePoolComponentsRequest.ts +5 -2
- package/src/models/Nodepool.ts +9 -6
- package/src/models/UpdateNodePoolComponentRequest.ts +7 -4
- package/src/models/UpgradeClusterNodepoolRequest.ts +6 -3
|
@@ -13,7 +13,7 @@ import { Taint } from "./Taint";
|
|
|
13
13
|
export class DescribeClusterNodePoolDetailResponseBodyAutoMode extends $dara.Model {
|
|
14
14
|
/**
|
|
15
15
|
* @remarks
|
|
16
|
-
* Whether
|
|
16
|
+
* Whether to enable
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* false
|
|
@@ -43,9 +43,9 @@ export class DescribeClusterNodePoolDetailResponseBodyAutoMode extends $dara.Mod
|
|
|
43
43
|
export class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.Model {
|
|
44
44
|
/**
|
|
45
45
|
* @remarks
|
|
46
|
-
*
|
|
46
|
+
* EIP peak bandwidth.
|
|
47
47
|
*
|
|
48
|
-
* Valid values: [1,100]. Unit:
|
|
48
|
+
* Valid values: [1,100]. Unit: Mbps.
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
51
|
* 5
|
|
@@ -53,10 +53,10 @@ export class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.
|
|
|
53
53
|
eipBandwidth?: number;
|
|
54
54
|
/**
|
|
55
55
|
* @remarks
|
|
56
|
-
*
|
|
56
|
+
* EIP billing type. Valid values:
|
|
57
57
|
*
|
|
58
|
-
* - `PayByBandwidth`:
|
|
59
|
-
* - `PayByTraffic`:
|
|
58
|
+
* - `PayByBandwidth`: billed by fixed bandwidth.
|
|
59
|
+
* - `PayByTraffic`: billed by data transfer.
|
|
60
60
|
*
|
|
61
61
|
* @example
|
|
62
62
|
* PayByBandwidth
|
|
@@ -64,13 +64,14 @@ export class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.
|
|
|
64
64
|
eipInternetChargeType?: string;
|
|
65
65
|
/**
|
|
66
66
|
* @remarks
|
|
67
|
-
*
|
|
67
|
+
* Whether auto scaling is enabled. Valid values:
|
|
68
68
|
*
|
|
69
|
-
* - `true`:
|
|
69
|
+
* - `true`: enables the auto scaling feature for the node pool. When the cluster capacity cannot meet Pod scheduling requirements, ACK automatically scales node resources based on the configured minimum and maximum instance counts. Clusters of version 1.24 and later enable instant node elasticity by default;
|
|
70
|
+
* clusters of versions earlier than 1.24 enable node auto scaling by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
|
|
70
71
|
*
|
|
71
|
-
* - `false`:
|
|
72
|
+
* - `false`: disables auto scaling. ACK adjusts the number of nodes in the node pool to match the configured desired number of nodes.
|
|
72
73
|
*
|
|
73
|
-
* When
|
|
74
|
+
* When the value is false, other configuration parameters in `auto_scaling` do not take effect.
|
|
74
75
|
*
|
|
75
76
|
* @example
|
|
76
77
|
* true
|
|
@@ -78,10 +79,10 @@ export class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.
|
|
|
78
79
|
enable?: boolean;
|
|
79
80
|
/**
|
|
80
81
|
* @remarks
|
|
81
|
-
*
|
|
82
|
+
* Whether to bind an EIP. Valid values:
|
|
82
83
|
*
|
|
83
|
-
* - `true`:
|
|
84
|
-
* - `false`:
|
|
84
|
+
* - `true`: bind an EIP.
|
|
85
|
+
* - `false`: do not bind an EIP.
|
|
85
86
|
*
|
|
86
87
|
* @example
|
|
87
88
|
* true
|
|
@@ -105,12 +106,12 @@ export class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.
|
|
|
105
106
|
minInstances?: number;
|
|
106
107
|
/**
|
|
107
108
|
* @remarks
|
|
108
|
-
*
|
|
109
|
+
* Auto scaling type, classified by auto scaling instance type. Valid values:
|
|
109
110
|
*
|
|
110
111
|
* - `cpu`: regular instance type.
|
|
111
112
|
* - `gpu`: GPU instance type.
|
|
112
|
-
* - `gpushare`: GPU
|
|
113
|
-
* - `spot`:
|
|
113
|
+
* - `gpushare`: GPU-shared type.
|
|
114
|
+
* - `spot`: preemptible instance type.
|
|
114
115
|
*
|
|
115
116
|
* @example
|
|
116
117
|
* cpu
|
|
@@ -186,9 +187,9 @@ export class DescribeClusterNodePoolDetailResponseBodyEfloNodeGroup extends $dar
|
|
|
186
187
|
export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends $dara.Model {
|
|
187
188
|
/**
|
|
188
189
|
* @remarks
|
|
189
|
-
* [
|
|
190
|
+
* [This field is deprecated]
|
|
190
191
|
*
|
|
191
|
-
*
|
|
192
|
+
* Network bandwidth of the enhanced edge node pool, in Mbps.
|
|
192
193
|
*
|
|
193
194
|
* @example
|
|
194
195
|
* 10
|
|
@@ -198,7 +199,7 @@ export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends
|
|
|
198
199
|
* @remarks
|
|
199
200
|
* [This field is deprecated]
|
|
200
201
|
*
|
|
201
|
-
* The Cloud Connect Network (CCN) instance ID bound to the enhanced edge node pool.
|
|
202
|
+
* The Cloud Connect Network (CCN) instance ID bound to the enhanced edge node pool (CCNID).
|
|
202
203
|
*
|
|
203
204
|
* @example
|
|
204
205
|
* ccn-qm5i0i0q9yi*******
|
|
@@ -208,8 +209,7 @@ export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends
|
|
|
208
209
|
* @remarks
|
|
209
210
|
* [This field is deprecated]
|
|
210
211
|
*
|
|
211
|
-
* The region of the CCN instance bound to the enhanced edge node pool.
|
|
212
|
-
* [_single.resp.200.
|
|
212
|
+
* The region of the Cloud Connect Network (CCN) instance bound to the enhanced edge node pool.
|
|
213
213
|
*
|
|
214
214
|
* @example
|
|
215
215
|
* cn-shanghai
|
|
@@ -219,7 +219,7 @@ export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends
|
|
|
219
219
|
* @remarks
|
|
220
220
|
* [This field is deprecated]
|
|
221
221
|
*
|
|
222
|
-
* The Cloud Enterprise Network (CEN) instance ID bound to the enhanced edge node pool.
|
|
222
|
+
* The Cloud Enterprise Network (CEN) instance ID bound to the enhanced edge node pool (CENID).
|
|
223
223
|
*
|
|
224
224
|
* @example
|
|
225
225
|
* cen-ey9k9nfhz0f*******
|
|
@@ -227,9 +227,9 @@ export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends
|
|
|
227
227
|
cenId?: string;
|
|
228
228
|
/**
|
|
229
229
|
* @remarks
|
|
230
|
-
* [
|
|
230
|
+
* [This field is deprecated]
|
|
231
231
|
*
|
|
232
|
-
*
|
|
232
|
+
* Purchase duration of the enhanced edge node pool, in months.
|
|
233
233
|
*
|
|
234
234
|
* @example
|
|
235
235
|
* 1
|
|
@@ -267,10 +267,10 @@ export class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends
|
|
|
267
267
|
export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $dara.Model {
|
|
268
268
|
/**
|
|
269
269
|
* @remarks
|
|
270
|
-
*
|
|
270
|
+
* Whether to install CloudMonitor on ECS nodes. After installation, you can view the monitoring information of created ECS instances in the CloudMonitor console. We recommend that you enable this feature. Valid values:
|
|
271
271
|
*
|
|
272
|
-
* - `true`:
|
|
273
|
-
* - `false`:
|
|
272
|
+
* - `true`: install CloudMonitor on ECS nodes.
|
|
273
|
+
* - `false`: do not install CloudMonitor on ECS nodes.
|
|
274
274
|
*
|
|
275
275
|
* @example
|
|
276
276
|
* true
|
|
@@ -278,10 +278,10 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
278
278
|
cmsEnabled?: boolean;
|
|
279
279
|
/**
|
|
280
280
|
* @remarks
|
|
281
|
-
*
|
|
281
|
+
* Node CPU management policy. The following two policies are supported when the cluster version is 1.12.6 or later:
|
|
282
282
|
*
|
|
283
|
-
* - `static`:
|
|
284
|
-
* - `none`:
|
|
283
|
+
* - `static`: allows enhanced CPU affinity and exclusivity for Pods with certain resource characteristics on the node.
|
|
284
|
+
* - `none`: enables the existing default CPU affinity scheme.
|
|
285
285
|
*
|
|
286
286
|
* @example
|
|
287
287
|
* none
|
|
@@ -289,19 +289,19 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
289
289
|
cpuPolicy?: string;
|
|
290
290
|
/**
|
|
291
291
|
* @remarks
|
|
292
|
-
*
|
|
292
|
+
* Node labels.
|
|
293
293
|
*/
|
|
294
294
|
labels?: Tag[];
|
|
295
295
|
/**
|
|
296
296
|
* @remarks
|
|
297
|
-
*
|
|
297
|
+
* Custom node name.
|
|
298
298
|
*
|
|
299
|
-
*
|
|
299
|
+
* The node name consists of three parts: prefix \\+ node IP address substring \\+ suffix:
|
|
300
300
|
*
|
|
301
|
-
* - Both the prefix and suffix can consist of one or more parts separated by ".". Each part can contain lowercase letters, digits, and
|
|
301
|
+
* - Both the prefix and suffix can consist of one or more parts separated by ".". Each part can contain lowercase letters, digits, and "-". The node name must start and end with a lowercase letter or digit.
|
|
302
302
|
* - The IP address segment length specifies the number of digits taken from the end of the node IP address. Valid values: 5 to 12.
|
|
303
303
|
*
|
|
304
|
-
* For example, if the node IP address is 192.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.
|
|
304
|
+
* For example, if the node IP address is 192.168.0.55, the prefix is aliyun.com, the IP address segment length is 5, and the suffix is test, then the node name is aliyun.com00055test.
|
|
305
305
|
*
|
|
306
306
|
* @example
|
|
307
307
|
* aliyun.com192.XX.YY.55test
|
|
@@ -309,7 +309,7 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
309
309
|
nodeNameMode?: string;
|
|
310
310
|
/**
|
|
311
311
|
* @remarks
|
|
312
|
-
*
|
|
312
|
+
* Node pool pre-custom data, which is a script that runs before node initialization. For more information, see [Generate instance custom data](https://help.aliyun.com/document_detail/49121.html).
|
|
313
313
|
*
|
|
314
314
|
* @example
|
|
315
315
|
* dGhpcyBpcyBhIGV4YW1wbGU
|
|
@@ -317,11 +317,11 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
317
317
|
preUserData?: string;
|
|
318
318
|
/**
|
|
319
319
|
* @remarks
|
|
320
|
-
*
|
|
320
|
+
* Container runtime name. ACK supports the following three container runtimes.
|
|
321
321
|
*
|
|
322
|
-
* - containerd: recommended
|
|
323
|
-
* - Sandboxed-Container.runv: sandboxed container
|
|
324
|
-
* - docker: no longer maintained
|
|
322
|
+
* - containerd: recommended, supported by all cluster versions.
|
|
323
|
+
* - Sandboxed-Container.runv: sandboxed container, provides higher isolation, supported by clusters of version 1.31 and earlier.
|
|
324
|
+
* - docker: no longer maintained, supported by clusters of version 1.22 and earlier.
|
|
325
325
|
*
|
|
326
326
|
* @example
|
|
327
327
|
* containerd
|
|
@@ -329,7 +329,7 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
329
329
|
runtime?: string;
|
|
330
330
|
/**
|
|
331
331
|
* @remarks
|
|
332
|
-
*
|
|
332
|
+
* Container runtime version.
|
|
333
333
|
*
|
|
334
334
|
* @example
|
|
335
335
|
* 1.6.38
|
|
@@ -337,16 +337,16 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
337
337
|
runtimeVersion?: string;
|
|
338
338
|
/**
|
|
339
339
|
* @remarks
|
|
340
|
-
*
|
|
340
|
+
* Node taint information. Taints and tolerations work together to prevent Pods from being scheduled on inappropriate nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
341
341
|
*/
|
|
342
342
|
taints?: Taint[];
|
|
343
343
|
/**
|
|
344
344
|
* @remarks
|
|
345
|
-
*
|
|
345
|
+
* Whether nodes are unschedulable after scaling.
|
|
346
346
|
*
|
|
347
|
-
* - true:
|
|
347
|
+
* - true: unschedulable.
|
|
348
348
|
*
|
|
349
|
-
* - false:
|
|
349
|
+
* - false: schedulable.
|
|
350
350
|
*
|
|
351
351
|
* @example
|
|
352
352
|
* true
|
|
@@ -354,7 +354,7 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
354
354
|
unschedulable?: boolean;
|
|
355
355
|
/**
|
|
356
356
|
* @remarks
|
|
357
|
-
*
|
|
357
|
+
* Node pool custom data, which is a script that runs after node initialization. For more information, see [Generate instance custom data](https://help.aliyun.com/document_detail/49121.html).
|
|
358
358
|
*
|
|
359
359
|
* @example
|
|
360
360
|
* IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFDSyEi
|
|
@@ -408,7 +408,7 @@ export class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $
|
|
|
408
408
|
export class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy extends $dara.Model {
|
|
409
409
|
/**
|
|
410
410
|
* @remarks
|
|
411
|
-
*
|
|
411
|
+
* Whether manual approval is required for node repair.
|
|
412
412
|
*
|
|
413
413
|
* @example
|
|
414
414
|
* false
|
|
@@ -416,7 +416,7 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy
|
|
|
416
416
|
approvalRequired?: boolean;
|
|
417
417
|
/**
|
|
418
418
|
* @remarks
|
|
419
|
-
*
|
|
419
|
+
* Auto repair policy ID
|
|
420
420
|
*
|
|
421
421
|
* @example
|
|
422
422
|
* r-xxxxxxxxxx
|
|
@@ -424,10 +424,10 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy
|
|
|
424
424
|
autoRepairPolicyId?: string;
|
|
425
425
|
/**
|
|
426
426
|
* @remarks
|
|
427
|
-
*
|
|
427
|
+
* Whether to allow node restart. Takes effect only when `auto_repair=true`.
|
|
428
428
|
*
|
|
429
|
-
* - `true`:
|
|
430
|
-
* - `false`:
|
|
429
|
+
* - `true`: allow node restart.
|
|
430
|
+
* - `false`: do not allow node restart.
|
|
431
431
|
*
|
|
432
432
|
* @example
|
|
433
433
|
* true
|
|
@@ -461,9 +461,9 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy
|
|
|
461
461
|
export class DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgradePolicy extends $dara.Model {
|
|
462
462
|
/**
|
|
463
463
|
* @remarks
|
|
464
|
-
*
|
|
465
|
-
* - `true`:
|
|
466
|
-
* - `false`:
|
|
464
|
+
* Whether to allow auto upgrade of kubelet. Takes effect only when `auto_upgrade=true`. Valid values:
|
|
465
|
+
* - `true`: allow auto upgrade of kubelet.
|
|
466
|
+
* - `false`: do not allow auto upgrade of kubelet.
|
|
467
467
|
*
|
|
468
468
|
* @example
|
|
469
469
|
* true
|
|
@@ -493,7 +493,7 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgradePolic
|
|
|
493
493
|
export class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy extends $dara.Model {
|
|
494
494
|
/**
|
|
495
495
|
* @remarks
|
|
496
|
-
*
|
|
496
|
+
* Packages that should be excluded during vulnerability fixing.
|
|
497
497
|
*
|
|
498
498
|
* @example
|
|
499
499
|
* kernel
|
|
@@ -501,9 +501,9 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy
|
|
|
501
501
|
excludePackages?: string;
|
|
502
502
|
/**
|
|
503
503
|
* @remarks
|
|
504
|
-
*
|
|
505
|
-
* - `true`:
|
|
506
|
-
* - `false`:
|
|
504
|
+
* Whether to allow node restart. Takes effect only when `auto_vul_fix=true`. Valid values:
|
|
505
|
+
* - `true`: allow node restart.
|
|
506
|
+
* - `false`: do not allow node restart.
|
|
507
507
|
*
|
|
508
508
|
* @example
|
|
509
509
|
* true
|
|
@@ -511,11 +511,11 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy
|
|
|
511
511
|
restartNode?: boolean;
|
|
512
512
|
/**
|
|
513
513
|
* @remarks
|
|
514
|
-
*
|
|
514
|
+
* Vulnerability levels allowed for automatic fixing, separated by commas.
|
|
515
515
|
*
|
|
516
516
|
* - `asap`: high
|
|
517
517
|
* - `later`: medium
|
|
518
|
-
* - `nntf`: low
|
|
518
|
+
* - `nntf`: low
|
|
519
519
|
*
|
|
520
520
|
* @example
|
|
521
521
|
* asap,nntf
|
|
@@ -549,10 +549,10 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy
|
|
|
549
549
|
export class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig extends $dara.Model {
|
|
550
550
|
/**
|
|
551
551
|
* @remarks
|
|
552
|
-
*
|
|
552
|
+
* Whether to enable auto upgrade. Valid values:
|
|
553
553
|
*
|
|
554
|
-
* - `true`:
|
|
555
|
-
* - `false`:
|
|
554
|
+
* - `true`: enable auto upgrade.
|
|
555
|
+
* - `false`: disable auto upgrade.
|
|
556
556
|
*
|
|
557
557
|
* @example
|
|
558
558
|
* true
|
|
@@ -560,7 +560,7 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig ex
|
|
|
560
560
|
autoUpgrade?: boolean;
|
|
561
561
|
/**
|
|
562
562
|
* @remarks
|
|
563
|
-
*
|
|
563
|
+
* Maximum number of unavailable nodes. Valid values: [1,1000\\].
|
|
564
564
|
*
|
|
565
565
|
* Default value: 1.
|
|
566
566
|
*
|
|
@@ -570,7 +570,7 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig ex
|
|
|
570
570
|
maxUnavailable?: number;
|
|
571
571
|
/**
|
|
572
572
|
* @remarks
|
|
573
|
-
*
|
|
573
|
+
* Number of extra nodes. Mutually exclusive with surge_percentage.
|
|
574
574
|
*
|
|
575
575
|
* @example
|
|
576
576
|
* 5
|
|
@@ -578,9 +578,9 @@ export class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig ex
|
|
|
578
578
|
surge?: number;
|
|
579
579
|
/**
|
|
580
580
|
* @remarks
|
|
581
|
-
* The percentage of extra nodes.
|
|
581
|
+
* The percentage of extra nodes. Mutually exclusive with `surge`.
|
|
582
582
|
*
|
|
583
|
-
*
|
|
583
|
+
* Extra nodes = extra node percentage x number of nodes. For example, if the extra node percentage is set to 50% and there are 6 existing nodes, the number of extra nodes = 50% x 6, which means 3 extra nodes will be generated.
|
|
584
584
|
*
|
|
585
585
|
* @example
|
|
586
586
|
* 50
|
|
@@ -617,10 +617,10 @@ export class DescribeClusterNodePoolDetailResponseBodyManagement extends $dara.M
|
|
|
617
617
|
autoFaultDiagnosis?: boolean;
|
|
618
618
|
/**
|
|
619
619
|
* @remarks
|
|
620
|
-
*
|
|
620
|
+
* Auto repair. Takes effect only when `enable=true`.
|
|
621
621
|
*
|
|
622
|
-
* - `true`:
|
|
623
|
-
* - `false`:
|
|
622
|
+
* - `true`: enable auto repair.
|
|
623
|
+
* - `false`: disable auto repair.
|
|
624
624
|
*
|
|
625
625
|
* @example
|
|
626
626
|
* true
|
|
@@ -628,14 +628,14 @@ export class DescribeClusterNodePoolDetailResponseBodyManagement extends $dara.M
|
|
|
628
628
|
autoRepair?: boolean;
|
|
629
629
|
/**
|
|
630
630
|
* @remarks
|
|
631
|
-
*
|
|
631
|
+
* Auto repair node policy.
|
|
632
632
|
*/
|
|
633
633
|
autoRepairPolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy;
|
|
634
634
|
/**
|
|
635
635
|
* @remarks
|
|
636
|
-
*
|
|
637
|
-
* - `true`:
|
|
638
|
-
* - `false`:
|
|
636
|
+
* Whether to automatically upgrade nodes. Takes effect only when `enable=true`.
|
|
637
|
+
* - `true`: enable auto upgrade.
|
|
638
|
+
* - `false`: disable auto upgrade.
|
|
639
639
|
*
|
|
640
640
|
* @example
|
|
641
641
|
* true
|
|
@@ -643,15 +643,15 @@ export class DescribeClusterNodePoolDetailResponseBodyManagement extends $dara.M
|
|
|
643
643
|
autoUpgrade?: boolean;
|
|
644
644
|
/**
|
|
645
645
|
* @remarks
|
|
646
|
-
*
|
|
646
|
+
* Auto upgrade policy.
|
|
647
647
|
*/
|
|
648
648
|
autoUpgradePolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgradePolicy;
|
|
649
649
|
/**
|
|
650
650
|
* @remarks
|
|
651
|
-
*
|
|
651
|
+
* Whether to automatically fix CVEs. Takes effect only when `enable=true`.
|
|
652
652
|
*
|
|
653
|
-
* - `true`:
|
|
654
|
-
* - `false`:
|
|
653
|
+
* - `true`: allow automatic CVE fixing.
|
|
654
|
+
* - `false`: do not allow automatic CVE fixing.
|
|
655
655
|
*
|
|
656
656
|
* @example
|
|
657
657
|
* true
|
|
@@ -659,15 +659,15 @@ export class DescribeClusterNodePoolDetailResponseBodyManagement extends $dara.M
|
|
|
659
659
|
autoVulFix?: boolean;
|
|
660
660
|
/**
|
|
661
661
|
* @remarks
|
|
662
|
-
*
|
|
662
|
+
* Auto CVE fix policy.
|
|
663
663
|
*/
|
|
664
664
|
autoVulFixPolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy;
|
|
665
665
|
/**
|
|
666
666
|
* @remarks
|
|
667
|
-
*
|
|
667
|
+
* Whether managed node pool is enabled. Valid values:
|
|
668
668
|
*
|
|
669
|
-
* - `true`:
|
|
670
|
-
* - `false`:
|
|
669
|
+
* - `true`: enable managed node pool.
|
|
670
|
+
* - `false`: disable managed node pool. Other related configurations take effect only when `enable=true`.
|
|
671
671
|
*
|
|
672
672
|
* @example
|
|
673
673
|
* true
|
|
@@ -675,7 +675,7 @@ export class DescribeClusterNodePoolDetailResponseBodyManagement extends $dara.M
|
|
|
675
675
|
enable?: boolean;
|
|
676
676
|
/**
|
|
677
677
|
* @remarks
|
|
678
|
-
*
|
|
678
|
+
* Auto upgrade configuration. Takes effect only when `enable=true`.
|
|
679
679
|
*/
|
|
680
680
|
upgradeConfig?: DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig;
|
|
681
681
|
static names(): { [key: string]: string } {
|
|
@@ -731,8 +731,11 @@ export class DescribeClusterNodePoolDetailResponseBodyNodeComponentsConfig exten
|
|
|
731
731
|
/**
|
|
732
732
|
* @remarks
|
|
733
733
|
* Node component custom configuration.
|
|
734
|
+
*
|
|
735
|
+
* @example
|
|
736
|
+
* {"cpuManagerPolicy":"static"}
|
|
734
737
|
*/
|
|
735
|
-
customConfig?: { [key: string]:
|
|
738
|
+
customConfig?: { [key: string]: any };
|
|
736
739
|
static names(): { [key: string]: string } {
|
|
737
740
|
return {
|
|
738
741
|
customConfig: 'custom_config',
|
|
@@ -741,7 +744,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodeComponentsConfig exten
|
|
|
741
744
|
|
|
742
745
|
static types(): { [key: string]: any } {
|
|
743
746
|
return {
|
|
744
|
-
customConfig: { 'type': 'map', 'keyType': 'string', 'valueType': '
|
|
747
|
+
customConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
745
748
|
};
|
|
746
749
|
}
|
|
747
750
|
|
|
@@ -810,7 +813,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodeComponents extends $da
|
|
|
810
813
|
export class DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsConfig extends $dara.Model {
|
|
811
814
|
/**
|
|
812
815
|
* @remarks
|
|
813
|
-
*
|
|
816
|
+
* Hugepage configuration.
|
|
814
817
|
*/
|
|
815
818
|
hugepage?: Hugepage;
|
|
816
819
|
static names(): { [key: string]: string } {
|
|
@@ -840,12 +843,12 @@ export class DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsConfig ext
|
|
|
840
843
|
export class DescribeClusterNodePoolDetailResponseBodyNodeConfig extends $dara.Model {
|
|
841
844
|
/**
|
|
842
845
|
* @remarks
|
|
843
|
-
*
|
|
846
|
+
* Kubelet parameter configuration.
|
|
844
847
|
*/
|
|
845
848
|
kubeletConfiguration?: KubeletConfig;
|
|
846
849
|
/**
|
|
847
850
|
* @remarks
|
|
848
|
-
*
|
|
851
|
+
* Node operating system configuration.
|
|
849
852
|
*/
|
|
850
853
|
nodeOsConfig?: DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsConfig;
|
|
851
854
|
static names(): { [key: string]: string } {
|
|
@@ -888,10 +891,10 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
888
891
|
created?: string;
|
|
889
892
|
/**
|
|
890
893
|
* @remarks
|
|
891
|
-
*
|
|
894
|
+
* Whether the node pool is the default node pool. A cluster usually has only one default node pool. Valid values:
|
|
892
895
|
*
|
|
893
|
-
* - `true`:
|
|
894
|
-
* - `false`:
|
|
896
|
+
* - `true`: the default node pool.
|
|
897
|
+
* - `false`: not the default node pool.
|
|
895
898
|
*
|
|
896
899
|
* @example
|
|
897
900
|
* true
|
|
@@ -899,7 +902,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
899
902
|
isDefault?: boolean;
|
|
900
903
|
/**
|
|
901
904
|
* @remarks
|
|
902
|
-
*
|
|
905
|
+
* Node pool name.
|
|
903
906
|
*
|
|
904
907
|
* @example
|
|
905
908
|
* default-nodepool
|
|
@@ -907,7 +910,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
907
910
|
name?: string;
|
|
908
911
|
/**
|
|
909
912
|
* @remarks
|
|
910
|
-
*
|
|
913
|
+
* Node pool ID.
|
|
911
914
|
*
|
|
912
915
|
* @example
|
|
913
916
|
* np615c0e0966124216a0412e10afe0****
|
|
@@ -915,7 +918,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
915
918
|
nodepoolId?: string;
|
|
916
919
|
/**
|
|
917
920
|
* @remarks
|
|
918
|
-
*
|
|
921
|
+
* Region ID.
|
|
919
922
|
*
|
|
920
923
|
* @example
|
|
921
924
|
* cn-beijing
|
|
@@ -923,7 +926,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
923
926
|
regionId?: string;
|
|
924
927
|
/**
|
|
925
928
|
* @remarks
|
|
926
|
-
*
|
|
929
|
+
* Resource group ID.
|
|
927
930
|
*
|
|
928
931
|
* @example
|
|
929
932
|
* rg-acfmyvw3wjmb****
|
|
@@ -931,8 +934,8 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
931
934
|
resourceGroupId?: string;
|
|
932
935
|
/**
|
|
933
936
|
* @remarks
|
|
934
|
-
*
|
|
935
|
-
* - `ess`:
|
|
937
|
+
* Node pool type.
|
|
938
|
+
* - `ess`: standard node pool (includes managed and auto scaling features).
|
|
936
939
|
* - `edge`: edge node pool.
|
|
937
940
|
* - `lingjun`: Lingjun node pool.
|
|
938
941
|
*
|
|
@@ -986,7 +989,7 @@ export class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo extends $dara
|
|
|
986
989
|
export class DescribeClusterNodePoolDetailResponseBodyScalingGroupPrivatePoolOptions extends $dara.Model {
|
|
987
990
|
/**
|
|
988
991
|
* @remarks
|
|
989
|
-
*
|
|
992
|
+
* Private node pool ID.
|
|
990
993
|
*
|
|
991
994
|
* @example
|
|
992
995
|
* eap-bp67acfmxazb4****
|
|
@@ -994,13 +997,13 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroupPrivatePoolOpt
|
|
|
994
997
|
id?: string;
|
|
995
998
|
/**
|
|
996
999
|
* @remarks
|
|
997
|
-
*
|
|
1000
|
+
* Private node pool type, the private pool capacity option for instance launch. After an elasticity assurance or capacity reservation takes effect, a private pool capacity is generated for instance launch. Valid values:
|
|
998
1001
|
*
|
|
999
|
-
* - `Open`: open mode. Automatically matches open private pool capacity. If no matching private pool capacity is available, public pool resources are used.
|
|
1002
|
+
* - `Open`: open mode. Automatically matches open-type private pool capacity. If no matching private pool capacity is available, public pool resources are used for launch.
|
|
1000
1003
|
*
|
|
1001
1004
|
* - `Target`: targeted mode. Uses the specified private pool capacity to launch instances. If the specified private pool capacity is unavailable, the instance fails to launch.
|
|
1002
1005
|
*
|
|
1003
|
-
* - `None`:
|
|
1006
|
+
* - `None`: do not use mode. Instance launch does not use private pool capacity.
|
|
1004
1007
|
*
|
|
1005
1008
|
* @example
|
|
1006
1009
|
* Open
|
|
@@ -1037,10 +1040,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroupResourcePoolOp
|
|
|
1037
1040
|
privatePoolIds?: string[];
|
|
1038
1041
|
/**
|
|
1039
1042
|
* @remarks
|
|
1040
|
-
* The resource pool policy used
|
|
1043
|
+
* The resource pool policy used when creating instances. Valid values:
|
|
1041
1044
|
* PrivatePoolFirst: private pool first.
|
|
1042
1045
|
* PrivatePoolOnly: private pool only.
|
|
1043
|
-
* None:
|
|
1046
|
+
* None: do not use resource pool policy.
|
|
1044
1047
|
*
|
|
1045
1048
|
* @example
|
|
1046
1049
|
* PrivatePoolFirst
|
|
@@ -1075,7 +1078,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroupResourcePoolOp
|
|
|
1075
1078
|
export class DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPriceLimit extends $dara.Model {
|
|
1076
1079
|
/**
|
|
1077
1080
|
* @remarks
|
|
1078
|
-
*
|
|
1081
|
+
* Preemptible instance type.
|
|
1079
1082
|
*
|
|
1080
1083
|
* @example
|
|
1081
1084
|
* ecs.c6.large
|
|
@@ -1083,14 +1086,14 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPriceLimit
|
|
|
1083
1086
|
instanceType?: string;
|
|
1084
1087
|
/**
|
|
1085
1088
|
* @remarks
|
|
1086
|
-
*
|
|
1089
|
+
* Market price per instance.
|
|
1087
1090
|
*
|
|
1088
1091
|
* <props="china">Unit: CNY/hour.
|
|
1089
1092
|
*
|
|
1090
1093
|
*
|
|
1091
1094
|
*
|
|
1092
1095
|
*
|
|
1093
|
-
* <props="intl">Unit: USD/hour
|
|
1096
|
+
* <props="intl">Unit: USD/hour.
|
|
1094
1097
|
*
|
|
1095
1098
|
* @example
|
|
1096
1099
|
* 0.39
|
|
@@ -1122,10 +1125,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPriceLimit
|
|
|
1122
1125
|
export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara.Model {
|
|
1123
1126
|
/**
|
|
1124
1127
|
* @remarks
|
|
1125
|
-
*
|
|
1128
|
+
* Whether auto-renewal is enabled for nodes. This parameter takes effect only when `instance_charge_type` is set to `PrePaid`. Valid values:
|
|
1126
1129
|
*
|
|
1127
|
-
* - `true`:
|
|
1128
|
-
* - `false`:
|
|
1130
|
+
* - `true`: enable auto-renewal.
|
|
1131
|
+
* - `false`: disable auto-renewal.
|
|
1129
1132
|
*
|
|
1130
1133
|
* @example
|
|
1131
1134
|
* false
|
|
@@ -1133,7 +1136,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1133
1136
|
autoRenew?: boolean;
|
|
1134
1137
|
/**
|
|
1135
1138
|
* @remarks
|
|
1136
|
-
* The duration of each auto-renewal
|
|
1139
|
+
* The duration of each auto-renewal. Valid values:
|
|
1137
1140
|
* - When PeriodUnit=Week: 1, 2, 3.
|
|
1138
1141
|
* - When PeriodUnit=Month: 1, 2, 3, 6, 12, 24, 36, 48, 60.
|
|
1139
1142
|
*
|
|
@@ -1153,10 +1156,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1153
1156
|
cisEnabled?: boolean;
|
|
1154
1157
|
/**
|
|
1155
1158
|
* @remarks
|
|
1156
|
-
*
|
|
1159
|
+
* When `multi_az_policy` is set to `COST_OPTIMIZED`, whether to allow automatic creation of pay-as-you-go instances to meet the required number of ECS instances when preemptible instances cannot be created due to price or inventory reasons. Valid values:
|
|
1157
1160
|
*
|
|
1158
|
-
* - `true`:
|
|
1159
|
-
* - `false`:
|
|
1161
|
+
* - `true`: allow automatic creation of pay-as-you-go instances to meet the required number of ECS instances.
|
|
1162
|
+
* - `false`: do not allow automatic creation of pay-as-you-go instances to meet the required number of ECS instances.
|
|
1160
1163
|
*
|
|
1161
1164
|
* @example
|
|
1162
1165
|
* true
|
|
@@ -1164,12 +1167,12 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1164
1167
|
compensateWithOnDemand?: boolean;
|
|
1165
1168
|
/**
|
|
1166
1169
|
* @remarks
|
|
1167
|
-
* The
|
|
1170
|
+
* The combination of data disk type, size, and other configurations for nodes.
|
|
1168
1171
|
*/
|
|
1169
1172
|
dataDisks?: DataDisk[];
|
|
1170
1173
|
/**
|
|
1171
1174
|
* @remarks
|
|
1172
|
-
*
|
|
1175
|
+
* Deployment set ID.
|
|
1173
1176
|
*
|
|
1174
1177
|
* @example
|
|
1175
1178
|
* ds-bp1d19mmbsv3jf6xxxxx
|
|
@@ -1177,7 +1180,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1177
1180
|
deploymentsetId?: string;
|
|
1178
1181
|
/**
|
|
1179
1182
|
* @remarks
|
|
1180
|
-
*
|
|
1183
|
+
* Desired number of nodes in the node pool.
|
|
1181
1184
|
*
|
|
1182
1185
|
* @example
|
|
1183
1186
|
* 2
|
|
@@ -1185,12 +1188,12 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1185
1188
|
desiredSize?: number;
|
|
1186
1189
|
/**
|
|
1187
1190
|
* @remarks
|
|
1188
|
-
*
|
|
1191
|
+
* Block device initialization configuration.
|
|
1189
1192
|
*/
|
|
1190
1193
|
diskInit?: DiskInit[];
|
|
1191
1194
|
/**
|
|
1192
1195
|
* @remarks
|
|
1193
|
-
*
|
|
1196
|
+
* Custom image ID.
|
|
1194
1197
|
*
|
|
1195
1198
|
* @example
|
|
1196
1199
|
* aliyun_3_x64_20G_alibase_20241218.vhd
|
|
@@ -1198,17 +1201,17 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1198
1201
|
imageId?: string;
|
|
1199
1202
|
/**
|
|
1200
1203
|
* @remarks
|
|
1201
|
-
*
|
|
1204
|
+
* Operating system image type.
|
|
1202
1205
|
* - `AliyunLinux`: Alinux2 image.
|
|
1203
|
-
* - `AliyunLinuxSecurity`: Alinux2 UEFI
|
|
1206
|
+
* - `AliyunLinuxSecurity`: Alinux2 image UEFI edition.
|
|
1204
1207
|
* - `AliyunLinux3`: Alinux3 image.
|
|
1205
|
-
* - `AliyunLinux3Arm64`: Alinux3 ARM
|
|
1206
|
-
* - `AliyunLinux3Security`: Alinux3 UEFI
|
|
1208
|
+
* - `AliyunLinux3Arm64`: Alinux3 image ARM edition.
|
|
1209
|
+
* - `AliyunLinux3Security`: Alinux3 image UEFI edition.
|
|
1207
1210
|
* - `CentOS`: CentOS image.
|
|
1208
1211
|
* - `Windows`: Windows image.
|
|
1209
1212
|
* - `WindowsCore`: WindowsCore image.
|
|
1210
1213
|
* - `ContainerOS`: container-optimized image.
|
|
1211
|
-
* - `AliyunLinux3ContainerOptimized`: Alinux3 container-optimized
|
|
1214
|
+
* - `AliyunLinux3ContainerOptimized`: Alinux3 image container-optimized edition.
|
|
1212
1215
|
*
|
|
1213
1216
|
* @example
|
|
1214
1217
|
* AliyunLinux3
|
|
@@ -1216,7 +1219,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1216
1219
|
imageType?: string;
|
|
1217
1220
|
/**
|
|
1218
1221
|
* @remarks
|
|
1219
|
-
*
|
|
1222
|
+
* Node pool node billing type. Valid values:
|
|
1220
1223
|
*
|
|
1221
1224
|
* - `PrePaid`: subscription.
|
|
1222
1225
|
* - `PostPaid`: pay-as-you-go.
|
|
@@ -1227,12 +1230,12 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1227
1230
|
instanceChargeType?: string;
|
|
1228
1231
|
/**
|
|
1229
1232
|
* @remarks
|
|
1230
|
-
*
|
|
1233
|
+
* Metadata access configuration for ECS instances.
|
|
1231
1234
|
*/
|
|
1232
1235
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
1233
1236
|
/**
|
|
1234
1237
|
* @remarks
|
|
1235
|
-
*
|
|
1238
|
+
* Instance attribute configuration.
|
|
1236
1239
|
*/
|
|
1237
1240
|
instancePatterns?: InstancePatterns[];
|
|
1238
1241
|
/**
|
|
@@ -1242,10 +1245,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1242
1245
|
instanceTypes?: string[];
|
|
1243
1246
|
/**
|
|
1244
1247
|
* @remarks
|
|
1245
|
-
*
|
|
1248
|
+
* Node public IP billing type.
|
|
1246
1249
|
*
|
|
1247
|
-
* - PayByBandwidth:
|
|
1248
|
-
* - PayByTraffic:
|
|
1250
|
+
* - PayByBandwidth: billed by fixed bandwidth.
|
|
1251
|
+
* - PayByTraffic: billed by data transfer.
|
|
1249
1252
|
*
|
|
1250
1253
|
* @example
|
|
1251
1254
|
* PayByBandwidth
|
|
@@ -1253,7 +1256,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1253
1256
|
internetChargeType?: string;
|
|
1254
1257
|
/**
|
|
1255
1258
|
* @remarks
|
|
1256
|
-
*
|
|
1259
|
+
* Maximum outbound bandwidth for node public IP, in Mbps (Megabits per second). Valid values: 1 to 100.
|
|
1257
1260
|
*
|
|
1258
1261
|
* @example
|
|
1259
1262
|
* 10
|
|
@@ -1261,7 +1264,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1261
1264
|
internetMaxBandwidthOut?: number;
|
|
1262
1265
|
/**
|
|
1263
1266
|
* @remarks
|
|
1264
|
-
*
|
|
1267
|
+
* Key pair name. Mutually exclusive with `login_password`. For managed node pools, only `key_pair` is supported.
|
|
1265
1268
|
*
|
|
1266
1269
|
* @example
|
|
1267
1270
|
* pro-nodepool
|
|
@@ -1269,11 +1272,11 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1269
1272
|
keyPair?: string;
|
|
1270
1273
|
/**
|
|
1271
1274
|
* @remarks
|
|
1272
|
-
*
|
|
1275
|
+
* Whether the launched ECS instances log in as a non-root user.
|
|
1273
1276
|
*
|
|
1274
|
-
* - true:
|
|
1277
|
+
* - true: log in as a non-root user (ecs-user).
|
|
1275
1278
|
*
|
|
1276
|
-
* - false:
|
|
1279
|
+
* - false: log in as the root user.
|
|
1277
1280
|
*
|
|
1278
1281
|
* @example
|
|
1279
1282
|
* true
|
|
@@ -1281,9 +1284,9 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1281
1284
|
loginAsNonRoot?: boolean;
|
|
1282
1285
|
/**
|
|
1283
1286
|
* @remarks
|
|
1284
|
-
*
|
|
1287
|
+
* SSH login password. Mutually exclusive with `key_pair`. The password must be 8 to 30 characters in length, and must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
1285
1288
|
*
|
|
1286
|
-
* For security purposes, the password is encrypted in
|
|
1289
|
+
* For security purposes, the password is encrypted in query results.
|
|
1287
1290
|
*
|
|
1288
1291
|
* @example
|
|
1289
1292
|
* ********
|
|
@@ -1291,15 +1294,15 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1291
1294
|
loginPassword?: string;
|
|
1292
1295
|
/**
|
|
1293
1296
|
* @remarks
|
|
1294
|
-
*
|
|
1297
|
+
* Multi-zone scaling group ECS instance scaling policy. Valid values:
|
|
1295
1298
|
*
|
|
1296
|
-
* - `PRIORITY`:
|
|
1299
|
+
* - `PRIORITY`: scales based on the vSwitches (VSwitchIds.N) that you defined. When ECS instances cannot be created in the zone of a higher-priority vSwitch, the system automatically uses the next-priority vSwitch to create ECS instances.
|
|
1297
1300
|
*
|
|
1298
|
-
* - `COST_OPTIMIZED`:
|
|
1301
|
+
* - `COST_OPTIMIZED`: attempts to create instances in order of vCPU unit price from low to high. When the scaling configuration specifies multiple instance types with preemptible billing, preemptible instances are created first. You can use the `CompensateWithOnDemand` parameter to specify whether to automatically attempt to create pay-as-you-go instances when preemptible instances cannot be created due to insufficient inventory.
|
|
1299
1302
|
*
|
|
1300
|
-
* >`COST_OPTIMIZED` takes effect only when
|
|
1303
|
+
* >`COST_OPTIMIZED` takes effect only when multiple instance types are specified or preemptible instances are selected in the scaling configuration.
|
|
1301
1304
|
*
|
|
1302
|
-
* - `BALANCE`:
|
|
1305
|
+
* - `BALANCE`: evenly distributes ECS instances across the multiple zones specified by the scaling group. If zones become unbalanced due to insufficient inventory, you can use the RebalanceInstances API to rebalance resources. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html).
|
|
1303
1306
|
*
|
|
1304
1307
|
* Default value: `PRIORITY`.
|
|
1305
1308
|
*
|
|
@@ -1317,7 +1320,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1317
1320
|
onDemandBaseCapacity?: number;
|
|
1318
1321
|
/**
|
|
1319
1322
|
* @remarks
|
|
1320
|
-
*
|
|
1323
|
+
* After the scaling group meets the minimum number of pay-as-you-go instances (`on_demand_base_capacity`), the percentage of pay-as-you-go instances among the excess instances. Valid values: [0,100\\].
|
|
1321
1324
|
*
|
|
1322
1325
|
* @example
|
|
1323
1326
|
* 20
|
|
@@ -1325,7 +1328,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1325
1328
|
onDemandPercentageAboveBaseCapacity?: number;
|
|
1326
1329
|
/**
|
|
1327
1330
|
* @remarks
|
|
1328
|
-
*
|
|
1331
|
+
* Node subscription duration. This parameter takes effect and is required only when `instance_charge_type` is set to `PrePaid`.
|
|
1329
1332
|
*
|
|
1330
1333
|
* - When `period_unit=Week`, valid values of `period`: {1, 2, 3, 4}.
|
|
1331
1334
|
* - When `period_unit=Month`, valid values of `period`: {1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, 60}.
|
|
@@ -1336,10 +1339,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1336
1339
|
period?: number;
|
|
1337
1340
|
/**
|
|
1338
1341
|
* @remarks
|
|
1339
|
-
*
|
|
1342
|
+
* Node billing period unit. This parameter must be specified when `instance_charge_type` is set to `PrePaid`.
|
|
1340
1343
|
*
|
|
1341
|
-
* - `Month`:
|
|
1342
|
-
* - `Week`:
|
|
1344
|
+
* - `Month`: billed on a monthly basis.
|
|
1345
|
+
* - `Week`: billed on a weekly basis.
|
|
1343
1346
|
*
|
|
1344
1347
|
* @example
|
|
1345
1348
|
* Month
|
|
@@ -1347,12 +1350,12 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1347
1350
|
periodUnit?: string;
|
|
1348
1351
|
/**
|
|
1349
1352
|
* @remarks
|
|
1350
|
-
*
|
|
1353
|
+
* Operating system distribution. Valid values:
|
|
1351
1354
|
*
|
|
1352
1355
|
* - `CentOS`
|
|
1353
1356
|
* - `AliyunLinux`
|
|
1354
1357
|
* - `Windows`
|
|
1355
|
-
* - `WindowsCore
|
|
1358
|
+
* - `WindowsCore`
|
|
1356
1359
|
*
|
|
1357
1360
|
* @example
|
|
1358
1361
|
* AliyunLinux
|
|
@@ -1360,7 +1363,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1360
1363
|
platform?: string;
|
|
1361
1364
|
/**
|
|
1362
1365
|
* @remarks
|
|
1363
|
-
*
|
|
1366
|
+
* Private node pool configuration.
|
|
1364
1367
|
*/
|
|
1365
1368
|
privatePoolOptions?: DescribeClusterNodePoolDetailResponseBodyScalingGroupPrivatePoolOptions;
|
|
1366
1369
|
/**
|
|
@@ -1373,7 +1376,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1373
1376
|
ramPolicy?: string;
|
|
1374
1377
|
/**
|
|
1375
1378
|
* @remarks
|
|
1376
|
-
*
|
|
1379
|
+
* Worker RAM role name.
|
|
1377
1380
|
*
|
|
1378
1381
|
* @example
|
|
1379
1382
|
* KubernetesWorkerRole-4a4fa089-80c1-48a5-b3c6-9349311f****
|
|
@@ -1381,17 +1384,17 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1381
1384
|
ramRoleName?: string;
|
|
1382
1385
|
/**
|
|
1383
1386
|
* @remarks
|
|
1384
|
-
*
|
|
1387
|
+
* If an RDS instance list is specified, the cluster node ECS instances are automatically added to the RDS access whitelist.
|
|
1385
1388
|
*/
|
|
1386
1389
|
rdsInstances?: string[];
|
|
1387
1390
|
/**
|
|
1388
1391
|
* @remarks
|
|
1389
|
-
* The resource pool and resource pool policy used
|
|
1392
|
+
* The resource pool and resource pool policy used when creating instances.
|
|
1390
1393
|
*/
|
|
1391
1394
|
resourcePoolOptions?: DescribeClusterNodePoolDetailResponseBodyScalingGroupResourcePoolOptions;
|
|
1392
1395
|
/**
|
|
1393
1396
|
* @remarks
|
|
1394
|
-
*
|
|
1397
|
+
* Scaling group ID.
|
|
1395
1398
|
*
|
|
1396
1399
|
* @example
|
|
1397
1400
|
* asg-2zeieod8giqmov7z****
|
|
@@ -1399,10 +1402,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1399
1402
|
scalingGroupId?: string;
|
|
1400
1403
|
/**
|
|
1401
1404
|
* @remarks
|
|
1402
|
-
*
|
|
1405
|
+
* Scaling group mode. Valid values:
|
|
1403
1406
|
*
|
|
1404
1407
|
* - `release`: standard mode. Scales by creating and releasing ECS instances based on resource usage.
|
|
1405
|
-
* - `recycle`: swift mode. Scales by creating, stopping, and starting instances
|
|
1408
|
+
* - `recycle`: swift mode. Scales by creating, stopping, and starting ECS instances, which improves the speed of subsequent scaling operations (compute resources are not charged during stopped state, only storage fees are charged, except for local disk instance types).
|
|
1406
1409
|
*
|
|
1407
1410
|
* @example
|
|
1408
1411
|
* release
|
|
@@ -1410,7 +1413,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1410
1413
|
scalingPolicy?: string;
|
|
1411
1414
|
/**
|
|
1412
1415
|
* @remarks
|
|
1413
|
-
*
|
|
1416
|
+
* Node pool security group ID. When the node pool is bindded to multiple security groups, this is the first value in `security_group_ids`.
|
|
1414
1417
|
*
|
|
1415
1418
|
* @example
|
|
1416
1419
|
* sg-2ze60ockeekspl3d****
|
|
@@ -1418,15 +1421,15 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1418
1421
|
securityGroupId?: string;
|
|
1419
1422
|
/**
|
|
1420
1423
|
* @remarks
|
|
1421
|
-
* The list of security group IDs
|
|
1424
|
+
* The list of node pool security group IDs.
|
|
1422
1425
|
*/
|
|
1423
1426
|
securityGroupIds?: string[];
|
|
1424
1427
|
/**
|
|
1425
1428
|
* @remarks
|
|
1426
|
-
*
|
|
1429
|
+
* Alibaba Cloud OS security hardening. Valid values:
|
|
1427
1430
|
*
|
|
1428
|
-
* - `true`:
|
|
1429
|
-
* - `false`:
|
|
1431
|
+
* - `true`: enable Alibaba Cloud OS security hardening.
|
|
1432
|
+
* - `false`: disable Alibaba Cloud OS security hardening.
|
|
1430
1433
|
*
|
|
1431
1434
|
* Default value: `false`.
|
|
1432
1435
|
*
|
|
@@ -1436,7 +1439,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1436
1439
|
securityHardeningOs?: boolean;
|
|
1437
1440
|
/**
|
|
1438
1441
|
* @remarks
|
|
1439
|
-
*
|
|
1442
|
+
* Whether to enable China classified protection hardening. This feature can be enabled for nodes only when the system image is Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3. Alibaba Cloud provides classified protection compliance baseline check standards and scanning programs for Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 China Classified Protection 2.0 Level 3 images.
|
|
1440
1443
|
*
|
|
1441
1444
|
* @example
|
|
1442
1445
|
* false
|
|
@@ -1444,7 +1447,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1444
1447
|
socEnabled?: boolean;
|
|
1445
1448
|
/**
|
|
1446
1449
|
* @remarks
|
|
1447
|
-
* The number of available instance types. The scaling group creates
|
|
1450
|
+
* The number of available instance types specified. The scaling group creates preemptible instances in a balanced manner using the instance types with the lowest cost. Valid values: [1,10\\].
|
|
1448
1451
|
*
|
|
1449
1452
|
* @example
|
|
1450
1453
|
* 5
|
|
@@ -1452,10 +1455,10 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1452
1455
|
spotInstancePools?: number;
|
|
1453
1456
|
/**
|
|
1454
1457
|
* @remarks
|
|
1455
|
-
*
|
|
1458
|
+
* Whether to enable supplementing preemptible instances. When enabled, the scaling group attempts to create new instances to replace preemptible instances that are about to be reclaimed when the system notification is received. Valid values:
|
|
1456
1459
|
*
|
|
1457
|
-
* - `true`:
|
|
1458
|
-
* - `false`:
|
|
1460
|
+
* - `true`: enable supplementing preemptible instances.
|
|
1461
|
+
* - `false`: disable supplementing preemptible instances.
|
|
1459
1462
|
*
|
|
1460
1463
|
* @example
|
|
1461
1464
|
* false
|
|
@@ -1463,17 +1466,17 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1463
1466
|
spotInstanceRemedy?: boolean;
|
|
1464
1467
|
/**
|
|
1465
1468
|
* @remarks
|
|
1466
|
-
*
|
|
1469
|
+
* Preemptible instance market price range configuration.
|
|
1467
1470
|
*/
|
|
1468
1471
|
spotPriceLimit?: DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPriceLimit[];
|
|
1469
1472
|
/**
|
|
1470
1473
|
* @remarks
|
|
1471
|
-
*
|
|
1472
|
-
* - NoSpot: non-
|
|
1473
|
-
* - SpotWithPriceLimit:
|
|
1474
|
-
* - SpotAsPriceGo:
|
|
1474
|
+
* Preemptible instance type. Valid values:
|
|
1475
|
+
* - NoSpot: non-preemptible instance.
|
|
1476
|
+
* - SpotWithPriceLimit: specifies the maximum price for the preemptible instance.
|
|
1477
|
+
* - SpotAsPriceGo: the system automatically bids at the current market price.
|
|
1475
1478
|
*
|
|
1476
|
-
* For more information, see [
|
|
1479
|
+
* For more information, see [Preemptible instances](https://help.aliyun.com/document_detail/157759.html).
|
|
1477
1480
|
*
|
|
1478
1481
|
* @example
|
|
1479
1482
|
* NoSpot
|
|
@@ -1481,11 +1484,11 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1481
1484
|
spotStrategy?: string;
|
|
1482
1485
|
/**
|
|
1483
1486
|
* @remarks
|
|
1484
|
-
*
|
|
1485
|
-
* - true:
|
|
1486
|
-
* - false:
|
|
1487
|
+
* Whether to enable Burst (performance bursting) for the node system disk. Valid values:
|
|
1488
|
+
* - true: enable. When enabled, the disk temporarily increases its performance during burst data read/write pressure from fluctuating workloads until the workload returns to a steady state.
|
|
1489
|
+
* - false: disable.
|
|
1487
1490
|
*
|
|
1488
|
-
* This parameter is supported only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL
|
|
1491
|
+
* This parameter is supported only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL disk](https://help.aliyun.com/document_detail/368372.html).
|
|
1489
1492
|
*
|
|
1490
1493
|
* @example
|
|
1491
1494
|
* true
|
|
@@ -1493,17 +1496,17 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1493
1496
|
systemDiskBurstingEnabled?: boolean;
|
|
1494
1497
|
/**
|
|
1495
1498
|
* @remarks
|
|
1496
|
-
*
|
|
1499
|
+
* Multiple disk types for the system disk. When a higher-priority disk type is unavailable, the system automatically attempts the next-priority disk type for creating the system disk.
|
|
1497
1500
|
*/
|
|
1498
1501
|
systemDiskCategories?: string[];
|
|
1499
1502
|
/**
|
|
1500
1503
|
* @remarks
|
|
1501
|
-
*
|
|
1502
|
-
* - `cloud_efficiency`: ultra
|
|
1503
|
-
* - `cloud_ssd`:
|
|
1504
|
-
* - `cloud_essd`:
|
|
1505
|
-
* - `cloud_auto`: ESSD AutoPL
|
|
1506
|
-
* - `cloud_essd_entry`: ESSD Entry
|
|
1504
|
+
* Node system disk type. Valid values:
|
|
1505
|
+
* - `cloud_efficiency`: ultra disk.
|
|
1506
|
+
* - `cloud_ssd`: SSD.
|
|
1507
|
+
* - `cloud_essd`: ESSD.
|
|
1508
|
+
* - `cloud_auto`: ESSD AutoPL disk.
|
|
1509
|
+
* - `cloud_essd_entry`: ESSD Entry disk.
|
|
1507
1510
|
*
|
|
1508
1511
|
* @example
|
|
1509
1512
|
* cloud_efficiency
|
|
@@ -1511,7 +1514,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1511
1514
|
systemDiskCategory?: string;
|
|
1512
1515
|
/**
|
|
1513
1516
|
* @remarks
|
|
1514
|
-
* The encryption algorithm used
|
|
1517
|
+
* The encryption algorithm used by the system disk. Valid values: aes-256.
|
|
1515
1518
|
*
|
|
1516
1519
|
* @example
|
|
1517
1520
|
* aes-256
|
|
@@ -1519,9 +1522,9 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1519
1522
|
systemDiskEncryptAlgorithm?: string;
|
|
1520
1523
|
/**
|
|
1521
1524
|
* @remarks
|
|
1522
|
-
*
|
|
1523
|
-
* - `true`:
|
|
1524
|
-
* - `false`:
|
|
1525
|
+
* Whether to encrypt the system disk. Valid values:
|
|
1526
|
+
* - `true`: encrypt.
|
|
1527
|
+
* - `false`: do not encrypt.
|
|
1525
1528
|
*
|
|
1526
1529
|
* @example
|
|
1527
1530
|
* false
|
|
@@ -1529,7 +1532,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1529
1532
|
systemDiskEncrypted?: boolean;
|
|
1530
1533
|
/**
|
|
1531
1534
|
* @remarks
|
|
1532
|
-
* The KMS key ID used
|
|
1535
|
+
* The KMS key ID used by the system disk.
|
|
1533
1536
|
*
|
|
1534
1537
|
* @example
|
|
1535
1538
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
@@ -1537,11 +1540,11 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1537
1540
|
systemDiskKmsKeyId?: string;
|
|
1538
1541
|
/**
|
|
1539
1542
|
* @remarks
|
|
1540
|
-
*
|
|
1541
|
-
* - PL0: moderate maximum concurrent I/O performance with relatively stable read/write latency.
|
|
1542
|
-
* - PL1: moderate maximum concurrent I/O performance with relatively stable read/write latency.
|
|
1543
|
-
* - PL2: high maximum concurrent I/O performance with stable read/write latency.
|
|
1544
|
-
* - PL3: ultra-high maximum concurrent I/O performance with extremely stable read/write latency.
|
|
1543
|
+
* Node system disk performance level, effective only for ESSD disks. The performance level is related to the disk size. For more information, see [ESSD](https://help.aliyun.com/document_detail/122389.html).
|
|
1544
|
+
* - PL0: moderate maximum concurrent I/O performance, with relatively stable read/write latency.
|
|
1545
|
+
* - PL1: moderate maximum concurrent I/O performance, with relatively stable read/write latency.
|
|
1546
|
+
* - PL2: high maximum concurrent I/O performance, with stable read/write latency.
|
|
1547
|
+
* - PL3: ultra-high maximum concurrent I/O performance, with extremely stable read/write latency.
|
|
1545
1548
|
*
|
|
1546
1549
|
* @example
|
|
1547
1550
|
* PL1
|
|
@@ -1549,11 +1552,11 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1549
1552
|
systemDiskPerformanceLevel?: string;
|
|
1550
1553
|
/**
|
|
1551
1554
|
* @remarks
|
|
1552
|
-
*
|
|
1555
|
+
* Pre-configured read/write IOPS for the node system disk.
|
|
1553
1556
|
*
|
|
1554
|
-
* Valid values: 0 to min{50,000, 1000
|
|
1557
|
+
* Valid values: 0 to min{50,000, 1000\\*capacity - baseline performance}. Baseline performance = min{1,800+50\\*capacity, 50000}.
|
|
1555
1558
|
*
|
|
1556
|
-
* This parameter is supported only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL
|
|
1559
|
+
* This parameter is supported only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL disk](https://help.aliyun.com/document_detail/368372.html).
|
|
1557
1560
|
*
|
|
1558
1561
|
* @example
|
|
1559
1562
|
* 1000
|
|
@@ -1561,7 +1564,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1561
1564
|
systemDiskProvisionedIops?: number;
|
|
1562
1565
|
/**
|
|
1563
1566
|
* @remarks
|
|
1564
|
-
*
|
|
1567
|
+
* Node system disk size, in GiB.
|
|
1565
1568
|
*
|
|
1566
1569
|
* Valid values: [20,2048\\].
|
|
1567
1570
|
*
|
|
@@ -1571,7 +1574,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1571
1574
|
systemDiskSize?: number;
|
|
1572
1575
|
/**
|
|
1573
1576
|
* @remarks
|
|
1574
|
-
*
|
|
1577
|
+
* System disk snapshot policy
|
|
1575
1578
|
*
|
|
1576
1579
|
* @example
|
|
1577
1580
|
* sp-bp11g8z59rawcud9****
|
|
@@ -1579,7 +1582,7 @@ export class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara
|
|
|
1579
1582
|
systemDiskSnapshotPolicyId?: string;
|
|
1580
1583
|
/**
|
|
1581
1584
|
* @remarks
|
|
1582
|
-
*
|
|
1585
|
+
* ECS instance tags.
|
|
1583
1586
|
*/
|
|
1584
1587
|
tags?: Tag[];
|
|
1585
1588
|
/**
|
|
@@ -1760,7 +1763,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $
|
|
|
1760
1763
|
lastTransitionTime?: string;
|
|
1761
1764
|
/**
|
|
1762
1765
|
* @remarks
|
|
1763
|
-
*
|
|
1766
|
+
* Details.
|
|
1764
1767
|
*
|
|
1765
1768
|
* @example
|
|
1766
1769
|
* AutoUpgradeDisabled
|
|
@@ -1768,7 +1771,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $
|
|
|
1768
1771
|
message?: string;
|
|
1769
1772
|
/**
|
|
1770
1773
|
* @remarks
|
|
1771
|
-
*
|
|
1774
|
+
* Reason.
|
|
1772
1775
|
*
|
|
1773
1776
|
* @example
|
|
1774
1777
|
* UpgradeDisabled
|
|
@@ -1776,7 +1779,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $
|
|
|
1776
1779
|
reason?: string;
|
|
1777
1780
|
/**
|
|
1778
1781
|
* @remarks
|
|
1779
|
-
*
|
|
1782
|
+
* Status.
|
|
1780
1783
|
*
|
|
1781
1784
|
* @example
|
|
1782
1785
|
* True
|
|
@@ -1784,7 +1787,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $
|
|
|
1784
1787
|
status?: string;
|
|
1785
1788
|
/**
|
|
1786
1789
|
* @remarks
|
|
1787
|
-
*
|
|
1790
|
+
* Type.
|
|
1788
1791
|
*
|
|
1789
1792
|
* @example
|
|
1790
1793
|
* ImageUpgradeReady
|
|
@@ -1822,7 +1825,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $
|
|
|
1822
1825
|
export class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model {
|
|
1823
1826
|
/**
|
|
1824
1827
|
* @remarks
|
|
1825
|
-
* The current conditions of the node pool,
|
|
1828
|
+
* The current conditions of the node pool, indicating status information across different dimensions of the node pool.
|
|
1826
1829
|
*/
|
|
1827
1830
|
conditions?: DescribeClusterNodePoolDetailResponseBodyStatusConditions[];
|
|
1828
1831
|
/**
|
|
@@ -1843,7 +1846,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model
|
|
|
1843
1846
|
healthyNodes?: number;
|
|
1844
1847
|
/**
|
|
1845
1848
|
* @remarks
|
|
1846
|
-
* The number of nodes
|
|
1849
|
+
* The number of nodes being created.
|
|
1847
1850
|
*
|
|
1848
1851
|
* @example
|
|
1849
1852
|
* 0
|
|
@@ -1859,7 +1862,7 @@ export class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model
|
|
|
1859
1862
|
offlineNodes?: number;
|
|
1860
1863
|
/**
|
|
1861
1864
|
* @remarks
|
|
1862
|
-
* The number of nodes
|
|
1865
|
+
* The number of nodes being removed.
|
|
1863
1866
|
*
|
|
1864
1867
|
* @example
|
|
1865
1868
|
* 0
|
|
@@ -1875,13 +1878,13 @@ export class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model
|
|
|
1875
1878
|
servingNodes?: number;
|
|
1876
1879
|
/**
|
|
1877
1880
|
* @remarks
|
|
1878
|
-
*
|
|
1881
|
+
* Node pool status. Valid values:
|
|
1879
1882
|
*
|
|
1880
|
-
* - `active`:
|
|
1881
|
-
* - `scaling`:
|
|
1882
|
-
* - `removing`:
|
|
1883
|
-
* - `deleting`:
|
|
1884
|
-
* - `updating`:
|
|
1883
|
+
* - `active`: active.
|
|
1884
|
+
* - `scaling`: scaling.
|
|
1885
|
+
* - `removing`: removing nodes.
|
|
1886
|
+
* - `deleting`: deleting.
|
|
1887
|
+
* - `updating`: updating.
|
|
1885
1888
|
*
|
|
1886
1889
|
* @example
|
|
1887
1890
|
* active
|
|
@@ -1938,10 +1941,10 @@ export class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model
|
|
|
1938
1941
|
export class DescribeClusterNodePoolDetailResponseBodyTeeConfig extends $dara.Model {
|
|
1939
1942
|
/**
|
|
1940
1943
|
* @remarks
|
|
1941
|
-
*
|
|
1944
|
+
* Whether to enable confidential computing for the cluster. Valid values:
|
|
1942
1945
|
*
|
|
1943
|
-
* - `true`:
|
|
1944
|
-
* - `false`:
|
|
1946
|
+
* - `true`: enable.
|
|
1947
|
+
* - `false`: disable.
|
|
1945
1948
|
*
|
|
1946
1949
|
* @example
|
|
1947
1950
|
* false
|
|
@@ -1976,14 +1979,14 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
1976
1979
|
autoMode?: DescribeClusterNodePoolDetailResponseBodyAutoMode;
|
|
1977
1980
|
/**
|
|
1978
1981
|
* @remarks
|
|
1979
|
-
*
|
|
1982
|
+
* Auto scaling node pool configuration.
|
|
1980
1983
|
*/
|
|
1981
1984
|
autoScaling?: DescribeClusterNodePoolDetailResponseBodyAutoScaling;
|
|
1982
1985
|
efloNodeGroup?: DescribeClusterNodePoolDetailResponseBodyEfloNodeGroup;
|
|
1983
1986
|
/**
|
|
1984
1987
|
* @remarks
|
|
1985
|
-
* Whether the Pod network uses host network mode.
|
|
1986
|
-
* - `true`: host network. Pods directly use the host network stack and share IP
|
|
1988
|
+
* Whether the Pod network mode uses host network mode.
|
|
1989
|
+
* - `true`: host network. Pods directly use the host\\"s network stack and share the IP address and ports with the host.
|
|
1987
1990
|
* - `false`: container network. Pods have their own independent network stack and do not occupy host network ports.
|
|
1988
1991
|
*
|
|
1989
1992
|
* @example
|
|
@@ -1994,15 +1997,15 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
1994
1997
|
* @remarks
|
|
1995
1998
|
* [This field is deprecated]
|
|
1996
1999
|
*
|
|
1997
|
-
*
|
|
2000
|
+
* Network-related configuration for the edge node pool. This value is meaningful only for edge-type node pools.
|
|
1998
2001
|
*/
|
|
1999
2002
|
interconnectConfig?: DescribeClusterNodePoolDetailResponseBodyInterconnectConfig;
|
|
2000
2003
|
/**
|
|
2001
2004
|
* @remarks
|
|
2002
|
-
*
|
|
2005
|
+
* Network type of the edge node pool. This parameter takes effect only for node pools whose `type` is `edge`. Valid values:
|
|
2003
2006
|
*
|
|
2004
|
-
* - `basic`: public network. Nodes in the node pool interact with cloud nodes
|
|
2005
|
-
* - `private`: private network. Nodes in the node pool connect to the cloud through leased lines,
|
|
2007
|
+
* - `basic`: public network. Nodes in the node pool interact with cloud nodes through the public network, and applications in the node pool cannot directly access the cloud VPC intranet.
|
|
2008
|
+
* - `private`: private network. Nodes in the node pool connect to the cloud through leased lines, VPN, or CEN, providing higher cloud-edge communication quality and more effective security.
|
|
2006
2009
|
*
|
|
2007
2010
|
* @example
|
|
2008
2011
|
* basic
|
|
@@ -2010,9 +2013,9 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
2010
2013
|
interconnectMode?: string;
|
|
2011
2014
|
/**
|
|
2012
2015
|
* @remarks
|
|
2013
|
-
* Whether nodes
|
|
2014
|
-
* - `true`:
|
|
2015
|
-
* - `false`: not
|
|
2016
|
+
* Whether nodes are interconnected at the Layer 3 network within the edge node pool.
|
|
2017
|
+
* - `true`: interconnected. All nodes within the node pool are interconnected at the Layer 3 network.
|
|
2018
|
+
* - `false`: not interconnected. All hosts within the node pool are not interconnected at the Layer 3 network.
|
|
2016
2019
|
*
|
|
2017
2020
|
* @example
|
|
2018
2021
|
* true
|
|
@@ -2020,19 +2023,19 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
2020
2023
|
intranet?: boolean;
|
|
2021
2024
|
/**
|
|
2022
2025
|
* @remarks
|
|
2023
|
-
*
|
|
2026
|
+
* Cluster-related configuration.
|
|
2024
2027
|
*/
|
|
2025
2028
|
kubernetesConfig?: DescribeClusterNodePoolDetailResponseBodyKubernetesConfig;
|
|
2026
2029
|
/**
|
|
2027
2030
|
* @remarks
|
|
2028
|
-
*
|
|
2031
|
+
* Managed node pool configuration.
|
|
2029
2032
|
*/
|
|
2030
2033
|
management?: DescribeClusterNodePoolDetailResponseBodyManagement;
|
|
2031
2034
|
/**
|
|
2032
2035
|
* @remarks
|
|
2033
|
-
* [
|
|
2036
|
+
* [This field is deprecated]
|
|
2034
2037
|
*
|
|
2035
|
-
* The maximum number of nodes
|
|
2038
|
+
* The maximum number of nodes allowed in the edge node pool.
|
|
2036
2039
|
*
|
|
2037
2040
|
* @example
|
|
2038
2041
|
* 10
|
|
@@ -2040,12 +2043,12 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
2040
2043
|
maxNodes?: number;
|
|
2041
2044
|
/**
|
|
2042
2045
|
* @remarks
|
|
2043
|
-
*
|
|
2046
|
+
* The list of node components.
|
|
2044
2047
|
*/
|
|
2045
2048
|
nodeComponents?: DescribeClusterNodePoolDetailResponseBodyNodeComponents[];
|
|
2046
2049
|
/**
|
|
2047
2050
|
* @remarks
|
|
2048
|
-
*
|
|
2051
|
+
* Node configuration.
|
|
2049
2052
|
*/
|
|
2050
2053
|
nodeConfig?: DescribeClusterNodePoolDetailResponseBodyNodeConfig;
|
|
2051
2054
|
/**
|
|
@@ -2055,17 +2058,17 @@ export class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
|
2055
2058
|
nodepoolInfo?: DescribeClusterNodePoolDetailResponseBodyNodepoolInfo;
|
|
2056
2059
|
/**
|
|
2057
2060
|
* @remarks
|
|
2058
|
-
*
|
|
2061
|
+
* Node pool scaling group configuration.
|
|
2059
2062
|
*/
|
|
2060
2063
|
scalingGroup?: DescribeClusterNodePoolDetailResponseBodyScalingGroup;
|
|
2061
2064
|
/**
|
|
2062
2065
|
* @remarks
|
|
2063
|
-
*
|
|
2066
|
+
* Node pool status.
|
|
2064
2067
|
*/
|
|
2065
2068
|
status?: DescribeClusterNodePoolDetailResponseBodyStatus;
|
|
2066
2069
|
/**
|
|
2067
2070
|
* @remarks
|
|
2068
|
-
*
|
|
2071
|
+
* Confidential computing cluster configuration.
|
|
2069
2072
|
*/
|
|
2070
2073
|
teeConfig?: DescribeClusterNodePoolDetailResponseBodyTeeConfig;
|
|
2071
2074
|
static names(): { [key: string]: string } {
|