@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
@@ -9,7 +9,7 @@ import { Taint } from "./Taint";
9
9
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode extends $dara.Model {
10
10
  /**
11
11
  * @remarks
12
- * Indicates whether intelligent management is enabled.
12
+ * Indicates whether to enable intelligent hosting.
13
13
  *
14
14
  * @example
15
15
  * true
@@ -29,9 +29,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode exten
29
29
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling extends $dara.Model {
30
30
  /**
31
31
  * @remarks
32
- * Peak bandwidth of the EIP.
32
+ * The maximum bandwidth of the EIP.
33
33
  *
34
- * Valid values: [1,100]. Unit: Mbps.
34
+ * Valid values: 1 to 100. Unit: Mbit/s.
35
35
  *
36
36
  * @example
37
37
  * 5
@@ -39,11 +39,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
39
39
  eipBandwidth?: number;
40
40
  /**
41
41
  * @remarks
42
- * EIP billing method. Valid values:
42
+ * The billing method of the EIP. Valid values:
43
43
  *
44
- * - `PayByBandwidth`: Pay-by-bandwidth.
44
+ * - `PayByBandwidth`: pay-by-bandwidth.
45
45
  *
46
- * - `PayByTraffic`: Pay-by-traffic.
46
+ * - `PayByTraffic`: pay-by-traffic.
47
47
  *
48
48
  * @example
49
49
  * PayByBandwidth
@@ -51,13 +51,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
51
51
  eipInternetChargeType?: string;
52
52
  /**
53
53
  * @remarks
54
- * Indicates whether automatic scaling is enabled. Valid values:
54
+ * Indicates whether auto scaling is enabled. Valid values:
55
55
  *
56
- * - `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).
56
+ * - `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).
57
57
  *
58
- * - `false`: Disables automatic scaling. ACK adjusts the number of nodes in the node pool to match the desired node count and maintains this count.
58
+ * - `false`: Auto scaling is disabled. ACK adjusts the number of nodes in the node pool to the expected number of nodes.
59
59
  *
60
- * If this parameter is set to false, other parameters in `auto_scaling` do not take effect.
60
+ * If this parameter is set to false, other parameters in the auto_scaling object do not take effect.
61
61
  *
62
62
  * @example
63
63
  * true
@@ -65,11 +65,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
65
65
  enable?: boolean;
66
66
  /**
67
67
  * @remarks
68
- * Indicates whether an EIP is bound. Valid values:
68
+ * Indicates whether to associate an EIP with the node. Valid values:
69
69
  *
70
- * - `true`: Binds an EIP.
70
+ * - `true`: Associates an EIP with the node.
71
71
  *
72
- * - `false`: Does not bind an EIP.
72
+ * - `false`: Does not associate an EIP with the node.
73
73
  *
74
74
  * @example
75
75
  * true
@@ -77,7 +77,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
77
77
  isBondEip?: boolean;
78
78
  /**
79
79
  * @remarks
80
- * Maximum number of scalable instances in the node pool, excluding existing instances.
80
+ * The maximum number of instances that can be created in the node pool. This value does not include existing instances.
81
81
  *
82
82
  * @example
83
83
  * 10
@@ -85,7 +85,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
85
85
  maxInstances?: number;
86
86
  /**
87
87
  * @remarks
88
- * Minimum number of scalable instances in the node pool, excluding existing instances.
88
+ * The minimum number of instances that must be kept in the node pool. This value does not include existing instances.
89
89
  *
90
90
  * @example
91
91
  * 2
@@ -93,15 +93,15 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
93
93
  minInstances?: number;
94
94
  /**
95
95
  * @remarks
96
- * Type of automatic scaling, categorized by instance type. Valid values:
96
+ * The type of auto scaling. This parameter specifies the type of instances that are used for auto scaling. Valid values:
97
97
  *
98
- * - `cpu`: Standard instance.
98
+ * - `cpu`: regular instances.
99
99
  *
100
- * - `gpu`: GPU instance.
100
+ * - `gpu`: GPU-accelerated instances.
101
101
  *
102
- * - `gpushare`: Shared GPU instance.
102
+ * - `gpushare`: shared GPU-accelerated instances.
103
103
  *
104
- * - `spot`: Spot instance.
104
+ * - `spot`: spot instances.
105
105
  *
106
106
  * @example
107
107
  * cpu
@@ -121,7 +121,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
121
121
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup extends $dara.Model {
122
122
  /**
123
123
  * @remarks
124
- * Lingjun cluster ID.
124
+ * The ID of the Lingjun cluster.
125
125
  *
126
126
  * @example
127
127
  * i113790071760688002461
@@ -129,7 +129,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup
129
129
  clusterId?: string;
130
130
  /**
131
131
  * @remarks
132
- * Lingjun group ID.
132
+ * The ID of the Lingjun group.
133
133
  *
134
134
  * @example
135
135
  * i128147721760688002463
@@ -149,9 +149,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup
149
149
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig extends $dara.Model {
150
150
  /**
151
151
  * @remarks
152
- * [This field is deprecated.]
152
+ * [This parameter is deprecated]
153
153
  *
154
- * Network bandwidth for enhanced edge node pools. Unit: Mbps.
154
+ * The network bandwidth of the enhanced edge node pool. Unit: Mbit/s.
155
155
  *
156
156
  * @example
157
157
  * 10
@@ -159,9 +159,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
159
159
  bandwidth?: number;
160
160
  /**
161
161
  * @remarks
162
- * [This field is deprecated.]
162
+ * [This parameter is deprecated]
163
163
  *
164
- * CCN instance ID bound to enhanced edge node pools.
164
+ * The ID of the Cloud Connect Network (CCN) instance that is associated with the enhanced edge node pool.
165
165
  *
166
166
  * @example
167
167
  * ccn-qm5i0i0q9yi*******
@@ -169,9 +169,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
169
169
  ccnId?: string;
170
170
  /**
171
171
  * @remarks
172
- * [This field is deprecated.]
172
+ * [This parameter is deprecated]
173
173
  *
174
- * Region of the CCN instance bound to enhanced edge node pools.
174
+ * The region where the CCN instance associated with the enhanced edge node pool resides.
175
175
  *
176
176
  * @example
177
177
  * cn-shanghai
@@ -179,9 +179,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
179
179
  ccnRegionId?: string;
180
180
  /**
181
181
  * @remarks
182
- * [This field is deprecated.]
182
+ * [This parameter is deprecated]
183
183
  *
184
- * CEN instance ID bound to enhanced edge node pools.
184
+ * The ID of the Cloud Enterprise Network (CEN) instance that is associated with the enhanced edge node pool.
185
185
  *
186
186
  * @example
187
187
  * cen-ey9k9nfhz0f*******
@@ -189,9 +189,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
189
189
  cenId?: string;
190
190
  /**
191
191
  * @remarks
192
- * [This field is deprecated.]
192
+ * [This parameter is deprecated]
193
193
  *
194
- * Subscription duration for enhanced edge node pools. Unit: months.
194
+ * The subscription duration of the enhanced edge node pool. Unit: month.
195
195
  *
196
196
  * @example
197
197
  * 1
@@ -211,11 +211,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
211
211
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig extends $dara.Model {
212
212
  /**
213
213
  * @remarks
214
- * 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:
214
+ * 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:
215
215
  *
216
- * - `true`: Installs Cloud Monitor on ECS nodes.
216
+ * - `true`: Installs CloudMonitor on the ECS nodes.
217
217
  *
218
- * - `false`: Does not install Cloud Monitor on ECS nodes.
218
+ * - `false`: Does not install CloudMonitor on the ECS nodes
219
219
  *
220
220
  * @example
221
221
  * true
@@ -223,11 +223,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
223
223
  cmsEnabled?: boolean;
224
224
  /**
225
225
  * @remarks
226
- * Node CPU management policy. Clusters of version 1.12.6 or later support the following policies:
226
+ * The CPU management policy of the node. The following policies are supported for clusters of Kubernetes 1.12.6 and later:
227
227
  *
228
- * - `static`: Enhances CPU affinity and exclusivity for pods with specific resource characteristics on the node.
228
+ * - `static`: allows pods with specific resource characteristics on the node to be granted enhanced CPU affinity and exclusivity.
229
229
  *
230
- * - `none`: Uses the default CPU affinity scheme.
230
+ * - `none`: indicates that the default CPU affinity scheme is enabled.
231
231
  *
232
232
  * @example
233
233
  * none
@@ -235,20 +235,20 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
235
235
  cpuPolicy?: string;
236
236
  /**
237
237
  * @remarks
238
- * Node labels.
238
+ * The node labels.
239
239
  */
240
240
  labels?: Tag[];
241
241
  /**
242
242
  * @remarks
243
- * Custom node name.
243
+ * The custom node name.
244
244
  *
245
- * A node name consists of three parts: prefix + IP address substring + suffix:
245
+ * A node name consists of three parts: a prefix, the middle part of an IP address, and a suffix:
246
246
  *
247
- * - 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.
247
+ * - 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.
248
248
  *
249
- * - The IP address substring length specifies the number of trailing digits to extract from the node IP address. Valid values: 5 to 12.
249
+ * - 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.
250
250
  *
251
- * 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.
251
+ * 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.
252
252
  *
253
253
  * @example
254
254
  * aliyun.com192.XX.YY.55test
@@ -256,7 +256,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
256
256
  nodeNameMode?: string;
257
257
  /**
258
258
  * @remarks
259
- * 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).
259
+ * 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).
260
260
  *
261
261
  * @example
262
262
  * IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFD
@@ -264,13 +264,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
264
264
  preUserData?: string;
265
265
  /**
266
266
  * @remarks
267
- * Container runtime name. ACK supports the following container runtimes:
267
+ * The name of the container runtime. ACK supports the following container runtimes.
268
268
  *
269
- * - containerd: Recommended. Supported by all cluster versions.
269
+ * - containerd: recommended. This runtime is supported by all cluster versions.
270
270
  *
271
- * - Sandboxed-Container.runv: Sandboxed container that provides higher isolation. Supported by clusters of version 1.31 or earlier.
271
+ * - Sandboxed-Container.runv: a sandboxed container that provides higher isolation. This runtime is supported by clusters of Kubernetes 1.31 and earlier.
272
272
  *
273
- * - docker: No longer maintained. Supported by clusters of version 1.22 or earlier.
273
+ * - docker: no longer maintained. This runtime is supported by clusters of Kubernetes 1.22 and earlier.
274
274
  *
275
275
  * @example
276
276
  * containerd
@@ -278,7 +278,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
278
278
  runtime?: string;
279
279
  /**
280
280
  * @remarks
281
- * Container runtime version.
281
+ * The version of the container runtime.
282
282
  *
283
283
  * @example
284
284
  * 1.6.38
@@ -286,16 +286,16 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
286
286
  runtimeVersion?: string;
287
287
  /**
288
288
  * @remarks
289
- * 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/).
289
+ * 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/).
290
290
  */
291
291
  taints?: Taint[];
292
292
  /**
293
293
  * @remarks
294
- * Indicates whether newly scaled nodes are unschedulable.
294
+ * Indicates whether the scaled-out nodes are unschedulable.
295
295
  *
296
- * - true: Unschedulable.
296
+ * - true: The scaled-out nodes are unschedulable.
297
297
  *
298
- * - false: Schedulable.
298
+ * - false: The scaled-out nodes are schedulable.
299
299
  *
300
300
  * @example
301
301
  * true
@@ -303,7 +303,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
303
303
  unschedulable?: boolean;
304
304
  /**
305
305
  * @remarks
306
- * 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).
306
+ * 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).
307
307
  *
308
308
  * @example
309
309
  * IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFD****
@@ -331,7 +331,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
331
331
  approvalRequired?: boolean;
332
332
  /**
333
333
  * @remarks
334
- * ID of the automatic repair policy.
334
+ * The ID of the auto repair policy
335
335
  *
336
336
  * @example
337
337
  * r-xxxxxxxxx
@@ -339,11 +339,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
339
339
  autoRepairPolicyId?: string;
340
340
  /**
341
341
  * @remarks
342
- * Indicates whether node restart is allowed. This parameter takes effect only when `auto_repair=true`.
342
+ * Indicates whether to allow node restart. This parameter takes effect only when auto_repair is set to true.
343
343
  *
344
344
  * - `true`: Allows node restart.
345
345
  *
346
- * - `false`: Disallows node restart.
346
+ * - `false`: Does not allow node restart.
347
347
  *
348
348
  * @example
349
349
  * true
@@ -363,11 +363,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
363
363
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradePolicy extends $dara.Model {
364
364
  /**
365
365
  * @remarks
366
- * Indicates whether kubelet auto-upgrade is allowed. This parameter takes effect only when `auto_upgrade=true`. Valid values:
366
+ * Indicates whether to allow auto update of the kubelet. This parameter takes effect only when auto_upgrade is set to true. Valid values:
367
367
  *
368
- * - `true`: Allows kubelet auto-upgrade.
368
+ * - `true`: Allows auto update of the kubelet.
369
369
  *
370
- * - `false`: Disallows kubelet auto-upgrade.
370
+ * - `false`: Does not allow auto update of the kubelet.
371
371
  *
372
372
  * @example
373
373
  * true
@@ -387,7 +387,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
387
387
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPolicy extends $dara.Model {
388
388
  /**
389
389
  * @remarks
390
- * Packages excluded from vulnerability fixes.
390
+ * The packages that should be excluded during CVE fixing.
391
391
  *
392
392
  * @example
393
393
  * kernel
@@ -395,11 +395,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
395
395
  excludePackages?: string;
396
396
  /**
397
397
  * @remarks
398
- * Indicates whether node restart is allowed. This parameter takes effect only when `auto_vul_fix=true`. Valid values:
398
+ * Indicates whether to allow node restart. This parameter takes effect only when auto_vul_fix is set to true. Valid values:
399
399
  *
400
400
  * - `true`: Allows node restart.
401
401
  *
402
- * - `false`: Disallows node restart.
402
+ * - `false`: Does not allow node restart.
403
403
  *
404
404
  * @example
405
405
  * true
@@ -407,13 +407,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
407
407
  restartNode?: boolean;
408
408
  /**
409
409
  * @remarks
410
- * Vulnerability levels that can be automatically fixed, separated by commas.
410
+ * The CVE levels that are allowed to be automatically fixed. Separate multiple CVE levels with commas.
411
411
  *
412
- * - `asap`: High
412
+ * - `asap`: high
413
413
  *
414
- * - `later`: Medium
414
+ * - `later`: medium
415
415
  *
416
- * - `nntf`: Low
416
+ * - `nntf`: low
417
417
  *
418
418
  * @example
419
419
  * asap,nntf
@@ -433,11 +433,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementAuto
433
433
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfig extends $dara.Model {
434
434
  /**
435
435
  * @remarks
436
- * Indicates whether auto-upgrade is enabled. Valid values:
436
+ * Indicates whether to enable auto update. Valid values:
437
437
  *
438
- * - `true`: Enables auto-upgrade.
438
+ * - `true`: Enables auto update.
439
439
  *
440
- * - `false`: Disables auto-upgrade.
440
+ * - `false`: Disables auto update.
441
441
  *
442
442
  * @example
443
443
  * true
@@ -445,7 +445,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgr
445
445
  autoUpgrade?: boolean;
446
446
  /**
447
447
  * @remarks
448
- * Maximum number of unavailable nodes. Valid values: [1,1000].
448
+ * The maximum number of unavailable nodes. Valid values: 1 to 1000
449
449
  *
450
450
  * Default value: 1.
451
451
  *
@@ -455,7 +455,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgr
455
455
  maxUnavailable?: number;
456
456
  /**
457
457
  * @remarks
458
- * Number of extra nodes. Specify either this parameter or `surge_percentage`.
458
+ * The number of extra nodes. You can specify only one of surge and surge_percentage.
459
459
  *
460
460
  * @example
461
461
  * 5
@@ -463,9 +463,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgr
463
463
  surge?: number;
464
464
  /**
465
465
  * @remarks
466
- * Percentage of extra nodes. Specify either this parameter or `surge`.
466
+ * The percentage of extra nodes. You can specify only one of surge and surge_percentage.
467
467
  *
468
- * 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.
468
+ * 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.
469
469
  *
470
470
  * @example
471
471
  * 50
@@ -486,11 +486,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
486
486
  autoFaultDiagnosis?: boolean;
487
487
  /**
488
488
  * @remarks
489
- * Automatic repair. This parameter takes effect only when `enable=true`.
489
+ * Indicates whether to enable auto repair. This parameter takes effect only when enable is set to true.
490
490
  *
491
- * - `true`: Enables automatic repair.
491
+ * - `true`: Enables auto repair.
492
492
  *
493
- * - `false`: Disables automatic repair.
493
+ * - `false`: Disables auto repair.
494
494
  *
495
495
  * @example
496
496
  * true
@@ -498,16 +498,16 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
498
498
  autoRepair?: boolean;
499
499
  /**
500
500
  * @remarks
501
- * Automatic node repair policy.
501
+ * The auto repair policy for nodes.
502
502
  */
503
503
  autoRepairPolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoRepairPolicy;
504
504
  /**
505
505
  * @remarks
506
- * Indicates whether node auto-upgrade is enabled. This parameter takes effect only when `enable=true`.
506
+ * Indicates whether to enable auto update. This parameter takes effect only when enable is set to true.
507
507
  *
508
- * - `true`: Enables auto-upgrade.
508
+ * - `true`: Enables auto update.
509
509
  *
510
- * - `false`: Disables auto-upgrade.
510
+ * - `false`: Disables auto update.
511
511
  *
512
512
  * @example
513
513
  * true
@@ -515,16 +515,16 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
515
515
  autoUpgrade?: boolean;
516
516
  /**
517
517
  * @remarks
518
- * Auto-upgrade policy.
518
+ * The auto update policy.
519
519
  */
520
520
  autoUpgradePolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoUpgradePolicy;
521
521
  /**
522
522
  * @remarks
523
- * Indicates whether CVEs are automatically fixed. This parameter takes effect only when `enable=true`.
523
+ * Indicates whether to automatically fix CVEs. This parameter takes effect only when enable is set to true.
524
524
  *
525
- * - `true`: Enables automatic CVE fixing.
525
+ * - `true`: Allows CVEs to be automatically fixed.
526
526
  *
527
- * - `false`: Disables automatic CVE fixing.
527
+ * - `false`: Does not allow CVEs to be automatically fixed.
528
528
  *
529
529
  * @example
530
530
  * true
@@ -532,16 +532,16 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
532
532
  autoVulFix?: boolean;
533
533
  /**
534
534
  * @remarks
535
- * CVE automatic fix policy.
535
+ * The policy for automatically fixing CVEs.
536
536
  */
537
537
  autoVulFixPolicy?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementAutoVulFixPolicy;
538
538
  /**
539
539
  * @remarks
540
- * Indicates whether the managed node pool feature is enabled. Valid values:
540
+ * Indicates whether to enable the managed node pool feature. Valid values:
541
541
  *
542
- * - `true`: Enables the managed node pool.
542
+ * - `true`: Enables the managed node pool feature.
543
543
  *
544
- * - `false`: Disables the managed node pool. Other related configurations take effect only when `enable=true`.
544
+ * - `false`: The managed node pool feature is disabled. If you set this parameter to true, the other parameters take effect.
545
545
  *
546
546
  * @example
547
547
  * true
@@ -549,7 +549,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
549
549
  enable?: boolean;
550
550
  /**
551
551
  * @remarks
552
- * Auto-upgrade configuration. This parameter takes effect only when `enable=true`.
552
+ * The auto update configurations. This parameter takes effect only when enable is set to true.
553
553
  */
554
554
  upgradeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsManagementUpgradeConfig;
555
555
  static names(): {
@@ -566,7 +566,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
566
566
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig extends $dara.Model {
567
567
  /**
568
568
  * @remarks
569
- * Custom configuration for node components.
569
+ * The custom configurations of the node component.
570
570
  */
571
571
  customConfig?: {
572
572
  [key: string]: string;
@@ -585,12 +585,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
585
585
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents extends $dara.Model {
586
586
  /**
587
587
  * @remarks
588
- * Node component configuration.
588
+ * The configurations of the node component.
589
589
  */
590
590
  config?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig;
591
591
  /**
592
592
  * @remarks
593
- * Node component name.
593
+ * The name of the node component.
594
594
  *
595
595
  * @example
596
596
  * kubelet
@@ -598,7 +598,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
598
598
  name?: string;
599
599
  /**
600
600
  * @remarks
601
- * Node component version.
601
+ * The version of the node component.
602
602
  *
603
603
  * @example
604
604
  * 1.33.3-aliyun.1
@@ -618,7 +618,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
618
618
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig extends $dara.Model {
619
619
  /**
620
620
  * @remarks
621
- * Hugepage configuration.
621
+ * The Hugepage configuration.
622
622
  */
623
623
  hugepage?: Hugepage;
624
624
  static names(): {
@@ -635,12 +635,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNode
635
635
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig extends $dara.Model {
636
636
  /**
637
637
  * @remarks
638
- * Kubelet parameter configuration.
638
+ * The Kubelet parameter configurations.
639
639
  */
640
640
  kubeletConfiguration?: KubeletConfig;
641
641
  /**
642
642
  * @remarks
643
- * Node operating system configuration.
643
+ * The node OS configurations.
644
644
  */
645
645
  nodeOsConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig;
646
646
  static names(): {
@@ -657,7 +657,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig ext
657
657
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo extends $dara.Model {
658
658
  /**
659
659
  * @remarks
660
- * Time when the node pool was created.
660
+ * The time when the node pool was created.
661
661
  *
662
662
  * @example
663
663
  * 2025-04-15T16:33:29.362888807+08:00
@@ -665,11 +665,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
665
665
  created?: string;
666
666
  /**
667
667
  * @remarks
668
- * Indicates whether the node pool is the default node pool. A cluster usually has only one default node pool. Valid values:
668
+ * Indicates whether the node pool is the default node pool. A cluster has only one default node pool. Valid values:
669
669
  *
670
- * - `true`: Default node pool.
670
+ * - `true`: The node pool is the default node pool.
671
671
  *
672
- * - `false`: Non-default node pool.
672
+ * - `false`: The node pool is not the default node pool.
673
673
  *
674
674
  * @example
675
675
  * true
@@ -677,7 +677,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
677
677
  isDefault?: boolean;
678
678
  /**
679
679
  * @remarks
680
- * Node pool name.
680
+ * The name of the node pool.
681
681
  *
682
682
  * @example
683
683
  * default-nodepool
@@ -685,7 +685,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
685
685
  name?: string;
686
686
  /**
687
687
  * @remarks
688
- * Node pool ID.
688
+ * The node pool ID.
689
689
  *
690
690
  * @example
691
691
  * np615c0e0966124216a0412e10afe0****
@@ -693,7 +693,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
693
693
  nodepoolId?: string;
694
694
  /**
695
695
  * @remarks
696
- * Region ID.
696
+ * The region ID.
697
697
  *
698
698
  * @example
699
699
  * cn-beijing
@@ -701,7 +701,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
701
701
  regionId?: string;
702
702
  /**
703
703
  * @remarks
704
- * Resource group ID.
704
+ * The resource group ID.
705
705
  *
706
706
  * @example
707
707
  * rg-acfmyvw3wjm****
@@ -709,13 +709,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
709
709
  resourceGroupId?: string;
710
710
  /**
711
711
  * @remarks
712
- * Node pool type. Valid values:
712
+ * The type of the node pool. Valid values:
713
713
  *
714
- * - `ess`: Standard node pool (supports managed features and automatic elastic scaling).
714
+ * - `ess`: a regular node pool. This type of node pool provides managed features and supports automatic scaling.
715
715
  *
716
- * - `edge`: Edge node pool.
716
+ * - `edge`: an edge node pool.
717
717
  *
718
- * - `lingjun`: Lingjun node pool.
718
+ * - `lingjun`: a Lingjun node pool.
719
719
  *
720
720
  * @example
721
721
  * ess
@@ -723,7 +723,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
723
723
  type?: string;
724
724
  /**
725
725
  * @remarks
726
- * Time when the node pool was last updated.
726
+ * The time when the node pool was last updated.
727
727
  *
728
728
  * @example
729
729
  * 2025-04-15T16:33:32.823+08:00
@@ -743,7 +743,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
743
743
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoolOptions extends $dara.Model {
744
744
  /**
745
745
  * @remarks
746
- * Private pool ID. This is the ID of an elasticity assurance service or capacity reservation service.
746
+ * The private pool ID. This is the ID of the elasticity assurance or capacity reservation.
747
747
  *
748
748
  * @example
749
749
  * eap-bp67acfmxazb4****
@@ -751,13 +751,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPr
751
751
  id?: string;
752
752
  /**
753
753
  * @remarks
754
- * 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:
754
+ * 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:
755
755
  *
756
- * - `Open`: Open mode. Automatically matches open-type private pool capacity. If no matching private pool capacity is available, public pool resources are used.
756
+ * - `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.
757
757
  *
758
- * - `Target`: Target mode. Uses the specified private pool capacity to start instances. If the private pool capacity is unavailable, instance startup fails.
758
+ * - `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.
759
759
  *
760
- * - `None`: None mode. Instance startup does not use private pool capacity.
760
+ * - `None`: The instance is started without using the capacity of a private pool.
761
761
  *
762
762
  * @example
763
763
  * Open
@@ -777,15 +777,15 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPr
777
777
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupResourcePoolOptions extends $dara.Model {
778
778
  /**
779
779
  * @remarks
780
- * List of private pool IDs.
780
+ * The list of private pool IDs.
781
781
  */
782
782
  privatePoolIds?: string[];
783
783
  /**
784
784
  * @remarks
785
- * Resource pool strategy used when creating instances. Valid values:
786
- * PrivatePoolFirst: Private pool first.
787
- * PrivatePoolOnly: Private pool only.
788
- * None: Do not use resource pool strategy.
785
+ * The resource pool policy that is used when an instance is created. Valid values:
786
+ * PrivatePoolFirst: The private pool is used first.
787
+ * PrivatePoolOnly: Only the private pool is used.
788
+ * None: No resource pool policy is used.
789
789
  *
790
790
  * @example
791
791
  * PrivatePoolFirst
@@ -805,7 +805,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupRe
805
805
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit extends $dara.Model {
806
806
  /**
807
807
  * @remarks
808
- * Spot instance type.
808
+ * The instance type of the spot instance.
809
809
  *
810
810
  * @example
811
811
  * ecs.c6.large
@@ -813,7 +813,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSp
813
813
  instanceType?: string;
814
814
  /**
815
815
  * @remarks
816
- * Market price range per instance.
816
+ * The price range for a single instance.
817
817
  *
818
818
  * <props="china">
819
819
  *
@@ -843,7 +843,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSp
843
843
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup extends $dara.Model {
844
844
  /**
845
845
  * @remarks
846
- * Indicates whether auto-renewal is enabled for nodes. This parameter takes effect only when `instance_charge_type` is set to `PrePaid`. Valid values:
846
+ * Indicates whether to enable auto-renewal for the nodes. This parameter takes effect only when instance_charge_type is set to PrePaid. Valid values:
847
847
  *
848
848
  * - `true`: Enables auto-renewal.
849
849
  *
@@ -855,11 +855,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
855
855
  autoRenew?: boolean;
856
856
  /**
857
857
  * @remarks
858
- * Duration of each auto-renewal cycle. Valid values:
858
+ * The duration of each auto-renewal. Valid values:
859
859
  *
860
- * - When PeriodUnit=Week: 1, 2, 3.
860
+ * - If PeriodUnit is set to Week: 1, 2, and 3.
861
861
  *
862
- * - When PeriodUnit=Month: 1, 2, 3, 6, 12, 24, 36, 48, 60.
862
+ * - If PeriodUnit is set to Month: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
863
863
  *
864
864
  * @example
865
865
  * 0
@@ -867,7 +867,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
867
867
  autoRenewPeriod?: number;
868
868
  /**
869
869
  * @remarks
870
- * [This field is deprecated.]
870
+ * [This parameter is deprecated]
871
871
  *
872
872
  * Use the security_hardening_os parameter instead.
873
873
  *
@@ -879,11 +879,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
879
879
  cisEnabled?: boolean;
880
880
  /**
881
881
  * @remarks
882
- * 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:
882
+ * 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:
883
883
  *
884
- * - `true`: Allows automatic attempts to create pay-as-you-go instances to meet the required ECS instance count.
884
+ * - `true`: Allows the system to automatically create pay-as-you-go instances to meet the required number of ECS instances.
885
885
  *
886
- * - `false`: Disallows automatic attempts to create pay-as-you-go instances to meet the required ECS instance count.
886
+ * - `false`: Does not allow the system to automatically create pay-as-you-go instances to meet the required number of ECS instances.
887
887
  *
888
888
  * @example
889
889
  * true
@@ -891,12 +891,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
891
891
  compensateWithOnDemand?: boolean;
892
892
  /**
893
893
  * @remarks
894
- * Combination of data disk types, sizes, and other configurations for nodes.
894
+ * The combination of the configurations of the data disks of the node, such as the disk type and size.
895
895
  */
896
896
  dataDisks?: DataDisk[];
897
897
  /**
898
898
  * @remarks
899
- * Deployment set ID.
899
+ * The deployment set ID.
900
900
  *
901
901
  * @example
902
902
  * ds-bp1d19mmbsv3jf6xxxxx
@@ -904,7 +904,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
904
904
  deploymentsetId?: string;
905
905
  /**
906
906
  * @remarks
907
- * Desired number of nodes in the node pool.
907
+ * The expected number of nodes in the node pool.
908
908
  *
909
909
  * @example
910
910
  * 2
@@ -912,12 +912,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
912
912
  desiredSize?: number;
913
913
  /**
914
914
  * @remarks
915
- * Block device initialization configuration.
915
+ * The block device initialization configuration.
916
916
  */
917
917
  diskInit?: DiskInit[];
918
918
  /**
919
919
  * @remarks
920
- * Custom image ID. You can query supported images using `DescribeKubernetesVersionMetadata`.
920
+ * The custom image ID. You can call the `DescribeKubernetesVersionMetadata` operation to query the images supported by the system.
921
921
  *
922
922
  * @example
923
923
  * aliyun_3_x64_20G_alibase_20241218.vhd
@@ -925,17 +925,17 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
925
925
  imageId?: string;
926
926
  /**
927
927
  * @remarks
928
- * Operating system image type.
928
+ * The OS image type.
929
929
  *
930
- * - `AliyunLinux`: Alinux2 image.
930
+ * - `AliyunLinux`: Alibaba Cloud Linux 2 image.
931
931
  *
932
- * - `AliyunLinuxSecurity`: Alinux2 UEFI image.
932
+ * - `AliyunLinuxSecurity`: Alibaba Cloud Linux 2 UEFI image.
933
933
  *
934
- * - `AliyunLinux3`: Alinux3 image.
934
+ * - `AliyunLinux3`: Alibaba Cloud Linux 3 image.
935
935
  *
936
- * - `AliyunLinux3Arm64`: Alinux3 ARM image.
936
+ * - `AliyunLinux3Arm64`: Alibaba Cloud Linux 3 ARM image.
937
937
  *
938
- * - `AliyunLinux3Security`: Alinux3 UEFI image.
938
+ * - `AliyunLinux3Security`: Alibaba Cloud Linux 3 UEFI image.
939
939
  *
940
940
  * - `CentOS`: CentOS image.
941
941
  *
@@ -945,7 +945,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
945
945
  *
946
946
  * - `ContainerOS`: Container-optimized image.
947
947
  *
948
- * - `AliyunLinux3ContainerOptimized`: Alinux3 container-optimized image.
948
+ * - `AliyunLinux3ContainerOptimized`: Alibaba Cloud Linux 3 container-optimized image.
949
949
  *
950
950
  * @example
951
951
  * AliyunLinux3
@@ -953,11 +953,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
953
953
  imageType?: string;
954
954
  /**
955
955
  * @remarks
956
- * Billing method for nodes in the node pool. Valid values:
956
+ * The billing method of the nodes in the node pool. Valid values:
957
957
  *
958
- * - `PrePaid`: Subscription.
958
+ * - `PrePaid`: subscription.
959
959
  *
960
- * - `PostPaid`: Pay-as-you-go.
960
+ * - `PostPaid`: pay-as-you-go.
961
961
  *
962
962
  * @example
963
963
  * PostPaid
@@ -965,12 +965,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
965
965
  instanceChargeType?: string;
966
966
  /**
967
967
  * @remarks
968
- * Instance attribute configuration.
968
+ * The instance attribute configurations.
969
969
  */
970
970
  instancePatterns?: InstancePatterns[];
971
971
  /**
972
972
  * @remarks
973
- * 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.
973
+ * 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.
974
974
  *
975
975
  * @example
976
976
  * ecs.n4.large
@@ -978,11 +978,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
978
978
  instanceTypes?: string[];
979
979
  /**
980
980
  * @remarks
981
- * Billing method for public network bandwidth of nodes.
981
+ * The billing method of the public IP address of the node.
982
982
  *
983
- * - PayByBandwidth: Pay-by-bandwidth.
983
+ * - PayByBandwidth: pay-by-bandwidth.
984
984
  *
985
- * - PayByTraffic: Pay-by-traffic.
985
+ * - PayByTraffic: pay-by-traffic.
986
986
  *
987
987
  * @example
988
988
  * PayByBandwidth
@@ -990,7 +990,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
990
990
  internetChargeType?: string;
991
991
  /**
992
992
  * @remarks
993
- * Maximum outbound public bandwidth for nodes. Unit: Mbps. Valid values: 1 to 100.
993
+ * The maximum outbound bandwidth of the public IP address of the node. Unit: Mbit/s. Valid values: 1 to 100.
994
994
  *
995
995
  * @example
996
996
  * 10
@@ -998,9 +998,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
998
998
  internetMaxBandwidthOut?: number;
999
999
  /**
1000
1000
  * @remarks
1001
- * Key pair name. Specify either this parameter or `login_password`.
1001
+ * The name of the key pair. You must set one of key_pair and login_password.
1002
1002
  *
1003
- * For managed node pools, only `key_pair` is supported.
1003
+ * You can set only `key_pair` for managed node pools.
1004
1004
  *
1005
1005
  * @example
1006
1006
  * pro-nodepool
@@ -1008,9 +1008,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1008
1008
  keyPair?: string;
1009
1009
  /**
1010
1010
  * @remarks
1011
- * Indicates whether to log on to the ECS instance as a non-root user.
1011
+ * Indicates whether to log on to the created ECS instance as a non-root user.
1012
1012
  *
1013
- * - true: Log on as the non-root user (ecs-user).
1013
+ * - true: Log on as a non-root user (ecs-user).
1014
1014
  *
1015
1015
  * - false: Log on as the root user.
1016
1016
  *
@@ -1020,9 +1020,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1020
1020
  loginAsNonRoot?: boolean;
1021
1021
  /**
1022
1022
  * @remarks
1023
- * 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.
1023
+ * 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.
1024
1024
  *
1025
- * For security reasons, the returned password is encrypted.
1025
+ * For security reasons, the password is encrypted.
1026
1026
  *
1027
1027
  * @example
1028
1028
  * ******
@@ -1030,15 +1030,15 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1030
1030
  loginPassword?: string;
1031
1031
  /**
1032
1032
  * @remarks
1033
- * ECS instance scaling policy for multi-zone scaling groups. Valid values:
1033
+ * The scaling policy for the ECS instances in the multi-zone scaling group. Valid values:
1034
1034
  *
1035
- * - `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.
1035
+ * - `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.
1036
1036
  *
1037
- * - `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.
1037
+ * - `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.
1038
1038
  *
1039
- * > `COST_OPTIMIZED` takes effect only when multiple instance types are configured or spot instances are selected.
1039
+ * > `COST_OPTIMIZED` takes effect only if the scaling configuration uses multiple instance types or spot instances.
1040
1040
  *
1041
- * - `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).
1041
+ * - `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) .
1042
1042
  *
1043
1043
  * @example
1044
1044
  * COST_OPTIMIZED
@@ -1046,7 +1046,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1046
1046
  multiAzPolicy?: string;
1047
1047
  /**
1048
1048
  * @remarks
1049
- * 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.
1049
+ * 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.
1050
1050
  *
1051
1051
  * @example
1052
1052
  * 0
@@ -1054,7 +1054,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1054
1054
  onDemandBaseCapacity?: number;
1055
1055
  /**
1056
1056
  * @remarks
1057
- * 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].
1057
+ * 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.
1058
1058
  *
1059
1059
  * @example
1060
1060
  * 20
@@ -1062,11 +1062,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1062
1062
  onDemandPercentageAboveBaseCapacity?: number;
1063
1063
  /**
1064
1064
  * @remarks
1065
- * Subscription duration for nodes. This parameter takes effect and is required only when `instance_charge_type` is set to `PrePaid`.
1065
+ * The subscription duration of the nodes. This parameter is required and takes effect only when instance_charge_type is set to PrePaid.
1066
1066
  *
1067
- * - When `period_unit=Week`, valid values for `period` are {1, 2, 3, 4}.
1067
+ * - If period_unit is set to Week, the valid values of period are 1, 2, 3, and 4.
1068
1068
  *
1069
- * - When `period_unit=Month`, valid values for `period` are {1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, 60}.
1069
+ * - 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.
1070
1070
  *
1071
1071
  * @example
1072
1072
  * 1
@@ -1074,11 +1074,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1074
1074
  period?: number;
1075
1075
  /**
1076
1076
  * @remarks
1077
- * Billing cycle for nodes. Specify this parameter when `instance_charge_type` is set to `PrePaid`.
1077
+ * The billing cycle of the nodes. This parameter is required when instance_charge_type is set to PrePaid.
1078
1078
  *
1079
- * - `Month`: Billed monthly.
1079
+ * - `Month`: The billing cycle is measured in months.
1080
1080
  *
1081
- * - `Week`: Billed weekly.
1081
+ * - `Week`: The billing cycle is measured in weeks.
1082
1082
  *
1083
1083
  * @example
1084
1084
  * Month
@@ -1086,9 +1086,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1086
1086
  periodUnit?: string;
1087
1087
  /**
1088
1088
  * @remarks
1089
- * [This field is deprecated.]
1089
+ * [This parameter is deprecated]
1090
1090
  *
1091
- * Operating system distribution. Valid values:
1091
+ * The OS distribution. Valid values:
1092
1092
  *
1093
1093
  * - `CentOS`
1094
1094
  *
@@ -1104,12 +1104,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1104
1104
  platform?: string;
1105
1105
  /**
1106
1106
  * @remarks
1107
- * Private pool options.
1107
+ * The private pool options.
1108
1108
  */
1109
1109
  privatePoolOptions?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPrivatePoolOptions;
1110
1110
  /**
1111
1111
  * @remarks
1112
- * This field is deprecated. Use ram_role_name instead.
1112
+ * This parameter is deprecated. Use ram_role_name instead.
1113
1113
  *
1114
1114
  * @example
1115
1115
  * KubernetesWorkerRole-021dc54f-929b-437a-8ae0-34c24d3e****
@@ -1117,7 +1117,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1117
1117
  ramPolicy?: string;
1118
1118
  /**
1119
1119
  * @remarks
1120
- * Worker RAM role name.
1120
+ * The name of the worker RAM role.
1121
1121
  *
1122
1122
  * @example
1123
1123
  * KubernetesWorkerRole-4a4fa089-80c1-48a5-b3c6-9349311f****
@@ -1125,17 +1125,17 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1125
1125
  ramRoleName?: string;
1126
1126
  /**
1127
1127
  * @remarks
1128
- * If RDS instances are specified, ECS nodes in the cluster are automatically added to the RDS access whitelist.
1128
+ * If you specify a list of RDS instances, the ECS instances of the cluster nodes are automatically added to the RDS instance whitelist.
1129
1129
  */
1130
1130
  rdsInstances?: string[];
1131
1131
  /**
1132
1132
  * @remarks
1133
- * Resource pool and strategy used when creating instances.
1133
+ * The resource pool and resource pool policy that are used when an instance is created.
1134
1134
  */
1135
1135
  resourcePoolOptions?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupResourcePoolOptions;
1136
1136
  /**
1137
1137
  * @remarks
1138
- * Scaling group ID.
1138
+ * The scaling group ID.
1139
1139
  *
1140
1140
  * @example
1141
1141
  * asg-2ze8n5qw4atggut8****
@@ -1143,11 +1143,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1143
1143
  scalingGroupId?: string;
1144
1144
  /**
1145
1145
  * @remarks
1146
- * Scaling group mode. Valid values:
1146
+ * The scaling mode of the scaling group. Valid values:
1147
1147
  *
1148
- * - `release`: Standard mode. Scales by creating or releasing ECS instances based on resource usage.
1148
+ * - `release`: standard mode. The system creates and releases ECS instances to scale resources based on the resource usage.
1149
1149
  *
1150
- * - `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.)
1150
+ * - `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.
1151
1151
  *
1152
1152
  * @example
1153
1153
  * release
@@ -1155,9 +1155,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1155
1155
  scalingPolicy?: string;
1156
1156
  /**
1157
1157
  * @remarks
1158
- * [This field is deprecated.]
1158
+ * [This parameter is deprecated]
1159
1159
  *
1160
- * 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`.
1160
+ * 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.
1161
1161
  *
1162
1162
  * @example
1163
1163
  * sg-2ze1iuk12m2sb4c4****
@@ -1165,7 +1165,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1165
1165
  securityGroupId?: string;
1166
1166
  /**
1167
1167
  * @remarks
1168
- * List of security group IDs for the node pool.
1168
+ * The list of security group IDs for the node pool.
1169
1169
  */
1170
1170
  securityGroupIds?: string[];
1171
1171
  /**
@@ -1184,7 +1184,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1184
1184
  securityHardeningOs?: boolean;
1185
1185
  /**
1186
1186
  * @remarks
1187
- * 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.
1187
+ * 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.
1188
1188
  *
1189
1189
  * @example
1190
1190
  * false
@@ -1192,7 +1192,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1192
1192
  socEnabled?: boolean;
1193
1193
  /**
1194
1194
  * @remarks
1195
- * Number of available instance types. The scaling group creates spot instances evenly across the lowest-cost instance types. Valid values: [1,10].
1195
+ * 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.
1196
1196
  *
1197
1197
  * @example
1198
1198
  * 5
@@ -1200,11 +1200,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1200
1200
  spotInstancePools?: number;
1201
1201
  /**
1202
1202
  * @remarks
1203
- * 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:
1203
+ * 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:
1204
1204
  *
1205
- * - `true`: Enables replenishment.
1205
+ * - `true`: Enables the feature of supplementing preemptible instances.
1206
1206
  *
1207
- * - `false`: Disables replenishment.
1207
+ * - `false`: Disables the feature of supplementing preemptible instances.
1208
1208
  *
1209
1209
  * @example
1210
1210
  * false
@@ -1212,18 +1212,18 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1212
1212
  spotInstanceRemedy?: boolean;
1213
1213
  /**
1214
1214
  * @remarks
1215
- * Market price range configuration for spot instances.
1215
+ * The configurations of the price range for the spot instances.
1216
1216
  */
1217
1217
  spotPriceLimit?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit[];
1218
1218
  /**
1219
1219
  * @remarks
1220
- * Spot instance type. Valid values:
1220
+ * The bidding policy for the spot instances. Valid values:
1221
1221
  *
1222
- * - NoSpot: Regular instance.
1222
+ * - NoSpot: The instances are not spot instances.
1223
1223
  *
1224
- * - SpotWithPriceLimit: Sets a maximum price for spot instances.
1224
+ * - SpotWithPriceLimit: The maximum bid price is specified for the spot instances.
1225
1225
  *
1226
- * - SpotAsPriceGo: Uses the current market price.
1226
+ * - SpotAsPriceGo: The system automatically places bids based on the market price.
1227
1227
  *
1228
1228
  * For more information, see [Spot instances](https://help.aliyun.com/document_detail/157759.html).
1229
1229
  *
@@ -1233,13 +1233,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1233
1233
  spotStrategy?: string;
1234
1234
  /**
1235
1235
  * @remarks
1236
- * Indicates whether burst performance is enabled for the system disk. Valid values:
1236
+ * Indicates whether to enable bursting for the system disk of the node. Valid values:
1237
1237
  *
1238
- * - 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.
1238
+ * - 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.
1239
1239
  *
1240
- * - false: Disabled.
1240
+ * - false: disables bursting.
1241
1241
  *
1242
- * 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).
1242
+ * 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).
1243
1243
  *
1244
1244
  * @example
1245
1245
  * true
@@ -1247,18 +1247,18 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1247
1247
  systemDiskBurstingEnabled?: boolean;
1248
1248
  /**
1249
1249
  * @remarks
1250
- * 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.
1250
+ * 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.
1251
1251
  */
1252
1252
  systemDiskCategories?: string[];
1253
1253
  /**
1254
1254
  * @remarks
1255
- * System disk type for nodes. Valid values:
1255
+ * The type of the system disk of the node. Valid values:
1256
1256
  *
1257
- * - `cloud_efficiency`: Ultra disk.
1257
+ * - `cloud_efficiency`: ultra disk.
1258
1258
  *
1259
- * - `cloud_ssd`: Standard SSD.
1259
+ * - `cloud_ssd`: standard SSD.
1260
1260
  *
1261
- * - `cloud_essd`: Enterprise SSD.
1261
+ * - `cloud_essd`: ESSD.
1262
1262
  *
1263
1263
  * - `cloud_auto`: ESSD AutoPL disk.
1264
1264
  *
@@ -1270,7 +1270,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1270
1270
  systemDiskCategory?: string;
1271
1271
  /**
1272
1272
  * @remarks
1273
- * Encryption algorithm used for the system disk. Valid values: aes-256.
1273
+ * The encryption algorithm that is used to encrypt the system disk. Valid value: aes-256.
1274
1274
  *
1275
1275
  * @example
1276
1276
  * aes-256
@@ -1278,11 +1278,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1278
1278
  systemDiskEncryptAlgorithm?: string;
1279
1279
  /**
1280
1280
  * @remarks
1281
- * Indicates whether the system disk is encrypted. Valid values:
1281
+ * Indicates whether to encrypt the system disk. Valid values:
1282
1282
  *
1283
- * - true: Encrypted.
1283
+ * - true: Encrypts the system disk.
1284
1284
  *
1285
- * - false: Not encrypted.
1285
+ * - false: Does not encrypt the system disk.
1286
1286
  *
1287
1287
  * @example
1288
1288
  * false
@@ -1290,7 +1290,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1290
1290
  systemDiskEncrypted?: boolean;
1291
1291
  /**
1292
1292
  * @remarks
1293
- * KMS key ID used for the system disk.
1293
+ * The ID of the KMS key that is used to encrypt the system disk.
1294
1294
  *
1295
1295
  * @example
1296
1296
  * 0e478b7a-4262-4802-b8cb-00d3fb40****
@@ -1298,15 +1298,15 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1298
1298
  systemDiskKmsKeyId?: string;
1299
1299
  /**
1300
1300
  * @remarks
1301
- * 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).
1301
+ * 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).
1302
1302
  *
1303
- * - PL0: Moderate I/O performance with stable read/write latency.
1303
+ * - PL0: The disk has medium concurrent I/O performance and stable read and write latency.
1304
1304
  *
1305
- * - PL1: Moderate I/O performance with stable read/write latency.
1305
+ * - PL1: The disk has medium concurrent I/O performance and stable read and write latency.
1306
1306
  *
1307
- * - PL2: High I/O performance with stable read/write latency.
1307
+ * - PL2: The disk has high concurrent I/O performance and stable read and write latency.
1308
1308
  *
1309
- * - PL3: Extremely high I/O performance with highly stable read/write latency.
1309
+ * - PL3: The disk has ultra-high concurrent I/O performance and ultra-stable read and write latency.
1310
1310
  *
1311
1311
  * @example
1312
1312
  * PL1
@@ -1314,7 +1314,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1314
1314
  systemDiskPerformanceLevel?: string;
1315
1315
  /**
1316
1316
  * @remarks
1317
- * Provisioned read/write IOPS for the system disk. Configure this parameter when the disk type is cloud_auto.
1317
+ * 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.
1318
1318
  *
1319
1319
  * @example
1320
1320
  * 1000
@@ -1322,9 +1322,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1322
1322
  systemDiskProvisionedIops?: number;
1323
1323
  /**
1324
1324
  * @remarks
1325
- * System disk size for nodes. Unit: GiB.
1325
+ * The size of the system disk of the node. Unit: GiB.
1326
1326
  *
1327
- * Valid values: [20,2048].
1327
+ * Valid values: 20 to 2048.
1328
1328
  *
1329
1329
  * @example
1330
1330
  * 120
@@ -1332,7 +1332,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1332
1332
  systemDiskSize?: number;
1333
1333
  /**
1334
1334
  * @remarks
1335
- * System disk snapshot policy.
1335
+ * The snapshot policy for the system disk
1336
1336
  *
1337
1337
  * @example
1338
1338
  * sp-0jl6xnmme8v7o935****
@@ -1340,12 +1340,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1340
1340
  systemDiskSnapshotPolicyId?: string;
1341
1341
  /**
1342
1342
  * @remarks
1343
- * ECS instance tags.
1343
+ * The tags of the ECS instances.
1344
1344
  */
1345
1345
  tags?: Tag[];
1346
1346
  /**
1347
1347
  * @remarks
1348
- * List of virtual switch IDs.
1348
+ * The list of vSwitch IDs.
1349
1349
  */
1350
1350
  vswitchIds?: string[];
1351
1351
  static names(): {
@@ -1362,7 +1362,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1362
1362
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.Model {
1363
1363
  /**
1364
1364
  * @remarks
1365
- * Number of failed instances.
1365
+ * The number of failed nodes.
1366
1366
  *
1367
1367
  * @example
1368
1368
  * 0
@@ -1370,7 +1370,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1370
1370
  failedNodes?: number;
1371
1371
  /**
1372
1372
  * @remarks
1373
- * Number of healthy instances.
1373
+ * The number of healthy nodes.
1374
1374
  *
1375
1375
  * @example
1376
1376
  * 3
@@ -1378,7 +1378,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1378
1378
  healthyNodes?: number;
1379
1379
  /**
1380
1380
  * @remarks
1381
- * Number of nodes being created.
1381
+ * The number of nodes that are being created.
1382
1382
  *
1383
1383
  * @example
1384
1384
  * 0
@@ -1386,7 +1386,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1386
1386
  initialNodes?: number;
1387
1387
  /**
1388
1388
  * @remarks
1389
- * Number of offline nodes.
1389
+ * The number of offline nodes.
1390
1390
  *
1391
1391
  * @example
1392
1392
  * 0
@@ -1394,7 +1394,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1394
1394
  offlineNodes?: number;
1395
1395
  /**
1396
1396
  * @remarks
1397
- * Number of nodes being removed.
1397
+ * The number of nodes that are being removed.
1398
1398
  *
1399
1399
  * @example
1400
1400
  * 0
@@ -1402,7 +1402,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1402
1402
  removingNodes?: number;
1403
1403
  /**
1404
1404
  * @remarks
1405
- * Number of active nodes.
1405
+ * The number of running nodes.
1406
1406
  *
1407
1407
  * @example
1408
1408
  * 3
@@ -1410,17 +1410,17 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1410
1410
  servingNodes?: number;
1411
1411
  /**
1412
1412
  * @remarks
1413
- * Node pool state. Valid values:
1413
+ * The status of the node pool. Valid values:
1414
1414
  *
1415
- * - `active`: Activated.
1415
+ * - `active`: The node pool is active.
1416
1416
  *
1417
- * - `scaling`: Scaling.
1417
+ * - `scaling`: The node pool is being scaled.
1418
1418
  *
1419
- * - `removing`: Removing nodes.
1419
+ * - `removing`: Nodes are being removed from the node pool.
1420
1420
  *
1421
- * - `deleting`: Deleting.
1421
+ * - `deleting`: The node pool is being deleted.
1422
1422
  *
1423
- * - `updating`: Updating.
1423
+ * - `updating`: The node pool is being updated.
1424
1424
  *
1425
1425
  * @example
1426
1426
  * active
@@ -1428,7 +1428,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1428
1428
  state?: string;
1429
1429
  /**
1430
1430
  * @remarks
1431
- * Total number of nodes in the node pool.
1431
+ * The total number of nodes in the node pool.
1432
1432
  *
1433
1433
  * @example
1434
1434
  * 3
@@ -1448,11 +1448,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1448
1448
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig extends $dara.Model {
1449
1449
  /**
1450
1450
  * @remarks
1451
- * Indicates whether confidential computing is enabled. Valid values:
1451
+ * Indicates whether to enable the confidential computing cluster. Valid values:
1452
1452
  *
1453
- * - `true`: Enabled.
1453
+ * - `true`: Enables the confidential computing cluster.
1454
1454
  *
1455
- * - `false`: Disabled.
1455
+ * - `false`: Disables the confidential computing cluster.
1456
1456
  *
1457
1457
  * @example
1458
1458
  * false
@@ -1472,33 +1472,33 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig exte
1472
1472
  export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
1473
1473
  /**
1474
1474
  * @remarks
1475
- * Intelligent management configuration.
1475
+ * The intelligent hosting configurations.
1476
1476
  */
1477
1477
  autoMode?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode;
1478
1478
  /**
1479
1479
  * @remarks
1480
- * Automatic scaling configuration.
1480
+ * The auto scaling configuration.
1481
1481
  */
1482
1482
  autoScaling?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling;
1483
1483
  /**
1484
1484
  * @remarks
1485
- * Lingjun node group information.
1485
+ * The information about the Lingjun node group.
1486
1486
  */
1487
1487
  efloNodeGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup;
1488
1488
  /**
1489
1489
  * @remarks
1490
- * [This field is deprecated.]
1490
+ * [This parameter is deprecated]
1491
1491
  *
1492
- * Network configuration for edge node pools. This parameter applies only to edge-type node pools.
1492
+ * The network configurations of the edge node pool. This parameter is valid only for edge node pools.
1493
1493
  */
1494
1494
  interconnectConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig;
1495
1495
  /**
1496
1496
  * @remarks
1497
- * Network type for edge node pools. This parameter applies only to node pools where `type` is `edge`. Valid values:
1497
+ * The network type of the edge node pool. This parameter is valid only for node pools of the `edge` type. Valid values:
1498
1498
  *
1499
- * - `basic`: Public network. Nodes in the node pool interact with cloud nodes over the public network and cannot directly access the VPC intranet.
1499
+ * - `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.
1500
1500
  *
1501
- * - `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.
1501
+ * - `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.
1502
1502
  *
1503
1503
  * @example
1504
1504
  * basic
@@ -1506,17 +1506,17 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1506
1506
  interconnectMode?: string;
1507
1507
  /**
1508
1508
  * @remarks
1509
- * Cluster-related configuration.
1509
+ * The cluster-related configurations.
1510
1510
  */
1511
1511
  kubernetesConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConfig;
1512
1512
  /**
1513
1513
  * @remarks
1514
- * Managed node pool configuration. This parameter takes effect only for professional managed clusters.
1514
+ * The configurations of the managed node pool. This parameter takes effect only in ACK Pro clusters.
1515
1515
  */
1516
1516
  management?: DescribeClusterNodePoolsResponseBodyNodepoolsManagement;
1517
1517
  /**
1518
1518
  * @remarks
1519
- * 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.
1519
+ * 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
1520
1520
  *
1521
1521
  * @example
1522
1522
  * 10
@@ -1524,32 +1524,32 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1524
1524
  maxNodes?: number;
1525
1525
  /**
1526
1526
  * @remarks
1527
- * List of node components.
1527
+ * The list of node components.
1528
1528
  */
1529
1529
  nodeComponents?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents[];
1530
1530
  /**
1531
1531
  * @remarks
1532
- * Node configuration.
1532
+ * The node configurations.
1533
1533
  */
1534
1534
  nodeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfig;
1535
1535
  /**
1536
1536
  * @remarks
1537
- * Node pool information.
1537
+ * The information about the node pool.
1538
1538
  */
1539
1539
  nodepoolInfo?: DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo;
1540
1540
  /**
1541
1541
  * @remarks
1542
- * Scaling group configuration for the node pool.
1542
+ * The configurations of the scaling group for the node pool.
1543
1543
  */
1544
1544
  scalingGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup;
1545
1545
  /**
1546
1546
  * @remarks
1547
- * Node pool status.
1547
+ * The status of the node pool.
1548
1548
  */
1549
1549
  status?: DescribeClusterNodePoolsResponseBodyNodepoolsStatus;
1550
1550
  /**
1551
1551
  * @remarks
1552
- * Confidential computing configuration.
1552
+ * The confidential computing configurations.
1553
1553
  */
1554
1554
  teeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig;
1555
1555
  static names(): {
@@ -1566,7 +1566,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1566
1566
  export declare class DescribeClusterNodePoolsResponseBody extends $dara.Model {
1567
1567
  /**
1568
1568
  * @remarks
1569
- * List of node pool instances.
1569
+ * The list of node pools.
1570
1570
  */
1571
1571
  nodepools?: DescribeClusterNodePoolsResponseBodyNodepools[];
1572
1572
  static names(): {