tencentcloud-sdk-trocket 3.0.696 → 3.0.698

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: 3a8aed39ead8159eb5e2108f2ea420e56a2aa629
4
- data.tar.gz: 20abb0b56c7158b2172bb7dc6533a4ab80a0c363
3
+ metadata.gz: 66b7108167456cbff315ec843368b2823a288742
4
+ data.tar.gz: 284229964bef9303fda819e5cef8a77707fff43c
5
5
  SHA512:
6
- metadata.gz: f578f540c6f37b7e0ca1231fe9735877f2d895b2c45a7229a59e226982c544616518920c1cf8401745007b13fdb0bebcd60eedb48765964a5a90a96ae52f3fb6
7
- data.tar.gz: d190beaa539c37012e9b0b2a6dadf49712f5079770e458c5f37128aa6775d609b77bf9db901c656821d65ed5c25a27d6ebd39c3bf3aa6b60f184f3c742e8f56d
6
+ metadata.gz: 727e00327ea8213f8566bfebb89adb389f5cc2c56288116fe670639538066901be445d5f0a9f868a5ed8bc7047b306d4d48309efa76ad65cfe1267d66f264abd
7
+ data.tar.gz: 5a4e02ad6920e25a637744bd9a3f8f82bea2315d7a443761cc783597fc2cb5972a079db3da7d0612bdb0558d8044d7e94cc6640c1f8e504bd3263aa86c4d5ce3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.696
1
+ 3.0.698
@@ -245,6 +245,33 @@ module TencentCloud
245
245
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
246
  end
247
247
 
248
+ # 获取消费组列表,Filter参数使用说明如下:
249
+
250
+ # 1. ConsumerGroupName,名称模糊查询
251
+ # 2. ConsumeMessageOrderly,投递顺序性。"true":顺序投递;"false":并发投递
252
+
253
+ # @param request: Request instance for DescribeConsumerGroupList.
254
+ # @type request: :class:`Tencentcloud::trocket::V20230308::DescribeConsumerGroupListRequest`
255
+ # @rtype: :class:`Tencentcloud::trocket::V20230308::DescribeConsumerGroupListResponse`
256
+ def DescribeConsumerGroupList(request)
257
+ body = send_request('DescribeConsumerGroupList', request.serialize)
258
+ response = JSON.parse(body)
259
+ if response['Response'].key?('Error') == false
260
+ model = DescribeConsumerGroupListResponse.new
261
+ model.deserialize(response['Response'])
262
+ model
263
+ else
264
+ code = response['Response']['Error']['Code']
265
+ message = response['Response']['Error']['Message']
266
+ reqid = response['Response']['RequestId']
267
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
268
+ end
269
+ rescue TencentCloud::Common::TencentCloudSDKException => e
270
+ raise e
271
+ rescue StandardError => e
272
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
273
+ end
274
+
248
275
  # 查询实例信息
249
276
 
250
277
  # @param request: Request instance for DescribeInstance.
@@ -17,6 +17,43 @@
17
17
  module TencentCloud
18
18
  module Trocket
19
19
  module V20230308
20
+ # 消费组信息
21
+ class ConsumeGroupItem < TencentCloud::Common::AbstractModel
22
+ # @param InstanceId: 实例ID
23
+ # @type InstanceId: String
24
+ # @param ConsumerGroup: 消费组名称
25
+ # @type ConsumerGroup: String
26
+ # @param ConsumeEnable: 是否开启消费
27
+ # @type ConsumeEnable: Boolean
28
+ # @param ConsumeMessageOrderly: 顺序投递:true
29
+ # 并发投递:false
30
+ # @type ConsumeMessageOrderly: Boolean
31
+ # @param MaxRetryTimes: 最大重试次数
32
+ # @type MaxRetryTimes: Integer
33
+ # @param Remark: 备注
34
+ # @type Remark: String
35
+
36
+ attr_accessor :InstanceId, :ConsumerGroup, :ConsumeEnable, :ConsumeMessageOrderly, :MaxRetryTimes, :Remark
37
+
38
+ def initialize(instanceid=nil, consumergroup=nil, consumeenable=nil, consumemessageorderly=nil, maxretrytimes=nil, remark=nil)
39
+ @InstanceId = instanceid
40
+ @ConsumerGroup = consumergroup
41
+ @ConsumeEnable = consumeenable
42
+ @ConsumeMessageOrderly = consumemessageorderly
43
+ @MaxRetryTimes = maxretrytimes
44
+ @Remark = remark
45
+ end
46
+
47
+ def deserialize(params)
48
+ @InstanceId = params['InstanceId']
49
+ @ConsumerGroup = params['ConsumerGroup']
50
+ @ConsumeEnable = params['ConsumeEnable']
51
+ @ConsumeMessageOrderly = params['ConsumeMessageOrderly']
52
+ @MaxRetryTimes = params['MaxRetryTimes']
53
+ @Remark = params['Remark']
54
+ end
55
+ end
56
+
20
57
  # CreateConsumerGroup请求参数结构体
