tencentcloud-sdk-cdb 3.0.1126 → 3.0.1127
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 +18 -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: bc24b41eae8c69a8936ba328c7a46b92d391e077
|
4
|
+
data.tar.gz: 8605732ba6d68ccf9d6c73137259b8cedaba110a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52c31e061db1ebe6d3eded90e18e6e1d784a111c1d95bd2d396a921d136d48b004dfc01ed995ce8c7bba78e1e3c6d9bae0045e175d9a7852682a9dfbff161cd4
|
7
|
+
data.tar.gz: 0522ed296de58a079cbef4d3ad421420f6197a43cfec2eb8e83ec6b017240b00be5046c29c31aa97793770cb03249dc429f16b937b896ed52e6a33b995cd0e66
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1127
|
data/lib/v20170320/client.rb
CHANGED
@@ -4025,7 +4025,7 @@ module TencentCloud
|
|
4025
4025
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4026
4026
|
end
|
4027
4027
|
|
4028
|
-
#
|
4028
|
+
# 本接口(StopRollback)用于撤销实例正在进行的回档任务,该接口返回一个异步任务 ID。撤销结果可以通过 [DescribeAsyncRequestInfo](https://cloud.tencent.com/document/api/236/20410) 查询任务的执行情况。
|
4029
4029
|
|
4030
4030
|
# @param request: Request instance for StopRollback.
|
4031
4031
|
# @type request: :class:`Tencentcloud::cdb::V20170320::StopRollbackRequest`
|
data/lib/v20170320/models.rb
CHANGED
@@ -7725,15 +7725,21 @@ module TencentCloud
|
|
7725
7725
|
# @type CustomConf: :class:`Tencentcloud::Cdb.v20170320.models.CustomConfig`
|
7726
7726
|
# @param WeightRule: 权重限制
|
7727
7727
|
# @type WeightRule: :class:`Tencentcloud::Cdb.v20170320.models.Rule`
|
7728
|
+
# @param CustomConfInfo: 代理配置
|
7729
|
+
# @type CustomConfInfo: Array
|
7728
7730
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7729
7731
|
# @type RequestId: String
|
7730
7732
|
|
7731
|
-
attr_accessor :Count, :CustomConf, :WeightRule, :RequestId
|
7733
|
+
attr_accessor :Count, :CustomConf, :WeightRule, :CustomConfInfo, :RequestId
|
7734
|
+
extend Gem::Deprecate
|
7735
|
+
deprecate :CustomConf, :none, 2025, 8
|
7736
|
+
deprecate :CustomConf=, :none, 2025, 8
|
7732
7737
|
|
7733
|
-
def initialize(count=nil, customconf=nil, weightrule=nil, requestid=nil)
|
7738
|
+
def initialize(count=nil, customconf=nil, weightrule=nil, customconfinfo=nil, requestid=nil)
|
7734
7739
|
@Count = count
|
7735
7740
|
@CustomConf = customconf
|
7736
7741
|
@WeightRule = weightrule
|
7742
|
+
@CustomConfInfo = customconfinfo
|
7737
7743
|
@RequestId = requestid
|
7738
7744
|
end
|
7739
7745
|
|
@@ -7747,6 +7753,14 @@ module TencentCloud
|
|
7747
7753
|
@WeightRule = Rule.new
|
7748
7754
|
@WeightRule.deserialize(params['WeightRule'])
|
7749
7755
|
end
|
7756
|
+
unless params['CustomConfInfo'].nil?
|
7757
|
+
@CustomConfInfo = []
|
7758
|
+
params['CustomConfInfo'].each do |i|
|
7759
|
+
customconfig_tmp = CustomConfig.new
|
7760
|
+
customconfig_tmp.deserialize(i)
|
7761
|
+
@CustomConfInfo << customconfig_tmp
|
7762
|
+
end
|
7763
|
+
end
|
7750
7764
|
@RequestId = params['RequestId']
|
7751
7765
|
end
|
7752
7766
|
end
|
@@ -13991,7 +14005,7 @@ module TencentCloud
|
|
13991
14005
|
|
13992
14006
|
# StopRollback请求参数结构体
|
13993
14007
|
class StopRollbackRequest < TencentCloud::Common::AbstractModel
|
13994
|
-
# @param InstanceId: 撤销回档任务对应的实例
|
14008
|
+
# @param InstanceId: 撤销回档任务对应的实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取。
|
13995
14009
|
# @type InstanceId: String
|
13996
14010
|
|
13997
14011
|
attr_accessor :InstanceId
|
@@ -14007,7 +14021,7 @@ module TencentCloud
|
|
14007
14021
|
|
14008
14022
|
# StopRollback返回参数结构体
|
14009
14023
|
class StopRollbackResponse < TencentCloud::Common::AbstractModel
|
14010
|
-
# @param AsyncRequestId: 执行请求的异步任务ID
|
14024
|
+
# @param AsyncRequestId: 执行请求的异步任务 ID。
|
14011
14025
|
# @type AsyncRequestId: String
|
14012
14026
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14013
14027
|
# @type RequestId: 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.1127
|
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-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|