tencentcloud-sdk-dts 3.0.1161 → 3.0.1170

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d403658fb1176ee134f9b64b0a9d7bb445e6bcb
4
- data.tar.gz: 2a0983b4291993b2a680618e0f8fbb1b9e07b06e
3
+ metadata.gz: 75b891f2712bc52339436ea4b9ad43c09701d09a
4
+ data.tar.gz: 6c339d4c7ee03f3a4a61caf2ae314b72e2e069f3
5
5
  SHA512:
6
- metadata.gz: dd1b82b651989624bcd3464b77e0dcd23424d7d0cfd2bdfb6d0e651483e10036fbedf545ffe30da4fdd3f51f2cf0ff1f27ce256165cd357b03625b1bcc25a43a
7
- data.tar.gz: 192b3b9ea15a965aa45ea499ee0937b160f92d14917f9119afe04e1cfb185868c684fdb86288e5e82a28369005bbb2cff7c63200c395cf408b19f56dee55fe6a
6
+ metadata.gz: c98f7628923c06487cdf5eb3abed139a0f644f62614f1130dca0d47d540b3cf2d1772df3b792cc256a9ce8892ea9f2e3062faa857383536efb8e3356b99deab8
7
+ data.tar.gz: d7dcef33d403429cbff798e7366d88a593ebae3ea6096768491d835c2c5614cc9ff7abbf1d0c081f84d4a9856c2e8f8a9430e38c1a9f169215e6249e628ec777
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1161
1
+ 3.0.1170
@@ -831,10 +831,10 @@ module TencentCloud
831
831
 
832
832
  attr_accessor :Region, :InstanceId, :Ip, :Port, :ReadOnly, :User, :Password
833
833
  extend Gem::Deprecate
834
- deprecate :Ip, :none, 2025, 9
835
- deprecate :Ip=, :none, 2025, 9
836
- deprecate :Port, :none, 2025, 9
837
- deprecate :Port=, :none, 2025, 9
834
+ deprecate :Ip, :none, 2025, 11
835
+ deprecate :Ip=, :none, 2025, 11
836
+ deprecate :Port, :none, 2025, 11
837
+ deprecate :Port=, :none, 2025, 11
838
838
 
839
839
  def initialize(region=nil, instanceid=nil, ip=nil, port=nil, readonly=nil, user=nil, password=nil)
840
840
  @Region = region
@@ -4302,14 +4302,17 @@ module TencentCloud
4302
4302
  # @type DDLTopicName: String
4303
4303
  # @param TopicRules: 单topic和自定义topic的描述
4304
4304
  # @type TopicRules: Array
4305
+ # @param DataOption: 其他附加信息,对于特定数据类型可设置额外参数,比如针对Canal兼容的功能支持:"canalOfficialFormat":"on"表示打开Canal兼容功能,默认不带。
4306
+ # @type DataOption: Array
4305
4307
 
4306
- attr_accessor :DataType, :TopicType, :DDLTopicName, :TopicRules
4308
+ attr_accessor :DataType, :TopicType, :DDLTopicName, :TopicRules, :DataOption
4307
4309
 
4308
- def initialize(datatype=nil, topictype=nil, ddltopicname=nil, topicrules=nil)
4310
+ def initialize(datatype=nil, topictype=nil, ddltopicname=nil, topicrules=nil, dataoption=nil)
4309
4311
  @DataType = datatype
4310
4312
  @TopicType = topictype
4311
4313
  @DDLTopicName = ddltopicname
4312
4314
  @TopicRules = topicrules
4315
+ @DataOption = dataoption
4313
4316
  end
4314
4317
 
4315
4318
  def deserialize(params)
@@ -4324,6 +4327,14 @@ module TencentCloud
4324
4327
  @TopicRules << topicrule_tmp
4325
4328
  end
4326
4329
  end
4330
+ unless params['DataOption'].nil?
4331
+ @DataOption = []
4332
+ params['DataOption'].each do |i|
4333
+ keyvaluepairoption_tmp = KeyValuePairOption.new
4334
+ keyvaluepairoption_tmp.deserialize(i)
4335
+ @DataOption << keyvaluepairoption_tmp
4336
+ end
4337
+ end
4327
4338
  end
4328
4339
  end
4329
4340
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1161
4
+ version: 3.0.1170
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-11-04 00:00:00.000000000 Z
11
+ date: 2025-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common