tencentcloud-sdk-tke 3.0.1103 → 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 +31 -19
- 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?
|
@@ -18174,10 +18178,10 @@ module TencentCloud
|
|
18174
18178
|
|
18175
18179
|
# 集群日志开关集合
|
18176
18180
|
class Switch < TencentCloud::Common::AbstractModel
|
18177
|
-
# @param ClusterId: 集群ID
|
18178
|
-
# @type ClusterId: String
|
18179
18181
|
# @param Audit: 审计开关的详细信息
|
18180
18182
|
# @type Audit: :class:`Tencentcloud::Tke.v20180525.models.SwitchInfo`
|
18183
|
+
# @param ClusterId: 集群ID
|
18184
|
+
# @type ClusterId: String
|
18181
18185
|
# @param Event: 事件开关的详细信息
|
18182
18186
|
# @type Event: :class:`Tencentcloud::Tke.v20180525.models.SwitchInfo`
|
18183
18187
|
# @param Log: 普通日志的详细信息
|
@@ -18185,22 +18189,22 @@ module TencentCloud
|
|
18185
18189
|
# @param MasterLog: master 日志详细信息
|
18186
18190
|
# @type MasterLog: :class:`Tencentcloud::Tke.v20180525.models.SwitchInfo`
|
18187
18191
|
|
18188
|
-
attr_accessor :
|
18192
|
+
attr_accessor :Audit, :ClusterId, :Event, :Log, :MasterLog
|
18189
18193
|
|
18190
|
-
def initialize(
|
18191
|
-
@ClusterId = clusterid
|
18194
|
+
def initialize(audit=nil, clusterid=nil, event=nil, log=nil, masterlog=nil)
|
18192
18195
|
@Audit = audit
|
18196
|
+
@ClusterId = clusterid
|
18193
18197
|
@Event = event
|
18194
18198
|
@Log = log
|
18195
18199
|
@MasterLog = masterlog
|
18196
18200
|
end
|
18197
18201
|
|
18198
18202
|
def deserialize(params)
|
18199
|
-
@ClusterId = params['ClusterId']
|
18200
18203
|
unless params['Audit'].nil?
|
18201
18204
|
@Audit = SwitchInfo.new
|
18202
18205
|
@Audit.deserialize(params['Audit'])
|
18203
18206
|
end
|
18207
|
+
@ClusterId = params['ClusterId']
|
18204
18208
|
unless params['Event'].nil?
|
18205
18209
|
@Event = SwitchInfo.new
|
18206
18210
|
@Event.deserialize(params['Event'])
|
@@ -18220,35 +18224,43 @@ module TencentCloud
|
|
18220
18224
|
class SwitchInfo < TencentCloud::Common::AbstractModel
|
18221
18225
|
# @param Enable: 开启标识符 true代表开启
|
18222
18226
|
# @type Enable: Boolean
|
18227
|
+
# @param ErrorMsg: 获取日志状态失败时,返回错误信息
|
18228
|
+
# @type ErrorMsg: String
|
18223
18229
|
# @param LogsetId: CLS日志集ID
|
18224
18230
|
# @type LogsetId: String
|
18231
|
+
# @param Status: 日志主题状态,opened表示已开启,opening开启中,closed表示已关闭,closing 表示关闭中
|
18232
|
+
# @type Status: String
|
18225
18233
|
# @param TopicId: CLS日志主题ID
|
18226
18234
|
# @type TopicId: String
|
18227
|
-
# @param Version: 当前log-agent版本
|
18228
|
-
# @type Version: String
|
18229
|
-
# @param UpgradeAble: 是否可升级
|
18230
|
-
# @type UpgradeAble: Boolean
|
18231
18235
|
# @param TopicRegion: CLS日志主题所属region
|
18232
18236
|
# @type TopicRegion: String
|
18237
|
+
# @param UpgradeAble: 是否可升级
|
18238
|
+
# @type UpgradeAble: Boolean
|
18239
|
+
# @param Version: 当前log-agent版本
|
18240
|
+
# @type Version: String
|
18233
18241
|
|
18234
|
-
attr_accessor :Enable, :LogsetId, :TopicId, :
|
18242
|
+
attr_accessor :Enable, :ErrorMsg, :LogsetId, :Status, :TopicId, :TopicRegion, :UpgradeAble, :Version
|
18235
18243
|
|
18236
|
-
def initialize(enable=nil, logsetid=nil, topicid=nil,
|
18244
|
+
def initialize(enable=nil, errormsg=nil, logsetid=nil, status=nil, topicid=nil, topicregion=nil, upgradeable=nil, version=nil)
|
18237
18245
|
@Enable = enable
|
18246
|
+
@ErrorMsg = errormsg
|
18238
18247
|
@LogsetId = logsetid
|
18248
|
+
@Status = status
|
18239
18249
|
@TopicId = topicid
|
18240
|
-
@Version = version
|
18241
|
-
@UpgradeAble = upgradeable
|
18242
18250
|
@TopicRegion = topicregion
|
18251
|
+
@UpgradeAble = upgradeable
|
18252
|
+
@Version = version
|
18243
18253
|
end
|
18244
18254
|
|
18245
18255
|
def deserialize(params)
|
18246
18256
|
@Enable = params['Enable']
|
18257
|
+
@ErrorMsg = params['ErrorMsg']
|
18247
18258
|
@LogsetId = params['LogsetId']
|
18259
|
+
@Status = params['Status']
|
18248
18260
|
@TopicId = params['TopicId']
|
18249
|
-
@Version = params['Version']
|
18250
|
-
@UpgradeAble = params['UpgradeAble']
|
18251
18261
|
@TopicRegion = params['TopicRegion']
|
18262
|
+
@UpgradeAble = params['UpgradeAble']
|
18263
|
+
@Version = params['Version']
|
18252
18264
|
end
|
18253
18265
|
end
|
18254
18266
|
|
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
|