tencentcloud-sdk-nodejs-tke 4.1.262 → 4.1.263
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
|
@@ -14225,11 +14225,11 @@ export interface UpdateClusterKubeconfigResponse {
|
|
|
14225
14225
|
*/
|
|
14226
14226
|
export interface RuntimeConfig {
|
|
14227
14227
|
/**
|
|
14228
|
-
*
|
|
14228
|
+
* <p>运行时类型,支持的类型有 docker、containerd</p>
|
|
14229
14229
|
*/
|
|
14230
14230
|
RuntimeType?: string;
|
|
14231
14231
|
/**
|
|
14232
|
-
*
|
|
14232
|
+
* <p>运行时版本,参考:https://cloud.tencent.com/document/api/457/105241</p>
|
|
14233
14233
|
*/
|
|
14234
14234
|
RuntimeVersion?: string;
|
|
14235
14235
|
}
|
|
@@ -1433,18 +1433,22 @@ export interface ExternalNodeInfo {
|
|
|
1433
1433
|
*/
|
|
1434
1434
|
export interface MachineSetScaling {
|
|
1435
1435
|
/**
|
|
1436
|
-
*
|
|
1436
|
+
* <p>节点池最小副本数</p>
|
|
1437
1437
|
*/
|
|
1438
1438
|
MinReplicas?: number;
|
|
1439
1439
|
/**
|
|
1440
|
-
*
|
|
1440
|
+
* <p>节点池最大副本数</p>
|
|
1441
1441
|
*/
|
|
1442
1442
|
MaxReplicas?: number;
|
|
1443
1443
|
/**
|
|
1444
|
-
*
|
|
1444
|
+
* <p>节点池扩容策略。ZoneEquality:多可用区打散;ZonePriority:首选可用区优先;</p>
|
|
1445
1445
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1446
1446
|
*/
|
|
1447
1447
|
CreatePolicy?: string;
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>扩缩容模式</p><p>枚举值:</p><ul><li>ShutdownAndDelete: 释放模式,默认</li><li>Shutdown: 停机模式,关机不计费</li></ul><p>默认值:ShutdownAndDelete</p>
|
|
1450
|
+
*/
|
|
1451
|
+
ScaleDownMode?: string;
|
|
1448
1452
|
}
|
|
1449
1453
|
/**
|
|
1450
1454
|
* StartMachines返回参数结构体
|
|
@@ -1737,17 +1741,17 @@ export interface Machine {
|
|
|
1737
1741
|
*/
|
|
1738
1742
|
export interface RuntimeConfig {
|
|
1739
1743
|
/**
|
|
1740
|
-
*
|
|
1744
|
+
* <p>运行时类型</p>
|
|
1741
1745
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1742
1746
|
*/
|
|
1743
1747
|
RuntimeType?: string;
|
|
1744
1748
|
/**
|
|
1745
|
-
*
|
|
1749
|
+
* <p>运行时版本</p>
|
|
1746
1750
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1747
1751
|
*/
|
|
1748
1752
|
RuntimeVersion?: string;
|
|
1749
1753
|
/**
|
|
1750
|
-
*
|
|
1754
|
+
* <p>运行时根目录</p>
|
|
1751
1755
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1752
1756
|
*/
|
|
1753
1757
|
RuntimeRootDir?: string;
|
|
@@ -1987,6 +1991,14 @@ export interface ModifyClusterMachineRequest {
|
|
|
1987
1991
|
* <p>节点预付费信息</p>
|
|
1988
1992
|
*/
|
|
1989
1993
|
InstanceChargePrepaid?: InstanceChargePrepaid;
|
|
1994
|
+
/**
|
|
1995
|
+
* <p>节点计费类型变更</p><p>枚举值:</p><ul><li>POSTPAID_BY_HOUR: 目标计费类型为按量计费</li><li>PREPAID: 目标计费类型为包年包月计费</li></ul>
|
|
1996
|
+
*/
|
|
1997
|
+
InstanceChargeType?: string;
|
|
1998
|
+
/**
|
|
1999
|
+
* <p>是否同时切换弹性数据云盘计费模式。取值范围: true:表示切换弹性数据云盘计费模式 false:表示不切换弹性数据云盘计费模式 默认取值:true。</p><p>默认值:true</p>
|
|
2000
|
+
*/
|
|
2001
|
+
ModifyPortableDataDisk?: boolean;
|
|
1990
2002
|
}
|
|
1991
2003
|
/**
|
|
1992
2004
|
* DescribeHealthCheckPolicies返回参数结构体
|