@alicloud/cs20151215 6.7.1 → 7.0.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 (30) hide show
  1. package/dist/client.d.ts +4 -4
  2. package/dist/client.js +4 -4
  3. package/dist/models/CreateClusterNodePoolRequest.d.ts +267 -263
  4. package/dist/models/CreateClusterNodePoolRequest.js +1 -1
  5. package/dist/models/CreateClusterNodePoolRequest.js.map +1 -1
  6. package/dist/models/CreateClusterNodePoolResponseBody.d.ts +3 -3
  7. package/dist/models/DescribeClusterNodePoolDetailResponseBody.d.ts +235 -232
  8. package/dist/models/DescribeClusterNodePoolDetailResponseBody.js +1 -1
  9. package/dist/models/DescribeClusterNodePoolDetailResponseBody.js.map +1 -1
  10. package/dist/models/DescribeClusterNodePoolsResponseBody.d.ts +92 -88
  11. package/dist/models/DescribeClusterNodePoolsResponseBody.js +1 -1
  12. package/dist/models/DescribeClusterNodePoolsResponseBody.js.map +1 -1
  13. package/dist/models/InstallNodePoolComponentsRequest.d.ts +4 -1
  14. package/dist/models/InstallNodePoolComponentsRequest.js +1 -1
  15. package/dist/models/InstallNodePoolComponentsRequest.js.map +1 -1
  16. package/dist/models/Nodepool.d.ts +8 -5
  17. package/dist/models/Nodepool.js +1 -1
  18. package/dist/models/Nodepool.js.map +1 -1
  19. package/dist/models/UpdateNodePoolComponentRequest.d.ts +6 -3
  20. package/dist/models/UpdateNodePoolComponentRequest.js +1 -1
  21. package/dist/models/UpdateNodePoolComponentRequest.js.map +1 -1
  22. package/package.json +1 -1
  23. package/src/client.ts +4 -4
  24. package/src/models/CreateClusterNodePoolRequest.ts +268 -264
  25. package/src/models/CreateClusterNodePoolResponseBody.ts +3 -3
  26. package/src/models/DescribeClusterNodePoolDetailResponseBody.ts +236 -233
  27. package/src/models/DescribeClusterNodePoolsResponseBody.ts +93 -89
  28. package/src/models/InstallNodePoolComponentsRequest.ts +5 -2
  29. package/src/models/Nodepool.ts +9 -6
  30. package/src/models/UpdateNodePoolComponentRequest.ts +7 -4