21
58
  class CreateConsumerGroupRequest < TencentCloud::Common::AbstractModel
22
59
  # @param InstanceId: 实例ID
@@ -433,6 +470,77 @@ module TencentCloud
433
470
  end
434
471
  end
435
472
 
473
+ # DescribeConsumerGroupList请求参数结构体
474
+ class DescribeConsumerGroupListRequest < TencentCloud::Common::AbstractModel
475
+ # @param InstanceId: 实例ID
476
+ # @type InstanceId: String
477
+ # @param Offset: 查询起始位置
478
+ # @type Offset: Integer
479
+ # @param Limit: 查询结果限制数量
480
+ # @type Limit: Integer
481
+ # @param Filters: 查询条件列表
482
+ # @type Filters: Array
483
+ # @param FromTopic: 查询指定主题下的消费组
484
+ # @type FromTopic: String
485
+
486
+ attr_accessor :InstanceId, :Offset, :Limit, :Filters, :FromTopic
487
+
488
+ def initialize(instanceid=nil, offset=nil, limit=nil, filters=nil, fromtopic=nil)
489
+ @InstanceId = instanceid
490
+ @Offset = offset
491
+ @Limit = limit
492
+ @Filters = filters
493
+ @FromTopic = fromtopic
494
+ end
495
+
496
+ def deserialize(params)
497
+ @InstanceId = params['InstanceId']
498
+ @Offset = params['Offset']
499
+ @Limit = params['Limit']
500
+ unless params['Filters'].nil?
501
+ @Filters = []
502
+ params['Filters'].each do |i|
503
+ filter_tmp = Filter.new
504
+ filter_tmp.deserialize(i)
505
+ @Filters << filter_tmp
506
+ end
507
+ end
508
+ @FromTopic = params['FromTopic']
509
+ end
510
+ end
511
+
512
+ # DescribeConsumerGroupList返回参数结构体
513
+ class DescribeConsumerGroupListResponse < TencentCloud::Common::AbstractModel
514
+ # @param TotalCount: 查询总数
515
+ # 注意:此字段可能返回 null,表示取不到有效值。
516
+ # @type TotalCount: Integer
517
+ # @param Data: 消费组列表
518
+ # @type Data: Array
519
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
520
+ # @type RequestId: String
521
+
522
+ attr_accessor :TotalCount, :Data, :RequestId
523
+
524
+ def initialize(totalcount=nil, data=nil, requestid=nil)
525
+ @TotalCount = totalcount
526
+ @Data = data
527
+ @RequestId = requestid
528
+ end
529
+
530
+ def deserialize(params)
531
+ @TotalCount = params['TotalCount']
532
+ unless params['Data'].nil?
533
+ @Data = []
534
+ params['Data'].each do |i|
535
+ consumegroupitem_tmp = ConsumeGroupItem.new
536
+ consumegroupitem_tmp.deserialize(i)
537
+ @Data << consumegroupitem_tmp
538
+ end
539
+ end
540
+ @RequestId = params['RequestId']
541
+ end
542
+ end
543
+
436
544
  # DescribeConsumerGroup请求参数结构体
437
545
  class DescribeConsumerGroupRequest < TencentCloud::Common::AbstractModel
438
546
  # @param InstanceId: 实例ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.696
4
+ version: 3.0.698
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-11-08 00:00:00.000000000 Z
11
+ date: 2023-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common