@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.
Files changed (38) hide show
  1. package/dist/client.d.ts +26 -8
  2. package/dist/client.js +53 -8
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateClusterNodePoolRequest.d.ts +396 -287
  5. package/dist/models/CreateClusterNodePoolRequest.js.map +1 -1
  6. package/dist/models/CreateClusterNodePoolResponseBody.d.ts +1 -1
  7. package/dist/models/DescribeClusterNodePoolDetailResponseBody.d.ts +241 -244
  8. package/dist/models/DescribeClusterNodePoolDetailResponseBody.js.map +1 -1
  9. package/dist/models/DescribeClusterNodePoolsRequest.d.ts +1 -1
  10. package/dist/models/DescribeClusterNodePoolsResponseBody.d.ts +254 -254
  11. package/dist/models/ModifyClusterNodePoolRequest.d.ts +225 -218
  12. package/dist/models/ModifyClusterNodePoolRequest.js.map +1 -1
  13. package/dist/models/Nodepool.d.ts +183 -183
  14. package/dist/models/RunNodeOperationRequest.d.ts +22 -0
  15. package/dist/models/RunNodeOperationRequest.js +63 -0
  16. package/dist/models/RunNodeOperationRequest.js.map +1 -0
  17. package/dist/models/RunNodeOperationResponse.d.ts +19 -0
  18. package/dist/models/RunNodeOperationResponse.js +69 -0
  19. package/dist/models/RunNodeOperationResponse.js.map +1 -0
  20. package/dist/models/RunNodeOperationResponseBody.d.ts +28 -0
  21. package/dist/models/RunNodeOperationResponseBody.js +62 -0
  22. package/dist/models/RunNodeOperationResponseBody.js.map +1 -0
  23. package/dist/models/model.d.ts +3 -0
  24. package/dist/models/model.js +8 -2
  25. package/dist/models/model.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/client.ts +57 -8
  28. package/src/models/CreateClusterNodePoolRequest.ts +397 -288
  29. package/src/models/CreateClusterNodePoolResponseBody.ts +1 -1
  30. package/src/models/DescribeClusterNodePoolDetailResponseBody.ts +241 -244
  31. package/src/models/DescribeClusterNodePoolsRequest.ts +1 -1
  32. package/src/models/DescribeClusterNodePoolsResponseBody.ts +254 -254
  33. package/src/models/ModifyClusterNodePoolRequest.ts +225 -218
  34. package/src/models/Nodepool.ts +183 -183
  35. package/src/models/RunNodeOperationRequest.ts +40 -0
  36. package/src/models/RunNodeOperationResponse.ts +40 -0
  37. package/src/models/RunNodeOperationResponseBody.ts +45 -0
  38. 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 intelligent management is enabled.
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
- * Peak bandwidth of the EIP.
45
+ * The maximum bandwidth of the EIP.
46
46
  *
47
- * Valid values: [1,100]. Unit: Mbps.
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
- * EIP billing method. Valid values:
55
+ * The billing method of the EIP. Valid values:
56
56
  *
57
- * - `PayByBandwidth`: Pay-by-bandwidth.
57
+ * - `PayByBandwidth`: pay-by-bandwidth.
58
58
  *
59
- * - `PayByTraffic`: Pay-by-traffic.
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 automatic scaling is enabled. Valid values:
67
+ * Indicates whether auto scaling is enabled. Valid values:
68
68
  *
69
- * - `true`: Enables automatic scaling for the node pool. When the cluster capacity cannot meet application pod scheduling requirements, ACK automatically scales node resources based on the configured minimum and maximum instance counts. Clusters of version 1.24 or later enable instant elasticity by default. Clusters earlier than version 1.24 enable node autoscaling by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
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`: Disables automatic scaling. ACK adjusts the number of nodes in the node pool to match the desired node count and maintains this count.
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 `auto_scaling` do not take effect.
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 is bound. Valid values:
81
+ * Indicates whether to associate an EIP with the node. Valid values:
82
82
  *
83
- * - `true`: Binds an EIP.
83
+ * - `true`: Associates an EIP with the node.
84
84
  *
85
- * - `false`: Does not bind an EIP.
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
- * Maximum number of scalable instances in the node pool, excluding existing instances.
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
- * Minimum number of scalable instances in the node pool, excluding existing instances.
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
- * Type of automatic scaling, categorized by instance type. Valid values:
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`: Standard instance.
111
+ * - `cpu`: regular instances.
112
112
  *
