tencentcloud-sdk-ckafka 3.0.486 → 3.0.488
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/client.rb +24 -0
- data/lib/v20190819/models.rb +74 -0
- 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: 8e7114681996906ef2f9c29455f39b515d9a6517
|
|
4
|
+
data.tar.gz: 3a36eb4b249b7e965369f77df0d3f90b80aefed3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef43f6cdb8efeb5606d01519b247dfe56f3af1e28a1a549edfd76b555aaab55052b77234ebcbd89bf25ea7297ce7272500f908b0807fcfce130ee1b5796745e8
|
|
7
|
+
data.tar.gz: 2f72f652dfc208d91fea87e8f60e14a6a28b68d7af9f5ee2829a8f5b8d827448e1372560410ff7ede63982d3897372d7fda6ac9a38d9190c73611eed2c58eb2e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.488
|
data/lib/v20190819/client.rb
CHANGED
|
@@ -1254,6 +1254,30 @@ module TencentCloud
|
|
|
1254
1254
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1255
1255
|
end
|
|
1256
1256
|
|
|
1257
|
+
# 查询topic 生产端连接信息
|
|
1258
|
+
|
|
1259
|
+
# @param request: Request instance for DescribeTopicProduceConnection.
|
|
1260
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicProduceConnectionRequest`
|
|
1261
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicProduceConnectionResponse`
|
|
1262
|
+
def DescribeTopicProduceConnection(request)
|
|
1263
|
+
body = send_request('DescribeTopicProduceConnection', request.serialize)
|
|
1264
|
+
response = JSON.parse(body)
|
|
1265
|
+
if response['Response'].key?('Error') == false
|
|
1266
|
+
model = DescribeTopicProduceConnectionResponse.new
|
|
1267
|
+
model.deserialize(response['Response'])
|
|
1268
|
+
model
|
|
1269
|
+
else
|
|
1270
|
+
code = response['Response']['Error']['Code']
|
|
1271
|
+
message = response['Response']['Error']['Message']
|
|
1272
|
+
reqid = response['Response']['RequestId']
|
|
1273
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1274
|
+
end
|
|
1275
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1276
|
+
raise e
|
|
1277
|
+
rescue StandardError => e
|
|
1278
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1279
|
+
end
|
|
1280
|
+
|
|
1257
1281
|
# 查询订阅某主题消息分组信息
|
|
1258
1282
|
|
|
1259
1283
|
# @param request: Request instance for DescribeTopicSubscribeGroup.
|
data/lib/v20190819/models.rb
CHANGED
|
@@ -3368,6 +3368,33 @@ module TencentCloud
|
|
|
3368
3368
|
end
|
|
3369
3369
|
end
|
|
3370
3370
|
|
|
3371
|
+
# topic链接信息
|
|
3372
|
+
class DescribeConnectInfoResultDTO < TencentCloud::Common::AbstractModel
|
|
3373
|
+
# @param IpAddr: ip地址
|
|
3374
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3375
|
+
# @type IpAddr: String
|
|
3376
|
+
# @param Time: 连结时间
|
|
3377
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3378
|
+
# @type Time: String
|
|
3379
|
+
# @param IsUnSupportVersion: 是否支持的版本
|
|
3380
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3381
|
+
# @type IsUnSupportVersion: Boolean
|
|
3382
|
+
|
|
3383
|
+
attr_accessor :IpAddr, :Time, :IsUnSupportVersion
|
|
3384
|
+
|
|
3385
|
+
def initialize(ipaddr=nil, time=nil, isunsupportversion=nil)
|
|
3386
|
+
@IpAddr = ipaddr
|
|
3387
|
+
@Time = time
|
|
3388
|
+
@IsUnSupportVersion = isunsupportversion
|
|
3389
|
+
end
|
|
3390
|
+
|
|
3391
|
+
def deserialize(params)
|
|
3392
|
+
@IpAddr = params['IpAddr']
|
|
3393
|
+
@Time = params['Time']
|
|
3394
|
+
@IsUnSupportVersion = params['IsUnSupportVersion']
|
|
3395
|
+
end
|
|
3396
|
+
end
|
|
3397
|
+
|
|
3371
3398
|
# 查询连接源具体数据的返参
|
|
3372
3399
|
class DescribeConnectResource < TencentCloud::Common::AbstractModel
|
|
3373
3400
|
# @param ResourceId: 连接源的Id
|
|
@@ -4661,6 +4688,53 @@ module TencentCloud
|
|
|
4661
4688
|
end
|
|
4662
4689
|
end
|
|
4663
4690
|
|
|
4691
|
+
# DescribeTopicProduceConnection请求参数结构体
|
|
4692
|
+
class DescribeTopicProduceConnectionRequest < TencentCloud::Common::AbstractModel
|
|
4693
|
+
# @param InstanceId: 实例id
|
|
4694
|
+
# @type InstanceId: String
|
|
4695
|
+
# @param TopicName: topic名称
|
|
4696
|
+
# @type TopicName: String
|
|
4697
|
+
|
|
4698
|
+
attr_accessor :InstanceId, :TopicName
|
|
4699
|
+
|
|
4700
|
+
def initialize(instanceid=nil, topicname=nil)
|
|
4701
|
+
@InstanceId = instanceid
|
|
4702
|
+
@TopicName = topicname
|
|
4703
|
+
end
|
|
4704
|
+
|
|
4705
|
+
def deserialize(params)
|
|
4706
|
+
@InstanceId = params['InstanceId']
|
|
4707
|
+
@TopicName = params['TopicName']
|
|
4708
|
+
end
|
|
4709
|
+
end
|
|
4710
|
+
|
|
4711
|
+
# DescribeTopicProduceConnection返回参数结构体
|
|
4712
|
+
class DescribeTopicProduceConnectionResponse < TencentCloud::Common::AbstractModel
|
|
4713
|
+
# @param Result: 链接信息返回结果集
|
|
4714
|
+
# @type Result: Array
|
|
4715
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4716
|
+
# @type RequestId: String
|
|
4717
|
+
|
|
4718
|
+
attr_accessor :Result, :RequestId
|
|
4719
|
+
|
|
4720
|
+
def initialize(result=nil, requestid=nil)
|
|
4721
|
+
@Result = result
|
|
4722
|
+
@RequestId = requestid
|
|
4723
|
+
end
|
|
4724
|
+
|
|
4725
|
+
def deserialize(params)
|
|
4726
|
+
unless params['Result'].nil?
|
|
4727
|
+
@Result = []
|
|
4728
|
+
params['Result'].each do |i|
|
|
4729
|
+
describeconnectinforesultdto_tmp = DescribeConnectInfoResultDTO.new
|
|
4730
|
+
describeconnectinforesultdto_tmp.deserialize(i)
|
|
4731
|
+
@Result << describeconnectinforesultdto_tmp
|
|
4732
|
+
end
|
|
4733
|
+
end
|
|
4734
|
+
@RequestId = params['RequestId']
|
|
4735
|
+
end
|
|
4736
|
+
end
|
|
4737
|
+
|
|
4664
4738
|
# DescribeTopic请求参数结构体
|
|
4665
4739
|
class DescribeTopicRequest < TencentCloud::Common::AbstractModel
|
|
4666
4740
|
# @param InstanceId: 实例 ID
|
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.488
|
|
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-01-
|
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|