tencentcloud-sdk-tke 3.0.1077 → 3.0.1079

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180525/models.rb +24 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8fef4c623178e4630e0d4ac63ef00dbef3526c91
4
- data.tar.gz: bc3d793312524b4544544a9d7b0f4a76dc4ab747
3
+ metadata.gz: 9950fa5b72b33a3feceaa338549b9324a261831b
4
+ data.tar.gz: 570d2fb51abf67bdc07b0b4945e3009aaa5751fe
5
5
  SHA512:
6
- metadata.gz: d00103fc27ab8160e76a53f32630b79f0e145d21c29b7745085828cea575ae4c3646097a96eefa1d4360a8f941b0246c2d45d32eae837809c79bf4e07eaa0dbd
7
- data.tar.gz: 0f2ae270ca7850a3368bed26aa4d9a53fade9f94716bee21a8c320d5da969ab3623b0236923a20807e4bdf5ebbe12def3c735270163f5f866c4ae1aab55d21e7
6
+ metadata.gz: 81c612097a60ba6d8a97fd2992bad21bf917ef72a9e0b19110e25102862c3c9c66624b6f08500dce8f994cf39051e61bb9b3c40bb61f86dff91472dc8e0042f1
7
+ data.tar.gz: 552e46cbe627f62af296b02dd003cb79f27ac0a94ae335f358adf2d754fe672fb438488b894df730c4429da337136c05653d75fa7ccbca2151e796f204d7ba00
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1077
1
+ 3.0.1079
@@ -1927,16 +1927,19 @@ module TencentCloud
1927
1927
  # VipIsp含义:CMCC | CTCC | CUCC,分别对应 移动 | 电信 | 联通,如果不指定本参数,则默认使用BGP。可通过 DescribeSingleIsp 接口查询一个地域所支持的Isp。如果指定运营商,则网络计费式只能使用按带宽包计费BANDWIDTH_PACKAGE。
1928
1928
  # BandwidthPackageId含义:带宽包ID,指定此参数时,网络计费方式InternetAccessible.InternetChargeType只支持按带宽包计费BANDWIDTH_PACKAGE。
1929
1929
  # @type ExtensiveParameters: String
1930
+ # @param ExistedLoadBalancerId: 使用已有clb开启内网或外网访问
1931
+ # @type ExistedLoadBalancerId: String
1930
1932
 
1931
- attr_accessor :ClusterId, :SubnetId, :IsExtranet, :Domain, :SecurityGroup, :ExtensiveParameters
1933
+ attr_accessor :ClusterId, :SubnetId, :IsExtranet, :Domain, :SecurityGroup, :ExtensiveParameters, :ExistedLoadBalancerId
1932
1934
 
1933
- def initialize(clusterid=nil, subnetid=nil, isextranet=nil, domain=nil, securitygroup=nil, extensiveparameters=nil)
1935
+ def initialize(clusterid=nil, subnetid=nil, isextranet=nil, domain=nil, securitygroup=nil, extensiveparameters=nil, existedloadbalancerid=nil)
1934
1936
  @ClusterId = clusterid
1935
1937
  @SubnetId = subnetid
1936
1938
  @IsExtranet = isextranet
1937
1939
  @Domain = domain
1938
1940
  @SecurityGroup = securitygroup
1939
1941
  @ExtensiveParameters = extensiveparameters
1942
+ @ExistedLoadBalancerId = existedloadbalancerid
1940
1943
  end
1941
1944
 
1942
1945
  def deserialize(params)
@@ -1946,6 +1949,7 @@ module TencentCloud
1946
1949
  @Domain = params['Domain']
1947
1950
  @SecurityGroup = params['SecurityGroup']
1948
1951
  @ExtensiveParameters = params['ExtensiveParameters']
1952
+ @ExistedLoadBalancerId = params['ExistedLoadBalancerId']
1949
1953
  end
1950
1954
  end
1951
1955
 
@@ -17995,15 +17999,27 @@ module TencentCloud
17995
17999
  # @type Memory: Float
17996
18000
  # @param Gpu: 节点上的总 GPU 卡数
17997
18001
  # @type Gpu: Float
18002
+ # @param QuotaType: 节点资源的配额类型,exact表示精确配额,fuzzy 表示模糊配额。
18003
+ # @type QuotaType: String
18004
+ # @param ChargeType: 配额的计费类型,PREPAID表示包月,POSTPAID_BY_HOUR表示按量。
18005
+ # @type ChargeType: String
18006
+ # @param ResourceType: QuotaType为 exact 时,此字段有效,表示精确配额的资源类型。
18007
+ # @type ResourceType: String
18008
+ # @param DisasterRecoverGroupId: 置放群组 ID
18009
+ # @type DisasterRecoverGroupId: String
17998
18010
 
17999
- attr_accessor :NodeName, :Num, :Cpu, :Memory, :Gpu
18011
+ attr_accessor :NodeName, :Num, :Cpu, :Memory, :Gpu, :QuotaType, :ChargeType, :ResourceType, :DisasterRecoverGroupId
18000
18012
 
18001
- def initialize(nodename=nil, num=nil, cpu=nil, memory=nil, gpu=nil)
18013
+ def initialize(nodename=nil, num=nil, cpu=nil, memory=nil, gpu=nil, quotatype=nil, chargetype=nil, resourcetype=nil, disasterrecovergroupid=nil)
18002
18014
  @NodeName = nodename
18003
18015
  @Num = num
18004
18016
  @Cpu = cpu
18005
18017
  @Memory = memory
18006
18018
  @Gpu = gpu
18019
+ @QuotaType = quotatype
18020
+ @ChargeType = chargetype
18021
+ @ResourceType = resourcetype
18022
+ @DisasterRecoverGroupId = disasterrecovergroupid
18007
18023
  end
18008
18024
 
18009
18025
  def deserialize(params)
@@ -18012,6 +18028,10 @@ module TencentCloud
18012
18028
  @Cpu = params['Cpu']
18013
18029
  @Memory = params['Memory']
18014
18030
  @Gpu = params['Gpu']
18031
+ @QuotaType = params['QuotaType']
18032
+ @ChargeType = params['ChargeType']
18033
+ @ResourceType = params['ResourceType']
18034
+ @DisasterRecoverGroupId = params['DisasterRecoverGroupId']
18015
18035
  end
18016
18036
  end
18017
18037
 
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.1077
4
+ version: 3.0.1079
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-06-09 00:00:00.000000000 Z
11
+ date: 2025-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common