113
- * - `gpu`: GPU instance.
113
+ * - `gpu`: GPU-accelerated instances.
114
114
  *
115
- * - `gpushare`: Shared GPU instance.
115
+ * - `gpushare`: shared GPU-accelerated instances.
116
116
  *
117
- * - `spot`: Spot instance.
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 ID.
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 ID.
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 field is deprecated.]
199
+ * [This parameter is deprecated]
200
200
  *
201
- * Network bandwidth for enhanced edge node pools. Unit: Mbps.
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 field is deprecated.]
209
+ * [This parameter is deprecated]
210
210
  *
211
- * CCN instance ID bound to enhanced edge node pools.
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 field is deprecated.]
219
+ * [This parameter is deprecated]
220
220
  *
221
- * Region of the CCN instance bound to enhanced edge node pools.
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 field is deprecated.]
229
+ * [This parameter is deprecated]
230
230
  *
231
- * CEN instance ID bound to enhanced edge node pools.
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 field is deprecated.]
239
+ * [This parameter is deprecated]
240
240
  *
241
- * Subscription duration for enhanced edge node pools. Unit: months.
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 Cloud Monitor is installed on ECS nodes. After installation, you can view monitoring information for created ECS instances in the Cloud Monitor console. We recommend enabling this feature. Valid values:
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 Cloud Monitor on ECS nodes.
281
+ * - `true`: Installs CloudMonitor on the ECS nodes.
282
282
  *
283
- * - `false`: Does not install Cloud Monitor on ECS nodes.
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
- * Node CPU management policy. Clusters of version 1.12.6 or later support the following policies:
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`: Enhances CPU affinity and exclusivity for pods with specific resource characteristics on the node.
293
+ * - `static`: allows pods with specific resource characteristics on the node to be granted enhanced CPU affinity and exclusivity.
294
294
  *
295
- * - `none`: Uses the default CPU affinity scheme.
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
- * Node labels.
303
+ * The node labels.
304
304
  */
305
305
  labels?: Tag[];
306
306
  /**
307
307
  * @remarks
308
- * Custom node name.
308
+ * The custom node name.
309
309
  *
310
- * A node name consists of three parts: prefix + IP address substring + suffix:
310
+ * A node name consists of three parts: a prefix, the middle part of an IP address, and a suffix:
311
311
  *
312
- * - Both prefix and suffix can consist of one or more parts separated by periods (.). Each part can contain lowercase letters, digits, and hyphens (-). The node name must start and end with a lowercase letter or digit.
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 substring length specifies the number of trailing digits to extract from the node IP address. Valid values: 5 to 12.
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
- * Example: If the node IP address is 192.168.0.55, the prefix is aliyun.com, the IP address substring length is 5, and the suffix is test, the node name is aliyun.com00055test.
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
- * Pre-custom data for the node pool. This is a script that runs before node initialization. For more information, see [Generate instance custom data](https://help.aliyun.com/document_detail/49121.html).
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
- * Container runtime name. ACK supports the following container runtimes:
332
+ * The name of the container runtime. ACK supports the following container runtimes.
333
333
  *
334
- * - containerd: Recommended. Supported by all cluster versions.
334
+ * - containerd: recommended. This runtime is supported by all cluster versions.
335
335
  *
336
- * - Sandboxed-Container.runv: Sandboxed container that provides higher isolation. Supported by clusters of version 1.31 or earlier.
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: No longer maintained. Supported by clusters of version 1.22 or earlier.
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
- * Container runtime version.
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
- * Node taint information. Taints and tolerations work together to prevent pods from being scheduled onto unsuitable nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
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 newly scaled nodes are unschedulable.
359
+ * Indicates whether the scaled-out nodes are unschedulable.
360
360
  *
361
- * - true: Unschedulable.
361
+ * - true: The scaled-out nodes are unschedulable.
362
362
  *
363
- * - false: Schedulable.
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
- * Custom data for the node pool. This is a script that runs after node initialization. For more information, see [Generate instance custom data](https://help.aliyun.com/document_detail/49121.html).
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 automatic repair policy.
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 is allowed. This parameter takes effect only when `auto_repair=true`.
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`: Disallows node restart.
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 kubelet auto-upgrade is allowed. This parameter takes effect only when `auto_upgrade=true`. Valid values:
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 auto-upgrade.
481
+ * - `true`: Allows auto update of the kubelet.
482
482
  *
