tencentcloud-sdk-nodejs-tke 4.1.160 → 4.1.162
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
|
@@ -3879,6 +3879,10 @@ export interface PrometheusNotification {
|
|
|
3879
3879
|
* CreateGlobalMaintenanceWindowAndExclusions返回参数结构体
|
|
3880
3880
|
*/
|
|
3881
3881
|
export interface CreateGlobalMaintenanceWindowAndExclusionsResponse {
|
|
3882
|
+
/**
|
|
3883
|
+
* 维护窗口ID
|
|
3884
|
+
*/
|
|
3885
|
+
ID?: number;
|
|
3882
3886
|
/**
|
|
3883
3887
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3884
3888
|
*/
|
|
@@ -11439,7 +11443,8 @@ export interface DescribeGlobalMaintenanceWindowAndExclusionsRequest {
|
|
|
11439
11443
|
*/
|
|
11440
11444
|
Limit?: number;
|
|
11441
11445
|
/**
|
|
11442
|
-
*
|
|
11446
|
+
* 筛选项,支持按照以下字段过滤:
|
|
11447
|
+
- "ID":维护窗口ID,如:10
|
|
11443
11448
|
*/
|
|
11444
11449
|
Filters?: Array<Filter>;
|
|
11445
11450
|
}
|
|
@@ -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
|
*/
|