tencentcloud-sdk-trocket 3.0.1183 → 3.0.1188

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: 49910392cbb89ecd97fd29ba4711d5d16ec21bbb
4
- data.tar.gz: 190adbceb0a5739751031221d38895aef8505415
3
+ metadata.gz: ebb0409799b7cf7a4cf40c4582eab38cb4ff325c
4
+ data.tar.gz: d9dc5ce3ee7f3c34b6e826e59a3769c27bb73ba4
5
5
  SHA512:
6
- metadata.gz: 78162c64fb8f7947727ecd17c114eb1ea1d8c29d43b73dca057cc591913870b56f5cf13daa962b48565b21e772249a33958e95428d4b9e531513c3e15d58b35e
7
- data.tar.gz: 7769d7c8dcd6b8ce9808b4e091af794de7707454320d8da3638043b0cafebffd5bc6826a0600dd74f20ce71f4d7ea228782f714e072cb7e47c693544f81b4a2e
6
+ metadata.gz: b50ea862eecf154052d7d4c556061870c88480b2e60f54be6d2ebffbebab372a3e4d108948cf5693f480a24bc33e2056ca05ffb3cae892d1471833b8575880fe
7
+ data.tar.gz: 2268b8e1111797380696bdf0bf60d5e15581f6381536806a25d89c161c24d05f1ca432207395bfb39ce4f33fde8871fbcd6297f301d89353fcf68caff067ec29
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1183
1
+ 3.0.1188
@@ -1435,12 +1435,13 @@ module TencentCloud
1435
1435
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1436
1436
  end
1437
1437
 
1438
- # 根据消费组获取主题列表,Filter参数使用说明如下:
1438
+ # 查询消费组订阅的主题列表,Filter参数使用说明如下:
1439
1439
 
1440
1440
  # - TopicName 主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口返回的 [TopicItem](https://cloud.tencent.com/document/api/1493/96031#TopicItem) 或控制台获得。
1441
1441
 
1442
1442
  # Filters示例:
1443
1443
  # [{ "Name": "TopicName", "Values": ["test_topic"] }]
1444
+ # 当前 API 适用集群:5.x 集群。4.x 集群的查询消费组订阅的主题列表接口文档见 [DescribeRocketMQTopicsByGroup](https://cloud.tencent.com/document/product/1179/108863)。
1444
1445
 
1445
1446
  # @param request: Request instance for DescribeTopicListByGroup.
1446
1447
  # @type request: :class:`Tencentcloud::trocket::V20230308::DescribeTopicListByGroupRequest`
@@ -4794,14 +4794,20 @@ module TencentCloud
4794
4794
  # @param ExceptionDesc: 异常信息
4795
4795
  # 注意:此字段可能返回 null,表示取不到有效值。
4796
4796
  # @type ExceptionDesc: String
4797
+ # @param ConsumeStatusSource: 消费状态来源,枚举值如下:
4797
4798
 
4798
- attr_accessor :ConsumerGroup, :ConsumeStatus, :TrackType, :ExceptionDesc
4799
+ # - DIFF_OFFSET:通过服务端offset计算
4800
+ # - TRACE_REPORT:通过上报的轨迹判断
4801
+ # @type ConsumeStatusSource: String
4799
4802
 
4800
- def initialize(consumergroup=nil, consumestatus=nil, tracktype=nil, exceptiondesc=nil)
4803
+ attr_accessor :ConsumerGroup, :ConsumeStatus, :TrackType, :ExceptionDesc, :ConsumeStatusSource
4804
+
4805
+ def initialize(consumergroup=nil, consumestatus=nil, tracktype=nil, exceptiondesc=nil, consumestatussource=nil)
4801
4806
  @ConsumerGroup = consumergroup
4802
4807
  @ConsumeStatus = consumestatus
4803
4808
  @TrackType = tracktype
4804
4809
  @ExceptionDesc = exceptiondesc
