tencentcloud-sdk-cdb 1.0.256 → 1.0.257
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/v20170320/models.rb +20 -3
- 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: 6642145e99f9dad0d94af32ed57d57ec2baf7a66
|
4
|
+
data.tar.gz: 5eab1e2f72530607381990a0a02a6b80a8325dde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c48e8af809ff11d5137c61108fe539cd43f75670ad36788d1ccabae7765d14a04da7094790c68d8e625847d26334d6eb0406575fea5f5f5dda8aab3b581f4b6
|
7
|
+
data.tar.gz: a2a36ad1aee60ed257190aa73fa0beedfab9927331d18d6ff5511346351be15b8a7e96cdda14d75b3dc4b6cd29fe3b000e3afcb4c154105940a47e52877f8a8c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.257
|
data/lib/v20170320/models.rb
CHANGED
@@ -10586,7 +10586,7 @@ module TencentCloud
|
|
10586
10586
|
|
10587
10587
|
# 可用区售卖配置
|
10588
10588
|
class ZoneSellConf < TencentCloud::Common::AbstractModel
|
10589
|
-
# @param Status: 可用区状态。可能的返回值为:
|
10589
|
+
# @param Status: 可用区状态。可能的返回值为:1-上线;3-停售;4-不展示
|
10590
10590
|
# @type Status: Integer
|
10591
10591
|
# @param ZoneName: 可用区中文名称
|
10592
10592
|
# @type ZoneName: String
|
@@ -10619,10 +10619,18 @@ module TencentCloud
|
|
10619
10619
|
# @param RemoteRoZone: 可支持的跨可用区只读区信息
|
10620
10620
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10621
10621
|
# @type RemoteRoZone: Array
|
10622
|
+
# @param ExClusterStatus: 独享型可用区状态。可能的返回值为:1-上线;3-停售;4-不展示
|
10623
|
+
# @type ExClusterStatus: Integer
|
10624
|
+
# @param ExClusterRemoteRoZone: 独享型可支持的跨可用区只读区信息
|
10625
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10626
|
+
# @type ExClusterRemoteRoZone: Array
|
10627
|
+
# @param ExClusterZoneConf: 独享型多可用区信息
|
10628
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10629
|
+
# @type ExClusterZoneConf: :class:`Tencentcloud::Cdb.v20170320.models.ZoneConf`
|
10622
10630
|
|
10623
|
-
attr_accessor :Status, :ZoneName, :IsCustom, :IsSupportDr, :IsSupportVpc, :HourInstanceSaleMaxNum, :IsDefaultZone, :IsBm, :PayType, :ProtectMode, :Zone, :SellType, :ZoneConf, :DrZone, :IsSupportRemoteRo, :RemoteRoZone
|
10631
|
+
attr_accessor :Status, :ZoneName, :IsCustom, :IsSupportDr, :IsSupportVpc, :HourInstanceSaleMaxNum, :IsDefaultZone, :IsBm, :PayType, :ProtectMode, :Zone, :SellType, :ZoneConf, :DrZone, :IsSupportRemoteRo, :RemoteRoZone, :ExClusterStatus, :ExClusterRemoteRoZone, :ExClusterZoneConf
|
10624
10632
|
|
10625
|
-
def initialize(status=nil, zonename=nil, iscustom=nil, issupportdr=nil, issupportvpc=nil, hourinstancesalemaxnum=nil, isdefaultzone=nil, isbm=nil, paytype=nil, protectmode=nil, zone=nil, selltype=nil, zoneconf=nil, drzone=nil, issupportremotero=nil, remoterozone=nil)
|
10633
|
+
def initialize(status=nil, zonename=nil, iscustom=nil, issupportdr=nil, issupportvpc=nil, hourinstancesalemaxnum=nil, isdefaultzone=nil, isbm=nil, paytype=nil, protectmode=nil, zone=nil, selltype=nil, zoneconf=nil, drzone=nil, issupportremotero=nil, remoterozone=nil, exclusterstatus=nil, exclusterremoterozone=nil, exclusterzoneconf=nil)
|
10626
10634
|
@Status = status
|
10627
10635
|
@ZoneName = zonename
|
10628
10636
|
@IsCustom = iscustom
|
@@ -10639,6 +10647,9 @@ module TencentCloud
|
|
10639
10647
|
@DrZone = drzone
|
10640
10648
|
@IsSupportRemoteRo = issupportremotero
|
10641
10649
|
@RemoteRoZone = remoterozone
|
10650
|
+
@ExClusterStatus = exclusterstatus
|
10651
|
+
@ExClusterRemoteRoZone = exclusterremoterozone
|
10652
|
+
@ExClusterZoneConf = exclusterzoneconf
|
10642
10653
|
end
|
10643
10654
|
|
10644
10655
|
def deserialize(params)
|
@@ -10668,6 +10679,12 @@ module TencentCloud
|
|
10668
10679
|
@DrZone = params['DrZone']
|
10669
10680
|
@IsSupportRemoteRo = params['IsSupportRemoteRo']
|
10670
10681
|
@RemoteRoZone = params['RemoteRoZone']
|
10682
|
+
@ExClusterStatus = params['ExClusterStatus']
|
10683
|
+
@ExClusterRemoteRoZone = params['ExClusterRemoteRoZone']
|
10684
|
+
unless params['ExClusterZoneConf'].nil?
|
10685
|
+
@ExClusterZoneConf = ZoneConf.new
|
10686
|
+
@ExClusterZoneConf.deserialize(params['ExClusterZoneConf'])
|
10687
|
+
end
|
10671
10688
|
end
|
10672
10689
|
end
|
10673
10690
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.257
|
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-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|