483
- * - `false`: Disallows kubelet auto-upgrade.
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
- * Packages excluded from vulnerability fixes.
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 is allowed. This parameter takes effect only when `auto_vul_fix=true`. Valid values:
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`: Disallows node restart.
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
- * Vulnerability levels that can be automatically fixed, separated by commas.
533
+ * The CVE levels that are allowed to be automatically fixed. Separate multiple CVE levels with commas.
534
534
  *
535
- * - `asap`: High
535
+ * - `asap`: high
536
536
  *
537
- * - `later`: Medium
537
+ * - `later`: medium
538
538
  *
539
- * - `nntf`: Low
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-upgrade is enabled. Valid values:
573
+ * Indicates whether to enable auto update. Valid values:
574
574
  *
575
- * - `true`: Enables auto-upgrade.
575
+ * - `true`: Enables auto update.
576
576
  *
577
- * - `false`: Disables auto-upgrade.
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
- * Maximum number of unavailable nodes. Valid values: [1,1000].
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
- * Number of extra nodes. Specify either this parameter or `surge_percentage`.
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
- * Percentage of extra nodes. Specify either this parameter or `surge`.
603
+ * The percentage of extra nodes. You can specify only one of surge and surge_percentage.
604
604
  *
605
- * Number of extra nodes = surge percentage × number of nodes. For example, if you set the surge percentage to 50% and the current number of nodes is 6, the number of extra nodes is 50% × 6 = 3.
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
- * Automatic repair. This parameter takes effect only when `enable=true`.
642
+ * Indicates whether to enable auto repair. This parameter takes effect only when enable is set to true.
643
643
  *
644
- * - `true`: Enables automatic repair.
644
+ * - `true`: Enables auto repair.
645
645
  *
646
- * - `false`: Disables automatic repair.
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
- * Automatic node repair policy.
654
+ * The auto repair policy for nodes.
655
655
  */
656
656
  autoRepairPolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPolicy;
657
657
  /**
658
658
  * @remarks
659
- * Indicates whether node auto-upgrade is enabled. This parameter takes effect only when `enable=true`.
659
+ * Indicates whether to enable auto update. This parameter takes effect only when enable is set to true.
660
660
  *
661
- * - `true`: Enables auto-upgrade.
661
+ * - `true`: Enables auto update.
662
662
  *
663
- * - `false`: Disables auto-upgrade.
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
- * Auto-upgrade policy.
671
+ * The auto update policy.
672
672
  */
673
673
  autoUpgradePolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradePolicy;
674
674
  /**
675
675
  * @remarks
676
- * Indicates whether CVEs are automatically fixed. This parameter takes effect only when `enable=true`.
676
+ * Indicates whether to automatically fix CVEs. This parameter takes effect only when enable is set to true.
677
677
  *
678
- * - `true`: Enables automatic CVE fixing.
678
+ * - `true`: Allows CVEs to be automatically fixed.
679
679
  *
680
- * - `false`: Disables automatic CVE fixing.
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
- * CVE automatic fix policy.
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 is enabled. Valid values:
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`: Disables the managed node pool. Other related configurations take effect only when `enable=true`.
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
- * Auto-upgrade configuration. This parameter takes effect only when `enable=true`.
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
- * Custom configuration for node components.
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
- * Node component configuration.
790
+ * The configurations of the node component.
791
791
  */
792
792
  config?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig;
793
793
  /**
794
794
  * @remarks
795
- * Node component name.
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
- * Node component version.
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 configuration.
870
+ * The Kubelet parameter configurations.
871
871
  */
872
872
  kubeletConfiguration?: KubeletConfig;
