tencentcloud-sdk-nodejs-tke 4.1.160 → 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
|
@@ -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
|
*/
|