@@ -9,7 +9,7 @@ import { Taint } from "./Taint";
9
9
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode extends $dara.Model {
10
10
  /**
11
11
  * @remarks
12
- * Whether intelligent hosting is enabled.
12
+ * 是否开启智能托管。
13
13
  *
14
14
  * @example
15
15
  * true
@@ -39,7 +39,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
39
39
  eipBandwidth?: number;
40
40
  /**
41
41
  * @remarks
42
- * The billing method for the EIP. Valid values:
42
+ * The billing method for EIPs. Valid values:
43
43
  *
44
44
  * - `PayByBandwidth`: pay-by-bandwidth.
45
45
  * - `PayByTraffic`: pay-by-traffic.
@@ -50,11 +50,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
50
50
  eipInternetChargeType?: string;
51
51
  /**
52
52
  * @remarks
53
- * Specifies whether automatic scaling is enabled. Valid values:
53
+ * Specifies whether auto scaling is enabled. Valid values:
54
54
  *
55
- * - `true`: Enables the automatic scaling feature for the node pool. When the cluster capacity planning cannot meet the scheduling requirements of application pods, ACK automatically scales nodes based on the configured minimum and maximum instance counts. For clusters of version 1.24 or later, instant node elasticity is enabled by default. For clusters of versions earlier than 1.24, node auto scaling is enabled by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
55
+ * - `true`: Enables the auto scaling feature for the node pool. When the cluster capacity planning cannot meet the scheduling requirements of application Pods, ACK automatically scales nodes based on the configured minimum and maximum instance counts. Clusters of version 1.24 or later use instant elasticity by default. Clusters of versions earlier than 1.24 use auto scaling by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
56
56
  *
57
- * - `false`: Disables automatic scaling. ACK adjusts the number of nodes in the node pool based on the configured desired node count and maintains the node count at the desired value.
57
+ * - `false`: Disables auto scaling. ACK adjusts the number of nodes in the node pool based on the configured desired node count and maintains the node count at the desired value.
58
58
  *
59
59
  * When this parameter is set to false, other configuration parameters in `auto_scaling` do not take effect.
60
60
  *
@@ -91,11 +91,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
91
91
  minInstances?: number;
92
92
  /**
93
93
  * @remarks
94
- * The automatic scaling type, categorized by instance type. Valid values:
94
+ * The auto scaling type, categorized by instance type. Valid values:
95
95
  *
96
- * - `cpu`: standard instance type.
96
+ * - `cpu`: regular instance type.
97
97
  * - `gpu`: GPU instance type.
98
- * - `gpushare`: GPU-shared type.
98
+ * - `gpushare`: GPU sharing type.
99
99
  * - `spot`: spot instance type.
100
100
  *
101
101
  * @example
@@ -116,7 +116,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling ex
116
116
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup extends $dara.Model {
117
117
  /**
118
118
  * @remarks
119
- * The Lingjun cluster ID.
119
+ * 灵骏集群ID
120
120
  *
121
121
  * @example
122
122
  * i113790071760688002461
@@ -124,7 +124,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup
124
124
  clusterId?: string;
125
125
  /**
126
126
  * @remarks
127
- * The Lingjun group ID.
127
+ * 灵骏分组ID
128
128
  *
129
129
  * @example
130
130
  * i128147721760688002463
@@ -144,9 +144,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup
144
144
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig extends $dara.Model {
145
145
  /**
146
146
  * @remarks
147
- * [Deprecated]
147
+ * 【该字段已废弃】
148
148
  *
149
- * The network bandwidth of the enhanced edge node pool. Unit: Mbit/s.
149
+ * 边缘增强型节点池的网络带宽,单位:Mbps。
150
150
  *
151
151
  * @example
152
152
  * 10
@@ -154,9 +154,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
154
154
  bandwidth?: number;
155
155
  /**
156
156
  * @remarks
157
- * [Deprecated]
157
+ * 【该字段已废弃】
158
158
  *
159
- * The Cloud Connect Network (CCN) instance ID bound to the enhanced edge node pool.
159
+ * 边缘增强型节点池绑定的云连接网实例ID(CCNID)
160
160
  *
161
161
  * @example
162
162
  * ccn-qm5i0i0q9yi*******
@@ -164,9 +164,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
164
164
  ccnId?: string;
165
165
  /**
166
166
  * @remarks
167
- * [Deprecated]
167
+ * 【该字段已废弃】
168
168
  *
169
- * The region of the Cloud Connect Network (CCN) instance bound to the enhanced edge node pool.
169
+ * 边缘增强型节点池绑定的云连接网实例所属的区域。
170
170
  *
171
171
  * @example
172
172
  * cn-shanghai
@@ -174,9 +174,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
174
174
  ccnRegionId?: string;
175
175
  /**
176
176
  * @remarks
177
- * [Deprecated]
177
+ * 【该字段已废弃】
178
178
  *
179
- * The Cloud Enterprise Network (CEN) instance ID bound to the enhanced edge node pool.
179
+ * 边缘增强型节点池绑定的云企业网实例ID(CENID)
180
180
  *
181
181
  * @example
182
182
  * cen-ey9k9nfhz0f*******
@@ -184,9 +184,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectCo
184
184
  cenId?: string;
185
185
  /**
186
186
  * @remarks
187
- * [Deprecated]
187
+ * 【该字段已废弃】
188
188
  *
189
- * The subscription duration of the enhanced edge node pool. Unit: months.
189
+ * 边缘增强型节点池的购买时长,单位:月。
190
190
  *
191
191
  * @example
192
192
  * 1
@@ -208,7 +208,8 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
208
208
  * @remarks
209
209
  * Specifies whether to install the CloudMonitor agent on ECS nodes. After installation, you can view monitoring information for the created ECS instances in the CloudMonitor console. We recommend that you enable this feature. Valid values:
210
210
  *
211
- * - `true`: Install the.
211
+ * - `true`: Install the CloudMonitor agent on ECS nodes.
212
+ * - `false`: Do not install the CloudMonitor agent on ECS.
212
213
  *
213
214
  * @example
214
215
  * true
@@ -216,10 +217,10 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
216
217
  cmsEnabled?: boolean;
217
218
  /**
218
219
  * @remarks
219
- * The CPU management policy for nodes. The following two policies are supported for clusters of version 1.12.6 and later:
220
+ * The CPU management policy for nodes. The following two policies are supported for clusters of version 1.12.6 or later:
220
221
  *
221
- * - `static`: Allows pods with certain resource characteristics on the node to be granted enhanced CPU affinity and exclusivity.
222
- * - `none`: Uses the existing default CPU affinity scheme.
222
+ * - `static`: allows Pods with certain resource characteristics on the node to be granted enhanced CPU affinity and exclusivity.
223
+ * - `none`: uses the existing default CPU affinity scheme.
223
224
  *
224
225
  * @example
225
226
  * none
@@ -232,14 +233,14 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
232
233
  labels?: Tag[];
233
234
  /**
234
235
  * @remarks
235
- * The custom node name.
236
+ * 自定义节点名称。
236
237
  *
237
- * The node name consists of three parts: prefix \\+ node IP address substring \\+ suffix:
238
+ * 节点名称由三部分组成:前缀 \\+ 节点 IP 地址子串 \\+ 后缀:
238
239
  *
239
- * - The prefix and suffix can each consist of one or more parts separated by ".". Each part can contain lowercase letters, digits, and hyphens (-). The node name must start and end with a lowercase letter or digit.
240
- * - The IP address segment length specifies the number of digits to truncate from the end of the node IP address. Valid values: 5 to 12.
240
+ * - 前缀和后缀均可由“.”分隔的一个或多个部分构成,每个部分可以使用小写字母、数字和“-”,节点名称首尾必须为小写字母和数字。
241
+ * - IP 地址段长度指截取节点 IP 地址末尾的位数,取值范围 5-12
241
242
  *
242
- * For example, if the node IP address is 192.168.0.55, the prefix is aliyun.com, the IP address segment length is 5, and the suffix is test, the node name is aliyun.com00055test.
243
+ * 例如,节点 IP 地址为:192.168.0.55,指定前缀为 aliyun.comIP 地址段长度为 5,后缀为 test,则节点名称为aliyun.com00055test
243
244
  *
244
245
  * @example
245
246
  * aliyun.com192.XX.YY.55test
@@ -247,7 +248,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
247
248
  nodeNameMode?: string;
248
249
  /**
249
250
  * @remarks
250
- * The pre-custom data for the node pool, which is a script that runs before node initialization. For more information, see [Generate instance custom data](https://help.aliyun.com/document_detail/49121.html).
251
+ * 节点池预自定义数据,即运行于节点初始化之前的脚本。更多详情,请参见[生成实例自定义数据](https://help.aliyun.com/document_detail/49121.html)
251
252
  *
252
253
  * @example
253
254
  * IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFD
@@ -257,9 +258,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
257
258
  * @remarks
258
259
  * The container runtime name. ACK supports the following three container runtimes:
259
260
  *
260
- * - containerd: recommended. Supported by all cluster versions.
261
- * - Sandboxed-Container.runv: sandboxed container that provides higher isolation. Supported by clusters of version 1.31 and earlier.
262
- * - docker: no longer maintained. Supported by clusters of version 1.22 and earlier.
261
+ * - containerd: recommended. Supports all cluster versions.
262
+ * - Sandboxed-Container.runv: sandboxed container that provides higher isolation. Supports clusters of version 1.31 or earlier.
263
+ * - docker: no longer maintained. Supports clusters of version 1.22 or earlier.
263
264
  *
264
265
  * @example
265
266
  * containerd
@@ -275,12 +276,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsKubernetesConf
275
276
  runtimeVersion?: string;
276
277
  /**
277
278
  * @remarks
278
- * The node taint information. Taints and tolerations work together to prevent pods from being scheduled to inappropriate nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
279
+ * The node taint information. Taints and tolerations work together to prevent Pods from being scheduled to inappropriate nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
279
280
  */
280
281
  taints?: Taint[];
281
282
  /**
282
283
  * @remarks
283
- * Specifies whether the scaled-out nodes are unschedulable.
284
+ * Specifies whether the scaled nodes are unschedulable.
284
285
  *
285
286
  * - true: Unschedulable.
286
287
  *
@@ -542,10 +543,13 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsManagement ext
542
543
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig extends $dara.Model {
543
544
  /**
544
545
  * @remarks
545
- * The custom configuration of the node component.
546
+ * 节点组件自定义配置。
547
+ *
548
+ * @example
549
+ * {"cpuManagerPolicy":"static"}
546
550
  */
547
551
  customConfig?: {
548
- [key: string]: string;
552
+ [key: string]: any;
549
553
  };
550
554
  static names(): {
551
555
  [key: string]: string;
@@ -561,12 +565,12 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
561
565
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents extends $dara.Model {
562
566
  /**
563
567
  * @remarks
564
- * The configuration of the node component.
568
+ * 节点组件配置。
565
569
  */
566
570
  config?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig;
567
571
  /**
568
572
  * @remarks
569
- * The name of the node component.
573
+ * 节点组件名称。
570
574
  *
571
575
  * @example
572
576
  * kubelet
@@ -574,7 +578,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
574
578
  name?: string;
575
579
  /**
576
580
  * @remarks
577
- * The version of the node component.
581
+ * 节点组件版本。
578
582
  *
579
583
  * @example
580
584
  * 1.33.3-aliyun.1
@@ -594,7 +598,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents
594
598
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodeConfigNodeOsConfig extends $dara.Model {
595
599
  /**
596
600
  * @remarks
597
- * The hugepage configuration.
601
+ * The Hugepage configuration.
598
602
  */
599
603
  hugepage?: Hugepage;
600
604
  static names(): {
@@ -641,10 +645,10 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsNodepoolInfo e
641
645
  created?: string;
642
646
  /**
643
647
  * @remarks
644
- * Indicates whether the node pool is the default node pool. A cluster typically has only one default node pool. Valid values:
648
+ * Indicates whether this is the default node pool. Typically, a cluster has only one default node pool. Valid values:
645
649
  *
646
- * - `true`: The node pool is the default node pool.
647
- * - `false`: The node pool is not the default node pool.
650
+ * - `true`: This is the default node pool.
651
+ * - `false`: This is not the default node pool.
648
652
  *
649
653
  * @example
650
654
  * true
@@ -724,7 +728,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupPr
724
728
  id?: string;
725
729
  /**
726
730
  * @remarks
727
- * The type of the private node pool, which specifies the private pool capacity option for instance launch. After an elasticity assurance or capacity reservation takes effect, a private pool is generated for instance launch. Valid values:
731
+ * The private pool type. Specifies the private pool capacity option for instance launch. After an elasticity assurance or capacity reservation takes effect, a private pool is generated for instance launch. Valid values:
728
732
  *
729
733
  * - `Open`: open mode. Automatically matches open-type private pool capacity. If no matching private pool capacity is available, public pool resources are used for instance launch.
730
734
  *
@@ -843,10 +847,10 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
843
847
  cisEnabled?: boolean;
844
848
  /**
845
849
  * @remarks
846
- * Specifies whether to allow the system to automatically create pay-as-you-go instances to meet the required number of ECS instances when spot instances cannot be created due to cost or inventory reasons. This parameter takes effect only when `multi_az_policy` is set to `COST_OPTIMIZED`. Valid values:
850
+ * Specifies whether to allow automatic creation of pay-as-you-go instances to meet the required number of ECS instances when spot instances cannot be created due to price or inventory reasons. This parameter takes effect only when `multi_az_policy` is set to `COST_OPTIMIZED`. Valid values:
847
851
  *
848
- * - `true`: Allow the system to automatically create pay-as-you-go instances.
849
- * - `false`: Do not allow the system to automatically create pay-as-you-go instances.
852
+ * - `true`: Allow automatic creation of pay-as-you-go instances.
853
+ * - `false`: Do not allow automatic creation of pay-as-you-go instances.
850
854
  *
851
855
  * @example
852
856
  * true
@@ -854,7 +858,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
854
858
  compensateWithOnDemand?: boolean;
855
859
  /**
856
860
  * @remarks
857
- * The configurations for data cloud disk type, size, and other settings.
861
+ * The configurations for node data cloud disks, including type and size.
858
862
  */
859
863
  dataDisks?: DataDisk[];
860
864
  /**
@@ -922,7 +926,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
922
926
  instancePatterns?: InstancePatterns[];
923
927
  /**
924
928
  * @remarks
925
- * The list of node instance types. You can select multiple instance types as alternatives. When each node is created, the system attempts to purchase instances starting from the first instance type until the creation succeeds. The actual instance type purchased may vary depending on inventory availability.
929
+ * The list of node instance types. You can select multiple instance types as alternatives. During node creation, the system attempts to purchase instances starting from the first specification until successful. The final purchased instance type may vary depending on inventory availability.
926
930
  *
927
931
  * @example
928
932
  * ecs.n4.large
@@ -959,7 +963,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
959
963
  keyPair?: string;
960
964
  /**
961
965
  * @remarks
962
- * Specifies whether the scaled-out ECS instances use a non-root user for logon.
966
+ * Specifies whether the scaled ECS instances use a non-root user for logon.
963
967
  *
964
968
  * - true: Log on as a non-root user (ecs-user).
965
969
  *
@@ -985,11 +989,11 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
985
989
  *
986
990
  * - `PRIORITY`: Scales based on the vSwitches (VSwitchIds.N) that you define. When ECS instances cannot be created in the zone of a higher-priority vSwitch, the system automatically uses the next-priority vSwitch to create ECS instances.
987
991
  *
988
- * - `COST_OPTIMIZED`: Attempts to create instances in ascending order of vCPU unit price. When the scaling configuration sets the spot billing method for multiple instance types, spot instances are created first. You can use the `CompensateWithOnDemand` parameter to specify whether to automatically create pay-as-you-go instances when spot instances cannot be created due to insufficient inventory.
992
+ * - `COST_OPTIMIZED`: Attempts to create instances in order of vCPU unit price from lowest to highest. When the scaling configuration specifies multiple instance types with spot billing, spot instances are created first. You can use the `CompensateWithOnDemand` parameter to specify whether to automatically create pay-as-you-go instances when spot instances cannot be created due to inventory or other reasons.
989
993
  *
990
994
  * >`COST_OPTIMIZED` takes effect only when multiple instance types are configured in the scaling configuration or spot instances are selected.
991
995
  *
992
- * - `BALANCE`: Evenly allocates ECS instances across the multiple zones specified in the scaling group. If zones become unbalanced due to insufficient inventory, you can call the `RebalanceInstances` API operation to rebalance resources. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html).
996
+ * - `BALANCE`: Allocates ECS instances evenly across the multiple active zones specified in the scaling group. If zones become unbalanced due to insufficient inventory, you can call the `RebalanceInstances` API operation to rebalance resources. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html).
993
997
  *
994
998
  * @example
995
999
  * COST_OPTIMIZED
@@ -1024,7 +1028,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1024
1028
  period?: number;
1025
1029
  /**
1026
1030
  * @remarks
1027
- * The billing cycle unit for nodes. This parameter must be specified when `instance_charge_type` is set to `PrePaid`.
1031
+ * The billing cycle of nodes. This parameter must be specified when `instance_charge_type` is set to `PrePaid`.
1028
1032
  *
1029
1033
  * - `Month`: billed on a monthly basis.
1030
1034
  * - `Week`: billed on a weekly basis.
@@ -1092,7 +1096,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1092
1096
  * The scaling group mode. Valid values:
1093
1097
  *
1094
1098
  * - `release`: standard mode. Scales by creating and releasing ECS instances based on resource usage.
1095
- * - `recycle`: swift mode. Scales by creating, stopping, and starting instances to improve subsequent scaling speed. Compute resources are not charged during the stopped state. Only storage fees are charged, except for instances with local disks.
1099
+ * - `recycle`: rapid mode. Scales by creating, stopping, and starting instances to improve subsequent scaling speed. (Compute resources are not charged during the stopped state. Only storage fees are charged, except for local disk instance types.).
1096
1100
  *
1097
1101
  * @example
1098
1102
  * release
@@ -1128,7 +1132,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1128
1132
  securityHardeningOs?: boolean;
1129
1133
  /**
1130
1134
  * @remarks
1131
- * Specifies whether to enable MLPS 2.0 security hardening. This option is available only when the system image is Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3. Alibaba Cloud provides classified protection compliance baseline check standards and scanning programs for Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 MLPS 2.0 Level 3 images.
1135
+ * Specifies whether to enable MLPS 2.0 security hardening. This feature can be enabled only when the system image is Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3. Alibaba Cloud provides baseline check standards and scanning programs that comply with classified protection compliance for Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 MLPS 2.0 Level 3 images.
1132
1136
  *
1133
1137
  * @example
1134
1138
  * false
@@ -1144,10 +1148,10 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1144
1148
  spotInstancePools?: number;
1145
1149
  /**
1146
1150
  * @remarks
1147
- * Specifies whether to enable supplemental spot instances. When enabled, the scaling group attempts to create new instances to replace spot instances that are about to be reclaimed. Valid values:
1151
+ * Specifies whether to enable supplementation of spot instances. When enabled, the scaling group attempts to create new instances to replace spot instances that are about to be reclaimed. Valid values:
1148
1152
  *
1149
- * - `true`: Enable supplemental spot instances.
1150
- * - `false`: Disable supplemental spot instances.
1153
+ * - `true`: Enable supplementation of spot instances.
1154
+ * - `false`: Disable supplementation of spot instances.
1151
1155
  *
1152
1156
  * @example
1153
1157
  * false
@@ -1155,7 +1159,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1155
1159
  spotInstanceRemedy?: boolean;
1156
1160
  /**
1157
1161
  * @remarks
1158
- * The price range configurations for spot instances.
1162
+ * The price limit configurations for spot instances.
1159
1163
  */
1160
1164
  spotPriceLimit?: DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroupSpotPriceLimit[];
1161
1165
  /**
@@ -1173,9 +1177,9 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1173
1177
  spotStrategy?: string;
1174
1178
  /**
1175
1179
  * @remarks
1176
- * Specifies whether to enable burst (performance bursting) for the system cloud disk. Valid values:
1177
- * - true: Enabled. When bursty workloads encounter sudden data read/write pressure, the cloud disk temporarily boosts performance based on actual business conditions until the workload stabilizes.
1178
- * - false: Disabled.
1180
+ * Specifies whether to enable burst (performance burst) for the system cloud disk. Valid values:
1181
+ * - true: Enable burst. When workloads encounter sudden data read/write pressure, the cloud disk temporarily improves performance based on actual conditions until the workload returns to a steady state.
1182
+ * - false: Disable burst.
1179
1183
  *
1180
1184
  * This parameter is supported only when `system_disk_category` is set to `cloud_auto`. For more information, see [ESSD AutoPL cloud disks](https://help.aliyun.com/document_detail/368372.html).
1181
1185
  *
@@ -1185,7 +1189,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1185
1189
  systemDiskBurstingEnabled?: boolean;
1186
1190
  /**
1187
1191
  * @remarks
1188
- * The multi-disk types for the system cloud disk. When a higher-priority disk type is unavailable, the system automatically attempts the next-priority disk type to create the system cloud disk.
1192
+ * The multi-disk types for system cloud disks. When a higher-priority disk type is unavailable, the system automatically attempts the next-priority disk type to create the system cloud disk.
1189
1193
  */
1190
1194
  systemDiskCategories?: string[];
1191
1195
  /**
@@ -1193,7 +1197,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1193
1197
  * The system cloud disk type for nodes. Valid values:
1194
1198
  * - `cloud_efficiency`: ultra cloud disk.
1195
1199
  * - `cloud_ssd`: standard SSD.
1196
- * - `cloud_essd`: Enterprise SSD (ESSD).
1200
+ * - `cloud_essd`: ESSD.
1197
1201
  * - `cloud_auto`: ESSD AutoPL cloud disk.
1198
1202
  * - `cloud_essd_entry`: ESSD Entry cloud disk.
1199
1203
  *
@@ -1213,8 +1217,8 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1213
1217
  * @remarks
1214
1218
  * Specifies whether to encrypt the system cloud disk. Valid values:
1215
1219
  *
1216
- * - true: Encrypted.
1217
- * - false: Not encrypted.
1220
+ * - true: Encrypt the system cloud disk.
1221
+ * - false: Do not encrypt the system cloud disk.
1218
1222
  *
1219
1223
  * @example
1220
1224
  * false
@@ -1230,7 +1234,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1230
1234
  systemDiskKmsKeyId?: string;
1231
1235
  /**
1232
1236
  * @remarks
1233
- * The performance level of the system cloud disk. This parameter takes effect only for ESSD cloud disks. The performance level varies based on the disk size. For more information, see [ESSDs](https://help.aliyun.com/document_detail/122389.html). The standard SSD does not support performance levels.
1237
+ * The performance level of the system cloud disk. This parameter takes effect only for ESSD cloud disks. The performance level is related to the disk size. For more information, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
1234
1238
  * - PL0: moderate maximum concurrent I/O performance with relatively stable read/write latency.
1235
1239
  * - PL1: moderate maximum concurrent I/O performance with relatively stable read/write latency.
1236
1240
  * - PL2: high maximum concurrent I/O performance with stable read/write latency.
@@ -1242,7 +1246,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1242
1246
  systemDiskPerformanceLevel?: string;
1243
1247
  /**
1244
1248
  * @remarks
1245
- * The provisioned read/write IOPS for the system cloud disk. This parameter is applicable when the disk type is cloud_auto.
1249
+ * The provisioned read/write IOPS for the system cloud disk. This parameter is configured when the disk type is cloud_auto.
1246
1250
  *
1247
1251
  * @example
1248
1252
  * 1000
@@ -1250,7 +1254,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1250
1254
  systemDiskProvisionedIops?: number;
1251
1255
  /**
1252
1256
  * @remarks
1253
- * The size of the system cloud disk for nodes. Unit: GiB.
1257
+ * The system cloud disk size for nodes. Unit: GiB.
1254
1258
  *
1255
1259
  * Valid values: [20,2048\\].
1256
1260
  *
@@ -1290,7 +1294,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsScalingGroup e
1290
1294
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends $dara.Model {
1291
1295
  /**
1292
1296
  * @remarks
1293
- * The number of failed instances.
1297
+ * The number of failed nodes.
1294
1298
  *
1295
1299
  * @example
1296
1300
  * 0
@@ -1298,7 +1302,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1298
1302
  failedNodes?: number;
1299
1303
  /**
1300
1304
  * @remarks
1301
- * The number of healthy instances.
1305
+ * The number of healthy nodes.
1302
1306
  *
1303
1307
  * @example
1304
1308
  * 3
@@ -1330,7 +1334,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1330
1334
  removingNodes?: number;
1331
1335
  /**
1332
1336
  * @remarks
1333
- * The number of nodes that are in the serving state.
1337
+ * The number of nodes in the serving state.
1334
1338
  *
1335
1339
  * @example
1336
1340
  * 3
@@ -1341,7 +1345,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1341
1345
  * The node pool state. Valid values:
1342
1346
  *
1343
1347
  * - `active`: The node pool is active.
1344
- * - `scaling`: The node pool is being scaled.
1348
+ * - `scaling`: The node pool is scaling.
1345
1349
  * - `removing`: Nodes are being removed.
1346
1350
  * - `deleting`: The node pool is being deleted.
1347
1351
  * - `updating`: The node pool is being updated.
@@ -1372,10 +1376,10 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsStatus extends
1372
1376
  export declare class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig extends $dara.Model {
1373
1377
  /**
1374
1378
  * @remarks
1375
- * Whether to enable the TEE cluster. Valid values:
1379
+ * 是否开启加密计算集群,取值:
1376
1380
  *
1377
- * - `true`: enabled.
1378
- * - `false`: disabled.
1381
+ * - `true`:开启。
1382
+ * - `false`:不开启。
1379
1383
  *
1380
1384
  * @example
1381
1385
  * false
@@ -1395,32 +1399,32 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig exte
1395
1399
  export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara.Model {
1396
1400
  /**
1397
1401
  * @remarks
1398
- * The intelligent hosting configuration.
1402
+ * 智能托管配置。
1399
1403
  */
1400
1404
  autoMode?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoMode;
1401
1405
  /**
1402
1406
  * @remarks
1403
- * The automatic scaling configuration.
1407
+ * The auto scaling configuration.
1404
1408
  */
1405
1409
  autoScaling?: DescribeClusterNodePoolsResponseBodyNodepoolsAutoScaling;
1406
1410
  /**
1407
1411
  * @remarks
1408
- * The Lingjun node group information.
1412
+ * 灵骏节点组信息。
1409
1413
  */
1410
1414
  efloNodeGroup?: DescribeClusterNodePoolsResponseBodyNodepoolsEfloNodeGroup;
1411
1415
  /**
1412
1416
  * @remarks
1413
- * [Deprecated]
1417
+ * 【该字段已废弃】
1414
1418
  *
1415
- * The network configuration of the edge node pool. This value is only meaningful for edge-type node pools.
1419
+ * 边缘节点池网络相关的配置。该值只对edge类型的节点池有意义。
1416
1420
  */
1417
1421
  interconnectConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsInterconnectConfig;
1418
1422
  /**
1419
1423
  * @remarks
1420
- * The network type of the edge node pool. This parameter takes effect only for edge-type node pools (`type` is `edge`). Valid values:
1424
+ * 边缘节点池的网络类型,该参数仅对`type`为`edge`类型的节点池生效,取值范围:
1421
1425
  *
1422
- * - `basic`: public network. Nodes in the node pool interact with cloud nodes over the Internet. Applications in the node pool cannot directly access the VPC internal network.
1423
- * - `private`: private network. Nodes in the node pool connect to the cloud through Express Connect, VPN Gateway, or CEN, providing higher cloud-edge communication quality and better security.
1426
+ * - `basic`:公网。节点池内的节点通过公网与云端节点进行交互,节点池内应用不能直接访问云端VPC内网。
1427
+ * - `private`:专用网络。节点池内的节点通过专线、VPNCEN等方式实现云上与云下网络打通,拥有更高的云边通信质量,提供更有效的安全保障。
1424
1428
  *
1425
1429
  * @example
1426
1430
  * basic
@@ -1438,7 +1442,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1438
1442
  management?: DescribeClusterNodePoolsResponseBodyNodepoolsManagement;
1439
1443
  /**
1440
1444
  * @remarks
1441
- * The maximum number of nodes that the edge node pool can contain. The value must be greater than or equal to 0. A value of 0 indicates no additional limit (only limited by the maximum number of nodes the cluster can accommodate). Edge node pools typically have a value greater than 0, while ess-type and default edge-type node pools have a value of 0.
1445
+ * 边缘节点池允许容纳的最大节点数量. 节点池内可以容纳的最大节点数量,该参数大于等于00表示无额外限制(仅受限于集群整体可以容纳的节点数,节点池本身无额外限制)。边缘节点池该参数值往往大于0ess类型节点池和默认的edge类型节点池该参数值为0
1442
1446
  *
1443
1447
  * @example
1444
1448
  * 10
@@ -1446,7 +1450,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1446
1450
  maxNodes?: number;
1447
1451
  /**
1448
1452
  * @remarks
1449
- * The list of node components.
1453
+ * 节点组件列表。
1450
1454
  */
1451
1455
  nodeComponents?: DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponents[];
1452
1456
  /**
@@ -1471,7 +1475,7 @@ export declare class DescribeClusterNodePoolsResponseBodyNodepools extends $dara
1471
1475
  status?: DescribeClusterNodePoolsResponseBodyNodepoolsStatus;
1472
1476
  /**
1473
1477
  * @remarks
1474
- * The TEE configuration.
1478
+ * 加密计算配置。
1475
1479
  */
1476
1480
  teeConfig?: DescribeClusterNodePoolsResponseBodyNodepoolsTeeConfig;
1477
1481
  static names(): {
@@ -329,7 +329,7 @@ class DescribeClusterNodePoolsResponseBodyNodepoolsNodeComponentsConfig extends
329
329
  }
330
330
  static types() {
331
331
  return {
332
- customConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
332
+ customConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
333
333
  };
334
334
  }
335
335
  validate() {