873
873
  /**
874
874
  * @remarks
875
- * Node operating system configuration.
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
- * Time when the node pool was created.
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 usually has only one default node pool. Valid values:
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`: Default node pool.
920
+ * - `true`: The node pool is the default node pool.
921
921
  *
922
- * - `false`: Non-default node pool.
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
- * Node pool name.
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
- * Node pool ID.
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
- * Region ID.
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
- * Resource group ID.
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
- * Node pool type. Valid values:
962
+ * The type of the node pool. Valid values:
963
963
  *
964
- * - `ess`: Standard node pool (supports managed features and automatic elastic scaling).
964
+ * - `ess`: a regular node pool. This type of node pool provides managed features and supports automatic scaling.
965
965
  *
966
- * - `edge`: Edge node pool.
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
- * Time when the node pool was last updated.
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
- * Private pool ID. This is the ID of an elasticity assurance service or capacity reservation service.
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
- * Private pool type. Specifies how instance startup uses private pool capacity. After an elasticity assurance service or capacity reservation service takes effect, it generates private pool capacity for instance startup. Valid values:
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`: Open mode. Automatically matches open-type private pool capacity. If no matching private pool capacity is available, public pool resources are used.
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`: Target mode. Uses the specified private pool capacity to start instances. If the private pool capacity is unavailable, instance startup fails.
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`: None mode. Instance startup does not use private pool capacity.
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
- * List of private pool IDs.
1066
+ * The list of private pool IDs.
1067
1067
  */
1068
1068
  privatePoolIds?: string[];
1069
1069
  /**
1070
1070
  * @remarks
1071
- * Resource pool strategy used when creating instances. Valid values:
1072
- * PrivatePoolFirst: Private pool first.
1073
- * PrivatePoolOnly: Private pool only.
1074
- * None: Do not use resource pool strategy.
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
- * Spot instance type.
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
- * Market price range per instance.
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 is enabled for nodes. This parameter takes effect only when `instance_charge_type` is set to `PrePaid`. Valid values:
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
- * Duration of each auto-renewal cycle. Valid values:
1171
+ * The duration of each auto-renewal. Valid values:
1172
1172
  *
1173
- * - When PeriodUnit=Week: 1, 2, 3.
1173
+ * - If PeriodUnit is set to Week: 1, 2, and 3.
1174
1174
  *
1175
- * - When PeriodUnit=Month: 1, 2, 3, 6, 12, 24, 36, 48, 60.
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 field is deprecated.]
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
- * When `multi_az_policy` is set to `COST_OPTIMIZED`, indicates whether to automatically attempt creating pay-as-you-go instances if sufficient spot instances cannot be created due to price or inventory issues. Valid values:
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 automatic attempts to create pay-as-you-go instances to meet the required ECS instance count.
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`: Disallows automatic attempts to create pay-as-you-go instances to meet the required ECS instance count.
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
- * Combination of data disk types, sizes, and other configurations for nodes.
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
- * Deployment set ID.
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
- * Desired number of nodes in the node pool.
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
- * Block device initialization configuration.
1228
+ * The block device initialization configuration.
1229
1229
  */
1230
1230
  diskInit?: DiskInit[];
1231
1231
  /**
1232
1232
  * @remarks
1233
- * Custom image ID. You can query supported images using `DescribeKubernetesVersionMetadata`.
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
- * Operating system image type.
1241
+ * The OS image type.
1242
1242
  *
1243
- * - `AliyunLinux`: Alinux2 image.
1243
+ * - `AliyunLinux`: Alibaba Cloud Linux 2 image.
1244
1244
  *
1245
- * - `AliyunLinuxSecurity`: Alinux2 UEFI image.
1245
+ * - `AliyunLinuxSecurity`: Alibaba Cloud Linux 2 UEFI image.
1246
1246
  *
1247
- * - `AliyunLinux3`: Alinux3 image.
1247
+ * - `AliyunLinux3`: Alibaba Cloud Linux 3 image.
1248
1248
  *
1249
- * - `AliyunLinux3Arm64`: Alinux3 ARM image.
1249
+ * - `AliyunLinux3Arm64`: Alibaba Cloud Linux 3 ARM image.
1250
1250
  *
1251
- * - `AliyunLinux3Security`: Alinux3 UEFI image.
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`: Alinux3 container-optimized image.
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
- * Billing method for nodes in the node pool. Valid values:
1269
+ * The billing method of the nodes in the node pool. Valid values:
1270
1270
  *
1271
- * - `PrePaid`: Subscription.
1271
+ * - `PrePaid`: subscription.
1272
1272
  *
1273
- * - `PostPaid`: Pay-as-you-go.
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
- * Instance attribute configuration.
1281
+ * The instance attribute configurations.
1282
1282
  */
1283
1283
  instancePatterns?: InstancePatterns[];
