tencentcloud-sdk-thpc 3.0.588 → 3.0.590

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/v20230321/models.rb +13 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a152638ac30a32b1d2e9b0e1ea98d3410d15f52b
4
- data.tar.gz: 8b98a7c33945b565a29bf46b9ac935c5324e1694
3
+ metadata.gz: df019f4aaae5330083d0019ff53abdfca2b8f608
4
+ data.tar.gz: abefdce3aa224435e50e581deef42bcf056750ff
5
5
  SHA512:
6
- metadata.gz: 91a985fb4613e6ab2ab7bd86d7eb298f0a905ad21f1cf86ca2663fb9be61218f3dd87859f91f359b1255c0c2212115d58b45192f90519ee035b25c4a097518b3
7
- data.tar.gz: 190fa373375bdf09e8655026e9d0197fedff4d09ab32dd4dd32696c9de4f5f26cf39537c379d25d77bcaad60f0dcfa2a28f3828b52c383759dd74051775c652c
6
+ metadata.gz: 9c7d212daba00dd9b9fe32447d2283048390e5ff9f601dd2ab4d1a908e5cbd6712904dc27e9ac88d36564f93399589c05d5ed0618e529557c893a5dedb814925
7
+ data.tar.gz: ad26cb531e5741f4b91d533b1fd4b63983bbdc649b1350d2ff2fe4b364f3d0e3752d19b91b84ba3d39d401f96ebf5c34279ccee273fb45503be37105edc5095d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.588
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.588
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-08 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