@alicloud/cs20151215 6.6.5 → 6.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +26 -8
- package/dist/client.js +53 -8
- package/dist/client.js.map +1 -1
- package/dist/models/CreateClusterNodePoolRequest.d.ts +396 -287
- package/dist/models/CreateClusterNodePoolRequest.js.map +1 -1
- package/dist/models/CreateClusterNodePoolResponseBody.d.ts +1 -1
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.d.ts +241 -244
- package/dist/models/DescribeClusterNodePoolDetailResponseBody.js.map +1 -1
- package/dist/models/DescribeClusterNodePoolsRequest.d.ts +1 -1
- package/dist/models/DescribeClusterNodePoolsResponseBody.d.ts +254 -254
- package/dist/models/ModifyClusterNodePoolRequest.d.ts +225 -218
- package/dist/models/ModifyClusterNodePoolRequest.js.map +1 -1
- package/dist/models/Nodepool.d.ts +183 -183
- package/dist/models/RunNodeOperationRequest.d.ts +22 -0
- package/dist/models/RunNodeOperationRequest.js +63 -0
- package/dist/models/RunNodeOperationRequest.js.map +1 -0
- package/dist/models/RunNodeOperationResponse.d.ts +19 -0
- package/dist/models/RunNodeOperationResponse.js +69 -0
- package/dist/models/RunNodeOperationResponse.js.map +1 -0
- package/dist/models/RunNodeOperationResponseBody.d.ts +28 -0
- package/dist/models/RunNodeOperationResponseBody.js +62 -0
- package/dist/models/RunNodeOperationResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +57 -8
- package/src/models/CreateClusterNodePoolRequest.ts +397 -288
- package/src/models/CreateClusterNodePoolResponseBody.ts +1 -1
- package/src/models/DescribeClusterNodePoolDetailResponseBody.ts +241 -244
- package/src/models/DescribeClusterNodePoolsRequest.ts +1 -1
- package/src/models/DescribeClusterNodePoolsResponseBody.ts +254 -254
- package/src/models/ModifyClusterNodePoolRequest.ts +225 -218
- package/src/models/Nodepool.ts +183 -183
- package/src/models/RunNodeOperationRequest.ts +40 -0
- package/src/models/RunNodeOperationResponse.ts +40 -0
- package/src/models/RunNodeOperationResponseBody.ts +45 -0
- package/src/models/model.ts +3 -0
|
@@ -10,7 +10,7 @@ import { Taint } from "./Taint";
|
|
|
10
10
|
export declare class DescribeClusterNodePoolDetailResponseBodyAutoMode extends $dara.Model {
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
* Indicates whether
|
|
13
|
+
* Indicates whether to enable the feature.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* false
|
|
@@ -30,9 +30,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoMode extends $
|
|
|
30
30
|
export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extends $dara.Model {
|
|
31
31
|
/**
|
|
32
32
|
* @remarks
|
|
33
|
-
* The peak bandwidth
|
|
33
|
+
* The peak EIP bandwidth.
|
|
34
34
|
*
|
|
35
|
-
* Valid values:
|
|
35
|
+
* Valid values: 1 to 100. Unit: Mbit/s.
|
|
36
36
|
*
|
|
37
37
|
* @example
|
|
38
38
|
* 5
|
|
@@ -40,11 +40,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
40
40
|
eipBandwidth?: number;
|
|
41
41
|
/**
|
|
42
42
|
* @remarks
|
|
43
|
-
* The
|
|
43
|
+
* The billing method of the EIP. Valid values:
|
|
44
44
|
*
|
|
45
|
-
* - `PayByBandwidth`:
|
|
45
|
+
* - `PayByBandwidth`: pay-by-bandwidth.
|
|
46
46
|
*
|
|
47
|
-
* - `PayByTraffic`:
|
|
47
|
+
* - `PayByTraffic`: pay-by-traffic.
|
|
48
48
|
*
|
|
49
49
|
* @example
|
|
50
50
|
* PayByBandwidth
|
|
@@ -52,13 +52,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
52
52
|
eipInternetChargeType?: string;
|
|
53
53
|
/**
|
|
54
54
|
* @remarks
|
|
55
|
-
* Indicates whether automatic scaling
|
|
55
|
+
* Indicates whether to enable automatic scaling. Valid values:
|
|
56
56
|
*
|
|
57
|
-
* - `true`:
|
|
57
|
+
* - `true`: enables automatic scaling for the node pool. If the resources of the cluster cannot meet the scheduling requirements of pods, ACK automatically scales out or in nodes based on the configured minimum and maximum numbers of instances. For clusters of Kubernetes 1.24 or later, node elastic scaling is enabled by default. For clusters of a Kubernetes version earlier than 1.24, node autoscaling is enabled by default. For more information, see [Node scaling](https://help.aliyun.com/document_detail/2746785.html).
|
|
58
58
|
*
|
|
59
|
-
* - `false`:
|
|
59
|
+
* - `false`: disables automatic scaling. ACK adjusts the number of nodes in the node pool to the expected number of nodes. The number of nodes is always the same as the expected number of nodes.
|
|
60
60
|
*
|
|
61
|
-
* If set to false, other parameters
|
|
61
|
+
* If this parameter is set to false, other parameters in auto_scaling do not take effect.
|
|
62
62
|
*
|
|
63
63
|
* @example
|
|
64
64
|
* true
|
|
@@ -66,11 +66,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
66
66
|
enable?: boolean;
|
|
67
67
|
/**
|
|
68
68
|
* @remarks
|
|
69
|
-
* Indicates whether an EIP
|
|
69
|
+
* Indicates whether to associate an EIP with the node pool. Valid values:
|
|
70
70
|
*
|
|
71
|
-
* - `true`:
|
|
71
|
+
* - `true`: Associates an EIP with the node pool.
|
|
72
72
|
*
|
|
73
|
-
* - `false`: Does not
|
|
73
|
+
* - `false`: Does not associate an EIP with the node pool.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* true
|
|
@@ -78,7 +78,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
78
78
|
isBondEip?: boolean;
|
|
79
79
|
/**
|
|
80
80
|
* @remarks
|
|
81
|
-
* The maximum number of
|
|
81
|
+
* The maximum number of instances that can be created in the node pool. This value does not include the existing instances.
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
84
|
* 10
|
|
@@ -86,7 +86,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
86
86
|
maxInstances?: number;
|
|
87
87
|
/**
|
|
88
88
|
* @remarks
|
|
89
|
-
* The minimum number of
|
|
89
|
+
* The minimum number of instances that can be created in the node pool. This value does not include the existing instances.
|
|
90
90
|
*
|
|
91
91
|
* @example
|
|
92
92
|
* 1
|
|
@@ -94,15 +94,15 @@ export declare class DescribeClusterNodePoolDetailResponseBodyAutoScaling extend
|
|
|
94
94
|
minInstances?: number;
|
|
95
95
|
/**
|
|
96
96
|
* @remarks
|
|
97
|
-
* The automatic scaling
|
|
97
|
+
* The type of automatic scaling that is configured for the node pool. This parameter is specified based on the instance type for automatic scaling. Valid values:
|
|
98
98
|
*
|
|
99
|
-
* - `cpu`:
|
|
99
|
+
* - `cpu`: regular instances.
|
|
100
100
|
*
|
|
101
|
-
* - `gpu`: GPU
|
|
101
|
+
* - `gpu`: GPU-accelerated instances.
|
|
102
102
|
*
|
|
103
|
-
* - `gpushare`:
|
|
103
|
+
* - `gpushare`: shared GPU-accelerated instances.
|
|
104
104
|
*
|
|
105
|
-
* - `spot`:
|
|
105
|
+
* - `spot`: spot instances.
|
|
106
106
|
*
|
|
107
107
|
* @example
|
|
108
108
|
* cpu
|
|
@@ -144,9 +144,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyEfloNodeGroup exte
|
|
|
144
144
|
export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig extends $dara.Model {
|
|
145
145
|
/**
|
|
146
146
|
* @remarks
|
|
147
|
-
* [
|
|
147
|
+
* [This parameter is deprecated]
|
|
148
148
|
*
|
|
149
|
-
* The network bandwidth
|
|
149
|
+
* The network bandwidth of the enhanced edge node pool. Unit: Mbit/s.
|
|
150
150
|
*
|
|
151
151
|
* @example
|
|
152
152
|
* 10
|
|
@@ -154,9 +154,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig
|
|
|
154
154
|
bandwidth?: number;
|
|
155
155
|
/**
|
|
156
156
|
* @remarks
|
|
157
|
-
* [
|
|
157
|
+
* [This parameter is deprecated]
|
|
158
158
|
*
|
|
159
|
-
* The CCN instance
|
|
159
|
+
* The ID of the CCN instance that is associated with the enhanced edge node pool.
|
|
160
160
|
*
|
|
161
161
|
* @example
|
|
162
162
|
* ccn-qm5i0i0q9yi*******
|
|
@@ -164,9 +164,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig
|
|
|
164
164
|
ccnId?: string;
|
|
165
165
|
/**
|
|
166
166
|
* @remarks
|
|
167
|
-
* [
|
|
167
|
+
* [This parameter is deprecated]
|
|
168
168
|
*
|
|
169
|
-
* The region
|
|
169
|
+
* The region where the CCN instance that is associated with the enhanced edge node pool resides.
|
|
170
170
|
*
|
|
171
171
|
* @example
|
|
172
172
|
* cn-shanghai
|
|
@@ -174,9 +174,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig
|
|
|
174
174
|
ccnRegionId?: string;
|
|
175
175
|
/**
|
|
176
176
|
* @remarks
|
|
177
|
-
* [
|
|
177
|
+
* [This parameter is deprecated]
|
|
178
178
|
*
|
|
179
|
-
* The CEN instance
|
|
179
|
+
* The ID of the CEN instance that is associated with the enhanced edge node pool.
|
|
180
180
|
*
|
|
181
181
|
* @example
|
|
182
182
|
* cen-ey9k9nfhz0f*******
|
|
@@ -184,9 +184,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig
|
|
|
184
184
|
cenId?: string;
|
|
185
185
|
/**
|
|
186
186
|
* @remarks
|
|
187
|
-
* [
|
|
187
|
+
* [This parameter is deprecated]
|
|
188
188
|
*
|
|
189
|
-
* The subscription duration
|
|
189
|
+
* The subscription duration of the enhanced edge node pool. Unit: months.
|
|
190
190
|
*
|
|
191
191
|
* @example
|
|
192
192
|
* 1
|
|
@@ -206,11 +206,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyInterconnectConfig
|
|
|
206
206
|
export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig extends $dara.Model {
|
|
207
207
|
/**
|
|
208
208
|
* @remarks
|
|
209
|
-
* Indicates whether Cloud Monitor
|
|
209
|
+
* Indicates whether to install Cloud Monitor on the ECS nodes. After you install Cloud Monitor, you can view the monitoring information of the created ECS instances in the Cloud Monitor console. We recommend that you enable this feature. Valid values:
|
|
210
210
|
*
|
|
211
|
-
* - `true`: Installs Cloud Monitor on ECS nodes.
|
|
211
|
+
* - `true`: Installs Cloud Monitor on the ECS nodes.
|
|
212
212
|
*
|
|
213
|
-
* - `false`: Does not install Cloud Monitor on ECS nodes.
|
|
213
|
+
* - `false`: Does not install Cloud Monitor on the ECS nodes.
|
|
214
214
|
*
|
|
215
215
|
* @example
|
|
216
216
|
* true
|
|
@@ -218,11 +218,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
218
218
|
cmsEnabled?: boolean;
|
|
219
219
|
/**
|
|
220
220
|
* @remarks
|
|
221
|
-
* The
|
|
221
|
+
* The CPU management policy for the nodes. The following policies are supported for clusters of Kubernetes 1.12.6 and later:
|
|
222
222
|
*
|
|
223
|
-
* - `static`:
|
|
223
|
+
* - `static`: Allows pods with specific resource characteristics on a node to have enhanced CPU affinity and exclusivity.
|
|
224
224
|
*
|
|
225
|
-
* - `none`:
|
|
225
|
+
* - `none`: Enables the default CPU affinity scheme.
|
|
226
226
|
*
|
|
227
227
|
* @example
|
|
228
228
|
* none
|
|
@@ -230,20 +230,20 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
230
230
|
cpuPolicy?: string;
|
|
231
231
|
/**
|
|
232
232
|
* @remarks
|
|
233
|
-
*
|
|
233
|
+
* The node labels.
|
|
234
234
|
*/
|
|
235
235
|
labels?: Tag[];
|
|
236
236
|
/**
|
|
237
237
|
* @remarks
|
|
238
|
-
*
|
|
238
|
+
* The custom node name.
|
|
239
239
|
*
|
|
240
|
-
* A node name consists of
|
|
240
|
+
* A node name consists of a prefix, the IP address of the node, and a suffix:
|
|
241
241
|
*
|
|
242
|
-
* -
|
|
242
|
+
* - The 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 a digit.
|
|
243
243
|
*
|
|
244
|
-
* - The IP address
|
|
244
|
+
* - The IP address segment length indicates the number of digits to be truncated from the end of the node IP address. Valid values: 5 to 12.
|
|
245
245
|
*
|
|
246
|
-
*
|
|
246
|
+
* 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.
|
|
247
247
|
*
|
|
248
248
|
* @example
|
|
249
249
|
* aliyun.com192.XX.YY.55test
|
|
@@ -251,7 +251,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
251
251
|
nodeNameMode?: string;
|
|
252
252
|
/**
|
|
253
253
|
* @remarks
|
|
254
|
-
*
|
|
254
|
+
* 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).
|
|
255
255
|
*
|
|
256
256
|
* @example
|
|
257
257
|
* dGhpcyBpcyBhIGV4YW1wbGU
|
|
@@ -259,13 +259,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
259
259
|
preUserData?: string;
|
|
260
260
|
/**
|
|
261
261
|
* @remarks
|
|
262
|
-
* The container runtime. ACK supports the following runtimes
|
|
262
|
+
* The name of the container runtime. ACK supports the following container runtimes.
|
|
263
263
|
*
|
|
264
|
-
* - containerd:
|
|
264
|
+
* - containerd: recommended. It is supported by all cluster versions.
|
|
265
265
|
*
|
|
266
|
-
* - Sandboxed-Container.runv:
|
|
266
|
+
* - Sandboxed-Container.runv: a sandboxed container that provides higher isolation. It is supported by clusters of Kubernetes 1.31 and earlier.
|
|
267
267
|
*
|
|
268
|
-
* - docker:
|
|
268
|
+
* - docker: no longer maintained. It is supported by clusters of Kubernetes 1.22 and earlier.
|
|
269
269
|
*
|
|
270
270
|
* @example
|
|
271
271
|
* containerd
|
|
@@ -273,7 +273,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
273
273
|
runtime?: string;
|
|
274
274
|
/**
|
|
275
275
|
* @remarks
|
|
276
|
-
* The container runtime
|
|
276
|
+
* The version of the container runtime.
|
|
277
277
|
*
|
|
278
278
|
* @example
|
|
279
279
|
* 1.6.38
|
|
@@ -281,16 +281,16 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
281
281
|
runtimeVersion?: string;
|
|
282
282
|
/**
|
|
283
283
|
* @remarks
|
|
284
|
-
*
|
|
284
|
+
* The node taints. Taints work with tolerations to prevent pods from being scheduled to unsuitable nodes. For more information, see [taint-and-toleration](https://kubernetes.io/zh/docs/concepts/scheduling-eviction/taint-and-toleration/).
|
|
285
285
|
*/
|
|
286
286
|
taints?: Taint[];
|
|
287
287
|
/**
|
|
288
288
|
* @remarks
|
|
289
|
-
* Indicates whether
|
|
289
|
+
* Indicates whether the scaled-out nodes are unschedulable.
|
|
290
290
|
*
|
|
291
|
-
* - true:
|
|
291
|
+
* - true: The nodes are unschedulable.
|
|
292
292
|
*
|
|
293
|
-
* - false:
|
|
293
|
+
* - false: The nodes are schedulable.
|
|
294
294
|
*
|
|
295
295
|
* @example
|
|
296
296
|
* true
|
|
@@ -298,7 +298,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyKubernetesConfig e
|
|
|
298
298
|
unschedulable?: boolean;
|
|
299
299
|
/**
|
|
300
300
|
* @remarks
|
|
301
|
-
*
|
|
301
|
+
* 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).
|
|
302
302
|
*
|
|
303
303
|
* @example
|
|
304
304
|
* IyEvYmluL3NoCmVjaG8gIkhlbGxvIEFDSyEi
|
|
@@ -326,7 +326,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepa
|
|
|
326
326
|
approvalRequired?: boolean;
|
|
327
327
|
/**
|
|
328
328
|
* @remarks
|
|
329
|
-
* The
|
|
329
|
+
* The ID of the auto repair policy
|
|
330
330
|
*
|
|
331
331
|
* @example
|
|
332
332
|
* r-xxxxxxxxxx
|
|
@@ -334,11 +334,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepa
|
|
|
334
334
|
autoRepairPolicyId?: string;
|
|
335
335
|
/**
|
|
336
336
|
* @remarks
|
|
337
|
-
* Indicates whether node restart
|
|
337
|
+
* Indicates whether to allow node restart. This parameter takes effect only if auto_repair is set to true.
|
|
338
338
|
*
|
|
339
|
-
* - `true`:
|
|
339
|
+
* - `true`: Nodes can be restarted.
|
|
340
340
|
*
|
|
341
|
-
* - `false`:
|
|
341
|
+
* - `false`: Nodes cannot be restarted.
|
|
342
342
|
*
|
|
343
343
|
* @example
|
|
344
344
|
* true
|
|
@@ -358,11 +358,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoRepa
|
|
|
358
358
|
export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgradePolicy extends $dara.Model {
|
|
359
359
|
/**
|
|
360
360
|
* @remarks
|
|
361
|
-
* Indicates whether
|
|
361
|
+
* Indicates whether to allow automatic kubelet upgrades. This parameter takes effect only if auto_upgrade is set to true. Valid values:
|
|
362
362
|
*
|
|
363
|
-
* - `true`:
|
|
363
|
+
* - `true`: Automatic kubelet upgrades are allowed.
|
|
364
364
|
*
|
|
365
|
-
* - `false`:
|
|
365
|
+
* - `false`: Automatic kubelet upgrades are not allowed.
|
|
366
366
|
*
|
|
367
367
|
* @example
|
|
368
368
|
* true
|
|
@@ -382,7 +382,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgr
|
|
|
382
382
|
export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy extends $dara.Model {
|
|
383
383
|
/**
|
|
384
384
|
* @remarks
|
|
385
|
-
* The packages excluded during
|
|
385
|
+
* The packages that should be excluded during CVE fixing.
|
|
386
386
|
*
|
|
387
387
|
* @example
|
|
388
388
|
* kernel
|
|
@@ -390,11 +390,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulF
|
|
|
390
390
|
excludePackages?: string;
|
|
391
391
|
/**
|
|
392
392
|
* @remarks
|
|
393
|
-
* Indicates whether node restart
|
|
393
|
+
* Indicates whether to allow node restart. This parameter takes effect only if auto_vul_fix is set to true. Valid values:
|
|
394
394
|
*
|
|
395
|
-
* - `true`:
|
|
395
|
+
* - `true`: Nodes can be restarted.
|
|
396
396
|
*
|
|
397
|
-
* - `false`:
|
|
397
|
+
* - `false`: Nodes cannot be restarted.
|
|
398
398
|
*
|
|
399
399
|
* @example
|
|
400
400
|
* true
|
|
@@ -402,13 +402,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulF
|
|
|
402
402
|
restartNode?: boolean;
|
|
403
403
|
/**
|
|
404
404
|
* @remarks
|
|
405
|
-
* The
|
|
405
|
+
* The levels of CVEs that are allowed to be automatically fixed. The levels are separated by commas.
|
|
406
406
|
*
|
|
407
|
-
* - `asap`:
|
|
407
|
+
* - `asap`: high
|
|
408
408
|
*
|
|
409
|
-
* - `later`:
|
|
409
|
+
* - `later`: medium
|
|
410
410
|
*
|
|
411
|
-
* - `nntf`:
|
|
411
|
+
* - `nntf`: low
|
|
412
412
|
*
|
|
413
413
|
* @example
|
|
414
414
|
* asap,nntf
|
|
@@ -428,11 +428,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementAutoVulF
|
|
|
428
428
|
export declare class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig extends $dara.Model {
|
|
429
429
|
/**
|
|
430
430
|
* @remarks
|
|
431
|
-
* Indicates whether
|
|
431
|
+
* Indicates whether to enable automatic upgrades. Valid values:
|
|
432
432
|
*
|
|
433
|
-
* - `true`:
|
|
433
|
+
* - `true`: Automatic upgrades are enabled.
|
|
434
434
|
*
|
|
435
|
-
* - `false`:
|
|
435
|
+
* - `false`: Automatic upgrades are disabled.
|
|
436
436
|
*
|
|
437
437
|
* @example
|
|
438
438
|
* true
|
|
@@ -440,7 +440,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeC
|
|
|
440
440
|
autoUpgrade?: boolean;
|
|
441
441
|
/**
|
|
442
442
|
* @remarks
|
|
443
|
-
* The maximum number of unavailable nodes. Valid values:
|
|
443
|
+
* The maximum number of unavailable nodes. Valid values: 1 to 1000.
|
|
444
444
|
*
|
|
445
445
|
* Default value: 1.
|
|
446
446
|
*
|
|
@@ -450,7 +450,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeC
|
|
|
450
450
|
maxUnavailable?: number;
|
|
451
451
|
/**
|
|
452
452
|
* @remarks
|
|
453
|
-
* The number of extra nodes.
|
|
453
|
+
* The number of extra nodes. You can specify only one of surge and surge_percentage.
|
|
454
454
|
*
|
|
455
455
|
* @example
|
|
456
456
|
* 5
|
|
@@ -458,9 +458,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagementUpgradeC
|
|
|
458
458
|
surge?: number;
|
|
459
459
|
/**
|
|
460
460
|
* @remarks
|
|
461
|
-
* The percentage of extra nodes.
|
|
461
|
+
* The percentage of extra nodes. You can specify only one of surge and surge_percentage.
|
|
462
462
|
*
|
|
463
|
-
*
|
|
463
|
+
* 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, the number of extra nodes is 3 (50% × 6).
|
|
464
464
|
*
|
|
465
465
|
* @example
|
|
466
466
|
* 50
|
|
@@ -481,11 +481,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
481
481
|
autoFaultDiagnosis?: boolean;
|
|
482
482
|
/**
|
|
483
483
|
* @remarks
|
|
484
|
-
*
|
|
484
|
+
* Indicates whether to enable auto repair. This parameter takes effect only if enable is set to true.
|
|
485
485
|
*
|
|
486
|
-
* - `true`:
|
|
486
|
+
* - `true`: Auto repair is enabled.
|
|
487
487
|
*
|
|
488
|
-
* - `false`:
|
|
488
|
+
* - `false`: Auto repair is disabled.
|
|
489
489
|
*
|
|
490
490
|
* @example
|
|
491
491
|
* true
|
|
@@ -493,16 +493,16 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
493
493
|
autoRepair?: boolean;
|
|
494
494
|
/**
|
|
495
495
|
* @remarks
|
|
496
|
-
*
|
|
496
|
+
* The policy for automatic node repair.
|
|
497
497
|
*/
|
|
498
498
|
autoRepairPolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoRepairPolicy;
|
|
499
499
|
/**
|
|
500
500
|
* @remarks
|
|
501
|
-
* Indicates whether
|
|
501
|
+
* Indicates whether to enable automatic node upgrades. This parameter takes effect only if enable is set to true.
|
|
502
502
|
*
|
|
503
|
-
* - `true`:
|
|
503
|
+
* - `true`: Automatic upgrades are enabled.
|
|
504
504
|
*
|
|
505
|
-
* - `false`:
|
|
505
|
+
* - `false`: Automatic upgrades are disabled.
|
|
506
506
|
*
|
|
507
507
|
* @example
|
|
508
508
|
* true
|
|
@@ -510,16 +510,16 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
510
510
|
autoUpgrade?: boolean;
|
|
511
511
|
/**
|
|
512
512
|
* @remarks
|
|
513
|
-
*
|
|
513
|
+
* The policy for automatic upgrades.
|
|
514
514
|
*/
|
|
515
515
|
autoUpgradePolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoUpgradePolicy;
|
|
516
516
|
/**
|
|
517
517
|
* @remarks
|
|
518
|
-
* Indicates whether
|
|
518
|
+
* Indicates whether to automatically fix CVEs. This parameter takes effect only if enable is set to true.
|
|
519
519
|
*
|
|
520
|
-
* - `true`:
|
|
520
|
+
* - `true`: CVEs are automatically fixed.
|
|
521
521
|
*
|
|
522
|
-
* - `false`:
|
|
522
|
+
* - `false`: CVEs are not automatically fixed.
|
|
523
523
|
*
|
|
524
524
|
* @example
|
|
525
525
|
* true
|
|
@@ -527,16 +527,16 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
527
527
|
autoVulFix?: boolean;
|
|
528
528
|
/**
|
|
529
529
|
* @remarks
|
|
530
|
-
*
|
|
530
|
+
* The policy for automatically fixing CVEs.
|
|
531
531
|
*/
|
|
532
532
|
autoVulFixPolicy?: DescribeClusterNodePoolDetailResponseBodyManagementAutoVulFixPolicy;
|
|
533
533
|
/**
|
|
534
534
|
* @remarks
|
|
535
|
-
* Indicates whether the managed node pool feature
|
|
535
|
+
* Indicates whether to enable the managed node pool feature. Valid values:
|
|
536
536
|
*
|
|
537
|
-
* - `true`: Enables the managed node pool.
|
|
537
|
+
* - `true`: Enables the managed node pool feature.
|
|
538
538
|
*
|
|
539
|
-
* - `false`: Disables the managed node pool. Other
|
|
539
|
+
* - `false`: Disables the managed node pool feature. Other parameters in this section take effect only if this parameter is set to true.
|
|
540
540
|
*
|
|
541
541
|
* @example
|
|
542
542
|
* true
|
|
@@ -544,7 +544,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
544
544
|
enable?: boolean;
|
|
545
545
|
/**
|
|
546
546
|
* @remarks
|
|
547
|
-
*
|
|
547
|
+
* The automatic upgrade configurations. This parameter takes effect only if enable is set to true.
|
|
548
548
|
*/
|
|
549
549
|
upgradeConfig?: DescribeClusterNodePoolDetailResponseBodyManagementUpgradeConfig;
|
|
550
550
|
static names(): {
|
|
@@ -561,7 +561,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyManagement extends
|
|
|
561
561
|
export declare class DescribeClusterNodePoolDetailResponseBodyNodeComponentsConfig extends $dara.Model {
|
|
562
562
|
/**
|
|
563
563
|
* @remarks
|
|
564
|
-
*
|
|
564
|
+
* The custom configurations of the node component.
|
|
565
565
|
*/
|
|
566
566
|
customConfig?: {
|
|
567
567
|
[key: string]: string;
|
|
@@ -580,12 +580,12 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodeComponentsConf
|
|
|
580
580
|
export declare class DescribeClusterNodePoolDetailResponseBodyNodeComponents extends $dara.Model {
|
|
581
581
|
/**
|
|
582
582
|
* @remarks
|
|
583
|
-
*
|
|
583
|
+
* The configurations of the node component.
|
|
584
584
|
*/
|
|
585
585
|
config?: DescribeClusterNodePoolDetailResponseBodyNodeComponentsConfig;
|
|
586
586
|
/**
|
|
587
587
|
* @remarks
|
|
588
|
-
* The node component
|
|
588
|
+
* The name of the node component.
|
|
589
589
|
*
|
|
590
590
|
* @example
|
|
591
591
|
* kubelet
|
|
@@ -593,7 +593,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodeComponents ext
|
|
|
593
593
|
name?: string;
|
|
594
594
|
/**
|
|
595
595
|
* @remarks
|
|
596
|
-
* The node component
|
|
596
|
+
* The version of the node component.
|
|
597
597
|
*
|
|
598
598
|
* @example
|
|
599
599
|
* 1.33.3-aliyun.1
|
|
@@ -613,7 +613,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodeComponents ext
|
|
|
613
613
|
export declare class DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsConfig extends $dara.Model {
|
|
614
614
|
/**
|
|
615
615
|
* @remarks
|
|
616
|
-
* Hugepage
|
|
616
|
+
* The Hugepage configurations.
|
|
617
617
|
*/
|
|
618
618
|
hugepage?: Hugepage;
|
|
619
619
|
static names(): {
|
|
@@ -630,12 +630,12 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsCo
|
|
|
630
630
|
export declare class DescribeClusterNodePoolDetailResponseBodyNodeConfig extends $dara.Model {
|
|
631
631
|
/**
|
|
632
632
|
* @remarks
|
|
633
|
-
* Kubelet parameter settings.
|
|
633
|
+
* The Kubelet parameter settings.
|
|
634
634
|
*/
|
|
635
635
|
kubeletConfiguration?: KubeletConfig;
|
|
636
636
|
/**
|
|
637
637
|
* @remarks
|
|
638
|
-
*
|
|
638
|
+
* The node OS configurations.
|
|
639
639
|
*/
|
|
640
640
|
nodeOsConfig?: DescribeClusterNodePoolDetailResponseBodyNodeConfigNodeOsConfig;
|
|
641
641
|
static names(): {
|
|
@@ -660,11 +660,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo exten
|
|
|
660
660
|
created?: string;
|
|
661
661
|
/**
|
|
662
662
|
* @remarks
|
|
663
|
-
* Indicates whether
|
|
663
|
+
* Indicates whether the node pool is the default node pool. A cluster usually has only one default node pool. Valid values:
|
|
664
664
|
*
|
|
665
|
-
* - `true`:
|
|
665
|
+
* - `true`: the default node pool.
|
|
666
666
|
*
|
|
667
|
-
* - `false`:
|
|
667
|
+
* - `false`: not the default node pool.
|
|
668
668
|
*
|
|
669
669
|
* @example
|
|
670
670
|
* true
|
|
@@ -672,7 +672,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo exten
|
|
|
672
672
|
isDefault?: boolean;
|
|
673
673
|
/**
|
|
674
674
|
* @remarks
|
|
675
|
-
* The node pool
|
|
675
|
+
* The name of the node pool.
|
|
676
676
|
*
|
|
677
677
|
* @example
|
|
678
678
|
* default-nodepool
|
|
@@ -704,13 +704,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyNodepoolInfo exten
|
|
|
704
704
|
resourceGroupId?: string;
|
|
705
705
|
/**
|
|
706
706
|
* @remarks
|
|
707
|
-
* The node pool
|
|
707
|
+
* The type of the node pool.
|
|
708
708
|
*
|
|
709
|
-
* - `ess`:
|
|
709
|
+
* - `ess`: a regular node pool. It includes the features of managed node pools and automatic scaling.
|
|
710
710
|
*
|
|
711
|
-
* - `edge`:
|
|
711
|
+
* - `edge`: an edge node pool.
|
|
712
712
|
*
|
|
713
|
-
* - `lingjun`: Lingjun node pool.
|
|
713
|
+
* - `lingjun`: a Lingjun node pool.
|
|
714
714
|
*
|
|
715
715
|
* @example
|
|
716
716
|
* ess
|
|
@@ -746,13 +746,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroupPrivat
|
|
|
746
746
|
id?: string;
|
|
747
747
|
/**
|
|
748
748
|
* @remarks
|
|
749
|
-
* The private node pool
|
|
749
|
+
* The type of the private node pool. This parameter specifies the capacity option for the private pool that is used to start instances. After an elastic assurance service or a capacity reservation service takes effect, a private pool is generated. You can select the private pool to start instances. Valid values:
|
|
750
750
|
*
|
|
751
|
-
* - `Open`:
|
|
751
|
+
* - `Open`: The system automatically matches the capacity of an open private pool. If no matching private pool is found, the system uses public resources.
|
|
752
752
|
*
|
|
753
|
-
* - `Target`:
|
|
753
|
+
* - `Target`: The system uses the capacity of a specified private pool to start the instance. If the capacity of the specified private pool is unavailable, the instance fails to start.
|
|
754
754
|
*
|
|
755
|
-
* - `None`:
|
|
755
|
+
* - `None`: The system does not use the capacity of a private pool.
|
|
756
756
|
*
|
|
757
757
|
* @example
|
|
758
758
|
* Open
|
|
@@ -777,10 +777,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroupResour
|
|
|
777
777
|
privatePoolIds?: string[];
|
|
778
778
|
/**
|
|
779
779
|
* @remarks
|
|
780
|
-
* The resource pool
|
|
781
|
-
* PrivatePoolFirst: Private pool first.
|
|
782
|
-
* PrivatePoolOnly: Private pool only.
|
|
783
|
-
* None: Do not use resource pool strategy.
|
|
780
|
+
* The resource pool policy used when creating instances. Valid values: PrivatePoolFirst: The private pool is used first. PrivatePoolOnly: Only the private pool is used. None: No resource pool policy is used.
|
|
784
781
|
*
|
|
785
782
|
* @example
|
|
786
783
|
* PrivatePoolFirst
|
|
@@ -808,7 +805,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPr
|
|
|
808
805
|
instanceType?: string;
|
|
809
806
|
/**
|
|
810
807
|
* @remarks
|
|
811
|
-
* The
|
|
808
|
+
* The price of a single instance.
|
|
812
809
|
*
|
|
813
810
|
* <props="china">
|
|
814
811
|
*
|
|
@@ -838,11 +835,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPr
|
|
|
838
835
|
export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup extends $dara.Model {
|
|
839
836
|
/**
|
|
840
837
|
* @remarks
|
|
841
|
-
* Indicates whether auto-renewal
|
|
838
|
+
* Indicates whether to enable auto-renewal for the nodes. This parameter takes effect only if instance_charge_type is set to PrePaid. Valid values:
|
|
842
839
|
*
|
|
843
|
-
* - `true`:
|
|
840
|
+
* - `true`: Auto-renewal is enabled.
|
|
844
841
|
*
|
|
845
|
-
* - `false`:
|
|
842
|
+
* - `false`: Auto-renewal is disabled.
|
|
846
843
|
*
|
|
847
844
|
* @example
|
|
848
845
|
* false
|
|
@@ -850,11 +847,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
850
847
|
autoRenew?: boolean;
|
|
851
848
|
/**
|
|
852
849
|
* @remarks
|
|
853
|
-
* The auto-renewal
|
|
850
|
+
* The duration of each auto-renewal. Valid values:
|
|
854
851
|
*
|
|
855
|
-
* - If PeriodUnit
|
|
852
|
+
* - If PeriodUnit is set to Week: 1, 2, and 3.
|
|
856
853
|
*
|
|
857
|
-
* - If PeriodUnit
|
|
854
|
+
* - If PeriodUnit is set to Month: 1, 2, 3, 6, 12, 24, 36, 48, and 60.
|
|
858
855
|
*
|
|
859
856
|
* @example
|
|
860
857
|
* 1
|
|
@@ -862,7 +859,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
862
859
|
autoRenewPeriod?: number;
|
|
863
860
|
/**
|
|
864
861
|
* @remarks
|
|
865
|
-
* [
|
|
862
|
+
* [This parameter is deprecated] Use the security_hardening_os parameter instead.
|
|
866
863
|
*
|
|
867
864
|
* @example
|
|
868
865
|
* false
|
|
@@ -872,11 +869,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
872
869
|
cisEnabled?: boolean;
|
|
873
870
|
/**
|
|
874
871
|
* @remarks
|
|
875
|
-
*
|
|
872
|
+
* If multi_az_policy is set to COST_OPTIMIZED, this parameter specifies whether to allow the system to automatically create on-demand instances to meet the required number of ECS instances when it is not possible to create a sufficient number of spot instances due to price or stock issues. Valid values:
|
|
876
873
|
*
|
|
877
|
-
* - `true`: Allows
|
|
874
|
+
* - `true`: Allows the system to automatically create on-demand instances to meet the required number of ECS instances.
|
|
878
875
|
*
|
|
879
|
-
* - `false`:
|
|
876
|
+
* - `false`: Does not allow the system to automatically create on-demand instances to meet the required number of ECS instances.
|
|
880
877
|
*
|
|
881
878
|
* @example
|
|
882
879
|
* true
|
|
@@ -884,7 +881,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
884
881
|
compensateWithOnDemand?: boolean;
|
|
885
882
|
/**
|
|
886
883
|
* @remarks
|
|
887
|
-
*
|
|
884
|
+
* The combination of the configurations, such as the type and size, of the data disks of the nodes.
|
|
888
885
|
*/
|
|
889
886
|
dataDisks?: DataDisk[];
|
|
890
887
|
/**
|
|
@@ -897,7 +894,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
897
894
|
deploymentsetId?: string;
|
|
898
895
|
/**
|
|
899
896
|
* @remarks
|
|
900
|
-
* The
|
|
897
|
+
* The expected number of nodes in the node pool.
|
|
901
898
|
*
|
|
902
899
|
* @example
|
|
903
900
|
* 2
|
|
@@ -905,7 +902,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
905
902
|
desiredSize?: number;
|
|
906
903
|
/**
|
|
907
904
|
* @remarks
|
|
908
|
-
*
|
|
905
|
+
* The configurations for block device initialization.
|
|
909
906
|
*/
|
|
910
907
|
diskInit?: DiskInit[];
|
|
911
908
|
/**
|
|
@@ -946,11 +943,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
946
943
|
imageType?: string;
|
|
947
944
|
/**
|
|
948
945
|
* @remarks
|
|
949
|
-
* The billing method
|
|
946
|
+
* The billing method of the nodes in the node pool. Valid values:
|
|
950
947
|
*
|
|
951
|
-
* - `PrePaid`:
|
|
948
|
+
* - `PrePaid`: subscription.
|
|
952
949
|
*
|
|
953
|
-
* - `PostPaid`:
|
|
950
|
+
* - `PostPaid`: pay-as-you-go.
|
|
954
951
|
*
|
|
955
952
|
* @example
|
|
956
953
|
* PostPaid
|
|
@@ -958,12 +955,12 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
958
955
|
instanceChargeType?: string;
|
|
959
956
|
/**
|
|
960
957
|
* @remarks
|
|
961
|
-
*
|
|
958
|
+
* The configurations for accessing the metadata of ECS instances.
|
|
962
959
|
*/
|
|
963
960
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
964
961
|
/**
|
|
965
962
|
* @remarks
|
|
966
|
-
*
|
|
963
|
+
* The instance attribute configurations.
|
|
967
964
|
*/
|
|
968
965
|
instancePatterns?: InstancePatterns[];
|
|
969
966
|
/**
|
|
@@ -973,11 +970,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
973
970
|
instanceTypes?: string[];
|
|
974
971
|
/**
|
|
975
972
|
* @remarks
|
|
976
|
-
* The billing method for public
|
|
973
|
+
* The billing method for the public IP address of the nodes.
|
|
977
974
|
*
|
|
978
|
-
* - PayByBandwidth:
|
|
975
|
+
* - PayByBandwidth: pay-by-bandwidth.
|
|
979
976
|
*
|
|
980
|
-
* - PayByTraffic:
|
|
977
|
+
* - PayByTraffic: pay-by-traffic.
|
|
981
978
|
*
|
|
982
979
|
* @example
|
|
983
980
|
* PayByBandwidth
|
|
@@ -985,7 +982,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
985
982
|
internetChargeType?: string;
|
|
986
983
|
/**
|
|
987
984
|
* @remarks
|
|
988
|
-
* The maximum outbound bandwidth
|
|
985
|
+
* The maximum outbound public bandwidth of the nodes. Unit: Mbit/s. Valid values: 1 to 100.
|
|
989
986
|
*
|
|
990
987
|
* @example
|
|
991
988
|
* 10
|
|
@@ -993,7 +990,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
993
990
|
internetMaxBandwidthOut?: number;
|
|
994
991
|
/**
|
|
995
992
|
* @remarks
|
|
996
|
-
* The key pair
|
|
993
|
+
* The name of the key pair. You must specify either this parameter or login_password. When the node pool is a managed node pool, only key_pair is supported.
|
|
997
994
|
*
|
|
998
995
|
* @example
|
|
999
996
|
* pro-nodepool
|
|
@@ -1001,11 +998,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1001
998
|
keyPair?: string;
|
|
1002
999
|
/**
|
|
1003
1000
|
* @remarks
|
|
1004
|
-
* Indicates whether ECS instances
|
|
1001
|
+
* Indicates whether to log on to the created ECS instances as a non-root user.
|
|
1005
1002
|
*
|
|
1006
|
-
* - true:
|
|
1003
|
+
* - true: Logs on as a non-root user (ecs-user).
|
|
1007
1004
|
*
|
|
1008
|
-
* - false:
|
|
1005
|
+
* - false: Logs on as the root user.
|
|
1009
1006
|
*
|
|
1010
1007
|
* @example
|
|
1011
1008
|
* true
|
|
@@ -1013,9 +1010,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1013
1010
|
loginAsNonRoot?: boolean;
|
|
1014
1011
|
/**
|
|
1015
1012
|
* @remarks
|
|
1016
|
-
* The SSH logon password.
|
|
1013
|
+
* The SSH logon password. You must specify either this parameter or key_pair. The password must be 8 to 30 characters in length, and must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters.
|
|
1017
1014
|
*
|
|
1018
|
-
* For security reasons, the
|
|
1015
|
+
* For security reasons, the password is encrypted in the query result.
|
|
1019
1016
|
*
|
|
1020
1017
|
* @example
|
|
1021
1018
|
* ********
|
|
@@ -1023,15 +1020,15 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1023
1020
|
loginPassword?: string;
|
|
1024
1021
|
/**
|
|
1025
1022
|
* @remarks
|
|
1026
|
-
* The scaling policy for multi-zone scaling
|
|
1023
|
+
* The scaling policy for the ECS instances in the multi-zone scaling group. Valid values:
|
|
1027
1024
|
*
|
|
1028
|
-
* - `PRIORITY`: Scales based on the
|
|
1025
|
+
* - `PRIORITY`: Scales instances based on the vSwitches that you define (VSwitchIds.N). If the ECS instances cannot be created in the zone of the vSwitch with a higher priority, the system automatically uses the vSwitch with the next priority to create the instances.
|
|
1029
1026
|
*
|
|
1030
|
-
* - `COST_OPTIMIZED`:
|
|
1027
|
+
* - `COST_OPTIMIZED`: Attempts to create instances at the lowest vCPU unit price. If multiple instance types are specified for the scaling configuration and the preemption policy is configured, the system preferentially creates the corresponding spot instances. You can also use the `CompensateWithOnDemand` parameter to specify whether to automatically try to create on-demand instances when spot instances cannot be created due to reasons such as stock shortages.
|
|
1031
1028
|
*
|
|
1032
|
-
* > `COST_OPTIMIZED` takes effect only when multiple instance types or spot instances are
|
|
1029
|
+
* > `COST_OPTIMIZED` takes effect only when multiple instance types are specified or spot instances are used for the scaling configuration.
|
|
1033
1030
|
*
|
|
1034
|
-
* - `BALANCE`:
|
|
1031
|
+
* - `BALANCE`: Evenly distributes ECS instances across the specified zones of the scaling group. If the distribution of ECS instances becomes unbalanced between zones due to stock shortages, you can call the API RebalanceInstances operation to balance the resources. For more information, see [RebalanceInstances](https://help.aliyun.com/document_detail/71516.html) .
|
|
1035
1032
|
*
|
|
1036
1033
|
* Default value: `PRIORITY`.
|
|
1037
1034
|
*
|
|
@@ -1041,7 +1038,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1041
1038
|
multiAzPolicy?: string;
|
|
1042
1039
|
/**
|
|
1043
1040
|
* @remarks
|
|
1044
|
-
* The minimum number of
|
|
1041
|
+
* The minimum number of on-demand instances that the scaling group must contain. Valid values: 0 to 1000. If the number of on-demand instances is less than this value, on-demand instances are preferentially created.
|
|
1045
1042
|
*
|
|
1046
1043
|
* @example
|
|
1047
1044
|
* 0
|
|
@@ -1049,7 +1046,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1049
1046
|
onDemandBaseCapacity?: number;
|
|
1050
1047
|
/**
|
|
1051
1048
|
* @remarks
|
|
1052
|
-
* The percentage of
|
|
1049
|
+
* The percentage of on-demand instances among the instances that exceed the minimum number of on-demand instances (on_demand_base_capacity). Valid values: 0 to 100.
|
|
1053
1050
|
*
|
|
1054
1051
|
* @example
|
|
1055
1052
|
* 20
|
|
@@ -1057,11 +1054,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1057
1054
|
onDemandPercentageAboveBaseCapacity?: number;
|
|
1058
1055
|
/**
|
|
1059
1056
|
* @remarks
|
|
1060
|
-
* The subscription duration
|
|
1057
|
+
* The subscription duration of the nodes. This parameter is required and takes effect only if instance_charge_type is set to PrePaid.
|
|
1061
1058
|
*
|
|
1062
|
-
* - If
|
|
1059
|
+
* - If period_unit is set to Week, the valid values of period are 1, 2, 3, and 4.
|
|
1063
1060
|
*
|
|
1064
|
-
* - If
|
|
1061
|
+
* - 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.
|
|
1065
1062
|
*
|
|
1066
1063
|
* @example
|
|
1067
1064
|
* 0
|
|
@@ -1069,11 +1066,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1069
1066
|
period?: number;
|
|
1070
1067
|
/**
|
|
1071
1068
|
* @remarks
|
|
1072
|
-
* The billing cycle
|
|
1069
|
+
* The billing cycle of the nodes. This parameter is required if instance_charge_type is set to PrePaid.
|
|
1073
1070
|
*
|
|
1074
|
-
* - `Month`:
|
|
1071
|
+
* - `Month`: The billing cycle is measured in months.
|
|
1075
1072
|
*
|
|
1076
|
-
* - `Week`:
|
|
1073
|
+
* - `Week`: The billing cycle is measured in weeks.
|
|
1077
1074
|
*
|
|
1078
1075
|
* @example
|
|
1079
1076
|
* Month
|
|
@@ -1097,12 +1094,12 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1097
1094
|
platform?: string;
|
|
1098
1095
|
/**
|
|
1099
1096
|
* @remarks
|
|
1100
|
-
*
|
|
1097
|
+
* The private node pool configurations.
|
|
1101
1098
|
*/
|
|
1102
1099
|
privatePoolOptions?: DescribeClusterNodePoolDetailResponseBodyScalingGroupPrivatePoolOptions;
|
|
1103
1100
|
/**
|
|
1104
1101
|
* @remarks
|
|
1105
|
-
* [
|
|
1102
|
+
* [This parameter is deprecated] Use ram_role_name instead.
|
|
1106
1103
|
*
|
|
1107
1104
|
* @example
|
|
1108
1105
|
* KubernetesWorkerRole-021dc54f-929b-437a-8ae0-34c24d3e****
|
|
@@ -1110,7 +1107,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1110
1107
|
ramPolicy?: string;
|
|
1111
1108
|
/**
|
|
1112
1109
|
* @remarks
|
|
1113
|
-
* The
|
|
1110
|
+
* The name of the worker RAM role.
|
|
1114
1111
|
*
|
|
1115
1112
|
* @example
|
|
1116
1113
|
* KubernetesWorkerRole-4a4fa089-80c1-48a5-b3c6-9349311f****
|
|
@@ -1118,17 +1115,17 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1118
1115
|
ramRoleName?: string;
|
|
1119
1116
|
/**
|
|
1120
1117
|
* @remarks
|
|
1121
|
-
* If RDS instances
|
|
1118
|
+
* If you specify a list of RDS instances, the ECS nodes of the cluster are automatically added to the RDS instance whitelist.
|
|
1122
1119
|
*/
|
|
1123
1120
|
rdsInstances?: string[];
|
|
1124
1121
|
/**
|
|
1125
1122
|
* @remarks
|
|
1126
|
-
* The resource pool and
|
|
1123
|
+
* The resource pool and resource pool policy used when creating instances.
|
|
1127
1124
|
*/
|
|
1128
1125
|
resourcePoolOptions?: DescribeClusterNodePoolDetailResponseBodyScalingGroupResourcePoolOptions;
|
|
1129
1126
|
/**
|
|
1130
1127
|
* @remarks
|
|
1131
|
-
* The scaling group
|
|
1128
|
+
* The ID of the scaling group.
|
|
1132
1129
|
*
|
|
1133
1130
|
* @example
|
|
1134
1131
|
* asg-2zeieod8giqmov7z****
|
|
@@ -1138,9 +1135,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1138
1135
|
* @remarks
|
|
1139
1136
|
* The scaling group mode. Valid values:
|
|
1140
1137
|
*
|
|
1141
|
-
* - `release`:
|
|
1138
|
+
* - `release`: standard mode. Instances are created and released based on the resource usage.
|
|
1142
1139
|
*
|
|
1143
|
-
* - `recycle`:
|
|
1140
|
+
* - `recycle`: fast mode. Instances are created, stopped, and started to accelerate scaling. Compute resources are not billed when instances are stopped, but storage resources are. This does not apply to instances with local disks.
|
|
1144
1141
|
*
|
|
1145
1142
|
* @example
|
|
1146
1143
|
* release
|
|
@@ -1148,7 +1145,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1148
1145
|
scalingPolicy?: string;
|
|
1149
1146
|
/**
|
|
1150
1147
|
* @remarks
|
|
1151
|
-
* The security group ID
|
|
1148
|
+
* The security group ID of the node pool. If the node pool is associated with multiple security groups, this is the first value in security_group_ids.
|
|
1152
1149
|
*
|
|
1153
1150
|
* @example
|
|
1154
1151
|
* sg-2ze60ockeekspl3d****
|
|
@@ -1175,7 +1172,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1175
1172
|
securityHardeningOs?: boolean;
|
|
1176
1173
|
/**
|
|
1177
1174
|
* @remarks
|
|
1178
|
-
* Indicates whether
|
|
1175
|
+
* Indicates whether to enable classified protection compliance. You can enable classified protection compliance for nodes only when you select Alibaba Cloud Linux 2 or Alibaba Cloud Linux 3 as the OS image. Alibaba Cloud provides baseline check standards and scanning programs for MLPS 2.0 Level 3-compliant Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 images.
|
|
1179
1176
|
*
|
|
1180
1177
|
* @example
|
|
1181
1178
|
* false
|
|
@@ -1183,7 +1180,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1183
1180
|
socEnabled?: boolean;
|
|
1184
1181
|
/**
|
|
1185
1182
|
* @remarks
|
|
1186
|
-
* The number of available instance types. The scaling group creates spot instances
|
|
1183
|
+
* The number of available instance types. The scaling group creates spot instances of multiple types that have the lowest costs in a balanced manner. Valid values: 1 to 10.
|
|
1187
1184
|
*
|
|
1188
1185
|
* @example
|
|
1189
1186
|
* 5
|
|
@@ -1191,11 +1188,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1191
1188
|
spotInstancePools?: number;
|
|
1192
1189
|
/**
|
|
1193
1190
|
* @remarks
|
|
1194
|
-
* Indicates whether to
|
|
1191
|
+
* Indicates whether to enable the feature of supplementing spot instances. If this feature is enabled, the scaling group attempts to create a new instance to replace a spot instance that is reclaimed. Valid values:
|
|
1195
1192
|
*
|
|
1196
|
-
* - `true`: Enables
|
|
1193
|
+
* - `true`: Enables the feature of supplementing spot instances.
|
|
1197
1194
|
*
|
|
1198
|
-
* - `false`: Disables
|
|
1195
|
+
* - `false`: Disables the feature of supplementing spot instances.
|
|
1199
1196
|
*
|
|
1200
1197
|
* @example
|
|
1201
1198
|
* false
|
|
@@ -1203,18 +1200,18 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1203
1200
|
spotInstanceRemedy?: boolean;
|
|
1204
1201
|
/**
|
|
1205
1202
|
* @remarks
|
|
1206
|
-
*
|
|
1203
|
+
* The configurations of the price range for spot instances.
|
|
1207
1204
|
*/
|
|
1208
1205
|
spotPriceLimit?: DescribeClusterNodePoolDetailResponseBodyScalingGroupSpotPriceLimit[];
|
|
1209
1206
|
/**
|
|
1210
1207
|
* @remarks
|
|
1211
|
-
* The spot
|
|
1208
|
+
* The preemption policy for the spot instances. Valid values:
|
|
1212
1209
|
*
|
|
1213
|
-
* - NoSpot:
|
|
1210
|
+
* - NoSpot: The instances are not spot instances.
|
|
1214
1211
|
*
|
|
1215
|
-
* - SpotWithPriceLimit: Sets
|
|
1212
|
+
* - SpotWithPriceLimit: Sets the maximum price for a spot instance.
|
|
1216
1213
|
*
|
|
1217
|
-
* - SpotAsPriceGo:
|
|
1214
|
+
* - SpotAsPriceGo: The system automatically places bids based on the market price.
|
|
1218
1215
|
*
|
|
1219
1216
|
* For more information, see [Spot instances](https://help.aliyun.com/document_detail/157759.html).
|
|
1220
1217
|
*
|
|
@@ -1224,13 +1221,13 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1224
1221
|
spotStrategy?: string;
|
|
1225
1222
|
/**
|
|
1226
1223
|
* @remarks
|
|
1227
|
-
* Indicates whether
|
|
1224
|
+
* Indicates whether to enable performance burst for the system disk of the nodes. Valid values:
|
|
1228
1225
|
*
|
|
1229
|
-
* - true:
|
|
1226
|
+
* - true: Enables performance burst. If you enable this feature, the cloud disk can temporarily improve its performance to handle sudden data read and write pressure when the business is unstable.
|
|
1230
1227
|
*
|
|
1231
|
-
* - false:
|
|
1228
|
+
* - false: Disables performance burst.
|
|
1232
1229
|
*
|
|
1233
|
-
* This parameter
|
|
1230
|
+
* 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).
|
|
1234
1231
|
*
|
|
1235
1232
|
* @example
|
|
1236
1233
|
* true
|
|
@@ -1238,22 +1235,22 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1238
1235
|
systemDiskBurstingEnabled?: boolean;
|
|
1239
1236
|
/**
|
|
1240
1237
|
* @remarks
|
|
1241
|
-
*
|
|
1238
|
+
* The types of system disks. When a disk of a high-priority type is not available, the system automatically tries the next-priority disk type to create the system disk.
|
|
1242
1239
|
*/
|
|
1243
1240
|
systemDiskCategories?: string[];
|
|
1244
1241
|
/**
|
|
1245
1242
|
* @remarks
|
|
1246
|
-
* The system disk
|
|
1243
|
+
* The type of the system disk of the nodes. Valid values:
|
|
1247
1244
|
*
|
|
1248
|
-
* - `cloud_efficiency`:
|
|
1245
|
+
* - `cloud_efficiency`: ultra disk.
|
|
1249
1246
|
*
|
|
1250
|
-
* - `cloud_ssd`:
|
|
1247
|
+
* - `cloud_ssd`: standard SSD.
|
|
1251
1248
|
*
|
|
1252
|
-
* - `cloud_essd`: ESSD.
|
|
1249
|
+
* - `cloud_essd`: Enhanced SSD (ESSD).
|
|
1253
1250
|
*
|
|
1254
|
-
* - `cloud_auto`: ESSD AutoPL.
|
|
1251
|
+
* - `cloud_auto`: ESSD AutoPL disk.
|
|
1255
1252
|
*
|
|
1256
|
-
* - `cloud_essd_entry`: ESSD Entry.
|
|
1253
|
+
* - `cloud_essd_entry`: ESSD Entry disk.
|
|
1257
1254
|
*
|
|
1258
1255
|
* @example
|
|
1259
1256
|
* cloud_efficiency
|
|
@@ -1261,7 +1258,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1261
1258
|
systemDiskCategory?: string;
|
|
1262
1259
|
/**
|
|
1263
1260
|
* @remarks
|
|
1264
|
-
* The encryption algorithm used for the system disk. Valid value: aes-256.
|
|
1261
|
+
* The encryption algorithm that is used for the system disk. Valid value: aes-256.
|
|
1265
1262
|
*
|
|
1266
1263
|
* @example
|
|
1267
1264
|
* aes-256
|
|
@@ -1269,11 +1266,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1269
1266
|
systemDiskEncryptAlgorithm?: string;
|
|
1270
1267
|
/**
|
|
1271
1268
|
* @remarks
|
|
1272
|
-
* Indicates whether the system disk
|
|
1269
|
+
* Indicates whether to encrypt the system disk. Valid values:
|
|
1273
1270
|
*
|
|
1274
|
-
* - `true`:
|
|
1271
|
+
* - `true`: Encrypts the system disk.
|
|
1275
1272
|
*
|
|
1276
|
-
* - `false`:
|
|
1273
|
+
* - `false`: Does not encrypt the system disk.
|
|
1277
1274
|
*
|
|
1278
1275
|
* @example
|
|
1279
1276
|
* false
|
|
@@ -1281,7 +1278,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1281
1278
|
systemDiskEncrypted?: boolean;
|
|
1282
1279
|
/**
|
|
1283
1280
|
* @remarks
|
|
1284
|
-
* The KMS key
|
|
1281
|
+
* The ID of the KMS key that is used to encrypt the system disk.
|
|
1285
1282
|
*
|
|
1286
1283
|
* @example
|
|
1287
1284
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
@@ -1289,15 +1286,15 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1289
1286
|
systemDiskKmsKeyId?: string;
|
|
1290
1287
|
/**
|
|
1291
1288
|
* @remarks
|
|
1292
|
-
* The system disk
|
|
1289
|
+
* The performance level of the system disk of the nodes. This parameter is valid only for ESSDs. The disk performance level is related to the disk size. For more information, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
1293
1290
|
*
|
|
1294
|
-
* - PL0:
|
|
1291
|
+
* - PL0: The I/O performance is moderate and the read/write latency is stable.
|
|
1295
1292
|
*
|
|
1296
|
-
* - PL1:
|
|
1293
|
+
* - PL1: The I/O performance is moderate and the read/write latency is stable.
|
|
1297
1294
|
*
|
|
1298
|
-
* - PL2:
|
|
1295
|
+
* - PL2: The I/O performance is high and the read/write latency is stable.
|
|
1299
1296
|
*
|
|
1300
|
-
* - PL3:
|
|
1297
|
+
* - PL3: The I/O performance is very high and the read/write latency is very stable.
|
|
1301
1298
|
*
|
|
1302
1299
|
* @example
|
|
1303
1300
|
* PL1
|
|
@@ -1305,11 +1302,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1305
1302
|
systemDiskPerformanceLevel?: string;
|
|
1306
1303
|
/**
|
|
1307
1304
|
* @remarks
|
|
1308
|
-
* The
|
|
1305
|
+
* The pre-configured read and write IOPS of the system disk of the nodes.
|
|
1309
1306
|
*
|
|
1310
|
-
* Valid values: 0 to min{50,000,
|
|
1307
|
+
* Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}. Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
1311
1308
|
*
|
|
1312
|
-
* This parameter
|
|
1309
|
+
* 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).
|
|
1313
1310
|
*
|
|
1314
1311
|
* @example
|
|
1315
1312
|
* 1000
|
|
@@ -1317,9 +1314,9 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1317
1314
|
systemDiskProvisionedIops?: number;
|
|
1318
1315
|
/**
|
|
1319
1316
|
* @remarks
|
|
1320
|
-
* The system disk
|
|
1317
|
+
* The size of the system disk of the nodes. Unit: GiB.
|
|
1321
1318
|
*
|
|
1322
|
-
* Valid values:
|
|
1319
|
+
* Valid values: 20 to 2048.
|
|
1323
1320
|
*
|
|
1324
1321
|
* @example
|
|
1325
1322
|
* 120
|
|
@@ -1327,7 +1324,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1327
1324
|
systemDiskSize?: number;
|
|
1328
1325
|
/**
|
|
1329
1326
|
* @remarks
|
|
1330
|
-
* The system disk snapshot policy
|
|
1327
|
+
* The system disk snapshot policy
|
|
1331
1328
|
*
|
|
1332
1329
|
* @example
|
|
1333
1330
|
* sp-bp11g8z59rawcud9****
|
|
@@ -1335,12 +1332,12 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1335
1332
|
systemDiskSnapshotPolicyId?: string;
|
|
1336
1333
|
/**
|
|
1337
1334
|
* @remarks
|
|
1338
|
-
* ECS instance tags.
|
|
1335
|
+
* The ECS instance tags.
|
|
1339
1336
|
*/
|
|
1340
1337
|
tags?: Tag[];
|
|
1341
1338
|
/**
|
|
1342
1339
|
* @remarks
|
|
1343
|
-
* The list of
|
|
1340
|
+
* The list of vSwitch IDs.
|
|
1344
1341
|
*/
|
|
1345
1342
|
vswitchIds?: string[];
|
|
1346
1343
|
static names(): {
|
|
@@ -1357,7 +1354,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyScalingGroup exten
|
|
|
1357
1354
|
export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions extends $dara.Model {
|
|
1358
1355
|
/**
|
|
1359
1356
|
* @remarks
|
|
1360
|
-
* The
|
|
1357
|
+
* The time of the last status transition.
|
|
1361
1358
|
*
|
|
1362
1359
|
* @example
|
|
1363
1360
|
* 20**-**-30T10:39:00+08:00
|
|
@@ -1365,7 +1362,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions e
|
|
|
1365
1362
|
lastTransitionTime?: string;
|
|
1366
1363
|
/**
|
|
1367
1364
|
* @remarks
|
|
1368
|
-
*
|
|
1365
|
+
* The detailed information.
|
|
1369
1366
|
*
|
|
1370
1367
|
* @example
|
|
1371
1368
|
* AutoUpgradeDisabled
|
|
@@ -1373,7 +1370,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions e
|
|
|
1373
1370
|
message?: string;
|
|
1374
1371
|
/**
|
|
1375
1372
|
* @remarks
|
|
1376
|
-
* The reason
|
|
1373
|
+
* The reason.
|
|
1377
1374
|
*
|
|
1378
1375
|
* @example
|
|
1379
1376
|
* UpgradeDisabled
|
|
@@ -1381,7 +1378,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions e
|
|
|
1381
1378
|
reason?: string;
|
|
1382
1379
|
/**
|
|
1383
1380
|
* @remarks
|
|
1384
|
-
* The
|
|
1381
|
+
* The status.
|
|
1385
1382
|
*
|
|
1386
1383
|
* @example
|
|
1387
1384
|
* True
|
|
@@ -1389,7 +1386,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions e
|
|
|
1389
1386
|
status?: string;
|
|
1390
1387
|
/**
|
|
1391
1388
|
* @remarks
|
|
1392
|
-
* The
|
|
1389
|
+
* The type.
|
|
1393
1390
|
*
|
|
1394
1391
|
* @example
|
|
1395
1392
|
* ImageUpgradeReady
|
|
@@ -1409,7 +1406,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatusConditions e
|
|
|
1409
1406
|
export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $dara.Model {
|
|
1410
1407
|
/**
|
|
1411
1408
|
* @remarks
|
|
1412
|
-
* The current
|
|
1409
|
+
* The current status of the node pool. This parameter indicates the status of the node pool from different dimensions.
|
|
1413
1410
|
*/
|
|
1414
1411
|
conditions?: DescribeClusterNodePoolDetailResponseBodyStatusConditions[];
|
|
1415
1412
|
/**
|
|
@@ -1430,7 +1427,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $da
|
|
|
1430
1427
|
healthyNodes?: number;
|
|
1431
1428
|
/**
|
|
1432
1429
|
* @remarks
|
|
1433
|
-
* The number of nodes being created.
|
|
1430
|
+
* The number of nodes that are being created.
|
|
1434
1431
|
*
|
|
1435
1432
|
* @example
|
|
1436
1433
|
* 0
|
|
@@ -1446,7 +1443,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $da
|
|
|
1446
1443
|
offlineNodes?: number;
|
|
1447
1444
|
/**
|
|
1448
1445
|
* @remarks
|
|
1449
|
-
* The number of nodes being removed.
|
|
1446
|
+
* The number of nodes that are being removed.
|
|
1450
1447
|
*
|
|
1451
1448
|
* @example
|
|
1452
1449
|
* 0
|
|
@@ -1454,7 +1451,7 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $da
|
|
|
1454
1451
|
removingNodes?: number;
|
|
1455
1452
|
/**
|
|
1456
1453
|
* @remarks
|
|
1457
|
-
* The number of
|
|
1454
|
+
* The number of nodes that are in service.
|
|
1458
1455
|
*
|
|
1459
1456
|
* @example
|
|
1460
1457
|
* 3
|
|
@@ -1462,17 +1459,17 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $da
|
|
|
1462
1459
|
servingNodes?: number;
|
|
1463
1460
|
/**
|
|
1464
1461
|
* @remarks
|
|
1465
|
-
* The node pool
|
|
1462
|
+
* The state of the node pool. Valid values:
|
|
1466
1463
|
*
|
|
1467
|
-
* - `active`:
|
|
1464
|
+
* - `active`: The node pool is active.
|
|
1468
1465
|
*
|
|
1469
|
-
* - `scaling`:
|
|
1466
|
+
* - `scaling`: The node pool is being scaled.
|
|
1470
1467
|
*
|
|
1471
|
-
* - `removing`:
|
|
1468
|
+
* - `removing`: Nodes are being removed.
|
|
1472
1469
|
*
|
|
1473
|
-
* - `deleting`:
|
|
1470
|
+
* - `deleting`: The node pool is being deleted.
|
|
1474
1471
|
*
|
|
1475
|
-
* - `updating`:
|
|
1472
|
+
* - `updating`: The node pool is being updated.
|
|
1476
1473
|
*
|
|
1477
1474
|
* @example
|
|
1478
1475
|
* active
|
|
@@ -1500,11 +1497,11 @@ export declare class DescribeClusterNodePoolDetailResponseBodyStatus extends $da
|
|
|
1500
1497
|
export declare class DescribeClusterNodePoolDetailResponseBodyTeeConfig extends $dara.Model {
|
|
1501
1498
|
/**
|
|
1502
1499
|
* @remarks
|
|
1503
|
-
* Indicates whether confidential computing
|
|
1500
|
+
* Indicates whether to enable the confidential computing cluster. Valid values:
|
|
1504
1501
|
*
|
|
1505
|
-
* - `true`:
|
|
1502
|
+
* - `true`: Enables the confidential computing cluster.
|
|
1506
1503
|
*
|
|
1507
|
-
* - `false`:
|
|
1504
|
+
* - `false`: Disables the confidential computing cluster.
|
|
1508
1505
|
*
|
|
1509
1506
|
* @example
|
|
1510
1507
|
* false
|
|
@@ -1524,22 +1521,22 @@ export declare class DescribeClusterNodePoolDetailResponseBodyTeeConfig extends
|
|
|
1524
1521
|
export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Model {
|
|
1525
1522
|
/**
|
|
1526
1523
|
* @remarks
|
|
1527
|
-
*
|
|
1524
|
+
* The smart hosting configurations.
|
|
1528
1525
|
*/
|
|
1529
1526
|
autoMode?: DescribeClusterNodePoolDetailResponseBodyAutoMode;
|
|
1530
1527
|
/**
|
|
1531
1528
|
* @remarks
|
|
1532
|
-
*
|
|
1529
|
+
* The configurations of the node pool that is configured for automatic scaling.
|
|
1533
1530
|
*/
|
|
1534
1531
|
autoScaling?: DescribeClusterNodePoolDetailResponseBodyAutoScaling;
|
|
1535
1532
|
efloNodeGroup?: DescribeClusterNodePoolDetailResponseBodyEfloNodeGroup;
|
|
1536
1533
|
/**
|
|
1537
1534
|
* @remarks
|
|
1538
|
-
* Indicates whether
|
|
1535
|
+
* Indicates whether the pod network uses the host network mode.
|
|
1539
1536
|
*
|
|
1540
|
-
* - `true`:
|
|
1537
|
+
* - `true`: host network. Pods directly use the host\\"s network stack and share IP addresses and ports with the host.
|
|
1541
1538
|
*
|
|
1542
|
-
* - `false`:
|
|
1539
|
+
* - `false`: container network. Pods have an independent network stack and do not use host network ports.
|
|
1543
1540
|
*
|
|
1544
1541
|
* @example
|
|
1545
1542
|
* true
|
|
@@ -1547,18 +1544,18 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Mod
|
|
|
1547
1544
|
hostNetwork?: boolean;
|
|
1548
1545
|
/**
|
|
1549
1546
|
* @remarks
|
|
1550
|
-
* [
|
|
1547
|
+
* [This parameter is deprecated]
|
|
1551
1548
|
*
|
|
1552
|
-
*
|
|
1549
|
+
* The network configurations of the edge node pool. This parameter is valid only for edge node pools.
|
|
1553
1550
|
*/
|
|
1554
1551
|
interconnectConfig?: DescribeClusterNodePoolDetailResponseBodyInterconnectConfig;
|
|
1555
1552
|
/**
|
|
1556
1553
|
* @remarks
|
|
1557
|
-
* The network type
|
|
1554
|
+
* The network type of the edge node pool. This parameter is valid only for `edge` node pools. Valid values:
|
|
1558
1555
|
*
|
|
1559
|
-
* - `basic`:
|
|
1556
|
+
* - `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 in the cloud.
|
|
1560
1557
|
*
|
|
1561
|
-
* - `private`:
|
|
1558
|
+
* - `private`: dedicated network. The nodes in the node pool connect to the cloud network through leased lines, VPNs, or CEN. This provides higher communication quality between the cloud and the edge and offers more effective security.
|
|
1562
1559
|
*
|
|
1563
1560
|
* @example
|
|
1564
1561
|
* basic
|
|
@@ -1566,11 +1563,11 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Mod
|
|
|
1566
1563
|
interconnectMode?: string;
|
|
1567
1564
|
/**
|
|
1568
1565
|
* @remarks
|
|
1569
|
-
* Indicates whether
|
|
1566
|
+
* Indicates whether nodes in the edge node pool have Layer 3 network connectivity.
|
|
1570
1567
|
*
|
|
1571
|
-
* - `true`:
|
|
1568
|
+
* - `true`: connected. All nodes in this node pool have Layer 3 network connectivity.
|
|
1572
1569
|
*
|
|
1573
|
-
* - `false`:
|
|
1570
|
+
* - `false`: not connected. All hosts in this node pool do not have Layer 3 network connectivity.
|
|
1574
1571
|
*
|
|
1575
1572
|
* @example
|
|
1576
1573
|
* true
|
|
@@ -1578,19 +1575,19 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Mod
|
|
|
1578
1575
|
intranet?: boolean;
|
|
1579
1576
|
/**
|
|
1580
1577
|
* @remarks
|
|
1581
|
-
*
|
|
1578
|
+
* The cluster-related configurations.
|
|
1582
1579
|
*/
|
|
1583
1580
|
kubernetesConfig?: DescribeClusterNodePoolDetailResponseBodyKubernetesConfig;
|
|
1584
1581
|
/**
|
|
1585
1582
|
* @remarks
|
|
1586
|
-
*
|
|
1583
|
+
* The configurations of the managed node pool.
|
|
1587
1584
|
*/
|
|
1588
1585
|
management?: DescribeClusterNodePoolDetailResponseBodyManagement;
|
|
1589
1586
|
/**
|
|
1590
1587
|
* @remarks
|
|
1591
|
-
* [
|
|
1588
|
+
* [This parameter is deprecated]
|
|
1592
1589
|
*
|
|
1593
|
-
* The maximum number of nodes
|
|
1590
|
+
* The maximum number of nodes that the edge node pool can contain.
|
|
1594
1591
|
*
|
|
1595
1592
|
* @example
|
|
1596
1593
|
* 10
|
|
@@ -1598,22 +1595,22 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Mod
|
|
|
1598
1595
|
maxNodes?: number;
|
|
1599
1596
|
/**
|
|
1600
1597
|
* @remarks
|
|
1601
|
-
*
|
|
1598
|
+
* The list of node components.
|
|
1602
1599
|
*/
|
|
1603
1600
|
nodeComponents?: DescribeClusterNodePoolDetailResponseBodyNodeComponents[];
|
|
1604
1601
|
/**
|
|
1605
1602
|
* @remarks
|
|
1606
|
-
*
|
|
1603
|
+
* The node configurations.
|
|
1607
1604
|
*/
|
|
1608
1605
|
nodeConfig?: DescribeClusterNodePoolDetailResponseBodyNodeConfig;
|
|
1609
1606
|
/**
|
|
1610
1607
|
* @remarks
|
|
1611
|
-
*
|
|
1608
|
+
* The node pool configurations.
|
|
1612
1609
|
*/
|
|
1613
1610
|
nodepoolInfo?: DescribeClusterNodePoolDetailResponseBodyNodepoolInfo;
|
|
1614
1611
|
/**
|
|
1615
1612
|
* @remarks
|
|
1616
|
-
*
|
|
1613
|
+
* The configurations of the scaling group for the node pool.
|
|
1617
1614
|
*/
|
|
1618
1615
|
scalingGroup?: DescribeClusterNodePoolDetailResponseBodyScalingGroup;
|
|
1619
1616
|
/**
|
|
@@ -1623,7 +1620,7 @@ export declare class DescribeClusterNodePoolDetailResponseBody extends $dara.Mod
|
|
|
1623
1620
|
status?: DescribeClusterNodePoolDetailResponseBodyStatus;
|
|
1624
1621
|
/**
|
|
1625
1622
|
* @remarks
|
|
1626
|
-
*
|
|
1623
|
+
* The configurations of the confidential computing cluster.
|
|
1627
1624
|
*/
|
|
1628
1625
|
teeConfig?: DescribeClusterNodePoolDetailResponseBodyTeeConfig;
|
|
1629
1626
|
static names(): {
|