1284
1284
  /**
1285
1285
  * @remarks
1286
- * List of node instance types. You can select multiple instance types as alternatives. When creating a node, the system attempts to purchase instances starting from the first type until successful. The actual purchased instance type may vary due to inventory availability.
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
- * Billing method for public network bandwidth of nodes.
1294
+ * The billing method of the public IP address of the node.
1295
1295
  *
1296
- * - PayByBandwidth: Pay-by-bandwidth.
1296
+ * - PayByBandwidth: pay-by-bandwidth.
1297
1297
  *
1298
- * - PayByTraffic: Pay-by-traffic.
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
- * Maximum outbound public bandwidth for nodes. Unit: Mbps. Valid values: 1 to 100.
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
- * Key pair name. Specify either this parameter or `login_password`.
1314
+ * The name of the key pair. You must set one of key_pair and login_password.
1315
1315
  *
1316
- * For managed node pools, only `key_pair` is supported.
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 the non-root user (ecs-user).
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. Specify either this parameter or `key_pair`. The password must be 8 to 30 characters long and contain at least three of the following: uppercase letters, lowercase letters, digits, and special characters.
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 returned password is encrypted.
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
- * ECS instance scaling policy for multi-zone scaling groups. Valid values:
1346
+ * The scaling policy for the ECS instances in the multi-zone scaling group. Valid values:
1347
1347
  *
1348
- * - `PRIORITY`: Scales based on the virtual switches (VSwitchIds.N) you define. If ECS instances cannot be created in the zone of a higher-priority virtual switch, the system automatically uses the next priority virtual switch.
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`: Attempts to create instances from lowest to highest vCPU price. When multiple instance types or spot billing are configured, spot instances are prioritized. You can use the `CompensateWithOnDemand` parameter to specify whether to automatically attempt pay-as-you-go instance creation if spot instances cannot be created due to inventory or other reasons.
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 when multiple instance types are configured or spot instances are selected.
1352
+ * > `COST_OPTIMIZED` takes effect only if the scaling configuration uses multiple instance types or spot instances.
1353
1353
  *
1354
- * - `BALANCE`: Distributes ECS instances evenly across the specified zones. If zones become unbalanced due to inventory shortages, you can use the `RebalanceInstances` API to rebalance resources. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html).
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
- * Minimum number of pay-as-you-go instances required in the scaling group. Valid values: [0,1000]. If the number of pay-as-you-go instances is less than this value, pay-as-you-go instances are prioritized for creation.
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
- * Percentage of pay-as-you-go instances among instances exceeding the minimum pay-as-you-go instance count (`on_demand_base_capacity`). Valid values: [0,100].
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
- * Subscription duration for nodes. This parameter takes effect and is required only when `instance_charge_type` is set to `PrePaid`.
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
- * - When `period_unit=Week`, valid values for `period` are {1, 2, 3, 4}.
1380
+ * - If period_unit is set to Week, the valid values of period are 1, 2, 3, and 4.
1381
1381
  *
1382
- * - When `period_unit=Month`, valid values for `period` are {1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, 60}.
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
- * Billing cycle for nodes. Specify this parameter when `instance_charge_type` is set to `PrePaid`.
1390
+ * The billing cycle of the nodes. This parameter is required when instance_charge_type is set to PrePaid.
1391
1391
  *
1392
- * - `Month`: Billed monthly.
1392
+ * - `Month`: The billing cycle is measured in months.
1393
1393
  *
1394
- * - `Week`: Billed weekly.
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 field is deprecated.]
1402
+ * [This parameter is deprecated]
1403
1403
  *
1404
- * Operating system distribution. Valid values:
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
- * Private pool options.
1420
+ * The private pool options.
1421
1421
  */
1422
1422
  privatePoolOptions?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoolOptions;
