tencentcloud-sdk-as 3.0.1171 → 3.0.1172

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c62283ccf0dc6803921882daf3963f41b168074c
4
- data.tar.gz: 31eebf58dc7f9798fb3031aa0f8e45bde109f89c
3
+ metadata.gz: 07b40b66a128ffc316521da2e20db916d2dc6e42
4
+ data.tar.gz: 576e969c1709e0aa881f174f152dcbe41098c913
5
5
  SHA512:
6
- metadata.gz: b47905f59b4eec02fcdccbd2ad84c5b1f2658adad710b93d0dec0abfdc42fb952bf3894c50a35eaee27214f21350ed89a045712ce45bf5b51b33b7d3c635d02c
7
- data.tar.gz: 4cc7a404845f9f1cb88d84bba9aec6ada94fa170638445be626ff5b91b80408e1a0ebe2cd20ef3766c5d0d5b0d61ed51080ec5309072a1a1a8c4a926934187c2
6
+ metadata.gz: 86d10a6dab08fd964fc9bc760cc7569940e39ccb7401912d989fb7bdf3cefbe6c4f5076500a6e6cfd3b245475e6e048a1060be597363c68563895c24c0659112
7
+ data.tar.gz: 380f2fc874c12c6737324d0745ff5289da7dfabfb17800c060af0004e7fd98283db9b4b59caccdff45bad7742ad82132bb5fc784b67758eb24ff4f66c683cc1d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1171
1
+ 3.0.1172
@@ -3242,17 +3242,24 @@ module TencentCloud
3242
3242
  # 下调初始序号可能会造成伸缩组内实例名称序号重复。
3243
3243
  # 注意:此字段可能返回 null,表示取不到有效值。
3244
3244
  # @type BeginIndex: Integer
3245
+ # @param IndexLength: 实例名称递增序号位数,默认为0,表示不指定序号位数。不指定序号时,采用默认值0。 取值范围:0-8,最大为整数8。 采用取值1-8时,会检查序号是否超过此序号位数的最大数字。
3245
3246
 
3246
- attr_accessor :Enabled, :BeginIndex
3247
+ # 假设设置为3,那么序号形如:000、001、002 ... 010、011 ... 100 ... 999,序号上限为999;
3248
+ # 假设设置为0,对应的序号为0、1、2 ... 10、11 ... 100 ... 1000 ...10000 ... 99999999,序号上限为99999999。
3249
+ # @type IndexLength: Integer
3247
3250
 
3248
- def initialize(enabled=nil, beginindex=nil)
3251
+ attr_accessor :Enabled, :BeginIndex, :IndexLength
3252
+
3253
+ def initialize(enabled=nil, beginindex=nil, indexlength=nil)
3249
3254
  @Enabled = enabled
3250
3255
  @BeginIndex = beginindex
3256
+ @IndexLength = indexlength
3251
3257
  end
3252
3258
 
3253
3259
  def deserialize(params)
3254
3260
  @Enabled = params['Enabled']
3255
3261
  @BeginIndex = params['BeginIndex']
3262
+ @IndexLength = params['IndexLength']
3256
3263
  end
3257
3264
  end
3258
3265
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-as
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1171
4
+ version: 3.0.1172
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-11-20 00:00:00.000000000 Z
11
+ date: 2025-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common