tencentcloud-sdk-cdb 3.0.1074 → 3.0.1076
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 +13 -5
- 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: 8ba96e806ca7ded91955127c5f0bd631e686a680
|
4
|
+
data.tar.gz: 414ce3f8a97523275bff63f9a6a042282f5ed341
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f09ff7fbc478ea45a27b6c2901f153394f27d918bc3cfdfb878bf3c1d1e1e7f73c61e04b0d9000dc57260945d88e34272dd7c170b4e194a65717e851ac278287
|
7
|
+
data.tar.gz: ffd46ba03bddc0f16b7dbb65c7df672bea07280caa1620b1ede43880b039f09f631490ad75640493d701f601d61d3885c99db72a3c904984828088a830a1af21
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1076
|
data/lib/v20170320/models.rb
CHANGED
@@ -2831,7 +2831,7 @@ module TencentCloud
|
|
2831
2831
|
# @param SpecifiedBackupId: 如果需要克隆实例回档到指定备份集,则指定该值为备份文件的 Id。请使用 [查询数据备份文件列表](/document/api/236/15842)。
|
2832
2832
|
# 说明:如果是克隆双节点、三节点实例,备份文件为物理备份,如果是克隆单节点、集群版实例,备份文件为快照备份。
|
2833
2833
|
# @type SpecifiedBackupId: Integer
|
2834
|
-
# @param UniqVpcId: 私有网络 ID
|
2834
|
+
# @param UniqVpcId: 私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
|
2835
2835
|
# @type UniqVpcId: String
|
2836
2836
|
# @param UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
|
2837
2837
|
# @type UniqSubnetId: String
|
@@ -2873,10 +2873,14 @@ module TencentCloud
|
|
2873
2873
|
# @type Period: Integer
|
2874
2874
|
# @param ClusterTopology: 集群版节点拓扑配置。
|
2875
2875
|
# @type ClusterTopology: :class:`Tencentcloud::Cdb.v20170320.models.ClusterTopology`
|
2876
|
+
# @param SrcRegion: 原实例所在地域名,当传入异地备份时为必选项,例:ap-guangzhou
|
2877
|
+
# @type SrcRegion: String
|
2878
|
+
# @param SpecifiedSubBackupId: 异地数据备份id
|
2879
|
+
# @type SpecifiedSubBackupId: Integer
|
2876
2880
|
|
2877
|
-
attr_accessor :InstanceId, :SpecifiedRollbackTime, :SpecifiedBackupId, :UniqVpcId, :UniqSubnetId, :Memory, :Volume, :InstanceName, :SecurityGroup, :ResourceTags, :Cpu, :ProtectMode, :DeployMode, :SlaveZone, :BackupZone, :DeviceType, :InstanceNodes, :DeployGroupId, :DryRun, :CageId, :ProjectId, :PayType, :Period, :ClusterTopology
|
2881
|
+
attr_accessor :InstanceId, :SpecifiedRollbackTime, :SpecifiedBackupId, :UniqVpcId, :UniqSubnetId, :Memory, :Volume, :InstanceName, :SecurityGroup, :ResourceTags, :Cpu, :ProtectMode, :DeployMode, :SlaveZone, :BackupZone, :DeviceType, :InstanceNodes, :DeployGroupId, :DryRun, :CageId, :ProjectId, :PayType, :Period, :ClusterTopology, :SrcRegion, :SpecifiedSubBackupId
|
2878
2882
|
|
2879
|
-
def initialize(instanceid=nil, specifiedrollbacktime=nil, specifiedbackupid=nil, uniqvpcid=nil, uniqsubnetid=nil, memory=nil, volume=nil, instancename=nil, securitygroup=nil, resourcetags=nil, cpu=nil, protectmode=nil, deploymode=nil, slavezone=nil, backupzone=nil, devicetype=nil, instancenodes=nil, deploygroupid=nil, dryrun=nil, cageid=nil, projectid=nil, paytype=nil, period=nil, clustertopology=nil)
|
2883
|
+
def initialize(instanceid=nil, specifiedrollbacktime=nil, specifiedbackupid=nil, uniqvpcid=nil, uniqsubnetid=nil, memory=nil, volume=nil, instancename=nil, securitygroup=nil, resourcetags=nil, cpu=nil, protectmode=nil, deploymode=nil, slavezone=nil, backupzone=nil, devicetype=nil, instancenodes=nil, deploygroupid=nil, dryrun=nil, cageid=nil, projectid=nil, paytype=nil, period=nil, clustertopology=nil, srcregion=nil, specifiedsubbackupid=nil)
|
2880
2884
|
@InstanceId = instanceid
|
2881
2885
|
@SpecifiedRollbackTime = specifiedrollbacktime
|
2882
2886
|
@SpecifiedBackupId = specifiedbackupid
|
@@ -2901,6 +2905,8 @@ module TencentCloud
|
|
2901
2905
|
@PayType = paytype
|
2902
2906
|
@Period = period
|
2903
2907
|
@ClusterTopology = clustertopology
|
2908
|
+
@SrcRegion = srcregion
|
2909
|
+
@SpecifiedSubBackupId = specifiedsubbackupid
|
2904
2910
|
end
|
2905
2911
|
|
2906
2912
|
def deserialize(params)
|
@@ -2938,6 +2944,8 @@ module TencentCloud
|
|
2938
2944
|
@ClusterTopology = ClusterTopology.new
|
2939
2945
|
@ClusterTopology.deserialize(params['ClusterTopology'])
|
2940
2946
|
end
|
2947
|
+
@SrcRegion = params['SrcRegion']
|
2948
|
+
@SpecifiedSubBackupId = params['SpecifiedSubBackupId']
|
2941
2949
|
end
|
2942
2950
|
end
|
2943
2951
|
|
@@ -3028,7 +3036,7 @@ module TencentCloud
|
|
3028
3036
|
# @param EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
|
3029
3037
|
# 说明:创建非集群版实例时,请根据需要指定实例版本(推荐5.7或8.0),若此参数不填,则默认值为5.6;若创建的是集群版实例,则此参数仅能指定为5.7或8.0。
|
3030
3038
|
# @type EngineVersion: String
|
3031
|
-
# @param UniqVpcId: 私有网络 ID
|
3039
|
+
# @param UniqVpcId: 私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
|
3032
3040
|
# 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
|
3033
3041
|
# @type UniqVpcId: String
|
3034
3042
|
# @param UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
|
@@ -3261,7 +3269,7 @@ module TencentCloud
|
|
3261
3269
|
# @param Zone: 可用区信息,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的可用区。
|
3262
3270
|
# 说明:若您创建单节点、双节点、三节点实例,此参数为必填项,请指定可用区,若不指定可用区,则系统会自动选择一个可用区(可能不是您希望部署的可用区);若您创建集群版实例,此参数不填,请通过参数 ClusterTopology 进行读写节点和只读节点的可用区配置。
|
3263
3271
|
# @type Zone: String
|
3264
|
-
# @param UniqVpcId: 私有网络 ID
|
3272
|
+
# @param UniqVpcId: 私有网络 ID,请使用 [查询私有网络列表](/document/api/215/15778)。
|
3265
3273
|
# 说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
|
3266
3274
|
# @type UniqVpcId: String
|
3267
3275
|
# @param UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
|
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.1076
|
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-06-
|
11
|
+
date: 2025-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|