tencentcloud-sdk-tdmq 1.0.230 → 1.0.234

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f62bcf5456b78c67c2215baf63573bb9dbc9663
4
- data.tar.gz: c859cc750fec6a2d8d16b468b65ee840a03cebae
3
+ metadata.gz: a7b65dfb67a631085c7ef71fd86f3e2b48299fad
4
+ data.tar.gz: 39985745f40c6084307a02bd8122e1aa12071564
5
5
  SHA512:
6
- metadata.gz: 1b867158c84517182de8b90b469ac60b2439627a880e002f98dea374fe1ead215f8d5a3545454af2b690f64e861f2558c03dc29838e595ff9e66720a1c5a4ed3
7
- data.tar.gz: 9c09cff8292577c9de473e3aa37174b1b8ac92a47b50001adff805fac5f0f3b85fe80f4cd8c09fb7716b9ca0cea9a6e93608eeda7791f061e2f06d90cea476a2
6
+ metadata.gz: d9b436eba11637dc5cba37083c15f75752f0de02424f9a43d0db507aab8921394a638795d040b6add59e83fb451f23ede6ff2dcaa1f9e9aa50a69d60f9564219
7
+ data.tar.gz: 9a4945ab671760edd082b691bebf7a9a05854631816de78f2efd9a78cf8e5de6ee913b5aff867bce4a70e96a944ac35832e526b1a2dce2b0540a0b23a1e98fb5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.230
1
+ 1.0.234
@@ -1517,30 +1517,6 @@ module TencentCloud
1517
1517
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1518
1518
  end
1519
1519
 
1520
- # 获取生产者列表,仅显示在线的生产者
1521
-
1522
- # @param request: Request instance for DescribeProducers.
1523
- # @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeProducersRequest`
1524
- # @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeProducersResponse`
1525
- def DescribeProducers(request)
1526
- body = send_request('DescribeProducers', request.serialize)
1527
- response = JSON.parse(body)
1528
- if response['Response'].key?('Error') == false
1529
- model = DescribeProducersResponse.new
1530
- model.deserialize(response['Response'])
1531
- model
1532
- else
1533
- code = response['Response']['Error']['Code']
1534
- message = response['Response']['Error']['Message']
1535
- reqid = response['Response']['RequestId']
1536
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1537
- end
1538
- rescue TencentCloud::Common::TencentCloudSDKException => e
1539
- raise e
1540
- rescue StandardError => e
1541
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1542
- end
1543
-
1544
1520
  # 获取消息生产概览信息
1545
1521
 
1546
1522
  # @param request: Request instance for DescribePublisherSummary.
@@ -1059,53 +1059,6 @@ module TencentCloud
1059
1059
  end
1060
1060
  end
1061
1061
 
1062
- # 生产者连接实例
1063
- class Connection < TencentCloud::Common::AbstractModel
1064
- # @param Address: 生产者地址。
1065
- # 注意:此字段可能返回 null,表示取不到有效值。
1066
- # @type Address: String
1067
- # @param Partitions: 主题分区。
1068
- # 注意:此字段可能返回 null,表示取不到有效值。
1069
- # @type Partitions: Integer
1070
- # @param ClientVersion: 生产者版本。
1071
- # 注意:此字段可能返回 null,表示取不到有效值。
1072
- # @type ClientVersion: String
1073
- # @param ProducerName: 生产者名称。
1074
- # 注意:此字段可能返回 null,表示取不到有效值。
1075
- # @type ProducerName: String
1076
- # @param ProducerId: 生产者ID。
1077
- # 注意:此字段可能返回 null,表示取不到有效值。
1078
- # @type ProducerId: String
1079
- # @param AverageMsgSize: 消息平均大小(byte)。
1080
- # 注意:此字段可能返回 null,表示取不到有效值。
1081
- # @type AverageMsgSize: String
1082
- # @param MsgThroughputIn: 生成速率(byte/秒)。
1083
- # 注意:此字段可能返回 null,表示取不到有效值。
1084
- # @type MsgThroughputIn: String
1085
-
1086
- attr_accessor :Address, :Partitions, :ClientVersion, :ProducerName, :ProducerId, :AverageMsgSize, :MsgThroughputIn
1087
-
1088
- def initialize(address=nil, partitions=nil, clientversion=nil, producername=nil, producerid=nil, averagemsgsize=nil, msgthroughputin=nil)
1089
- @Address = address
1090
- @Partitions = partitions
1091
- @ClientVersion = clientversion
1092
- @ProducerName = producername
1093
- @ProducerId = producerid
1094
- @AverageMsgSize = averagemsgsize
1095
- @MsgThroughputIn = msgthroughputin
1096
- end
1097
-
1098
- def deserialize(params)
1099
- @Address = params['Address']
1100
- @Partitions = params['Partitions']
1101
- @ClientVersion = params['ClientVersion']
1102
- @ProducerName = params['ProducerName']
1103
- @ProducerId = params['ProducerId']
1104
- @AverageMsgSize = params['AverageMsgSize']
1105
- @MsgThroughputIn = params['MsgThroughputIn']
1106
- end
1107
- end
1108
-
1109
1062
  # 消费者
1110
1063
  class Consumer < TencentCloud::Common::AbstractModel
