tencentcloud-sdk-tke 3.0.454 → 3.0.456

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 +31 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b6ea114cbc3ee74c58dce438a26ef78c01ffa9d
4
- data.tar.gz: 3350ceaacb70e57c36bb7dc33ae5f3b41d00f448
3
+ metadata.gz: 1318a434014e41fb851bbb9d5764e2b63664283f
4
+ data.tar.gz: c07b1701c135c70f6c3578d15a1a2ee34fc9e6ea
5
5
  SHA512:
6
- metadata.gz: 31780692950d3287fd703626bb50a0fd1ce8bf977f88c10310ccc064a5adeab2ae6300c543a7c14d58037fc9ded5a4331fbc604616868416e2c9015cb28207c8
7
- data.tar.gz: ab83e9d9f9ecacc7e3270c7614ce1e9ca91099830159b017089775cb93662ccb2f3c9d312c67478c36e96731952c18e02de9f76e999195d880fb214027fed9ec
6
+ metadata.gz: 3627607bf5d0f42681b69c44bdade3ffd0eff112ec8e2e4d4b20003bbb86075f2a99a0dcda21ffac3b4c000e6aaa6447238abec19af3def27090a61c4ce2d317
7
+ data.tar.gz: 3e86ea6d28c0009185ee5c2604e6f1a537b80c3ef950e0a732309025e20e6830a279f91f5d95462d391cccf56e2f8469c4da923d9bc13fd9004ca5f86ac90665
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.454
1
+ 3.0.456
@@ -10800,6 +10800,12 @@ module TencentCloud
10800
10800
  # @type OsName: String
10801
10801
  # @param OsCustomizeType: 镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
10802
10802
  # @type OsCustomizeType: String
10803
+ # @param GPUArgs: GPU驱动版本,CUDA版本,cuDNN版本以及是否启用MIG特性
10804
+ # @type GPUArgs: :class:`Tencentcloud::Tke.v20180525.models.GPUArgs`
10805
+ # @param UserScript: base64编码后的自定义脚本
10806
+ # @type UserScript: String
10807
+ # @param IgnoreExistedNode: 更新label和taint时忽略存量节点
10808
+ # @type IgnoreExistedNode: Boolean
10803
10809
  # @param ExtraArgs: 节点自定义参数
10804
10810
  # @type ExtraArgs: :class:`Tencentcloud::Tke.v20180525.models.InstanceExtraArgs`
10805
10811
  # @param Tags: 资源标签
@@ -10808,10 +10814,12 @@ module TencentCloud
10808
10814
  # @type Unschedulable: Integer
10809
10815
  # @param DeletionProtection: 删除保护开关
10810
10816
  # @type DeletionProtection: Boolean
10817
+ # @param DockerGraphPath: dockerd --graph 指定值, 默认为 /var/lib/docker
10818
+ # @type DockerGraphPath: String
10811
10819
 
10812
- attr_accessor :ClusterId, :NodePoolId, :Name, :MaxNodesNum, :MinNodesNum, :Labels, :Taints, :EnableAutoscale, :OsName, :OsCustomizeType, :ExtraArgs, :Tags, :Unschedulable, :DeletionProtection
10820
+ attr_accessor :ClusterId, :NodePoolId, :Name, :MaxNodesNum, :MinNodesNum, :Labels, :Taints, :EnableAutoscale, :OsName, :OsCustomizeType, :GPUArgs, :UserScript, :IgnoreExistedNode, :ExtraArgs, :Tags, :Unschedulable, :DeletionProtection, :DockerGraphPath
10813
10821
 
