tencentcloud-sdk-tke 3.0.1123 → 3.0.1127

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35ee90ebc6c48939ac30b1d89ddf4cfa861e9988
4
- data.tar.gz: 36508519d6cf1cfc70ebacab2959f5aafc8c47d3
3
+ metadata.gz: 8745cedd3d63e89c89059ac87ccb99b96c2a9abe
4
+ data.tar.gz: f4aaa03159c28e2945b092bbcdc17a6d0c11b8d3
5
5
  SHA512:
6
- metadata.gz: 4124b1fdf30c70bb717f0b8c73eaa5473e3812449f72bcf259af30f274e114e829cc247bb1402847c9e6bb01d6008692b29f01b66a5e08ec8c030c1086480eea
7
- data.tar.gz: 9ddc9f9ae6d2d5dbff65c6f7689cfaf60e0d0c8525fcaa93fd5539c3dc2d9d9af48cdab50b77ec454d25e6c568ef75c8b6f1316e3f26873ac0589d446965d3ee
6
+ metadata.gz: bd89bfb5612395b016354a15f13be42abb1698f828b4a8ce8113842136ecd87095fff5840d77934ec4f2f0b9888807b97dddc89f6712f90de696282ef21ec42e
7
+ data.tar.gz: 69702b5129437fb65e890000a39e8e1ed4d06f906da2239764fa92fc84c59001945a82798cea93e995ed9c6468f878120f94d5ef666947392e73d1dd92c284bf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1123
1
+ 3.0.1127
@@ -1474,10 +1474,12 @@ module TencentCloud
1474
1474
  # - 容器网络插件为CiliumOverlay。
1475
1475
  # - 支持CDC的托管集群,且网络插件为VPC-CNI。
1476
1476
  # @type SubnetId: String
1477
+ # @param DataPlaneV2: 是否启用了 DataPlaneV2(cilium替代kube-proxy)
1478
+ # @type DataPlaneV2: Boolean
1477
1479
 
1478
- attr_accessor :ClusterCIDR, :IgnoreClusterCIDRConflict, :MaxNodePodNum, :MaxClusterServiceNum, :Ipvs, :VpcId, :Cni, :KubeProxyMode, :ServiceCIDR, :Subnets, :IgnoreServiceCIDRConflict, :IsDualStack, :Ipv6ServiceCIDR, :CiliumMode, :SubnetId
1480
+ attr_accessor :ClusterCIDR, :IgnoreClusterCIDRConflict, :MaxNodePodNum, :MaxClusterServiceNum, :Ipvs, :VpcId, :Cni, :KubeProxyMode, :ServiceCIDR, :Subnets, :IgnoreServiceCIDRConflict, :IsDualStack, :Ipv6ServiceCIDR, :CiliumMode, :SubnetId, :DataPlaneV2
1479
1481
 
1480
- def initialize(clustercidr=nil, ignoreclustercidrconflict=nil, maxnodepodnum=nil, maxclusterservicenum=nil, ipvs=nil, vpcid=nil, cni=nil, kubeproxymode=nil, servicecidr=nil, subnets=nil, ignoreservicecidrconflict=nil, isdualstack=nil, ipv6servicecidr=nil, ciliummode=nil, subnetid=nil)
1482
+ def initialize(clustercidr=nil, ignoreclustercidrconflict=nil, maxnodepodnum=nil, maxclusterservicenum=nil, ipvs=nil, vpcid=nil, cni=nil, kubeproxymode=nil, servicecidr=nil, subnets=nil, ignoreservicecidrconflict=nil, isdualstack=nil, ipv6servicecidr=nil, ciliummode=nil, subnetid=nil, dataplanev2=nil)
1481
1483
  @ClusterCIDR = clustercidr
1482
1484
  @IgnoreClusterCIDRConflict = ignoreclustercidrconflict
1483
1485
  @MaxNodePodNum = maxnodepodnum
@@ -1493,6 +1495,7 @@ module TencentCloud
1493
1495
  @Ipv6ServiceCIDR = ipv6servicecidr
1494
1496
  @CiliumMode = ciliummode