1111
1064
  # @param ConnectedSince: 消费者开始连接的时间。
@@ -4322,73 +4275,6 @@ module TencentCloud
4322
4275
  end
4323
4276
  end
4324
4277
 
4325
- # DescribeProducers请求参数结构体
4326
- class DescribeProducersRequest < TencentCloud::Common::AbstractModel
4327
- # @param EnvironmentId: 环境(命名空间)名称。
4328
- # @type EnvironmentId: String
4329
- # @param TopicName: 主题名。
4330
- # @type TopicName: String
4331
- # @param Offset: 起始下标,不填默认为0。
4332
- # @type Offset: Integer
4333
- # @param Limit: 返回数量,不填则默认为10,最大值为20。
4334
- # @type Limit: Integer
4335
- # @param ProducerName: 生产者名称,模糊匹配。
4336
- # @type ProducerName: String
4337
- # @param ClusterId: Pulsar 集群的ID
4338
- # @type ClusterId: String
4339
-
4340
- attr_accessor :EnvironmentId, :TopicName, :Offset, :Limit, :ProducerName, :ClusterId
4341
-
4342
- def initialize(environmentid=nil, topicname=nil, offset=nil, limit=nil, producername=nil, clusterid=nil)
4343
- @EnvironmentId = environmentid
4344
- @TopicName = topicname
4345
- @Offset = offset
4346
- @Limit = limit
4347
- @ProducerName = producername
4348
- @ClusterId = clusterid
4349
- end
4350
-
4351
- def deserialize(params)
4352
- @EnvironmentId = params['EnvironmentId']
4353
- @TopicName = params['TopicName']
4354
- @Offset = params['Offset']
4355
- @Limit = params['Limit']
4356
- @ProducerName = params['ProducerName']
4357
- @ClusterId = params['ClusterId']
4358
- end
4359
- end
4360
-
4361
- # DescribeProducers返回参数结构体
4362
- class DescribeProducersResponse < TencentCloud::Common::AbstractModel
4363
- # @param ProducerSets: 生产者集合数组。
4364
- # @type ProducerSets: Array
4365
- # @param TotalCount: 记录总数。
4366
- # @type TotalCount: Integer
4367
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4368
- # @type RequestId: String
4369
-
4370
- attr_accessor :ProducerSets, :TotalCount, :RequestId
4371
-
4372
- def initialize(producersets=nil, totalcount=nil, requestid=nil)
4373
- @ProducerSets = producersets
4374
- @TotalCount = totalcount
4375
- @RequestId = requestid
4376
- end
4377
-
4378
- def deserialize(params)
4379
- unless params['ProducerSets'].nil?
4380
- @ProducerSets = []
4381
- params['ProducerSets'].each do |i|
4382
- producer_tmp = Producer.new
4383
- producer_tmp.deserialize(i)
4384
- @ProducerSets << producer_tmp
4385
- end
4386
- end
4387
- @TotalCount = params['TotalCount']
4388
- @RequestId = params['RequestId']
4389
- end
4390
- end
4391
-
4392
4278
  # DescribePublisherSummary请求参数结构体
4393
4279
  class DescribePublisherSummaryRequest < TencentCloud::Common::AbstractModel
4394
4280
  # @param ClusterId: 集群ID
@@ -6243,43 +6129,6 @@ module TencentCloud
6243
6129
  end
6244
6130
  end
6245
6131
 
6246
- # 生产者
6247
- class Producer < TencentCloud::Common::AbstractModel
6248
- # @param EnvironmentId: 环境(命名空间)名称。
6249
- # @type EnvironmentId: String
6250
- # @param TopicName: 主题名称。
6251
- # @type TopicName: String
6252
- # @param CountConnect: 连接数。
6253
- # 注意:此字段可能返回 null,表示取不到有效值。
6254
- # @type CountConnect: Integer
6255
- # @param ConnectionSets: 连接集合。
6256
- # 注意:此字段可能返回 null,表示取不到有效值。
6257
- # @type ConnectionSets: Array
6258
-
6259
- attr_accessor :EnvironmentId, :TopicName, :CountConnect, :ConnectionSets
6260
-
6261
- def initialize(environmentid=nil, topicname=nil, countconnect=nil, connectionsets=nil)
6262
- @EnvironmentId = environmentid
6263
- @TopicName = topicname
6264
- @CountConnect = countconnect
6265
- @ConnectionSets = connectionsets
6266
- end
6267
-
6268
- def deserialize(params)
6269
- @EnvironmentId = params['EnvironmentId']
6270
- @TopicName = params['TopicName']
6271
- @CountConnect = params['CountConnect']
6272
- unless params['ConnectionSets'].nil?
6273
- @ConnectionSets = []
6274
- params['ConnectionSets'].each do |i|
6275
- connection_tmp = Connection.new
6276
- connection_tmp.deserialize(i)
6277
- @ConnectionSets << connection_tmp
6278
- end
6279
- end
6280
- end
6281
- end
6282
-
6283
6132
  # PublishCmqMsg请求参数结构体
6284
6133
  class PublishCmqMsgRequest < TencentCloud::Common::AbstractModel
6285
6134
  # @param TopicName: 主题名
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tdmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.230
4
+ version: 1.0.234
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-24 00:00:00.000000000 Z
11
+ date: 2021-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common