10814
- def initialize(clusterid=nil, nodepoolid=nil, name=nil, maxnodesnum=nil, minnodesnum=nil, labels=nil, taints=nil, enableautoscale=nil, osname=nil, oscustomizetype=nil, extraargs=nil, tags=nil, unschedulable=nil, deletionprotection=nil)
10822
+ def initialize(clusterid=nil, nodepoolid=nil, name=nil, maxnodesnum=nil, minnodesnum=nil, labels=nil, taints=nil, enableautoscale=nil, osname=nil, oscustomizetype=nil, gpuargs=nil, userscript=nil, ignoreexistednode=nil, extraargs=nil, tags=nil, unschedulable=nil, deletionprotection=nil, dockergraphpath=nil)
10815
10823
  @ClusterId = clusterid
10816
10824
  @NodePoolId = nodepoolid
10817
10825
  @Name = name
@@ -10822,10 +10830,14 @@ module TencentCloud
10822
10830
  @EnableAutoscale = enableautoscale
10823
10831
  @OsName = osname
10824
10832
  @OsCustomizeType = oscustomizetype
10833
+ @GPUArgs = gpuargs
10834
+ @UserScript = userscript
10835
+ @IgnoreExistedNode = ignoreexistednode
10825
10836
  @ExtraArgs = extraargs
10826
10837
  @Tags = tags
10827
10838
  @Unschedulable = unschedulable
10828
10839
  @DeletionProtection = deletionprotection
10840
+ @DockerGraphPath = dockergraphpath
10829
10841
  end
10830
10842
 
10831
10843
  def deserialize(params)
@@ -10853,6 +10865,12 @@ module TencentCloud
10853
10865
  @EnableAutoscale = params['EnableAutoscale']
10854
10866
  @OsName = params['OsName']
10855
10867
  @OsCustomizeType = params['OsCustomizeType']
10868
+ unless params['GPUArgs'].nil?
10869
+ @GPUArgs = GPUArgs.new
10870
+ @GPUArgs.deserialize(params['GPUArgs'])
10871
+ end
10872
+ @UserScript = params['UserScript']
10873
+ @IgnoreExistedNode = params['IgnoreExistedNode']
10856
10874
  unless params['ExtraArgs'].nil?
10857
10875
  @ExtraArgs = InstanceExtraArgs.new
10858
10876
  @ExtraArgs.deserialize(params['ExtraArgs'])
@@ -10867,6 +10885,7 @@ module TencentCloud
10867
10885
  end
10868
10886
  @Unschedulable = params['Unschedulable']
10869
10887
  @DeletionProtection = params['DeletionProtection']
10888
+ @DockerGraphPath = params['DockerGraphPath']
10870
10889
  end
10871
10890
  end
10872
10891
 
@@ -13640,19 +13659,27 @@ module TencentCloud
13640
13659
  # @type Name: String
13641
13660
  # @param SecurityGroups: 安全组id
13642
13661
  # @type SecurityGroups: Array
13662
+ # @param Os: 系统
13663
+ # @type Os: String
13664
+ # @param Arch: 硬件架构
13665
+ # @type Arch: String
13643
13666
 
13644
- attr_accessor :SubnetId, :Name, :SecurityGroups
13667
+ attr_accessor :SubnetId, :Name, :SecurityGroups, :Os, :Arch
13645
13668
 
13646
- def initialize(subnetid=nil, name=nil, securitygroups=nil)
13669
+ def initialize(subnetid=nil, name=nil, securitygroups=nil, os=nil, arch=nil)
13647
13670
  @SubnetId = subnetid
13648
13671
  @Name = name
13649
13672
  @SecurityGroups = securitygroups
13673
+ @Os = os
13674
+ @Arch = arch
13650
13675
  end
13651
13676
 
13652
13677
  def deserialize(params)
13653
13678
  @SubnetId = params['SubnetId']
13654
13679
  @Name = params['Name']
13655
13680
  @SecurityGroups = params['SecurityGroups']
13681
+ @Os = params['Os']
13682
+ @Arch = params['Arch']
13656
13683
  end
13657
13684
  end
13658
13685
 
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.454
4
+ version: 3.0.456
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-11-18 00:00:00.000000000 Z
11
+ date: 2022-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common