tencentcloud-sdk-tke 3.0.492 → 3.0.493

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180525/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 52425356886e07ce4a70ac94b663a860feb79d2a
4
- data.tar.gz: 74bc0f9f622bd5718643283cdb20cebb6a3e48b2
3
+ metadata.gz: b4b0f9a041bf1470c25568e5df10509d0411adf7
4
+ data.tar.gz: a78b0fcc2a97ae7c218055048a6fbacfde5b5db3
5
5
  SHA512:
6
- metadata.gz: 3288dec083151f665eb6fed2446ac3aff7e4cda6605bbf26c21f048b87825a9dff908292e68d829942a22a17b1983f813266927913711a7d94d3368ca29f5db2
7
- data.tar.gz: 42333693de29a5d484604e0ae6f1c21acd5f5d04f7c2f8038ad9772a0a1da87b001204992e2d2e4ce877e4d36f4e56b3b89806d9f255d6c9fe43e22d71db6d65
6
+ metadata.gz: a8817935522c4bc17c5b91e543ae3fd32a284a33d9edb83666156cef196e2f8781329d0c9aea45b340bb5e988c979e08cdf64961fa48a153708f32d3338cff8c
7
+ data.tar.gz: 99326309b50307e013d5bb50c9616064579312b3aad8406a023d03ffbbae91ab7cc2addb620b78d4532160e73e51bde73836373a11390764516492b8f9a78329
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.492
1
+ 3.0.493
@@ -2229,6 +2229,8 @@ module TencentCloud
2229
2229
  # @type Name: String
2230
2230
  # @param SubnetIds: 子网ID列表
2231
2231
  # @type SubnetIds: Array
2232
+ # @param SecurityGroupIds: 安全组ID列表
2233
+ # @type SecurityGroupIds: Array
2232
2234
  # @param Labels: 虚拟节点label
2233
2235
  # @type Labels: Array
2234
2236
  # @param Taints: 虚拟节点taint
@@ -2242,12 +2244,13 @@ module TencentCloud
2242
2244
  # - windows
2243
2245
  # @type OS: String
2244
2246
 
2245
- attr_accessor :ClusterId, :Name, :SubnetIds, :Labels, :Taints, :VirtualNodes, :DeletionProtection, :OS
2247
+ attr_accessor :ClusterId, :Name, :SubnetIds, :SecurityGroupIds, :Labels, :Taints, :VirtualNodes, :DeletionProtection, :OS
2246
2248
 
2247
- def initialize(clusterid=nil, name=nil, subnetids=nil, labels=nil, taints=nil, virtualnodes=nil, deletionprotection=nil, os=nil)
2249
+ def initialize(clusterid=nil, name=nil, subnetids=nil, securitygroupids=nil, labels=nil, taints=nil, virtualnodes=nil, deletionprotection=nil, os=nil)
2248
2250
  @ClusterId = clusterid
2249
2251
  @Name = name
2250
2252
  @SubnetIds = subnetids
2253
+ @SecurityGroupIds = securitygroupids
2251
2254
  @Labels = labels
2252
2255
  @Taints = taints
2253
2256
  @VirtualNodes = virtualnodes
@@ -2259,6 +2262,7 @@ module TencentCloud
2259
2262
  @ClusterId = params['ClusterId']
2260
2263
  @Name = params['Name']
2261
2264
  @SubnetIds = params['SubnetIds']
2265
+ @SecurityGroupIds = params['SecurityGroupIds']
2262
2266
  unless params['Labels'].nil?
2263
2267
  @Labels = []
2264
2268
  params['Labels'].each do |i|
@@ -15621,10 +15625,12 @@ module TencentCloud
15621
15625
  # @type SkipPreCheck: Boolean
15622
15626
  # @param MaxNotReadyPercent: 最大可容忍的不可用Pod比例
15623
15627
  # @type MaxNotReadyPercent: Float
15628
+ # @param UpgradeRunTime: 是否升级节点运行时,默认false不升级
15629
+ # @type UpgradeRunTime: Boolean
15624
15630
 
15625
- attr_accessor :ClusterId, :Operation, :UpgradeType, :InstanceIds, :ResetParam, :SkipPreCheck, :MaxNotReadyPercent
15631
+ attr_accessor :ClusterId, :Operation, :UpgradeType, :InstanceIds, :ResetParam, :SkipPreCheck, :MaxNotReadyPercent, :UpgradeRunTime
15626
15632
 
15627
- def initialize(clusterid=nil, operation=nil, upgradetype=nil, instanceids=nil, resetparam=nil, skipprecheck=nil, maxnotreadypercent=nil)
15633
+ def initialize(clusterid=nil, operation=nil, upgradetype=nil, instanceids=nil, resetparam=nil, skipprecheck=nil, maxnotreadypercent=nil, upgraderuntime=nil)
15628
15634
  @ClusterId = clusterid
15629
15635
  @Operation = operation
15630
15636
  @UpgradeType = upgradetype
@@ -15632,6 +15638,7 @@ module TencentCloud
15632
15638
  @ResetParam = resetparam
15633
15639
  @SkipPreCheck = skipprecheck
15634
15640
  @MaxNotReadyPercent = maxnotreadypercent
15641
+ @UpgradeRunTime = upgraderuntime
15635
15642
  end
15636
15643
 
15637
15644
  def deserialize(params)
@@ -15645,6 +15652,7 @@ module TencentCloud
15645
15652
  end
15646
15653
  @SkipPreCheck = params['SkipPreCheck']
15647
15654
  @MaxNotReadyPercent = params['MaxNotReadyPercent']
15655
+ @UpgradeRunTime = params['UpgradeRunTime']
15648
15656
  end
15649
15657
  end
15650
15658
 
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.492
4
+ version: 3.0.493
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-01-12 00:00:00.000000000 Z
11
+ date: 2023-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common