tencentcloud-sdk-nodejs-tke 4.1.66 → 4.1.68

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tke",
3
- "version": "4.1.66",
3
+ "version": "4.1.68",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1554,11 +1554,11 @@ export interface DescribeEncryptionStatusRequest {
1554
1554
  */
1555
1555
  export interface DeleteClusterVirtualNodePoolRequest {
1556
1556
  /**
1557
- * 集群ID
1557
+ * 集群ID,通过DescribeClusters接口获取
1558
1558
  */
1559
1559
  ClusterId: string;
1560
1560
  /**
1561
- * 超级节点池ID列表
1561
+ * 节点池ID,通过DescribeNodePools接口获取
1562
1562
  */
1563
1563
  NodePoolIds: Array<string>;
1564
1564
  /**
@@ -2419,6 +2419,9 @@ export interface VirtualNodePool {
2419
2419
  Name?: string;
2420
2420
  /**
2421
2421
  * 节点池生命周期
2422
+ - creating:创建中
2423
+ - normal:正常
2424
+ - updating:更新中
2422
2425
  */
2423
2426
  LifeState?: string;
2424
2427
  /**
@@ -2799,11 +2802,11 @@ export interface DeleteClusterEndpointRequest {
2799
2802
  */
2800
2803
  export interface DeleteClusterVirtualNodeRequest {
2801
2804
  /**
2802
- * 集群ID
2805
+ * 集群ID,通过DescribeClusters接口获取
2803
2806
  */
2804
2807
  ClusterId: string;
2805
2808
  /**
2806
- * 虚拟节点列表
2809
+ * 虚拟节点ID列表
2807
2810
  */
2808
2811
  NodeNames: Array<string>;
2809
2812
  /**
@@ -4143,23 +4146,23 @@ export interface ResourceUsage {
4143
4146
  */
4144
4147
  export interface CreateClusterVirtualNodeRequest {
4145
4148
  /**
4146
- * 集群ID
4149
+ * 集群ID,通过DescribeClusters接口获取
4147
4150
  */
4148
4151
  ClusterId: string;
4149
4152
  /**
4150
- * 虚拟节点所属节点池
4153
+ * 虚拟节点所属节点池,通过DescribeNodePools接口获取
4151
4154
  */
4152
4155
  NodePoolId: string;
4153
4156
  /**
4154
- * 虚拟节点所属子网
4157
+ * 虚拟节点所属子网,SubnetId、SubnetIds、VirtualNodes必选一个。
4155
4158
  */
4156
4159
  SubnetId?: string;
4157
4160
  /**
4158
- * 虚拟节点子网ID列表,和参数SubnetId互斥
4161
+ * 虚拟节点子网ID列表,SubnetId、SubnetIds、VirtualNodes必选一个。
4159
4162
  */
4160
4163
  SubnetIds?: Array<string>;
4161
4164
  /**
4162
- * 虚拟节点列表
4165
+ * 虚拟节点列表,SubnetId、SubnetIds、VirtualNodes必选一个。
4163
4166
  */
4164
4167
  VirtualNodes?: Array<VirtualNodeSpec>;
4165
4168
  }
@@ -4612,6 +4615,10 @@ export interface CreateClusterRequest {
4612
4615
  * 本地专用集群Id
4613
4616
  */
4614
4617
  CdcId?: string;
4618
+ /**
4619
+ * 屏蔽安装指定Addon组件,填写相应的AddonName
4620
+ */
4621
+ DisableAddons?: Array<string>;
4615
4622
  }
4616
4623
  /**
4617
4624
  * CreateEdgeCVMInstances请求参数结构体
@@ -6543,7 +6550,7 @@ export interface InstanceUpgradeProgressItem {
6543
6550
  */
6544
6551
  export interface DescribeClusterVirtualNodePoolsRequest {
6545
6552
  /**
6546
- * 集群ID
6553
+ * 集群ID,通过DescribeClusters接口获取
6547
6554
  */
6548
6555
  ClusterId: string;
6549
6556
  }
@@ -6750,15 +6757,15 @@ export interface DNSConfigOption {
6750
6757
  */
6751
6758
  export interface DescribeClusterVirtualNodeRequest {
6752
6759
  /**
6753
- * 集群ID
6760
+ * 集群ID,通过DescribeClusters接口获取
6754
6761
  */
6755
6762
  ClusterId: string;
6756
6763
  /**
6757
- * 节点池ID
6764
+ * 节点池ID,通过DescribeNodePools接口获取
6758
6765
  */
6759
6766
  NodePoolId?: string;
6760
6767
  /**
6761
- * 节点名称
6768
+ * 节点名称,可搜索DescribeClusterVirtualNode接口节点
6762
6769
  */
6763
6770
  NodeNames?: Array<string>;
6764
6771
  }
@@ -7075,7 +7082,7 @@ export interface ForwardTKEEdgeApplicationRequestV3Response {
7075
7082
  */
7076
7083
  export interface CreateClusterVirtualNodePoolRequest {
7077
7084
  /**
7078
- * 集群Id
7085
+ * 集群ID,通过DescribeClusters接口获取
7079
7086
  */
7080
7087
  ClusterId: string;
7081
7088
  /**
@@ -7087,7 +7094,7 @@ export interface CreateClusterVirtualNodePoolRequest {
7087
7094
  */
7088
7095
  SubnetIds?: Array<string>;
7089
7096
  /**
7090
- * 安全组ID列表
7097
+ * 安全组ID列表,必选参数
7091
7098
  */
7092
7099
  SecurityGroupIds?: Array<string>;
7093
7100
  /**
@@ -7103,7 +7110,7 @@ export interface CreateClusterVirtualNodePoolRequest {
7103
7110
  */
7104
7111
  VirtualNodes?: Array<VirtualNodeSpec>;
7105
7112
  /**
7106
- * 删除保护开关
7113
+ * 删除保护开关,默认关闭
7107
7114
  */
7108
7115
  DeletionProtection?: boolean;
7109
7116
  /**
@@ -7736,11 +7743,11 @@ export interface RestartEKSContainerInstancesRequest {
7736
7743
  */
7737
7744
  export interface DrainClusterVirtualNodeRequest {
7738
7745
  /**
7739
- * 集群ID
7746
+ * 集群ID,通过DescribeClusters接口获取
7740
7747
  */
7741
7748
  ClusterId: string;
7742
7749
  /**
7743
- * 节点名
7750
+ * 节点ID
7744
7751
  */
7745
7752
  NodeName: string;
7746
7753
  }
@@ -10092,31 +10099,31 @@ export interface UpdateAddonRequest {
10092
10099
  */
10093
10100
  export interface ModifyClusterVirtualNodePoolRequest {
10094
10101
  /**
10095
- * 集群ID
10102
+ * 集群ID,通过DescribeClusters接口获取
10096
10103
  */
10097
10104
  ClusterId: string;
10098
10105
  /**
10099
- * 节点池ID
10106
+ * 节点池ID,通过DescribeNodePools接口获取
10100
10107
  */
10101
10108
  NodePoolId: string;
10102
10109
  /**
10103
- * 节点池名称
10110
+ * 节点池名称,必须修改至少一个参数
10104
10111
  */
10105
10112
  Name?: string;
10106
10113
  /**
10107
- * 安全组ID列表
10114
+ * 安全组ID列表,必须修改至少一个参数
10108
10115
  */
10109
10116
  SecurityGroupIds?: Array<string>;
10110
10117
  /**
10111
- * 虚拟节点label
10118
+ * 虚拟节点label,必须修改至少一个参数
10112
10119
  */
10113
10120
  Labels?: Array<Label>;
10114
10121
  /**
10115
- * 虚拟节点taint
10122
+ * 虚拟节点taint,必须修改至少一个参数
10116
10123
  */
10117
10124
  Taints?: Array<Taint>;
10118
10125
  /**
10119
- * 删除保护开关
10126
+ * 删除保护开关,必须修改至少一个参数
10120
10127
  */
10121
10128
  DeletionProtection?: boolean;
10122
10129
  }
@@ -10339,7 +10346,7 @@ export interface EnableEventPersistenceResponse {
10339
10346
  */
10340
10347
  export interface VirtualNodeSpec {
10341
10348
  /**
10342
- * 节点展示名称
10349
+ * 节点展示名称,建议不超过20个字符
10343
10350
  */
10344
10351
  DisplayName: string;
10345
10352
  /**
@@ -10632,7 +10639,9 @@ export interface ClusterBasicSettings {
10632
10639
  */
10633
10640
  NeedWorkSecurityGroup?: boolean;
10634
10641
  /**
10635
- * 当选择Cilium Overlay网络插件时,TKE会从该子网获取2个IP用来创建内网负载均衡
10642
+ * 控制面子网信息,仅在以下场景使用时要求必填。
10643
+ - 容器网络插件为CiliumOverlay时,TKE会从该子网获取2个IP用来创建内网负载均衡。
10644
+ - 创建支持CDC的托管集群,且网络插件为VPC-CNI时,要求预留至少12个IP。
10636
10645
  */
10637
10646
  SubnetId?: string;
10638
10647
  /**