tencentcloud-sdk-nodejs-tke 4.1.99 → 4.1.103
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/package.json
CHANGED
|
@@ -10458,6 +10458,10 @@ export interface ClusterNetworkSettings {
|
|
|
10458
10458
|
- 支持CDC的托管集群,且网络插件为VPC-CNI。
|
|
10459
10459
|
*/
|
|
10460
10460
|
SubnetId?: string;
|
|
10461
|
+
/**
|
|
10462
|
+
* 是否启用了 DataPlaneV2(cilium替代kube-proxy)
|
|
10463
|
+
*/
|
|
10464
|
+
DataPlaneV2?: boolean;
|
|
10461
10465
|
}
|
|
10462
10466
|
/**
|
|
10463
10467
|
* DescribeImages返回参数结构体
|
|
@@ -334,6 +334,10 @@ export interface CreateNativeNodePoolParam {
|
|
|
334
334
|
* 原生节点池数据盘列表
|
|
335
335
|
*/
|
|
336
336
|
DataDisks?: Array<DataDisk>;
|
|
337
|
+
/**
|
|
338
|
+
* qgpu开关
|
|
339
|
+
*/
|
|
340
|
+
QGPUEnable?: boolean;
|
|
337
341
|
/**
|
|
338
342
|
* 节点池ssh公钥id数组
|
|
339
343
|
*/
|
|
@@ -342,6 +346,10 @@ export interface CreateNativeNodePoolParam {
|
|
|
342
346
|
* 节点池类型
|
|
343
347
|
*/
|
|
344
348
|
MachineType?: string;
|
|
349
|
+
/**
|
|
350
|
+
* 原生节点池安装节点自动化助手开关
|
|
351
|
+
*/
|
|
352
|
+
AutomationService?: boolean;
|
|
345
353
|
}
|
|
346
354
|
/**
|
|
347
355
|
* DescribeNodePools返回参数结构体
|
|
@@ -1297,7 +1305,7 @@ export interface CreateNodePoolRequest {
|
|
|
1297
1305
|
*/
|
|
1298
1306
|
Unschedulable?: boolean;
|
|
1299
1307
|
/**
|
|
1300
|
-
*
|
|
1308
|
+
* 原生节点池创建参数(Type字段设置为Native时需填写)
|
|
1301
1309
|
*/
|
|
1302
1310
|
Native?: CreateNativeNodePoolParam;
|
|
1303
1311
|
/**
|