tencentcloud-sdk-ckafka 1.0.364 → 3.0.371

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190819/models.rb +25 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6c81a6ba860029639d992234c4dec38ace625e4d
4
- data.tar.gz: 79129f11a61cdc261ef45fd0efba198a70c54f91
3
+ metadata.gz: d5917427d013fca13a47d763c0ae4047e107a768
4
+ data.tar.gz: e7b6a9cf6e0eca04fb78f00beb290f9cdab2cc63
5
5
  SHA512:
6
- metadata.gz: 17337a6512417ac37a884cf55555aa8fda87840f8f1977c11ef30d9daf4600cf8eb66b9ead453d013d884168cf1c5b9ac1b6a564964531279ba1962c099df2ed
7
- data.tar.gz: a46418f9c2fe77d358e178aaccb77bb51989304c52889bd084deb5ca4e06c36bd681786cf6415a353f899cfb261c231357aef85b2cc718299c17f9318652fe22
6
+ metadata.gz: 869ba5d7fea03c0fdaf90eee759f9c49825ed6bb844564499827c9a029978992cb40d182340418ad21c299d4f2c3bb02d5a30b9a0d94c049a48fa6d2fcb8c780
7
+ data.tar.gz: d08dceff3c9007c6882fb8e977c4281f5e4ae89a1bb6c6d1cb62eb34b3efabad17917bb1cc46f63d76c3b1bf7bbbbe8780cf5eb1321535a1de0ecaae4e1c6092
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.364
1
+ 3.0.371
@@ -7154,10 +7154,16 @@ module TencentCloud
7154
7154
  # @type DataTargetPrimaryKeyField: String
7155
7155
  # @param DataTargetRecordMapping: 表与消息间的映射关系
7156
7156
  # @type DataTargetRecordMapping: Array
7157
+ # @param TopicRegex: 事件路由到特定主题的正则表达式,默认为(.*)
7158
+ # @type TopicRegex: String
7159
+ # @param TopicReplacement: TopicRegex的引用组,指定$1、$2等
7160
+ # @type TopicReplacement: String
7161
+ # @param KeyColumns: 格式:库1.表1:字段1,字段2;库2.表2:字段2,表之间;(分号)隔开,字段之间,(逗号)隔开。不指定的表默认取表的主键
7162
+ # @type KeyColumns: String
7157
7163
 
7158
- attr_accessor :Database, :Table, :Resource, :SnapshotMode, :DdlTopic, :DataSourceMonitorMode, :DataSourceMonitorResource, :DataSourceIncrementMode, :DataSourceIncrementColumn, :DataSourceStartFrom, :DataTargetInsertMode, :DataTargetPrimaryKeyField, :DataTargetRecordMapping
7164
+ attr_accessor :Database, :Table, :Resource, :SnapshotMode, :DdlTopic, :DataSourceMonitorMode, :DataSourceMonitorResource, :DataSourceIncrementMode, :DataSourceIncrementColumn, :DataSourceStartFrom, :DataTargetInsertMode, :DataTargetPrimaryKeyField, :DataTargetRecordMapping, :TopicRegex, :TopicReplacement, :KeyColumns
7159
7165
 
7160
- def initialize(database=nil, table=nil, resource=nil, snapshotmode=nil, ddltopic=nil, datasourcemonitormode=nil, datasourcemonitorresource=nil, datasourceincrementmode=nil, datasourceincrementcolumn=nil, datasourcestartfrom=nil, datatargetinsertmode=nil, datatargetprimarykeyfield=nil, datatargetrecordmapping=nil)
7166
+ def initialize(database=nil, table=nil, resource=nil, snapshotmode=nil, ddltopic=nil, datasourcemonitormode=nil, datasourcemonitorresource=nil, datasourceincrementmode=nil, datasourceincrementcolumn=nil, datasourcestartfrom=nil, datatargetinsertmode=nil, datatargetprimarykeyfield=nil, datatargetrecordmapping=nil, topicregex=nil, topicreplacement=nil, keycolumns=nil)
7161
7167
  @Database = database
7162
7168
  @Table = table
7163
7169
  @Resource = resource
@@ -7171,6 +7177,9 @@ module TencentCloud
7171
7177
  @DataTargetInsertMode = datatargetinsertmode
7172
7178
  @DataTargetPrimaryKeyField = datatargetprimarykeyfield
7173
7179
  @DataTargetRecordMapping = datatargetrecordmapping
7180
+ @TopicRegex = topicregex
7181
+ @TopicReplacement = topicreplacement
7182
+ @KeyColumns = keycolumns
7174
7183
  end
7175
7184
 
7176
7185
  def deserialize(params)
@@ -7194,6 +7203,9 @@ module TencentCloud
7194
7203
  @DataTargetRecordMapping << recordmapping_tmp
7195
7204
  end
7196
7205
  end
7206
+ @TopicRegex = params['TopicRegex']
7207
+ @TopicReplacement = params['TopicReplacement']
7208
+ @KeyColumns = params['KeyColumns']
7197
7209
  end
7198
7210
  end
7199
7211
 
@@ -8018,21 +8030,29 @@ module TencentCloud
8018
8030
  # @type Bid: String
8019
8031
  # @param Tid: Tdw的tid
8020
8032
  # @type Tid: String
8021
- # @param IsDomestic: 是否为国内站,默认true
8033
+ # @param IsDomestic: 默认true
8022
8034
  # @type IsDomestic: Boolean
8035
+ # @param TdwHost: TDW地址,默认tl-tdbank-tdmanager.tencent-distribute.com
8036
+ # @type TdwHost: String
8037
+ # @param TdwPort: TDW端口,默认8099
8038
+ # @type TdwPort: Integer
8023
8039
 
8024
- attr_accessor :Bid, :Tid, :IsDomestic
8040
+ attr_accessor :Bid, :Tid, :IsDomestic, :TdwHost, :TdwPort
8025
8041
 
8026
- def initialize(bid=nil, tid=nil, isdomestic=nil)
8042
+ def initialize(bid=nil, tid=nil, isdomestic=nil, tdwhost=nil, tdwport=nil)
8027
8043
  @Bid = bid
8028
8044
  @Tid = tid
8029
8045
  @IsDomestic = isdomestic
8046
+ @TdwHost = tdwhost
8047
+ @TdwPort = tdwport
8030
8048
  end
8031
8049
 
8032
8050
  def deserialize(params)
8033
8051
  @Bid = params['Bid']
8034
8052
  @Tid = params['Tid']
8035
8053
  @IsDomestic = params['IsDomestic']
8054
+ @TdwHost = params['TdwHost']
8055
+ @TdwPort = params['TdwPort']
8036
8056
  end
8037
8057
  end
8038
8058
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ckafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.364
4
+ version: 3.0.371
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-07-26 00:00:00.000000000 Z
11
+ date: 2022-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common