tencentcloud-sdk-mariadb 1.0.210 → 1.0.211

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: 0d4767c1129ed6f0c5be6042b7e355c94185d90d
4
- data.tar.gz: 3a6cededf79b6268db44e064af59fdee53c547d9
3
+ metadata.gz: c727642f430b5ba1128555b706f070a4d25828a1
4
+ data.tar.gz: 5d2a6462f26345d0a46f1ae751c74532f20cf785
5
5
  SHA512:
6
- metadata.gz: 148dcb490784124db2e40627cfc974a3971615a15543ff8141c515d54aecb61a755a92b6450897ea5744b7748807a33f4619d1e52f3622a20c807c3c2cfa498c
7
- data.tar.gz: eabe2ed9205d3be774e45cd98a4b360f40d9aa16f331b26e2a7f4ab1c9e34585e6d35831c41afea53b5e9e9684be272a12e82d55c9664e0d3d00d8bcd8a6e096
6
+ metadata.gz: e3eb495ddb079e49980bf8112777399c3c87d7ff7540491cd4f61418c8a498aac7dbd34cf4032f49340c2892605e56072364ec412c2c9d2d75b0d4aa80fcb562
7
+ data.tar.gz: eca7d55404d7212a77b14b2bf196b43fa9ea9f739a96778bca87ce2e8797f274f112b1ffead749cd3906f73978c0302e144aeefd5219908ffcb44376ff156796
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.210
1
+ 1.0.211
@@ -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.210
4
+ version: 1.0.211
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-25 00:00:00.000000000 Z
11
+ date: 2021-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common