1423
1423
  /**
1424
1424
  * @remarks
1425
- * This field is deprecated. Use ram_role_name instead.
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
- * Worker RAM role name.
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 are specified, ECS nodes in the cluster are automatically added to the RDS access whitelist.
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
- * Resource pool and strategy used when creating instances.
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
- * Scaling group ID.
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
- * Scaling group mode. Valid values:
1459
+ * The scaling mode of the scaling group. Valid values:
1460
1460
  *
1461
- * - `release`: Standard mode. Scales by creating or releasing ECS instances based on resource usage.
1461
+ * - `release`: standard mode. The system creates and releases ECS instances to scale resources based on the resource usage.
1462
1462
  *
1463
- * - `recycle`: Fast mode. Scales by creating, stopping, or starting instances to speed up subsequent scaling operations. (Stopped instances incur no compute charges, only storage fees, except for local-disk instance types.)
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 field is deprecated.]
1471
+ * [This parameter is deprecated]
1472
1472
  *
1473
- * Security group ID for the node pool. When multiple security groups are bound to the node pool, this value is the first value in `security_group_ids`.
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
- * List of security group IDs for the node pool.
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 classified protection compliance hardening is enabled. You can enable this feature for nodes only when Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3 is selected as the OS image. Alibaba Cloud provides baseline check standards and scanning programs for MLPS 2.0 Level-3 compliance for Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 images.
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
- * Number of available instance types. The scaling group creates spot instances evenly across the lowest-cost instance types. Valid values: [1,10].
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 replenish spot instances. When enabled, if the system receives a notification that a spot instance will be reclaimed, the scaling group attempts to create a new instance to replace the instance to be reclaimed. Valid values:
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 replenishment.
1518
+ * - `true`: Enables the feature of supplementing preemptible instances.
1519
1519
  *
1520
- * - `false`: Disables replenishment.
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
- * Market price range configuration for spot instances.
1528
+ * The configurations of the price range for the spot instances.
1529
1529
  */
1530
1530
  spotPriceLimit?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit[];
1531
1531
  /**
1532
1532
  * @remarks
1533
- * Spot instance type. Valid values:
1533
+ * The bidding policy for the spot instances. Valid values:
1534
1534
  *
1535
- * - NoSpot: Regular instance.
1535
+ * - NoSpot: The instances are not spot instances.
1536
1536
  *
1537
- * - SpotWithPriceLimit: Sets a maximum price for spot instances.
1537
+ * - SpotWithPriceLimit: The maximum bid price is specified for the spot instances.
1538
1538
  *
1539
- * - SpotAsPriceGo: Uses the current market price.
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 burst performance is enabled for the system disk. Valid values:
1549
+ * Indicates whether to enable bursting for the system disk of the node. Valid values:
1550
1550
  *
1551
- * - true: Enabled. When facing sudden read/write pressure from fluctuating workloads, the disk temporarily boosts performance based on actual workload conditions until the workload stabilizes.
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: Disabled.
1553
+ * - false: disables bursting.
1554
1554
  *
1555
- * This parameter is supported 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).
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
- * Multiple system disk types. If the system cannot use a higher-priority disk type, it automatically tries the next priority disk type to create the system disk.
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
- * System disk type for nodes. Valid values:
1568
+ * The type of the system disk of the node. Valid values:
1569
1569
  *
1570
- * - `cloud_efficiency`: Ultra disk.
1570
+ * - `cloud_efficiency`: ultra disk.
1571
1571
  *
1572
- * - `cloud_ssd`: Standard SSD.
1572
+ * - `cloud_ssd`: standard SSD.
1573
1573
  *
1574
- * - `cloud_essd`: Enterprise SSD.
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
- * Encryption algorithm used for the system disk. Valid values: aes-256.
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 is encrypted. Valid values:
1594
+ * Indicates whether to encrypt the system disk. Valid values:
1595
1595
  *
1596
- * - true: Encrypted.
1596
+ * - true: Encrypts the system disk.
1597
1597
  *
1598
- * - false: Not encrypted.
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 ID used for the system disk.
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
- * Disk performance level for the system disk. This parameter applies only to ESSD disks. Disk performance levels depend on disk size. For more information, see [ESSD disks](https://help.aliyun.com/document_detail/122389.html).
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: Moderate I/O performance with stable read/write latency.
1616
+ * - PL0: The disk has medium concurrent I/O performance and stable read and write latency.
1617
1617
  *
1618
- * - PL1: Moderate I/O performance with stable read/write latency.
1618
+ * - PL1: The disk has medium concurrent I/O performance and stable read and write latency.
1619
1619
  *
1620
- * - PL2: High I/O performance with stable read/write latency.
1620
+ * - PL2: The disk has high concurrent I/O performance and stable read and write latency.
1621
1621
  *
1622
- * - PL3: Extremely high I/O performance with highly stable read/write latency.
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
- * Provisioned read/write IOPS for the system disk. Configure this parameter when the disk type is cloud_auto.
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
- * System disk size for nodes. Unit: GiB.
1638
+ * The size of the system disk of the node. Unit: GiB.
1639
1639
  *
1640
- * Valid values: [20,2048].
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
- * System disk snapshot policy.
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 instance tags.
1656
+ * The tags of the ECS instances.
1657
1657
  */
1658
1658
  tags?: Tag[];
