tencentcloud-sdk-ckafka 3.0.534 → 3.0.535
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 +12 -2
- 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: d88631438457065fa0b44cde2a33db66b7d7440c
|
|
4
|
+
data.tar.gz: 2f66df67c469fa6e0e6f245d1d512dad012c0090
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a53d316a83710a0a5a704779d3f407d9c8fa009637c45076c0edccd7d86d2504bc8f93ee82e7b1620fcb386f276731d65acb67ed580bd6a97bab7c592a848998
|
|
7
|
+
data.tar.gz: b37a60d236d6e15c6efedba6e6e3b7838e17c2acc35d7100f4e5ce744852ffcb2c29aec93f926331b4edd308f7fc804108872d342a96489cbfd8ab7ea379f785
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.535
|
data/lib/v20190819/models.rb
CHANGED
|
@@ -7495,10 +7495,16 @@ module TencentCloud
|
|
|
7495
7495
|
# @param MsgMultiple: 源topic消息1条扩增成msgMultiple条写入目标topic(该参数目前只有ckafka流入ckafka适用)
|
|
7496
7496
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7497
7497
|
# @type MsgMultiple: Integer
|
|
7498
|
+
# @param ConnectorSyncType: 数据同步专用参数, 正常数据处理可为空, 实例级别同步: 仅同步元数据填写"META_SYNC_INSTANCE_TYPE", 同步元数据及全部topic内消息的填写"META_AND_DATA_SYNC_INSTANCE_TYPE"; topic级别同步: 选中的源和目标topic中的消息(需要目标实例也包含该topic)填写"DATA_SYNC_TYPE"
|
|
7499
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7500
|
+
# @type ConnectorSyncType: String
|
|
7501
|
+
# @param KeepPartition: 数据同步专用参数, 当通过时,希望下游的消息写入分区与上游的一致,则填true,但下游分区小于上游时,会报错; 不需要一致则为false, 默认为false
|
|
7502
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7503
|
+
# @type KeepPartition: Boolean
|
|
7498
7504
|
|
|
7499
|
-
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple
|
|
7505
|
+
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple, :ConnectorSyncType, :KeepPartition
|
|
7500
7506
|
|
|
7501
|
-
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, msgmultiple=nil)
|
|
7507
|
+
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, msgmultiple=nil, connectorsynctype=nil, keeppartition=nil)
|
|
7502
7508
|
@SelfBuilt = selfbuilt
|
|
7503
7509
|
@Resource = resource
|
|
7504
7510
|
@Topic = topic
|
|
@@ -7515,6 +7521,8 @@ module TencentCloud
|
|
|
7515
7521
|
@UseAutoCreateTopic = useautocreatetopic
|
|
7516
7522
|
@CompressionType = compressiontype
|
|
7517
7523
|
@MsgMultiple = msgmultiple
|
|
7524
|
+
@ConnectorSyncType = connectorsynctype
|
|
7525
|
+
@KeepPartition = keeppartition
|
|
7518
7526
|
end
|
|
7519
7527
|
|
|
7520
7528
|
def deserialize(params)
|
|
@@ -7541,6 +7549,8 @@ module TencentCloud
|
|
|
7541
7549
|
@UseAutoCreateTopic = params['UseAutoCreateTopic']
|
|
7542
7550
|
@CompressionType = params['CompressionType']
|
|
7543
7551
|
@MsgMultiple = params['MsgMultiple']
|
|
7552
|
+
@ConnectorSyncType = params['ConnectorSyncType']
|
|
7553
|
+
@KeepPartition = params['KeepPartition']
|
|
7544
7554
|
end
|
|
7545
7555
|
end
|
|
7546
7556
|
|
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.535
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|