tencentcloud-sdk-tke 3.0.418 → 3.0.420
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/client.rb +1 -1
- data/lib/v20180525/models.rb +28 -5
- 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: fd83046199d5257fb0cd3c8336507c9e379a4511
|
4
|
+
data.tar.gz: acc9b6c26bcb34335bbdfb809f1e4453caa5e0e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2d6b6de928f4ba1b107451ddd2ec47115921f03a4b22e79ba2235fd7facf4fab1fc4a692206972b33911fc55a9990482941586727d2dc73be42f0ef7900345e
|
7
|
+
data.tar.gz: 903a5b8c2de669940ff64974282f8bbbda849a1aa8c68c412e056d8945da1338eaef9f49f0c82f6e9acf61053a40220c1be81c5964685149164c689bdb232cde
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.420
|
data/lib/v20180525/client.rb
CHANGED
@@ -1373,7 +1373,7 @@ module TencentCloud
|
|
1373
1373
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1374
1374
|
end
|
1375
1375
|
|
1376
|
-
#
|
1376
|
+
# 边缘计算支持版本和k8s版本
|
1377
1377
|
|
1378
1378
|
# @param request: Request instance for DescribeAvailableTKEEdgeVersion.
|
1379
1379
|
# @type request: :class:`Tencentcloud::tke::V20180525::DescribeAvailableTKEEdgeVersionRequest`
|
data/lib/v20180525/models.rb
CHANGED
@@ -3080,10 +3080,14 @@ module TencentCloud
|
|
3080
3080
|
# @type AutoUpgradeClusterLevel: Boolean
|
3081
3081
|
# @param ChargeType: 集群计费方式
|
3082
3082
|
# @type ChargeType: String
|
3083
|
+
# @param EdgeVersion: 边缘集群版本,此版本区别于k8s版本,是整个集群各组件版本集合
|
3084
|
+
# @type EdgeVersion: String
|
3085
|
+
# @param RegistryPrefix: 边缘组件镜像仓库前缀
|
3086
|
+
# @type RegistryPrefix: String
|
3083
3087
|
|
3084
|
-
attr_accessor :K8SVersion, :VpcId, :ClusterName, :PodCIDR, :ServiceCIDR, :ClusterDesc, :ClusterAdvancedSettings, :MaxNodePodNum, :PublicLB, :ClusterLevel, :AutoUpgradeClusterLevel, :ChargeType
|
3088
|
+
attr_accessor :K8SVersion, :VpcId, :ClusterName, :PodCIDR, :ServiceCIDR, :ClusterDesc, :ClusterAdvancedSettings, :MaxNodePodNum, :PublicLB, :ClusterLevel, :AutoUpgradeClusterLevel, :ChargeType, :EdgeVersion, :RegistryPrefix
|
3085
3089
|
|
3086
|
-
def initialize(k8sversion=nil, vpcid=nil, clustername=nil, podcidr=nil, servicecidr=nil, clusterdesc=nil, clusteradvancedsettings=nil, maxnodepodnum=nil, publiclb=nil, clusterlevel=nil, autoupgradeclusterlevel=nil, chargetype=nil)
|
3090
|
+
def initialize(k8sversion=nil, vpcid=nil, clustername=nil, podcidr=nil, servicecidr=nil, clusterdesc=nil, clusteradvancedsettings=nil, maxnodepodnum=nil, publiclb=nil, clusterlevel=nil, autoupgradeclusterlevel=nil, chargetype=nil, edgeversion=nil, registryprefix=nil)
|
3087
3091
|
@K8SVersion = k8sversion
|
3088
3092
|
@VpcId = vpcid
|
3089
3093
|
@ClusterName = clustername
|
@@ -3096,6 +3100,8 @@ module TencentCloud
|
|
3096
3100
|
@ClusterLevel = clusterlevel
|
3097
3101
|
@AutoUpgradeClusterLevel = autoupgradeclusterlevel
|
3098
3102
|
@ChargeType = chargetype
|
3103
|
+
@EdgeVersion = edgeversion
|
3104
|
+
@RegistryPrefix = registryprefix
|
3099
3105
|
end
|
3100
3106
|
|
3101
3107
|
def deserialize(params)
|
@@ -3117,6 +3123,8 @@ module TencentCloud
|
|
3117
3123
|
@ClusterLevel = params['ClusterLevel']
|
3118
3124
|
@AutoUpgradeClusterLevel = params['AutoUpgradeClusterLevel']
|
3119
3125
|
@ChargeType = params['ChargeType']
|
3126
|
+
@EdgeVersion = params['EdgeVersion']
|
3127
|
+
@RegistryPrefix = params['RegistryPrefix']
|
3120
3128
|
end
|
3121
3129
|
end
|
3122
3130
|
|
@@ -4233,12 +4241,17 @@ module TencentCloud
|
|
4233
4241
|
|
4234
4242
|
# DescribeAvailableTKEEdgeVersion请求参数结构体
|
4235
4243
|
class DescribeAvailableTKEEdgeVersionRequest < TencentCloud::Common::AbstractModel
|
4244
|
+
# @param ClusterId: 填写ClusterId获取当前集群各个组件版本和最新版本
|
4245
|
+
# @type ClusterId: String
|
4236
4246
|
|
4247
|
+
attr_accessor :ClusterId
|
4237
4248
|
|
4238
|
-
def initialize()
|
4249
|
+
def initialize(clusterid=nil)
|
4250
|
+
@ClusterId = clusterid
|
4239
4251
|
end
|
4240
4252
|
|
4241
4253
|
def deserialize(params)
|
4254
|
+
@ClusterId = params['ClusterId']
|
4242
4255
|
end
|
4243
4256
|
end
|
4244
4257
|
|
@@ -4246,18 +4259,28 @@ module TencentCloud
|
|
4246
4259
|
class DescribeAvailableTKEEdgeVersionResponse < TencentCloud::Common::AbstractModel
|
4247
4260
|
# @param Versions: 版本列表
|
4248
4261
|
# @type Versions: Array
|
4262
|
+
# @param EdgeVersionLatest: 边缘集群最新版本
|
4263
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4264
|
+
# @type EdgeVersionLatest: String
|
4265
|
+
# @param EdgeVersionCurrent: 边缘集群当前版本
|
4266
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4267
|
+
# @type EdgeVersionCurrent: String
|
4249
4268
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4250
4269
|
# @type RequestId: String
|
4251
4270
|
|
4252
|
-
attr_accessor :Versions, :RequestId
|
4271
|
+
attr_accessor :Versions, :EdgeVersionLatest, :EdgeVersionCurrent, :RequestId
|
4253
4272
|
|
4254
|
-
def initialize(versions=nil, requestid=nil)
|
4273
|
+
def initialize(versions=nil, edgeversionlatest=nil, edgeversioncurrent=nil, requestid=nil)
|
4255
4274
|
@Versions = versions
|
4275
|
+
@EdgeVersionLatest = edgeversionlatest
|
4276
|
+
@EdgeVersionCurrent = edgeversioncurrent
|
4256
4277
|
@RequestId = requestid
|
4257
4278
|
end
|
4258
4279
|
|
4259
4280
|
def deserialize(params)
|
4260
4281
|
@Versions = params['Versions']
|
4282
|
+
@EdgeVersionLatest = params['EdgeVersionLatest']
|
4283
|
+
@EdgeVersionCurrent = params['EdgeVersionCurrent']
|
4261
4284
|
@RequestId = params['RequestId']
|
4262
4285
|
end
|
4263
4286
|
end
|
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.420
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|