tencentcloud-sdk-ckafka 3.0.971 → 3.0.973
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 +27 -10
- 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: 42784d4440dd8e78b55bf2c5ba7530f8de4efb92
|
4
|
+
data.tar.gz: f264e7ae232a144ee883cb289868cfbd61a79824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a4e301a43fe505af657510178c6961a891afb57d59460523c7dc0b4370a99766aa3422316af3a5971149ea266836eacd6c1c96d36031b61b444b86014c632ab
|
7
|
+
data.tar.gz: 371875e3792eb7d2d35810b6a917011efde67722f97d899bed1169fb116627bb40e702e746ab9272092f8b75aa2c7f4742fdc047fbe29195deac867701655464
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.973
|
data/lib/v20190819/models.rb
CHANGED
@@ -2386,8 +2386,8 @@ module TencentCloud
|
|
2386
2386
|
|
2387
2387
|
attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
|
2388
2388
|
extend Gem::Deprecate
|
2389
|
-
deprecate :DeleteRouteTimestamp, :none,
|
2390
|
-
deprecate :DeleteRouteTimestamp=, :none,
|
2389
|
+
deprecate :DeleteRouteTimestamp, :none, 2025, 1
|
2390
|
+
deprecate :DeleteRouteTimestamp=, :none, 2025, 1
|
2391
2391
|
|
2392
2392
|
def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
|
2393
2393
|
@ReturnCode = returncode
|
@@ -5106,19 +5106,31 @@ module TencentCloud
|
|
5106
5106
|
# @type Offset: Integer
|
5107
5107
|
# @param Limit: 本次返回结果的最大个数,默认为50,最大值为50
|
5108
5108
|
# @type Limit: Integer
|
5109
|
+
# @param QueryFromConnectResource: 是否从连接查询topic列表
|
5110
|
+
# @type QueryFromConnectResource: Boolean
|
5111
|
+
# @param ConnectResourceId: 连接的ID
|
5112
|
+
# @type ConnectResourceId: String
|
5113
|
+
# @param TopicRegularExpression: topic资源表达式
|
5114
|
+
# @type TopicRegularExpression: String
|
5109
5115
|
|
5110
|
-
attr_accessor :SearchWord, :Offset, :Limit
|
5116
|
+
attr_accessor :SearchWord, :Offset, :Limit, :QueryFromConnectResource, :ConnectResourceId, :TopicRegularExpression
|
5111
5117
|
|
5112
|
-
def initialize(searchword=nil, offset=nil, limit=nil)
|
5118
|
+
def initialize(searchword=nil, offset=nil, limit=nil, queryfromconnectresource=nil, connectresourceid=nil, topicregularexpression=nil)
|
5113
5119
|
@SearchWord = searchword
|
5114
5120
|
@Offset = offset
|
5115
5121
|
@Limit = limit
|
5122
|
+
@QueryFromConnectResource = queryfromconnectresource
|
5123
|
+
@ConnectResourceId = connectresourceid
|
5124
|
+
@TopicRegularExpression = topicregularexpression
|
5116
5125
|
end
|
5117
5126
|
|
5118
5127
|
def deserialize(params)
|
5119
5128
|
@SearchWord = params['SearchWord']
|
5120
5129
|
@Offset = params['Offset']
|
5121
5130
|
@Limit = params['Limit']
|
5131
|
+
@QueryFromConnectResource = params['QueryFromConnectResource']
|
5132
|
+
@ConnectResourceId = params['ConnectResourceId']
|
5133
|
+
@TopicRegularExpression = params['TopicRegularExpression']
|
5122
5134
|
end
|
5123
5135
|
end
|
5124
5136
|
|
@@ -8622,10 +8634,13 @@ module TencentCloud
|
|
8622
8634
|
# @param KeepPartition: 数据同步专用参数, 当通过时,希望下游的消息写入分区与上游的一致,则填true,但下游分区小于上游时,会报错; 不需要一致则为false, 默认为false
|
8623
8635
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8624
8636
|
# @type KeepPartition: Boolean
|
8637
|
+
# @param TopicRegularExpression: 正则匹配Topic列表
|
8638
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8639
|
+
# @type TopicRegularExpression: String
|
8625
8640
|
|
8626
|
-
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple, :ConnectorSyncType, :KeepPartition
|
8641
|
+
attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple, :ConnectorSyncType, :KeepPartition, :TopicRegularExpression
|
8627
8642
|
|
8628
|
-
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)
|
8643
|
+
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, topicregularexpression=nil)
|
8629
8644
|
@SelfBuilt = selfbuilt
|
8630
8645
|
@Resource = resource
|
8631
8646
|
@Topic = topic
|
@@ -8644,6 +8659,7 @@ module TencentCloud
|
|
8644
8659
|
@MsgMultiple = msgmultiple
|
8645
8660
|
@ConnectorSyncType = connectorsynctype
|
8646
8661
|
@KeepPartition = keeppartition
|
8662
|
+
@TopicRegularExpression = topicregularexpression
|
8647
8663
|
end
|
8648
8664
|
|
8649
8665
|
def deserialize(params)
|
@@ -8672,6 +8688,7 @@ module TencentCloud
|
|
8672
8688
|
@MsgMultiple = params['MsgMultiple']
|
8673
8689
|
@ConnectorSyncType = params['ConnectorSyncType']
|
8674
8690
|
@KeepPartition = params['KeepPartition']
|
8691
|
+
@TopicRegularExpression = params['TopicRegularExpression']
|
8675
8692
|
end
|
8676
8693
|
end
|
8677
8694
|
|
@@ -9261,8 +9278,8 @@ module TencentCloud
|
|
9261
9278
|
|
9262
9279
|
attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte
|
9263
9280
|
extend Gem::Deprecate
|
9264
|
-
deprecate :DynamicDiskConfig, :none,
|
9265
|
-
deprecate :DynamicDiskConfig=, :none,
|
9281
|
+
deprecate :DynamicDiskConfig, :none, 2025, 1
|
9282
|
+
deprecate :DynamicDiskConfig=, :none, 2025, 1
|
9266
9283
|
|
9267
9284
|
def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil, maxmessagebyte=nil)
|
9268
9285
|
@InstanceId = instanceid
|
@@ -12441,8 +12458,8 @@ module TencentCloud
|
|
12441
12458
|
|
12442
12459
|
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
|
12443
12460
|
extend Gem::Deprecate
|
12444
|
-
deprecate :Exflag, :none,
|
12445
|
-
deprecate :Exflag=, :none,
|
12461
|
+
deprecate :Exflag, :none, 2025, 1
|
12462
|
+
deprecate :Exflag=, :none, 2025, 1
|
12446
12463
|
|
12447
12464
|
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
|
12448
12465
|
@ZoneId = zoneid
|
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.973
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|