tencentcloud-sdk-cls 3.0.626 → 3.0.627
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/v20201016/models.rb +19 -5
- 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: e3ebb586f149bc001559ab013333bd5c7570c11c
|
4
|
+
data.tar.gz: 0ec0231faa9203a6025ae1486bcad9b3669634d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ddeca9c5e593c72b20c84d115893d70211df9add820c61728f2207b4913dbaaff2e93a1bb9b593aee82e925f35b6fad52d8f6f6daf638e7fa372398dbd6c75a
|
7
|
+
data.tar.gz: dbd550d28423936943227a1aea3e5ccb6587427ac1a26497d9ac382c8f53ce10ee57eedc0e9cc342b09c74f7a77b7e02d7725ba91d76095bbaa5d6bc1a94ef1e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.627
|
data/lib/v20201016/models.rb
CHANGED
@@ -3995,15 +3995,18 @@ module TencentCloud
|
|
3995
3995
|
# @type TopicID: String
|
3996
3996
|
# @param Compression: 压缩方式[0:NONE;2:SNAPPY;3:LZ4]
|
3997
3997
|
# @type Compression: Integer
|
3998
|
+
# @param ConsumerContent: kafka协议消费数据格式
|
3999
|
+
# @type ConsumerContent: :class:`Tencentcloud::Cls.v20201016.models.KafkaConsumerContent`
|
3998
4000
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3999
4001
|
# @type RequestId: String
|
4000
4002
|
|
4001
|
-
attr_accessor :Status, :TopicID, :Compression, :RequestId
|
4003
|
+
attr_accessor :Status, :TopicID, :Compression, :ConsumerContent, :RequestId
|
4002
4004
|
|
4003
|
-
def initialize(status=nil, topicid=nil, compression=nil, requestid=nil)
|
4005
|
+
def initialize(status=nil, topicid=nil, compression=nil, consumercontent=nil, requestid=nil)
|
4004
4006
|
@Status = status
|
4005
4007
|
@TopicID = topicid
|
4006
4008
|
@Compression = compression
|
4009
|
+
@ConsumerContent = consumercontent
|
4007
4010
|
@RequestId = requestid
|
4008
4011
|
end
|
4009
4012
|
|
@@ -4011,6 +4014,10 @@ module TencentCloud
|
|
4011
4014
|
@Status = params['Status']
|
4012
4015
|
@TopicID = params['TopicID']
|
4013
4016
|
@Compression = params['Compression']
|
4017
|
+
unless params['ConsumerContent'].nil?
|
4018
|
+
@ConsumerContent = KafkaConsumerContent.new
|
4019
|
+
@ConsumerContent.deserialize(params['ConsumerContent'])
|
4020
|
+
end
|
4014
4021
|
@RequestId = params['RequestId']
|
4015
4022
|
end
|
4016
4023
|
end
|
@@ -6597,17 +6604,24 @@ module TencentCloud
|
|
6597
6604
|
# @type FromTopicId: String
|
6598
6605
|
# @param Compression: 压缩方式[0:NONE;2:SNAPPY;3:LZ4]
|
6599
6606
|
# @type Compression: Integer
|
6607
|
+
# @param ConsumerContent: kafka协议消费数据格式
|
6608
|
+
# @type ConsumerContent: :class:`Tencentcloud::Cls.v20201016.models.KafkaConsumerContent`
|
6600
6609
|
|
6601
|
-
attr_accessor :FromTopicId, :Compression
|
6610
|
+
attr_accessor :FromTopicId, :Compression, :ConsumerContent
|
6602
6611
|
|
6603
|
-
def initialize(fromtopicid=nil, compression=nil)
|
6612
|
+
def initialize(fromtopicid=nil, compression=nil, consumercontent=nil)
|
6604
6613
|
@FromTopicId = fromtopicid
|
6605
6614
|
@Compression = compression
|
6615
|
+
@ConsumerContent = consumercontent
|
6606
6616
|
end
|
6607
6617
|
|
6608
6618
|
def deserialize(params)
|
6609
6619
|
@FromTopicId = params['FromTopicId']
|
6610
6620
|
@Compression = params['Compression']
|
6621
|
+
unless params['ConsumerContent'].nil?
|
6622
|
+
@ConsumerContent = KafkaConsumerContent.new
|
6623
|
+
@ConsumerContent.deserialize(params['ConsumerContent'])
|
6624
|
+
end
|
6611
6625
|
end
|
6612
6626
|
end
|
6613
6627
|
|
@@ -7554,7 +7568,7 @@ module TencentCloud
|
|
7554
7568
|
class ScheduledSqlResouceInfo < TencentCloud::Common::AbstractModel
|
7555
7569
|
# @param TopicId: 目标主题id
|
7556
7570
|
# @type TopicId: String
|
7557
|
-
# @param Region:
|
7571
|
+
# @param Region: 主题的地域信息
|
7558
7572
|
# @type Region: String
|
7559
7573
|
# @param BizType: 主题类型:0为日志主题,1为指标主题
|
7560
7574
|
# @type BizType: Integer
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.627
|
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-08-
|
11
|
+
date: 2023-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|