tencentcloud-sdk-tke 3.0.559 → 3.0.560
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180525/models.rb +15 -4
- 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: 61303b1da355015f058af055a3936ce7ef16c27a
|
4
|
+
data.tar.gz: 62d1ba9741a405b8c53d9f4bc5f48054c8bc4083
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d60fb801e7f2029ab4901d0ff9c02b7d9fa34fc6b5960da781c7a2f143391322d0a90a4db9df9d27eee090d8b169483265283d6fa476ff0a8dec2621341c7ae
|
7
|
+
data.tar.gz: 74693b10f44349cbf97a208618e71f067ea41de982ba86a64f9f7a834984c27ea707060ec57fe812e29a5099e2790f7dfeee1529ba690a734266e46d74333a6d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.560
|
data/lib/v20180525/models.rb
CHANGED
@@ -3472,10 +3472,12 @@ module TencentCloud
|
|
3472
3472
|
# @type EdgeVersion: String
|
3473
3473
|
# @param RegistryPrefix: 边缘组件镜像仓库前缀
|
3474
3474
|
# @type RegistryPrefix: String
|
3475
|
+
# @param TagSpecification: 集群绑定的云标签
|
3476
|
+
# @type TagSpecification: :class:`Tencentcloud::Tke.v20180525.models.TagSpecification`
|
3475
3477
|
|
3476
|
-
attr_accessor :K8SVersion, :VpcId, :ClusterName, :PodCIDR, :ServiceCIDR, :ClusterDesc, :ClusterAdvancedSettings, :MaxNodePodNum, :PublicLB, :ClusterLevel, :AutoUpgradeClusterLevel, :ChargeType, :EdgeVersion, :RegistryPrefix
|
3478
|
+
attr_accessor :K8SVersion, :VpcId, :ClusterName, :PodCIDR, :ServiceCIDR, :ClusterDesc, :ClusterAdvancedSettings, :MaxNodePodNum, :PublicLB, :ClusterLevel, :AutoUpgradeClusterLevel, :ChargeType, :EdgeVersion, :RegistryPrefix, :TagSpecification
|
3477
3479
|
|
3478
|
-
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)
|
3480
|
+
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, tagspecification=nil)
|
3479
3481
|
@K8SVersion = k8sversion
|
3480
3482
|
@VpcId = vpcid
|
3481
3483
|
@ClusterName = clustername
|
@@ -3490,6 +3492,7 @@ module TencentCloud
|
|
3490
3492
|
@ChargeType = chargetype
|
3491
3493
|
@EdgeVersion = edgeversion
|
3492
3494
|
@RegistryPrefix = registryprefix
|
3495
|
+
@TagSpecification = tagspecification
|
3493
3496
|
end
|
3494
3497
|
|
3495
3498
|
def deserialize(params)
|
@@ -3513,6 +3516,10 @@ module TencentCloud
|
|
3513
3516
|
@ChargeType = params['ChargeType']
|
3514
3517
|
@EdgeVersion = params['EdgeVersion']
|
3515
3518
|
@RegistryPrefix = params['RegistryPrefix']
|
3519
|
+
unless params['TagSpecification'].nil?
|
3520
|
+
@TagSpecification = TagSpecification.new
|
3521
|
+
@TagSpecification.deserialize(params['TagSpecification'])
|
3522
|
+
end
|
3516
3523
|
end
|
3517
3524
|
end
|
3518
3525
|
|
@@ -8630,12 +8637,14 @@ module TencentCloud
|
|
8630
8637
|
# @type Health: String
|
8631
8638
|
# @param GridDaemon: 是否部署GridDaemon以支持headless service
|
8632
8639
|
# @type GridDaemon: String
|
8640
|
+
# @param UnitCluster: 公网访问kins集群
|
8641
|
+
# @type UnitCluster: String
|
8633
8642
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
8634
8643
|
# @type RequestId: String
|
8635
8644
|
|
8636
|
-
attr_accessor :Addresses, :Credential, :PublicLB, :InternalLB, :CoreDns, :HealthRegion, :Health, :GridDaemon, :RequestId
|
8645
|
+
attr_accessor :Addresses, :Credential, :PublicLB, :InternalLB, :CoreDns, :HealthRegion, :Health, :GridDaemon, :UnitCluster, :RequestId
|
8637
8646
|
|
8638
|
-
def initialize(addresses=nil, credential=nil, publiclb=nil, internallb=nil, coredns=nil, healthregion=nil, health=nil, griddaemon=nil, requestid=nil)
|
8647
|
+
def initialize(addresses=nil, credential=nil, publiclb=nil, internallb=nil, coredns=nil, healthregion=nil, health=nil, griddaemon=nil, unitcluster=nil, requestid=nil)
|
8639
8648
|
@Addresses = addresses
|
8640
8649
|
@Credential = credential
|
8641
8650
|
@PublicLB = publiclb
|
@@ -8644,6 +8653,7 @@ module TencentCloud
|
|
8644
8653
|
@HealthRegion = healthregion
|
8645
8654
|
@Health = health
|
8646
8655
|
@GridDaemon = griddaemon
|
8656
|
+
@UnitCluster = unitcluster
|
8647
8657
|
@RequestId = requestid
|
8648
8658
|
end
|
8649
8659
|
|
@@ -8672,6 +8682,7 @@ module TencentCloud
|
|
8672
8682
|
@HealthRegion = params['HealthRegion']
|
8673
8683
|
@Health = params['Health']
|
8674
8684
|
@GridDaemon = params['GridDaemon']
|
8685
|
+
@UnitCluster = params['UnitCluster']
|
8675
8686
|
@RequestId = params['RequestId']
|
8676
8687
|
end
|
8677
8688
|
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.560
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|