1659
1659
  /**
1660
1660
  * @remarks
1661
- * List of virtual switch IDs.
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
- * Number of failed instances.
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
- * Number of healthy instances.
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
- * Number of nodes being created.
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
- * Number of offline nodes.
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
- * Number of nodes being removed.
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
- * Number of active nodes.
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
- * Node pool state. Valid values:
1872
+ * The status of the node pool. Valid values:
1873
1873
  *
1874
- * - `active`: Activated.
1874
+ * - `active`: The node pool is active.
1875
1875
  *
1876
- * - `scaling`: Scaling.
1876
+ * - `scaling`: The node pool is being scaled.
1877
1877
  *
1878
- * - `removing`: Removing nodes.
1878
+ * - `removing`: Nodes are being removed from the node pool.
1879
1879
  *
1880
- * - `deleting`: Deleting.
1880
+ * - `deleting`: The node pool is being deleted.
1881
1881
  *
1882
- * - `updating`: 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
- * Total number of nodes in the node pool.
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 is enabled. Valid values:
1934
+ * Indicates whether to enable the confidential computing cluster. Valid values:
1935
1935
  *
1936
- * - `true`: Enabled.
1936
+ * - `true`: Enables the confidential computing cluster.
1937
1937
  *
1938
- * - `false`: Disabled.
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
- * Intelligent management configuration.
1968
+ * The intelligent hosting configurations.
1969
1969
  */
1970
1970
  autoMode?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode;
1971
1971
  /**
1972
1972
  * @remarks
1973
- * Automatic scaling configuration.
1973
+ * The auto scaling configuration.
1974
1974
  */
1975
1975
  autoScaling?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling;
1976
1976
  /**
1977
1977
  * @remarks
1978
- * Lingjun node group information.
1978
+ * The information about the Lingjun node group.
1979
1979
  */
1980
1980
  efloNodeGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup;
1981
1981
  /**
1982
1982
  * @remarks
1983
- * [This field is deprecated.]
1983
+ * [This parameter is deprecated]
1984
1984
  *
1985
- * Network configuration for edge node pools. This parameter applies only to edge-type node pools.
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
- * Network type for edge node pools. This parameter applies only to node pools where `type` is `edge`. Valid values:
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`: Public network. Nodes in the node pool interact with cloud nodes over the public network and cannot directly access the VPC intranet.
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`: Private network. Nodes in the node pool connect to the cloud through leased lines, VPN, or CEN, providing higher cloud-edge communication quality and better security.
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
- * Cluster-related configuration.
2002
+ * The cluster-related configurations.
2003
2003
  */
2004
2004
  kubernetesConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig;
2005
2005
  /**
2006
2006
  * @remarks
2007
- * Managed node pool configuration. This parameter takes effect only for professional managed clusters.
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
- * Maximum number of nodes allowed in an edge node pool. This parameter is greater than or equal to 0. A value of 0 means no additional limit (only limited by the overall cluster capacity). This parameter is usually greater than 0 for edge node pools, and 0 for ess-type node pools and default edge-type node pools.
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
- * List of node components.
2020
+ * The list of node components.
2021
2021
  */
2022
2022
  nodeComponents?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents[];
2023
2023
  /**
2024
2024
  * @remarks
2025
- * Node configuration.
2025
+ * The node configurations.
2026
2026
  */
2027
2027
  nodeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig;
2028
2028
  /**
2029
2029
  * @remarks
2030
- * Node pool information.
2030
+ * The information about the node pool.
2031
2031
  */
2032
2032
  nodepoolInfo?: DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo;
2033
2033
  /**
2034
2034
  * @remarks
2035
- * Scaling group configuration for the node pool.
2035
+ * The configurations of the scaling group for the node pool.
2036
2036
  */
2037
2037
  scalingGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup;
2038
2038
  /**
2039
2039
  * @remarks
2040
- * Node pool status.
2040
+ * The status of the node pool.
2041
2041
  */
2042
2042
  status?: DescribeClusterNodePoolsResponseBodyNodepoolsStatus;
2043
2043
  /**
2044
2044
  * @remarks
2045
- * Confidential computing configuration.
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
- * List of node pool instances.
2134
+ * The list of node pools.
2135
2135
  */
2136
2136
  nodepools?: DescribeClusterNodePoolsResponseBodyNodepools[];
2137
2137
  static names(): { [key: string]: string } {