tencentcloud-sdk-as 1.0.261 → 1.0.264
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180419/models.rb +10 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ed254be8d7548c39890105099f9652b7c97d797
|
4
|
+
data.tar.gz: d5425ed00f33b7592112e6de82ca607185ae6b87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9493dc991969b8ce32eb02571a49bcbe0c15745a49964bc651179232a3af3b92586a1b21482855e092f6ddf203fc2850fd200fe406a6aae730dba78f8d13f73
|
7
|
+
data.tar.gz: 7ae8b5970b8f59403723dfb9be135b10caaa9661fe52e6eb44460d81e189889db6a15c2e8e7a9eebf112cccdd376c7a51c5cb8262dc68f61877c6399f0d16335
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.264
|
data/lib/v20180419/models.rb
CHANGED
@@ -3310,17 +3310,25 @@ module TencentCloud
|
|
3310
3310
|
# @type AutoScalingGroupId: String
|
3311
3311
|
# @param DesiredCapacity: 期望实例数
|
3312
3312
|
# @type DesiredCapacity: Integer
|
3313
|
+
# @param MinSize: 最小实例数,取值范围为0-2000。
|
3314
|
+
# @type MinSize: Integer
|
3315
|
+
# @param MaxSize: 最大实例数,取值范围为0-2000。
|
3316
|
+
# @type MaxSize: Integer
|
3313
3317
|
|
3314
|
-
attr_accessor :AutoScalingGroupId, :DesiredCapacity
|
3318
|
+
attr_accessor :AutoScalingGroupId, :DesiredCapacity, :MinSize, :MaxSize
|
3315
3319
|
|
3316
|
-
def initialize(autoscalinggroupid=nil, desiredcapacity=nil)
|
3320
|
+
def initialize(autoscalinggroupid=nil, desiredcapacity=nil, minsize=nil, maxsize=nil)
|
3317
3321
|
@AutoScalingGroupId = autoscalinggroupid
|
3318
3322
|
@DesiredCapacity = desiredcapacity
|
3323
|
+
@MinSize = minsize
|
3324
|
+
@MaxSize = maxsize
|
3319
3325
|
end
|
3320
3326
|
|
3321
3327
|
def deserialize(params)
|
3322
3328
|
@AutoScalingGroupId = params['AutoScalingGroupId']
|
3323
3329
|
@DesiredCapacity = params['DesiredCapacity']
|
3330
|
+
@MinSize = params['MinSize']
|
3331
|
+
@MaxSize = params['MaxSize']
|
3324
3332
|
end
|
3325
3333
|
end
|
3326
3334
|
|
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: 1.0.
|
4
|
+
version: 1.0.264
|
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-02-
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|