tencentcloud-sdk-nodejs-tke 4.1.158 → 4.1.161
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
|
@@ -2205,7 +2205,7 @@ export interface DisableControlPlaneLogsRequest {
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
ClusterType: string;
|
|
2207
2207
|
/**
|
|
2208
|
-
* 组件名称列表,目前支持的组件有:
|
|
2208
|
+
* 组件名称列表,目前支持的组件有:cluster-autoscaler、kapenter
|
|
2209
2209
|
*/
|
|
2210
2210
|
ComponentNames: Array<string>;
|
|
2211
2211
|
/**
|
|
@@ -12614,7 +12614,7 @@ export interface EnableControlPlaneLogsRequest {
|
|
|
12614
12614
|
*/
|
|
12615
12615
|
ClusterType: string;
|
|
12616
12616
|
/**
|
|
12617
|
-
*
|
|
12617
|
+
* 组件名称列表,目前支持的组件有:cluster-autoscaler、kapenter
|
|
12618
12618
|
*/
|
|
12619
12619
|
Components: Array<ComponentLogConfig>;
|
|
12620
12620
|
}
|
|
@@ -1110,10 +1110,18 @@ export interface UpdateNativeNodePoolParam {
|
|
|
1110
1110
|
* ssh公钥id数组
|
|
1111
1111
|
*/
|
|
1112
1112
|
KeyIds?: Array<string>;
|
|
1113
|
+
/**
|
|
1114
|
+
* 节点移出策略,有Random(随机)、Newest(优先移出最新实例)、Oldest(优先移出最旧实例)三种可选,默认是Newest
|
|
1115
|
+
*/
|
|
1116
|
+
DeletePolicy?: string;
|
|
1113
1117
|
/**
|
|
1114
1118
|
* 节点池 GPU 配置
|
|
1115
1119
|
*/
|
|
1116
1120
|
GPUConfigs?: Array<GPUConfig>;
|
|
1121
|
+
/**
|
|
1122
|
+
* 原生节点池安装自动化助手开关状态
|
|
1123
|
+
*/
|
|
1124
|
+
AutomationService?: boolean;
|
|
1117
1125
|
/**
|
|
1118
1126
|
* 原生节点池密码
|
|
1119
1127
|
*/
|