4810
+ @ConsumeStatusSource = consumestatussource
4805
4811
  end
4806
4812
 
4807
4813
  def deserialize(params)
@@ -4809,6 +4815,7 @@ module TencentCloud
4809
4815
  @ConsumeStatus = params['ConsumeStatus']
4810
4816
  @TrackType = params['TrackType']
4811
4817
  @ExceptionDesc = params['ExceptionDesc']
4818
+ @ConsumeStatusSource = params['ConsumeStatusSource']
4812
4819
  end
4813
4820
  end
4814
4821
 
@@ -4913,34 +4920,34 @@ module TencentCloud
4913
4920
  class ModifyConsumerGroupRequest < TencentCloud::Common::AbstractModel
4914
4921
  # @param InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeFusionInstanceList](https://cloud.tencent.com/document/api/1493/106745) 接口或控制台获得。
4915
4922
  # @type InstanceId: String
4916
- # @param ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口返回的 [ConsumeGroupItem](https://cloud.tencent.com/document/api/1493/96031#ConsumeGroupItem) 或控制台获得。
4917
- # @type ConsumerGroup: String
4918
4923
  # @param ConsumeEnable: 是否开启消费
4919
4924
  # @type ConsumeEnable: Boolean
4920
4925
  # @param ConsumeMessageOrderly: 顺序投递:true
4921
4926
  # 并发投递:false
4922
4927
  # @type ConsumeMessageOrderly: Boolean
4928
+ # @param ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口返回的 [ConsumeGroupItem](https://cloud.tencent.com/document/api/1493/96031#ConsumeGroupItem) 或控制台获得。
4929
+ # @type ConsumerGroup: String
4923
4930
  # @param MaxRetryTimes: 最大重试次数,取值范围0~1000
4924
4931
  # @type MaxRetryTimes: Integer
4925
4932
  # @param Remark: 备注信息,最多 128 个字符
4926
4933
  # @type Remark: String
4927
4934
 
4928
- attr_accessor :InstanceId, :ConsumerGroup, :ConsumeEnable, :ConsumeMessageOrderly, :MaxRetryTimes, :Remark
4935
+ attr_accessor :InstanceId, :ConsumeEnable, :ConsumeMessageOrderly, :ConsumerGroup, :MaxRetryTimes, :Remark
4929
4936
 
4930
- def initialize(instanceid=nil, consumergroup=nil, consumeenable=nil, consumemessageorderly=nil, maxretrytimes=nil, remark=nil)
4937
+ def initialize(instanceid=nil, consumeenable=nil, consumemessageorderly=nil, consumergroup=nil, maxretrytimes=nil, remark=nil)
4931
4938
  @InstanceId = instanceid
4932
- @ConsumerGroup = consumergroup
4933
4939
  @ConsumeEnable = consumeenable
4934
4940
  @ConsumeMessageOrderly = consumemessageorderly
4941
+ @ConsumerGroup = consumergroup
4935
4942
  @MaxRetryTimes = maxretrytimes
4936
4943
  @Remark = remark
4937
4944
  end
4938
4945
 
4939
4946
  def deserialize(params)
4940
4947
  @InstanceId = params['InstanceId']
4941
- @ConsumerGroup = params['ConsumerGroup']
4942
4948
  @ConsumeEnable = params['ConsumeEnable']
4943
4949
  @ConsumeMessageOrderly = params['ConsumeMessageOrderly']
4950
+ @ConsumerGroup = params['ConsumerGroup']
4944
4951
  @MaxRetryTimes = params['MaxRetryTimes']
4945
4952
  @Remark = params['Remark']
4946
4953
  end
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.1183
4
+ version: 3.0.1188
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-17 00:00:00.000000000 Z
11
+ date: 2025-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20230308/models.rb
37
- - lib/v20230308/client.rb
38
36
  - lib/tencentcloud-sdk-trocket.rb
37
+ - lib/v20230308/client.rb
38
+ - lib/v20230308/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: