tencentcloud-sdk-ckafka 3.0.434 → 3.0.435
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/v20190819/models.rb +32 -8
- 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: 71498745c493c553485a0c9683e86b4150b8c19c
|
4
|
+
data.tar.gz: da5c62535fe9b6fd80cc8db1dca44f53d6fe2008
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72863b5894e7bc082e49e7458a4ab0a4fe6e127419a3e268c470e2b7fc6119e52a50c2bf115f85bb7085949d2b526d7d7ba2de4dbefcb4a0876b1d487179f506
|
7
|
+
data.tar.gz: 573e8c0731920c4d96ec98f575ffccc98076203f1bb07db5ed5f0b8b60dd2097df4409ec0fdb1f414c142e80f3ca8ba4452c84c3bac58cf167ecd2eb6852dc3d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.435
|
data/lib/v20190819/models.rb
CHANGED
@@ -6581,10 +6581,16 @@ module TencentCloud
|
|
6581
6581
|
# @param UseTableMapping: 「分发到多个topic」开关,默认为false
|
6582
6582
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6583
6583
|
# @type UseTableMapping: Boolean
|
6584
|
+
# @param UseAutoCreateTopic: 使用的Topic是否需要自动创建(目前只支持SOURCE流入任务,如果不使用分发到多个topic,需要在Topic字段填写需要自动创建的topic名)
|
6585
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6586
|
+
# @type UseAutoCreateTopic: Boolean
|
6587
|
+
# @param CompressionType: 写入Topic时是否进行压缩,不开启填"none",开启的话,可选择"gzip", "snappy", "lz4"中的一个进行填写。
|
6588
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6589
|
+
# @type CompressionType: String
|
6584
6590
|
|
6585
|
-
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping
|
6591
|
+
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType
|
6586
6592
|
|
6587
|
-
def initialize(selfbuilt=nil, resource=nil, topic=nil, offsettype=nil, starttime=nil, resourcename=nil, zoneid=nil, topicid=nil, partitionnum=nil, enabletoleration=nil, qpslimit=nil, tablemappings=nil, usetablemapping=nil)
|
6593
|
+
def initialize(selfbuilt=nil, resource=nil, topic=nil, offsettype=nil, starttime=nil, resourcename=nil, zoneid=nil, topicid=nil, partitionnum=nil, enabletoleration=nil, qpslimit=nil, tablemappings=nil, usetablemapping=nil, useautocreatetopic=nil, compressiontype=nil)
|
6588
6594
|
@SelfBuilt = selfbuilt
|
6589
6595
|
@Resource = resource
|
6590
6596
|
@Topic = topic
|
@@ -6598,6 +6604,8 @@ module TencentCloud
|
|
6598
6604
|
@QpsLimit = qpslimit
|
6599
6605
|
@TableMappings = tablemappings
|
6600
6606
|
@UseTableMapping = usetablemapping
|
6607
|
+
@UseAutoCreateTopic = useautocreatetopic
|
6608
|
+
@CompressionType = compressiontype
|
6601
6609
|
end
|
6602
6610
|
|
6603
6611
|
def deserialize(params)
|
@@ -6621,6 +6629,8 @@ module TencentCloud
|
|
6621
6629
|
end
|
6622
6630
|
end
|
6623
6631
|
@UseTableMapping = params['UseTableMapping']
|
6632
|
+
@UseAutoCreateTopic = params['UseAutoCreateTopic']
|
6633
|
+
@CompressionType = params['CompressionType']
|
6624
6634
|
end
|
6625
6635
|
end
|
6626
6636
|
|
@@ -7628,7 +7638,7 @@ module TencentCloud
|
|
7628
7638
|
class MySQLParam < TencentCloud::Common::AbstractModel
|
7629
7639
|
# @param Database: MySQL的数据库名称,"*"为全数据库
|
7630
7640
|
# @type Database: String
|
7631
|
-
# @param Table: MySQL的数据表名称,"*"为所监听的所有数据库中的非系统表,可以","间隔,监听多个数据表,但数据表需要以"数据库名.数据表名"
|
7641
|
+
# @param Table: MySQL的数据表名称,"*"为所监听的所有数据库中的非系统表,可以","间隔,监听多个数据表,但数据表需要以"数据库名.数据表名"的格式进行填写,需要填入正则表达式时,格式为"数据库名\\.数据表名"
|
7632
7642
|
# @type Table: String
|
7633
7643
|
# @param Resource: 该MySQL在连接管理内的Id
|
7634
7644
|
# @type Resource: String
|
@@ -7674,10 +7684,12 @@ module TencentCloud
|
|
7674
7684
|
# @type RecordWithSchema: Boolean
|
7675
7685
|
# @param SignalDatabase: 存放信令表的数据库名称
|
7676
7686
|
# @type SignalDatabase: String
|
7687
|
+
# @param IsTableRegular: 输入的table是否为正则表达式,如果该选项以及IsTablePrefix同时为true,该选项的判断优先级高于IsTablePrefix
|
7688
|
+
# @type IsTableRegular: Boolean
|
7677
7689
|
|
7678
|
-
attr_accessor :Database, :Table, :Resource, :SnapshotMode, :DdlTopic, :DataSourceMonitorMode, :DataSourceMonitorResource, :DataSourceIncrementMode, :DataSourceIncrementColumn, :DataSourceStartFrom, :DataTargetInsertMode, :DataTargetPrimaryKeyField, :DataTargetRecordMapping, :TopicRegex, :TopicReplacement, :KeyColumns, :DropInvalidMessage, :DropCls, :OutputFormat, :IsTablePrefix, :IncludeContentChanges, :IncludeQuery, :RecordWithSchema, :SignalDatabase
|
7690
|
+
attr_accessor :Database, :Table, :Resource, :SnapshotMode, :DdlTopic, :DataSourceMonitorMode, :DataSourceMonitorResource, :DataSourceIncrementMode, :DataSourceIncrementColumn, :DataSourceStartFrom, :DataTargetInsertMode, :DataTargetPrimaryKeyField, :DataTargetRecordMapping, :TopicRegex, :TopicReplacement, :KeyColumns, :DropInvalidMessage, :DropCls, :OutputFormat, :IsTablePrefix, :IncludeContentChanges, :IncludeQuery, :RecordWithSchema, :SignalDatabase, :IsTableRegular
|
7679
7691
|
|
7680
|
-
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, dropinvalidmessage=nil, dropcls=nil, outputformat=nil, istableprefix=nil, includecontentchanges=nil, includequery=nil, recordwithschema=nil, signaldatabase=nil)
|
7692
|
+
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, dropinvalidmessage=nil, dropcls=nil, outputformat=nil, istableprefix=nil, includecontentchanges=nil, includequery=nil, recordwithschema=nil, signaldatabase=nil, istableregular=nil)
|
7681
7693
|
@Database = database
|
7682
7694
|
@Table = table
|
7683
7695
|
@Resource = resource
|
@@ -7702,6 +7714,7 @@ module TencentCloud
|
|
7702
7714
|
@IncludeQuery = includequery
|
7703
7715
|
@RecordWithSchema = recordwithschema
|
7704
7716
|
@SignalDatabase = signaldatabase
|
7717
|
+
@IsTableRegular = istableregular
|
7705
7718
|
end
|
7706
7719
|
|
7707
7720
|
def deserialize(params)
|
@@ -7739,6 +7752,7 @@ module TencentCloud
|
|
7739
7752
|
@IncludeQuery = params['IncludeQuery']
|
7740
7753
|
@RecordWithSchema = params['RecordWithSchema']
|
7741
7754
|
@SignalDatabase = params['SignalDatabase']
|
7755
|
+
@IsTableRegular = params['IsTableRegular']
|
7742
7756
|
end
|
7743
7757
|
end
|
7744
7758
|
|
@@ -7935,7 +7949,7 @@ module TencentCloud
|
|
7935
7949
|
class PostgreSQLParam < TencentCloud::Common::AbstractModel
|
7936
7950
|
# @param Database: PostgreSQL的数据库名称
|
7937
7951
|
# @type Database: String
|
7938
|
-
# @param Table: PostgreSQL的数据表名称,"*"为所监听的所有数据库中的非系统表,可以","间隔,监听多个数据表,但数据表需要以"
|
7952
|
+
# @param Table: PostgreSQL的数据表名称,"*"为所监听的所有数据库中的非系统表,可以","间隔,监听多个数据表,但数据表需要以"Schema名.数据表名"的格式进行填写,需要填入正则表达式时,格式为"Schema名\\.数据表名"
|
7939
7953
|
# @type Table: String
|
7940
7954
|
# @param Resource: 该PostgreSQL在连接管理内的Id
|
7941
7955
|
# @type Resource: String
|
@@ -9008,14 +9022,22 @@ module TencentCloud
|
|
9008
9022
|
# @param TopicId: Topic的TopicId【出参】
|
9009
9023
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9010
9024
|
# @type TopicId: String
|
9025
|
+
# @param CompressionType: 写入Topic时是否进行压缩,不开启填"none",开启的话,可选择"gzip", "snappy", "lz4"中的一个进行填写。
|
9026
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9027
|
+
# @type CompressionType: String
|
9028
|
+
# @param UseAutoCreateTopic: 使用的Topic是否需要自动创建(目前只支持SOURCE流入任务)
|
9029
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9030
|
+
# @type UseAutoCreateTopic: Boolean
|
9011
9031
|
|
9012
|
-
attr_accessor :Resource, :OffsetType, :StartTime, :TopicId
|
9032
|
+
attr_accessor :Resource, :OffsetType, :StartTime, :TopicId, :CompressionType, :UseAutoCreateTopic
|
9013
9033
|
|
9014
|
-
def initialize(resource=nil, offsettype=nil, starttime=nil, topicid=nil)
|
9034
|
+
def initialize(resource=nil, offsettype=nil, starttime=nil, topicid=nil, compressiontype=nil, useautocreatetopic=nil)
|
9015
9035
|
@Resource = resource
|
9016
9036
|
@OffsetType = offsettype
|
9017
9037
|
@StartTime = starttime
|
9018
9038
|
@TopicId = topicid
|
9039
|
+
@CompressionType = compressiontype
|
9040
|
+
@UseAutoCreateTopic = useautocreatetopic
|
9019
9041
|
end
|
9020
9042
|
|
9021
9043
|
def deserialize(params)
|
@@ -9023,6 +9045,8 @@ module TencentCloud
|
|
9023
9045
|
@OffsetType = params['OffsetType']
|
9024
9046
|
@StartTime = params['StartTime']
|
9025
9047
|
@TopicId = params['TopicId']
|
9048
|
+
@CompressionType = params['CompressionType']
|
9049
|
+
@UseAutoCreateTopic = params['UseAutoCreateTopic']
|
9026
9050
|
end
|
9027
9051
|
end
|
9028
9052
|
|
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: 3.0.
|
4
|
+
version: 3.0.435
|
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-10-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|