tencentcloud-sdk-thpc 3.0.589 → 3.0.590

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/v20230321/models.rb +13 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d2126c06589260c2ef3b0f4a6f6fd49fe73f409
4
- data.tar.gz: ae09b8832a6a80b96c1684083bdbadd6b46bff13
3
+ metadata.gz: df019f4aaae5330083d0019ff53abdfca2b8f608
4
+ data.tar.gz: abefdce3aa224435e50e581deef42bcf056750ff
5
5
  SHA512:
6
- metadata.gz: f824bf47c86f206ec9e1b38b9a1d751723cfb4400bd68a311a17b02c5e28c8c03d46e8527224d24bfab736a67f8541656fbc6f58be3c3cafc840494a7ced9701
7
- data.tar.gz: 7c5c04a4769370c5d2902809d1ab8e07cdb255c9d36c147e5bfaaa8db4dcfc57ea8a36d565ad447334536161bdef4ef81090292d6a513db1464ce8eea9a1d1d8
6
+ metadata.gz: 9c7d212daba00dd9b9fe32447d2283048390e5ff9f601dd2ab4d1a908e5cbd6712904dc27e9ac88d36564f93399589c05d5ed0618e529557c893a5dedb814925
7
+ data.tar.gz: ad26cb531e5741f4b91d533b1fd4b63983bbdc649b1350d2ff2fe4b364f3d0e3752d19b91b84ba3d39d401f96ebf5c34279ccee273fb45503be37105edc5095d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.589
1
+ 3.0.590
@@ -1876,10 +1876,12 @@ module TencentCloud
1876
1876
  # 当作业负载需要扩容节点数量大于此值,当前扩容轮次按照ScaleOutRatio配置的比例进行扩容。当作业负载需要扩容节点数量小于此值,当前扩容轮次扩容当前作业负载所需数量的节点。
1877
1877
  # 此参数配合ScaleOutRatio参数进行使用,用于比例扩容场景下,在作业负载所需节点数量较小时,加快收敛速度。
1878
1878
  # @type ScaleOutNodeThreshold: Integer
1879
+ # @param MaxNodesPerCycle: 每轮扩容最大节点个数。默认值:100。取值范围:1~100。
1880
+ # @type MaxNodesPerCycle: Integer
1879
1881
 
1880
- attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ImageId, :SystemDisk, :DataDisks, :InternetAccessible, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold
1882
+ attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ImageId, :SystemDisk, :DataDisks, :InternetAccessible, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle
1881
1883
 
1882
- def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, imageid=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil)
1884
+ def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, imageid=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil)
1883
1885
  @QueueName = queuename
1884
1886
  @MinSize = minsize
1885
1887
  @MaxSize = maxsize
@@ -1893,6 +1895,7 @@ module TencentCloud
1893
1895
  @DesiredIdleNodeCapacity = desiredidlenodecapacity
1894
1896
  @ScaleOutRatio = scaleoutratio
1895
1897
  @ScaleOutNodeThreshold = scaleoutnodethreshold
1898
+ @MaxNodesPerCycle = maxnodespercycle
1896
1899
  end
1897
1900
 
1898
1901
  def deserialize(params)
@@ -1929,6 +1932,7 @@ module TencentCloud
1929
1932
  @DesiredIdleNodeCapacity = params['DesiredIdleNodeCapacity']
1930
1933
  @ScaleOutRatio = params['ScaleOutRatio']
1931
1934
  @ScaleOutNodeThreshold = params['ScaleOutNodeThreshold']
1935
+ @MaxNodesPerCycle = params['MaxNodesPerCycle']
1932
1936
  end
1933
1937
  end
1934
1938
 
@@ -1958,10 +1962,13 @@ module TencentCloud
1958
1962
  # 此参数配合ScaleOutRatio参数进行使用,用于比例扩容场景下,在作业负载所需节点数量较小时,加快收敛速度。
1959
1963
  # 注意:此字段可能返回 null,表示取不到有效值。
1960
1964
  # @type ScaleOutNodeThreshold: Integer
1965
+ # @param MaxNodesPerCycle: 每轮扩容最大节点个数。
1966
+ # 注意:此字段可能返回 null,表示取不到有效值。
1967
+ # @type MaxNodesPerCycle: Integer
1961
1968
 
1962
- attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold
1969
+ attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle
1963
1970
 
1964
- def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil)
1971
+ def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil)
1965
1972
  @QueueName = queuename
1966
1973
  @MinSize = minsize
1967
1974
  @MaxSize = maxsize
@@ -1971,6 +1978,7 @@ module TencentCloud
1971
1978
  @DesiredIdleNodeCapacity = desiredidlenodecapacity
1972
1979
  @ScaleOutRatio = scaleoutratio
1973
1980
  @ScaleOutNodeThreshold = scaleoutnodethreshold
1981
+ @MaxNodesPerCycle = maxnodespercycle
1974
1982
  end
1975
1983
 
1976
1984
  def deserialize(params)
@@ -1990,6 +1998,7 @@ module TencentCloud
1990
1998
  @DesiredIdleNodeCapacity = params['DesiredIdleNodeCapacity']
1991
1999
  @ScaleOutRatio = params['ScaleOutRatio']
1992
2000
  @ScaleOutNodeThreshold = params['ScaleOutNodeThreshold']
2001
+ @MaxNodesPerCycle = params['MaxNodesPerCycle']
1993
2002
  end
1994
2003
  end
1995
2004
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-thpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.589
4
+ version: 3.0.590
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-06-09 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common