tencentcloud-sdk-mariadb 1.0.210 → 1.0.211
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/v20170312/models.rb +12 -4
- 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: c727642f430b5ba1128555b706f070a4d25828a1
|
|
4
|
+
data.tar.gz: 5d2a6462f26345d0a46f1ae751c74532f20cf785
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3eb495ddb079e49980bf8112777399c3c87d7ff7540491cd4f61418c8a498aac7dbd34cf4032f49340c2892605e56072364ec412c2c9d2d75b0d4aa80fcb562
|
|
7
|
+
data.tar.gz: eca7d55404d7212a77b14b2bf196b43fa9ea9f739a96778bca87ce2e8797f274f112b1ffead749cd3906f73978c0302e144aeefd5219908ffcb44376ff156796
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.211
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -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.
|
|
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-
|
|
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
|