1495
1497
  @SubnetId = subnetid
1498
+ @DataPlaneV2 = dataplanev2
1496
1499
  end
1497
1500
 
1498
1501
  def deserialize(params)
@@ -1511,6 +1514,7 @@ module TencentCloud
1511
1514
  @Ipv6ServiceCIDR = params['Ipv6ServiceCIDR']
1512
1515
  @CiliumMode = params['CiliumMode']
1513
1516
  @SubnetId = params['SubnetId']
1517
+ @DataPlaneV2 = params['DataPlaneV2']
1514
1518
  end
1515
1519
  end
1516
1520
 
@@ -175,14 +175,18 @@ module TencentCloud
175
175
  # @type InternetAccessible: :class:`Tencentcloud::Tke.v20220501.models.InternetAccessible`
176
176
  # @param DataDisks: 原生节点池数据盘列表
177
177
  # @type DataDisks: Array
178
+ # @param QGPUEnable: qgpu开关
179
+ # @type QGPUEnable: Boolean
178
180
  # @param KeyIds: 节点池ssh公钥id数组
179
181
  # @type KeyIds: Array
180
182
  # @param MachineType: 节点池类型
181
183
  # @type MachineType: String
184
+ # @param AutomationService: 原生节点池安装节点自动化助手开关
185
+ # @type AutomationService: Boolean
182
186
 
183
- attr_accessor :Scaling, :SubnetIds, :InstanceChargeType, :SystemDisk, :InstanceTypes, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargePrepaid, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :Replicas, :InternetAccessible, :DataDisks, :KeyIds, :MachineType
187
+ attr_accessor :Scaling, :SubnetIds, :InstanceChargeType, :SystemDisk, :InstanceTypes, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargePrepaid, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :Replicas, :InternetAccessible, :DataDisks, :QGPUEnable, :KeyIds, :MachineType, :AutomationService
184
188
 
185
- def initialize(scaling=nil, subnetids=nil, instancechargetype=nil, systemdisk=nil, instancetypes=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargeprepaid=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, replicas=nil, internetaccessible=nil, datadisks=nil, keyids=nil, machinetype=nil)
189
+ def initialize(scaling=nil, subnetids=nil, instancechargetype=nil, systemdisk=nil, instancetypes=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargeprepaid=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, replicas=nil, internetaccessible=nil, datadisks=nil, qgpuenable=nil, keyids=nil, machinetype=nil, automationservice=nil)
186
190
  @Scaling = scaling
187
191
  @SubnetIds = subnetids
188
192
  @InstanceChargeType = instancechargetype
@@ -202,8 +206,10 @@ module TencentCloud
202
206
  @Replicas = replicas
203
207
  @InternetAccessible = internetaccessible
204
208
  @DataDisks = datadisks
209
+ @QGPUEnable = qgpuenable
205
210
  @KeyIds = keyids
206
211
  @MachineType = machinetype
212
+ @AutomationService = automationservice
207
213
  end
208
214
 
209
215
  def deserialize(params)
@@ -254,8 +260,10 @@ module TencentCloud
254
260
  @DataDisks << datadisk_tmp
255
261
  end
256
262
  end
263
+ @QGPUEnable = params['QGPUEnable']
257
264
  @KeyIds = params['KeyIds']
258
265
  @MachineType = params['MachineType']
266
+ @AutomationService = params['AutomationService']
259
267
  end
260
268
  end
261
269
 
@@ -277,7 +285,7 @@ module TencentCloud
277
285
  # @type DeletionProtection: Boolean
278
286
  # @param Unschedulable: 节点是否默认不可调度
279
287
  # @type Unschedulable: Boolean
280
- # @param Native: 原生节点池创建参数
288
+ # @param Native: 原生节点池创建参数(Type字段设置为Native时需填写)
281
289
  # @type Native: :class:`Tencentcloud::Tke.v20220501.models.CreateNativeNodePoolParam`
282
290
  # @param Annotations: 节点 Annotation 列表
283
291
  # @type Annotations: Array
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1123
4
+ version: 3.0.1127
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-14 00:00:00.000000000 Z
11
+ date: 2025-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common