tencentcloud-sdk-cdb 1.0.255 → 1.0.259
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 +21 -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: 563ca5e679acc8876c2f1fd0da38cf64faa5d9e2
|
|
4
|
+
data.tar.gz: 661d160dc1b1b5a4ce68e8f3963298cab0b7ff3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9e1a6d0fdd9f58aa47bd1861e15351c3b47adad1d33946f7eaddf8c174782604dd0c27f5da13a45a2c572a8dc27c13b868a7bbc9e5feed7cef26d85ce4fc1f8
|
|
7
|
+
data.tar.gz: 4fef2b09258b1668f61f59e8fb809616b35e5d4b677c50b4486e49d004f14f0834805b3b115b58487b21572ac9d7c9a6e2579f1b0c53742cd6a9afb1caac4ff7
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.259
|
data/lib/v20170320/models.rb
CHANGED
|
@@ -6866,7 +6866,7 @@ module TencentCloud
|
|
|
6866
6866
|
# @type InstanceId: String
|
|
6867
6867
|
# @param Accounts: 数据库的账号,包括用户名和域名。
|
|
6868
6868
|
# @type Accounts: Array
|
|
6869
|
-
# @param GlobalPrivileges: 全局权限。其中,GlobalPrivileges 中权限的可选值为:"SELECT","INSERT","UPDATE","DELETE","CREATE", "PROCESS", "DROP","REFERENCES","INDEX","ALTER","SHOW DATABASES","CREATE TEMPORARY TABLES","LOCK TABLES","EXECUTE","CREATE VIEW","SHOW VIEW","CREATE ROUTINE","ALTER ROUTINE","EVENT","TRIGGER"。
|
|
6869
|
+
# @param GlobalPrivileges: 全局权限。其中,GlobalPrivileges 中权限的可选值为:"SELECT","INSERT","UPDATE","DELETE","CREATE", "PROCESS", "DROP","REFERENCES","INDEX","ALTER","SHOW DATABASES","CREATE TEMPORARY TABLES","LOCK TABLES","EXECUTE","CREATE VIEW","SHOW VIEW","CREATE ROUTINE","ALTER ROUTINE","EVENT","TRIGGER","CREATE USER","RELOAD","REPLICATION CLIENT","REPLICATION SLAVE","UPDATE"。
|
|
6870
6870
|
# 注意,不传该参数表示清除该权限。
|
|
6871
6871
|
# @type GlobalPrivileges: Array
|
|
6872
6872
|
# @param DatabasePrivileges: 数据库的权限。Privileges 权限的可选值为:"SELECT","INSERT","UPDATE","DELETE","CREATE", "DROP","REFERENCES","INDEX","ALTER","CREATE TEMPORARY TABLES","LOCK TABLES","EXECUTE","CREATE VIEW","SHOW VIEW","CREATE ROUTINE","ALTER ROUTINE","EVENT","TRIGGER"。
|
|
@@ -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.259
|
|
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-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|