tencentcloud-sdk-tke 3.0.1107 → 3.0.1123
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180525/models.rb +7 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35ee90ebc6c48939ac30b1d89ddf4cfa861e9988
|
4
|
+
data.tar.gz: 36508519d6cf1cfc70ebacab2959f5aafc8c47d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4124b1fdf30c70bb717f0b8c73eaa5473e3812449f72bcf259af30f274e114e829cc247bb1402847c9e6bb01d6008692b29f01b66a5e08ec8c030c1086480eea
|
7
|
+
data.tar.gz: 9ddc9f9ae6d2d5dbff65c6f7689cfaf60e0d0c8525fcaa93fd5539c3dc2d9d9af48cdab50b77ec454d25e6c568ef75c8b6f1316e3f26873ac0589d446965d3ee
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1123
|
data/lib/v20180525/models.rb
CHANGED
@@ -875,6 +875,8 @@ module TencentCloud
|
|
875
875
|
# @type CiliumMode: String
|
876
876
|
# @param ContainerRuntime: 集群使用的runtime类型,包括"docker"和"containerd"两种类型,默认为"docker"
|
877
877
|
# @type ContainerRuntime: String
|
878
|
+
# @param DataPlaneV2: 是否启用 DataPlaneV2(cilium替代kube-proxy)
|
879
|
+
# @type DataPlaneV2: Boolean
|
878
880
|
# @param DeletionProtection: 是否启用集群删除保护
|
879
881
|
# @type DeletionProtection: Boolean
|
880
882
|
# @param EnableCustomizedPodCIDR: 是否开节点podCIDR大小的自定义模式
|
@@ -897,7 +899,7 @@ module TencentCloud
|
|
897
899
|
# 1. 集群版本必须为1.14及以上;
|
898
900
|
# 2. 系统镜像必须是: Tencent Linux 2.4;
|
899
901
|
# @type KubeProxyMode: String
|
900
|
-
# @param NetworkType:
|
902
|
+
# @param NetworkType: 集群网络类型。包括GR(全局路由)和VPC-CNI两种模式,默认为GR。
|
901
903
|
# @type NetworkType: String
|
902
904
|
# @param NodeNameType: 集群中节点NodeName类型(包括 hostname,lan-ip两种形式,默认为lan-ip。如果开启了hostname模式,创建节点时需要设置HostName参数,并且InstanceName需要和HostName一致)
|
903
905
|
# @type NodeNameType: String
|
@@ -908,9 +910,9 @@ module TencentCloud
|
|
908
910
|
# @param VpcCniType: 区分共享网卡多IP模式和独立网卡模式,共享网卡多 IP 模式填写"tke-route-eni",独立网卡模式填写"tke-direct-eni",默认为共享网卡模式
|
909
911
|
# @type VpcCniType: String
|
910
912
|
|
911
|
-
attr_accessor :AsEnabled, :AuditEnabled, :AuditLogTopicId, :AuditLogsetId, :BasePodNumber, :CiliumMode, :ContainerRuntime, :DeletionProtection, :EnableCustomizedPodCIDR, :EtcdOverrideConfigs, :ExtraArgs, :IPVS, :IsDualStack, :IsNonStaticIpMode, :KubeProxyMode, :NetworkType, :NodeNameType, :QGPUShareEnable, :RuntimeVersion, :VpcCniType
|
913
|
+
attr_accessor :AsEnabled, :AuditEnabled, :AuditLogTopicId, :AuditLogsetId, :BasePodNumber, :CiliumMode, :ContainerRuntime, :DataPlaneV2, :DeletionProtection, :EnableCustomizedPodCIDR, :EtcdOverrideConfigs, :ExtraArgs, :IPVS, :IsDualStack, :IsNonStaticIpMode, :KubeProxyMode, :NetworkType, :NodeNameType, :QGPUShareEnable, :RuntimeVersion, :VpcCniType
|
912
914
|
|
913
|
-
def initialize(asenabled=nil, auditenabled=nil, auditlogtopicid=nil, auditlogsetid=nil, basepodnumber=nil, ciliummode=nil, containerruntime=nil, deletionprotection=nil, enablecustomizedpodcidr=nil, etcdoverrideconfigs=nil, extraargs=nil, ipvs=nil, isdualstack=nil, isnonstaticipmode=nil, kubeproxymode=nil, networktype=nil, nodenametype=nil, qgpushareenable=nil, runtimeversion=nil, vpccnitype=nil)
|
915
|
+
def initialize(asenabled=nil, auditenabled=nil, auditlogtopicid=nil, auditlogsetid=nil, basepodnumber=nil, ciliummode=nil, containerruntime=nil, dataplanev2=nil, deletionprotection=nil, enablecustomizedpodcidr=nil, etcdoverrideconfigs=nil, extraargs=nil, ipvs=nil, isdualstack=nil, isnonstaticipmode=nil, kubeproxymode=nil, networktype=nil, nodenametype=nil, qgpushareenable=nil, runtimeversion=nil, vpccnitype=nil)
|
914
916
|
@AsEnabled = asenabled
|
915
917
|
@AuditEnabled = auditenabled
|
916
918
|
@AuditLogTopicId = auditlogtopicid
|
@@ -918,6 +920,7 @@ module TencentCloud
|
|
918
920
|
@BasePodNumber = basepodnumber
|
919
921
|
@CiliumMode = ciliummode
|
920
922
|
@ContainerRuntime = containerruntime
|
923
|
+
@DataPlaneV2 = dataplanev2
|
921
924
|
@DeletionProtection = deletionprotection
|
922
925
|
@EnableCustomizedPodCIDR = enablecustomizedpodcidr
|
923
926
|
@EtcdOverrideConfigs = etcdoverrideconfigs
|
@@ -941,6 +944,7 @@ module TencentCloud
|
|
941
944
|
@BasePodNumber = params['BasePodNumber']
|
942
945
|
@CiliumMode = params['CiliumMode']
|
943
946
|
@ContainerRuntime = params['ContainerRuntime']
|
947
|
+
@DataPlaneV2 = params['DataPlaneV2']
|
944
948
|
@DeletionProtection = params['DeletionProtection']
|
945
949
|
@EnableCustomizedPodCIDR = params['EnableCustomizedPodCIDR']
|
946
950
|
unless params['EtcdOverrideConfigs'].nil?
|
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.
|
4
|
+
version: 3.0.1123
|
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-
|
11
|
+
date: 2025-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|