tencentcloud-sdk-cdb 3.0.1102 → 3.0.1104
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/client.rb +1 -1
- data/lib/v20170320/models.rb +44 -9
- 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: c0fd65fa973592658e3f20c22239938942997c1d
|
4
|
+
data.tar.gz: d66079811076b2ff42d4630e771fa57972a2ca1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1104a78798e9632b90916e6cd9a4716463e2fb3e7e83cf25d1ed826c5e0b30d5f80dbb41a0130ffd77f52dd0f1800329729da5ac4ecf1be27af587a8da6e6e1b
|
7
|
+
data.tar.gz: bf4368fb708d8bb5f131fc2711d989408ead9d889ca909e96d0656ea621e40227a962d64fb6fb1a4e76719291f120ec14685b7fe5d7cf2de59eab99a12d767cf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1104
|
data/lib/v20170320/client.rb
CHANGED
@@ -866,7 +866,7 @@ module TencentCloud
|
|
866
866
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
867
867
|
end
|
868
868
|
|
869
|
-
#
|
869
|
+
# 本接口(DeleteBackup)用于删除数据库备份。本接口只支持删除手动发起的备份。
|
870
870
|
|
871
871
|
# @param request: Request instance for DeleteBackup.
|
872
872
|
# @type request: :class:`Tencentcloud::cdb::V20170320::DeleteBackupRequest`
|
data/lib/v20170320/models.rb
CHANGED
@@ -1673,10 +1673,14 @@ module TencentCloud
|
|
1673
1673
|
# @type IsSupportIpv6: Boolean
|
1674
1674
|
# @param EngineType: 可支持的售卖数据库引擎类型
|
1675
1675
|
# @type EngineType: Array
|
1676
|
+
# @param CloudNativeClusterStatus: 集群版实例在当前可用区的售卖状态。可能的返回值为:1-上线;3-停售;4-不展示
|
1677
|
+
# @type CloudNativeClusterStatus: Integer
|
1678
|
+
# @param DiskTypeConf: 集群版或者单节点基础型支持的磁盘类型。
|
1679
|
+
# @type DiskTypeConf: Array
|
1676
1680
|
|
1677
|
-
attr_accessor :Status, :ZoneName, :IsCustom, :IsSupportDr, :IsSupportVpc, :HourInstanceSaleMaxNum, :IsDefaultZone, :IsBm, :PayType, :ProtectMode, :Zone, :ZoneConf, :DrZone, :IsSupportRemoteRo, :RemoteRoZone, :ExClusterStatus, :ExClusterRemoteRoZone, :ExClusterZoneConf, :SellType, :ZoneId, :IsSupportIpv6, :EngineType
|
1681
|
+
attr_accessor :Status, :ZoneName, :IsCustom, :IsSupportDr, :IsSupportVpc, :HourInstanceSaleMaxNum, :IsDefaultZone, :IsBm, :PayType, :ProtectMode, :Zone, :ZoneConf, :DrZone, :IsSupportRemoteRo, :RemoteRoZone, :ExClusterStatus, :ExClusterRemoteRoZone, :ExClusterZoneConf, :SellType, :ZoneId, :IsSupportIpv6, :EngineType, :CloudNativeClusterStatus, :DiskTypeConf
|
1678
1682
|
|
1679
|
-
def initialize(status=nil, zonename=nil, iscustom=nil, issupportdr=nil, issupportvpc=nil, hourinstancesalemaxnum=nil, isdefaultzone=nil, isbm=nil, paytype=nil, protectmode=nil, zone=nil, zoneconf=nil, drzone=nil, issupportremotero=nil, remoterozone=nil, exclusterstatus=nil, exclusterremoterozone=nil, exclusterzoneconf=nil, selltype=nil, zoneid=nil, issupportipv6=nil, enginetype=nil)
|
1683
|
+
def initialize(status=nil, zonename=nil, iscustom=nil, issupportdr=nil, issupportvpc=nil, hourinstancesalemaxnum=nil, isdefaultzone=nil, isbm=nil, paytype=nil, protectmode=nil, zone=nil, zoneconf=nil, drzone=nil, issupportremotero=nil, remoterozone=nil, exclusterstatus=nil, exclusterremoterozone=nil, exclusterzoneconf=nil, selltype=nil, zoneid=nil, issupportipv6=nil, enginetype=nil, cloudnativeclusterstatus=nil, disktypeconf=nil)
|
1680
1684
|
@Status = status
|
1681
1685
|
@ZoneName = zonename
|
1682
1686
|
@IsCustom = iscustom
|
@@ -1699,6 +1703,8 @@ module TencentCloud
|
|
1699
1703
|
@ZoneId = zoneid
|
1700
1704
|
@IsSupportIpv6 = issupportipv6
|
1701
1705
|
@EngineType = enginetype
|
1706
|
+
@CloudNativeClusterStatus = cloudnativeclusterstatus
|
1707
|
+
@DiskTypeConf = disktypeconf
|
1702
1708
|
end
|
1703
1709
|
|
1704
1710
|
def deserialize(params)
|
@@ -1737,6 +1743,15 @@ module TencentCloud
|
|
1737
1743
|
@ZoneId = params['ZoneId']
|
1738
1744
|
@IsSupportIpv6 = params['IsSupportIpv6']
|
1739
1745
|
@EngineType = params['EngineType']
|
1746
|
+
@CloudNativeClusterStatus = params['CloudNativeClusterStatus']
|
1747
|
+
unless params['DiskTypeConf'].nil?
|
1748
|
+
@DiskTypeConf = []
|
1749
|
+
params['DiskTypeConf'].each do |i|
|
1750
|
+
disktypeconfigitem_tmp = DiskTypeConfigItem.new
|
1751
|
+
disktypeconfigitem_tmp.deserialize(i)
|
1752
|
+
@DiskTypeConf << disktypeconfigitem_tmp
|
1753
|
+
end
|
1754
|
+
end
|
1740
1755
|
end
|
1741
1756
|
end
|
1742
1757
|
|
@@ -8844,6 +8859,26 @@ module TencentCloud
|
|
8844
8859
|
end
|
8845
8860
|
end
|
8846
8861
|
|
8862
|
+
# 磁盘售卖类型
|
8863
|
+
class DiskTypeConfigItem < TencentCloud::Common::AbstractModel
|
8864
|
+
# @param DeviceType: 磁盘对应的实例类型。仅支持单节点基础型和集群版。
|
8865
|
+
# @type DeviceType: String
|
8866
|
+
# @param DiskType: 可以选择的磁盘类型列表。
|
8867
|
+
# @type DiskType: Array
|
8868
|
+
|
8869
|
+
attr_accessor :DeviceType, :DiskType
|
8870
|
+
|
8871
|
+
def initialize(devicetype=nil, disktype=nil)
|
8872
|
+
@DeviceType = devicetype
|
8873
|
+
@DiskType = disktype
|
8874
|
+
end
|
8875
|
+
|
8876
|
+
def deserialize(params)
|
8877
|
+
@DeviceType = params['DeviceType']
|
8878
|
+
@DiskType = params['DiskType']
|
8879
|
+
end
|
8880
|
+
end
|
8881
|
+
|
8847
8882
|
# 灾备实例信息
|
8848
8883
|
class DrInfo < TencentCloud::Common::AbstractModel
|
8849
8884
|
# @param Status: 灾备实例状态
|
@@ -9653,11 +9688,11 @@ module TencentCloud
|
|
9653
9688
|
end
|
9654
9689
|
end
|
9655
9690
|
|
9656
|
-
# 本地binlog保留配置
|
9691
|
+
# 本地 binlog 保留配置
|
9657
9692
|
class LocalBinlogConfig < TencentCloud::Common::AbstractModel
|
9658
|
-
# @param SaveHours: 本地binlog保留时长,可取值范围:[
|
9693
|
+
# @param SaveHours: 本地 binlog 保留时长,可取值范围:[6,168]。
|
9659
9694
|
# @type SaveHours: Integer
|
9660
|
-
# @param MaxUsage: 本地binlog空间使用率,可取值范围:[30,50]。
|
9695
|
+
# @param MaxUsage: 本地 binlog 空间使用率,可取值范围:[30,50]。
|
9661
9696
|
# @type MaxUsage: Integer
|
9662
9697
|
|
9663
9698
|
attr_accessor :SaveHours, :MaxUsage
|
@@ -9673,11 +9708,11 @@ module TencentCloud
|
|
9673
9708
|
end
|
9674
9709
|
end
|
9675
9710
|
|
9676
|
-
# 本地binlog
|
9711
|
+
# 本地 binlog 保留策略默认配置
|
9677
9712
|
class LocalBinlogConfigDefault < TencentCloud::Common::AbstractModel
|
9678
|
-
# @param SaveHours: 本地binlog保留时长,可取值范围:[
|
9713
|
+
# @param SaveHours: 本地 binlog 保留时长,可取值范围:[6,168]。
|
9679
9714
|
# @type SaveHours: Integer
|
9680
|
-
# @param MaxUsage: 本地binlog空间使用率,可取值范围:[30,50]。
|
9715
|
+
# @param MaxUsage: 本地 binlog 空间使用率,可取值范围:[30,50]。
|
9681
9716
|
# @type MaxUsage: Integer
|
9682
9717
|
|
9683
9718
|
attr_accessor :SaveHours, :MaxUsage
|
@@ -13515,7 +13550,7 @@ module TencentCloud
|
|
13515
13550
|
# @type Name: String
|
13516
13551
|
# @param Size: 备份文件大小,单位:Byte
|
13517
13552
|
# @type Size: Integer
|
13518
|
-
# @param Date: 备份快照时间,时间格式:2016-03-17
|
13553
|
+
# @param Date: 备份快照时间,时间格式:2016-03-17
|
13519
13554
|
# @type Date: String
|
13520
13555
|
# @param IntranetUrl: 内网下载地址
|
13521
13556
|
# @type IntranetUrl: String
|
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: 3.0.
|
4
|
+
version: 3.0.1104
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|