tencentcloud-sdk-nodejs-tke 4.1.208 → 4.1.209
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
|
@@ -4175,9 +4175,13 @@ export interface ClusterCondition {
|
|
|
4175
4175
|
*/
|
|
4176
4176
|
export interface ExtenderManagedResource {
|
|
4177
4177
|
/**
|
|
4178
|
-
*
|
|
4178
|
+
* <p>自定义资源的名称</p>
|
|
4179
4179
|
*/
|
|
4180
4180
|
Name?: string;
|
|
4181
|
+
/**
|
|
4182
|
+
* <p>调度器是否忽略该资源的默认处理</p>
|
|
4183
|
+
*/
|
|
4184
|
+
IgnoredByScheduler?: boolean;
|
|
4181
4185
|
}
|
|
4182
4186
|
/**
|
|
4183
4187
|
* 仓储仓库信息
|
|
@@ -12164,25 +12168,33 @@ export interface DeletePrometheusAlertRuleRequest {
|
|
|
12164
12168
|
*/
|
|
12165
12169
|
export interface Extenders {
|
|
12166
12170
|
/**
|
|
12167
|
-
*
|
|
12171
|
+
* <p>过滤阶段接口</p>
|
|
12168
12172
|
*/
|
|
12169
12173
|
FilterVerb?: string;
|
|
12170
12174
|
/**
|
|
12171
|
-
*
|
|
12175
|
+
* <p>打分阶段扩展接口</p>
|
|
12172
12176
|
*/
|
|
12173
12177
|
PrioritizeVerb?: string;
|
|
12174
12178
|
/**
|
|
12175
|
-
*
|
|
12179
|
+
* <p>打分阶段节点分数的权重,取值范围限定(0,2】</p>
|
|
12176
12180
|
*/
|
|
12177
12181
|
Weight?: number;
|
|
12178
12182
|
/**
|
|
12179
|
-
*
|
|
12183
|
+
* <p>扩展调度器(Extender)管理的扩展资源</p>
|
|
12180
12184
|
*/
|
|
12181
12185
|
ManagedResources?: Array<ExtenderManagedResource>;
|
|
12182
12186
|
/**
|
|
12183
|
-
* extender
|
|
12187
|
+
* <p>extender客户端配置</p>
|
|
12184
12188
|
*/
|
|
12185
12189
|
ExtenderClientConfig?: ExtenderClientConfig;
|
|
12190
|
+
/**
|
|
12191
|
+
* <p>抢占接口</p>
|
|
12192
|
+
*/
|
|
12193
|
+
PreemptVerb?: string;
|
|
12194
|
+
/**
|
|
12195
|
+
* <p>节点缓存能力</p>
|
|
12196
|
+
*/
|
|
12197
|
+
NodeCacheCapable?: boolean;
|
|
12186
12198
|
}
|
|
12187
12199
|
/**
|
|
12188
12200
|
* NodePool的运行时配置
|