tencentcloud-sdk-mariadb 1.0.209 → 1.0.213

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/v20170312/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d3e53463b1c528c0097030e5a720f7eef4f9ba7
4
- data.tar.gz: 74390c6a00da8be9cdfdefd3aaca1eafe2a4c2f6
3
+ metadata.gz: 057f5cc72b0e9d9420292475e6e2d4c56a19cd35
4
+ data.tar.gz: 022031f4ca0ef235770c70beab0068fcdd28e033
5
5
  SHA512:
6
- metadata.gz: f213b32c5823d88e3f5a514be3746a0ecebad41074b7dea20adc46ade3a3f4ae547bb5399fc05b6ab80fd4c941a65ee7a7647ff47214eab402ebbdac6d961ab4
7
- data.tar.gz: 83a5d7a9301f25861e2b9925b46fd9a37cbe7c8d739a7bd8ae49ee5d3459103727279eef4f8f9e4e1ecb07941fa31cd2aed4ef3c6fcf4ed74046b7fef617e34f
6
+ metadata.gz: b2d23cf4d76a8bc66f9ceca4e62da2627eb2e17066c79822d0e9fe5c6f1523d4fd53e32df56cd00c72a2c8327dbf30ca6453706c3ebfd04d6a64b531fd8b6691
7
+ data.tar.gz: 3786fa60864603e3571ef5b09a1b7b8b597235f7d0a8e4f50464dd1532a07f765cfb812ca5a347029ee5d1031d9ec86e4e24442f523cec9232da287dbf194741
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.209
1
+ 1.0.213
@@ -2661,19 +2661,23 @@ module TencentCloud
2661
2661
  # @param Storage: 存储空间大小,单位:GB,可以通过 DescribeDBInstanceSpecs
2662
2662
  # 查询实例规格获得不同内存大小对应的磁盘规格下限和上限。
2663
2663
  # @type Storage: Integer
2664
+ # @param NodeCount: 新节点数,传0表示节点数不变
2665
+ # @type NodeCount: Integer
2664
2666
 
2665
- attr_accessor :InstanceId, :Memory, :Storage
2667
+ attr_accessor :InstanceId, :Memory, :Storage, :NodeCount
2666
2668
 
2667
- def initialize(instanceid=nil, memory=nil, storage=nil)
2669
+ def initialize(instanceid=nil, memory=nil, storage=nil, nodecount=nil)
2668
2670
  @InstanceId = instanceid
2669
2671
  @Memory = memory
2670
2672
  @Storage = storage
2673
+ @NodeCount = nodecount
2671
2674
  end
2672
2675
 
2673
2676
  def deserialize(params)
2674
2677
  @InstanceId = params['InstanceId']
2675
2678
  @Memory = params['Memory']
2676
2679
  @Storage = params['Storage']
2680
+ @NodeCount = params['NodeCount']
2677
2681
  end
2678
2682
  end
2679
2683
 
@@ -4419,15 +4423,18 @@ module TencentCloud
4419
4423
  # @type AutoVoucher: Boolean
4420
4424
  # @param VoucherIds: 代金券ID列表,目前仅支持指定一张代金券。
4421
4425
  # @type VoucherIds: Array
4426
+ # @param Zones: 变更部署时指定的新可用区列表,第1个为主可用区,其余为从可用区
4427
+ # @type Zones: Array
4422
4428
 
4423
- attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds
4429
+ attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Zones
4424
4430
 
4425
- def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil)
4431
+ def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, zones=nil)
4426
4432
  @InstanceId = instanceid
4427
4433
  @Memory = memory
4428
4434
  @Storage = storage
4429
4435
  @AutoVoucher = autovoucher
4430
4436
  @VoucherIds = voucherids
4437
+ @Zones = zones
4431
4438
  end
4432
4439
 
4433
4440
  def deserialize(params)
@@ -4436,6 +4443,7 @@ module TencentCloud
4436
4443
  @Storage = params['Storage']
4437
4444
  @AutoVoucher = params['AutoVoucher']
4438
4445
  @VoucherIds = params['VoucherIds']
4446
+ @Zones = params['Zones']
4439
4447
  end
4440
4448
  end
4441
4449
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mariadb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.209
4
+ version: 1.0.213
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-24 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common