tencentcloud-sdk-tdmq 3.0.1053 → 3.0.1055

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200217/models.rb +79 -28
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2db499a7e0320c4a510496c9284b31a9b099d092
4
- data.tar.gz: d62639b58e61c67d67978501459a0b22fb270b8f
3
+ metadata.gz: ca846700c6482e4e73c3eeac5bbcab1b34cc4bec
4
+ data.tar.gz: 24a8a6fb2cd94833c48691ddd238e9aa7a3efab1
5
5
  SHA512:
6
- metadata.gz: f931fb268274877d851afdf311e0acf6f32578b70af131c83ad49792fa64473be0ba9cdeda7a79c5de8e10dcb41ca7ddd5fc563c7aea042943ec335fd4ae3257
7
- data.tar.gz: 87c11f3e446744369bbb9157d8a92da5122bf78512a43b6c048e00126ee6d08227a1656fb641949850f1b9bdc3a4880bb485d73d2445fa2e3ee51277eb934973
6
+ metadata.gz: 35942d3141da9b5d36fea4d4a24534e543de71b8393627ae5f51b8bdaa32920b0d78f50b60cc12b523abd8d9612b0f60baa2062f91d9564407dd0f3709511de4
7
+ data.tar.gz: 7c23ad6a7a36edc4732027e89a7d7b7fcfaae9d1026f9d93ca166e0b27e2279aaa4ffb3648671931ccb5a04b5eee509447822d884daf7483fa8443e4466c9601
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1053
1
+ 3.0.1055
@@ -1870,17 +1870,28 @@ module TencentCloud
1870
1870
  # @type Name: String
1871
1871
  # @param Remark: 集群描述,128个字符以内
1872
1872
  # @type Remark: String
1873
+ # @param TagList: 标签列表
1874
+ # @type TagList: Array
1873
1875
 
1874
- attr_accessor :Name, :Remark
1876
+ attr_accessor :Name, :Remark, :TagList
1875
1877
 
1876
- def initialize(name=nil, remark=nil)
1878
+ def initialize(name=nil, remark=nil, taglist=nil)
1877
1879
  @Name = name
1878
1880
  @Remark = remark
1881
+ @TagList = taglist
1879
1882
  end
1880
1883
 
1881
1884
  def deserialize(params)
1882
1885
  @Name = params['Name']
1883
1886
  @Remark = params['Remark']
1887
+ unless params['TagList'].nil?
1888
+ @TagList = []
1889
+ params['TagList'].each do |i|
1890
+ tag_tmp = Tag.new
1891
+ tag_tmp.deserialize(i)
1892
+ @TagList << tag_tmp
1893
+ end
1894
+ end
1884
1895
  end
1885
1896
  end
1886
1897
 
@@ -2431,10 +2442,14 @@ module TencentCloud
2431
2442
  # @type MsgTTL: Integer
2432
2443
  # @param UnackPolicy: 不传默认是原生策略,DefaultPolicy表示当订阅下达到最大未确认消息数 5000 时,服务端将不再向当前订阅下的所有消费者推送消息,DynamicPolicy表示动态调整订阅下的最大未确认消息数,具体配额是在 5000 和消费者数量*20之间取最大值。每个消费者默认最大 unack 消息数为 20,超过该限制时仅影响该消费者,不影响其他消费者。
2433
2444
  # @type UnackPolicy: String
2445
+ # @param IsolateConsumerEnable: 是否开启异常消费者隔离
2446
+ # @type IsolateConsumerEnable: Boolean
2447
+ # @param AckTimeOut: 消费者 Ack 超时时间,单位:秒,范围60-(3600*24)
2448
+ # @type AckTimeOut: Integer
2434
2449
 
2435
- attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :TopicType, :PulsarTopicType, :MsgTTL, :UnackPolicy
2450
+ attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :TopicType, :PulsarTopicType, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut
2436
2451
 
2437
- def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, topictype=nil, pulsartopictype=nil, msgttl=nil, unackpolicy=nil)
2452
+ def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, topictype=nil, pulsartopictype=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil)
2438
2453
  @EnvironmentId = environmentid
2439
2454
  @TopicName = topicname
2440
2455
  @Partitions = partitions
@@ -2444,6 +2459,8 @@ module TencentCloud
2444
2459
  @PulsarTopicType = pulsartopictype
2445
2460
  @MsgTTL = msgttl
2446
2461
  @UnackPolicy = unackpolicy
2462
+ @IsolateConsumerEnable = isolateconsumerenable
2463
+ @AckTimeOut = acktimeout
2447
2464
  end
2448
2465
 
2449
2466
  def deserialize(params)
@@ -2456,6 +2473,8 @@ module TencentCloud
2456
2473
  @PulsarTopicType = params['PulsarTopicType']
2457
2474
  @MsgTTL = params['MsgTTL']
2458
2475
  @UnackPolicy = params['UnackPolicy']
2476
+ @IsolateConsumerEnable = params['IsolateConsumerEnable']
2477
+ @AckTimeOut = params['AckTimeOut']
2459
2478
  end
2460
2479
  end
2461
2480
 
@@ -4273,10 +4292,12 @@ module TencentCloud
4273
4292
  # @type GroupName: String
4274
4293
  # @param QueryDlqMsg: 查询死信时该值为true,只对Rocketmq有效
4275
4294
  # @type QueryDlqMsg: Boolean
4295
+ # @param ProduceTime: 生产时间
4296
+ # @type ProduceTime: String
4276
4297
 
4277
- attr_accessor :Protocol, :MsgId, :ClusterId, :EnvironmentId, :TopicName, :QueueName, :GroupName, :QueryDlqMsg
4298
+ attr_accessor :Protocol, :MsgId, :ClusterId, :EnvironmentId, :TopicName, :QueueName, :GroupName, :QueryDlqMsg, :ProduceTime
4278
4299
 
4279
- def initialize(protocol=nil, msgid=nil, clusterid=nil, environmentid=nil, topicname=nil, queuename=nil, groupname=nil, querydlqmsg=nil)
4300
+ def initialize(protocol=nil, msgid=nil, clusterid=nil, environmentid=nil, topicname=nil, queuename=nil, groupname=nil, querydlqmsg=nil, producetime=nil)
4280
4301
  @Protocol = protocol
4281
4302
  @MsgId = msgid
4282
4303
  @ClusterId = clusterid
@@ -4285,6 +4306,7 @@ module TencentCloud
4285
4306
  @QueueName = queuename
4286
4307
  @GroupName = groupname
4287
4308
  @QueryDlqMsg = querydlqmsg
4309
+ @ProduceTime = producetime
4288
4310
  end
4289
4311
 
4290
4312
  def deserialize(params)
@@ -4296,6 +4318,7 @@ module TencentCloud
4296
4318
  @QueueName = params['QueueName']
4297
4319
  @GroupName = params['GroupName']
4298
4320
  @QueryDlqMsg = params['QueryDlqMsg']
4321
+ @ProduceTime = params['ProduceTime']
4299
4322
  end
4300
4323
  end
4301
4324
 
@@ -6285,8 +6308,8 @@ module TencentCloud
6285
6308
 
6286
6309
  attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :PulsarMsgId, :QueryDlqMsg, :QueryDeadLetterMessage, :Offset, :Limit, :FilterTrackGroup
6287
6310
  extend Gem::Deprecate
6288
- deprecate :QueryDlqMsg, :none, 2025, 4
6289
- deprecate :QueryDlqMsg=, :none, 2025, 4
6311
+ deprecate :QueryDlqMsg, :none, 2025, 5
6312
+ deprecate :QueryDlqMsg=, :none, 2025, 5
6290
6313
 
6291
6314
  def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, pulsarmsgid=nil, querydlqmsg=nil, querydeadlettermessage=nil, offset=nil, limit=nil, filtertrackgroup=nil)
6292
6315
  @ClusterId = clusterid
@@ -6391,8 +6414,8 @@ module TencentCloud
6391
6414
 
6392
6415
  attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :GroupName, :QueryDLQMsg, :QueryDeadLetterMessage
6393
6416
  extend Gem::Deprecate
6394
- deprecate :QueryDLQMsg, :none, 2025, 4
6395
- deprecate :QueryDLQMsg=, :none, 2025, 4
6417
+ deprecate :QueryDLQMsg, :none, 2025, 5
6418
+ deprecate :QueryDLQMsg=, :none, 2025, 5
6396
6419
 
6397
6420
  def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, groupname=nil, querydlqmsg=nil, querydeadlettermessage=nil)
6398
6421
  @ClusterId = clusterid
@@ -7232,8 +7255,8 @@ module TencentCloud
7232
7255
 
7233
7256
  attr_accessor :ClusterId, :EnvironmentId, :TopicName, :StartTime, :EndTime, :MsgId, :MsgKey, :Offset, :Limit, :TaskRequestId, :QueryDlqMsg, :NumOfLatestMsg, :Tag, :QueryDeadLetterMessage
7234
7257
  extend Gem::Deprecate
7235
- deprecate :QueryDlqMsg, :none, 2025, 4
7236
- deprecate :QueryDlqMsg=, :none, 2025, 4
7258
+ deprecate :QueryDlqMsg, :none, 2025, 5
7259
+ deprecate :QueryDlqMsg=, :none, 2025, 5
7237
7260
 
7238
7261
  def initialize(clusterid=nil, environmentid=nil, topicname=nil, starttime=nil, endtime=nil, msgid=nil, msgkey=nil, offset=nil, limit=nil, taskrequestid=nil, querydlqmsg=nil, numoflatestmsg=nil, tag=nil, querydeadlettermessage=nil)
7239
7262
  @ClusterId = clusterid
@@ -9703,10 +9726,14 @@ module TencentCloud
9703
9726
  # @type MsgTTL: Integer
9704
9727
  # @param UnackPolicy: 不传默认是原生策略,DefaultPolicy表示当订阅下达到最大未确认消息数 5000 时,服务端将不再向当前订阅下的所有消费者推送消息,DynamicPolicy表示动态调整订阅下的最大未确认消息数,具体配额是在 5000 和消费者数量*20之间取最大值。每个消费者默认最大 unack 消息数为 20,超过该限制时仅影响该消费者,不影响其他消费者。
9705
9728
  # @type UnackPolicy: String
9729
+ # @param IsolateConsumerEnable: 是否开启异常消费者隔离
9730
+ # @type IsolateConsumerEnable: Boolean
9731
+ # @param AckTimeOut: 消费者 Ack 超时时间,单位:秒,范围60-(3600*24
9732
+ # @type AckTimeOut: Integer
9706
9733
 
9707
- attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy
9734
+ attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut
9708
9735
 
9709
- def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, msgttl=nil, unackpolicy=nil)
9736
+ def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil)
9710
9737
  @EnvironmentId = environmentid
9711
9738
  @TopicName = topicname
9712
9739
  @Partitions = partitions
@@ -9714,6 +9741,8 @@ module TencentCloud
9714
9741
  @Remark = remark
9715
9742
  @MsgTTL = msgttl
9716
9743
  @UnackPolicy = unackpolicy
9744
+ @IsolateConsumerEnable = isolateconsumerenable
9745
+ @AckTimeOut = acktimeout
9717
9746
  end
9718
9747
 
9719
9748
  def deserialize(params)
@@ -9724,6 +9753,8 @@ module TencentCloud
9724
9753
  @Remark = params['Remark']
9725
9754
  @MsgTTL = params['MsgTTL']
9726
9755
  @UnackPolicy = params['UnackPolicy']
9756
+ @IsolateConsumerEnable = params['IsolateConsumerEnable']
9757
+ @AckTimeOut = params['AckTimeOut']
9727
9758
  end
9728
9759
  end
9729
9760
 
@@ -11384,21 +11415,21 @@ module TencentCloud
11384
11415
  # @type NamespaceId: String
11385
11416
  # @param GroupId: 消费组名称
11386
11417
  # @type GroupId: String
11387
- # @param Topic: 主题名称
11388
- # @type Topic: String
11389
11418
  # @param Type: 重置方式,0表示从最新位点开始,1表示从指定时间点开始
11390
11419
  # @type Type: Integer
11420
+ # @param Topic: 主题名称
11421
+ # @type Topic: String
11391
11422
  # @param ResetTimestamp: 重置指定的时间戳,仅在 Type 为1是生效,以毫秒为单位
11392
11423
  # @type ResetTimestamp: Integer
11393
11424
 
11394
- attr_accessor :ClusterId, :NamespaceId, :GroupId, :Topic, :Type, :ResetTimestamp
11425
+ attr_accessor :ClusterId, :NamespaceId, :GroupId, :Type, :Topic, :ResetTimestamp
11395
11426
 
11396
- def initialize(clusterid=nil, namespaceid=nil, groupid=nil, topic=nil, type=nil, resettimestamp=nil)
11427
+ def initialize(clusterid=nil, namespaceid=nil, groupid=nil, type=nil, topic=nil, resettimestamp=nil)
11397
11428
  @ClusterId = clusterid
11398
11429
  @NamespaceId = namespaceid
11399
11430
  @GroupId = groupid
11400
- @Topic = topic
11401
11431
  @Type = type
11432
+ @Topic = topic
11402
11433
  @ResetTimestamp = resettimestamp
11403
11434
  end
11404
11435
 
@@ -11406,8 +11437,8 @@ module TencentCloud
11406
11437
  @ClusterId = params['ClusterId']
11407
11438
  @NamespaceId = params['NamespaceId']
11408
11439
  @GroupId = params['GroupId']
11409
- @Topic = params['Topic']
11410
11440
  @Type = params['Type']
11441
+ @Topic = params['Topic']
11411
11442
  @ResetTimestamp = params['ResetTimestamp']
11412
11443
  end
11413
11444
  end
@@ -11554,13 +11585,17 @@ module TencentCloud
11554
11585
  # @param TopicDistribution: topic分布
11555
11586
  # 注意:此字段可能返回 null,表示取不到有效值。
11556
11587
  # @type TopicDistribution: Array
11588
+ # @param MaxRoleNum: 最大角色数量
11589
+ # @type MaxRoleNum: Integer
11590
+ # @param MaxTpsLimit: TPS限额
11591
+ # @type MaxTpsLimit: Integer
11557
11592
 
11558
- attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :MaxRetentionTime, :MaxLatencyTime, :MaxQueuesPerTopic, :TopicDistribution
11593
+ attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :MaxRetentionTime, :MaxLatencyTime, :MaxQueuesPerTopic, :TopicDistribution, :MaxRoleNum, :MaxTpsLimit
11559
11594
  extend Gem::Deprecate
11560
- deprecate :MaxTpsPerNamespace, :none, 2025, 4
11561
- deprecate :MaxTpsPerNamespace=, :none, 2025, 4
11595
+ deprecate :MaxTpsPerNamespace, :none, 2025, 5
11596
+ deprecate :MaxTpsPerNamespace=, :none, 2025, 5
11562
11597
 
11563
- def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, maxretentiontime=nil, maxlatencytime=nil, maxqueuespertopic=nil, topicdistribution=nil)
11598
+ def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, maxretentiontime=nil, maxlatencytime=nil, maxqueuespertopic=nil, topicdistribution=nil, maxrolenum=nil, maxtpslimit=nil)
11564
11599
  @MaxTpsPerNamespace = maxtpspernamespace
11565
11600
  @MaxNamespaceNum = maxnamespacenum
11566
11601
  @UsedNamespaceNum = usednamespacenum
@@ -11572,6 +11607,8 @@ module TencentCloud
11572
11607
  @MaxLatencyTime = maxlatencytime
11573
11608
  @MaxQueuesPerTopic = maxqueuespertopic
11574
11609
  @TopicDistribution = topicdistribution
11610
+ @MaxRoleNum = maxrolenum
11611
+ @MaxTpsLimit = maxtpslimit
11575
11612
  end
11576
11613
 
11577
11614
  def deserialize(params)
@@ -11593,6 +11630,8 @@ module TencentCloud
11593
11630
  @TopicDistribution << rocketmqtopicdistribution_tmp
11594
11631
  end
11595
11632
  end
11633
+ @MaxRoleNum = params['MaxRoleNum']
11634
+ @MaxTpsLimit = params['MaxTpsLimit']
11596
11635
  end
11597
11636
  end
11598
11637
 
@@ -11698,10 +11737,12 @@ module TencentCloud
11698
11737
  # @param ZoneIds: 集群节点所在的可用区,若该集群为跨可用区集群,则包含该集群节点所在的多个可用区。
11699
11738
  # 注意:此字段可能返回 null,表示取不到有效值。
11700
11739
  # @type ZoneIds: Array
11740
+ # @param IsFrozen: 是否已冻结
11741
+ # @type IsFrozen: Boolean
11701
11742
 
11702
- attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint, :Vpcs, :IsVip, :RocketMQFlag, :Status, :IsolateTime, :HttpPublicEndpoint, :HttpVpcEndpoint, :InternalEndpoint, :HttpInternalEndpoint, :AclEnabled, :PublicClbId, :Vip, :VpcId, :SupportMigration, :InstanceStatus, :ZoneId, :ZoneIds
11743
+ attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint, :Vpcs, :IsVip, :RocketMQFlag, :Status, :IsolateTime, :HttpPublicEndpoint, :HttpVpcEndpoint, :InternalEndpoint, :HttpInternalEndpoint, :AclEnabled, :PublicClbId, :Vip, :VpcId, :SupportMigration, :InstanceStatus, :ZoneId, :ZoneIds, :IsFrozen
11703
11744
 
11704
- def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil, vpcs=nil, isvip=nil, rocketmqflag=nil, status=nil, isolatetime=nil, httppublicendpoint=nil, httpvpcendpoint=nil, internalendpoint=nil, httpinternalendpoint=nil, aclenabled=nil, publicclbid=nil, vip=nil, vpcid=nil, supportmigration=nil, instancestatus=nil, zoneid=nil, zoneids=nil)
11745
+ def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil, vpcs=nil, isvip=nil, rocketmqflag=nil, status=nil, isolatetime=nil, httppublicendpoint=nil, httpvpcendpoint=nil, internalendpoint=nil, httpinternalendpoint=nil, aclenabled=nil, publicclbid=nil, vip=nil, vpcid=nil, supportmigration=nil, instancestatus=nil, zoneid=nil, zoneids=nil, isfrozen=nil)
11705
11746
  @ClusterId = clusterid
11706
11747
  @ClusterName = clustername
11707
11748
  @Region = region
@@ -11727,6 +11768,7 @@ module TencentCloud
11727
11768
  @InstanceStatus = instancestatus
11728
11769
  @ZoneId = zoneid
11729
11770
  @ZoneIds = zoneids
11771
+ @IsFrozen = isfrozen
11730
11772
  end
11731
11773
 
11732
11774
  def deserialize(params)
@@ -11762,6 +11804,7 @@ module TencentCloud
11762
11804
  @InstanceStatus = params['InstanceStatus']
11763
11805
  @ZoneId = params['ZoneId']
11764
11806
  @ZoneIds = params['ZoneIds']
11807
+ @IsFrozen = params['IsFrozen']
11765
11808
  end
11766
11809
  end
11767
11810
 
@@ -13427,10 +13470,14 @@ module TencentCloud
13427
13470
  # @type ClusterId: String
13428
13471
  # @param Tenant: 用户自定义的租户别名,如果没有,会复用专业集群 ID
13429
13472
  # @type Tenant: String
13473
+ # @param IsolateConsumerEnable: 是否开启异常消费者隔离
13474
+ # @type IsolateConsumerEnable: Boolean
13475
+ # @param AckTimeOut: 消费者 Ack 超时时间,单位:秒
13476
+ # @type AckTimeOut: Integer
13430
13477
 
13431
- attr_accessor :AverageMsgSize, :ConsumerCount, :LastConfirmedEntry, :LastLedgerCreatedTimestamp, :MsgRateIn, :MsgRateOut, :MsgThroughputIn, :MsgThroughputOut, :NumberOfEntries, :Partitions, :ProducerCount, :TotalSize, :SubTopicSets, :TopicType, :EnvironmentId, :TopicName, :Remark, :CreateTime, :UpdateTime, :ProducerLimit, :ConsumerLimit, :PulsarTopicType, :MsgTTL, :ClusterId, :Tenant
13478
+ attr_accessor :AverageMsgSize, :ConsumerCount, :LastConfirmedEntry, :LastLedgerCreatedTimestamp, :MsgRateIn, :MsgRateOut, :MsgThroughputIn, :MsgThroughputOut, :NumberOfEntries, :Partitions, :ProducerCount, :TotalSize, :SubTopicSets, :TopicType, :EnvironmentId, :TopicName, :Remark, :CreateTime, :UpdateTime, :ProducerLimit, :ConsumerLimit, :PulsarTopicType, :MsgTTL, :ClusterId, :Tenant, :IsolateConsumerEnable, :AckTimeOut
13432
13479
 
13433
- def initialize(averagemsgsize=nil, consumercount=nil, lastconfirmedentry=nil, lastledgercreatedtimestamp=nil, msgratein=nil, msgrateout=nil, msgthroughputin=nil, msgthroughputout=nil, numberofentries=nil, partitions=nil, producercount=nil, totalsize=nil, subtopicsets=nil, topictype=nil, environmentid=nil, topicname=nil, remark=nil, createtime=nil, updatetime=nil, producerlimit=nil, consumerlimit=nil, pulsartopictype=nil, msgttl=nil, clusterid=nil, tenant=nil)
13480
+ def initialize(averagemsgsize=nil, consumercount=nil, lastconfirmedentry=nil, lastledgercreatedtimestamp=nil, msgratein=nil, msgrateout=nil, msgthroughputin=nil, msgthroughputout=nil, numberofentries=nil, partitions=nil, producercount=nil, totalsize=nil, subtopicsets=nil, topictype=nil, environmentid=nil, topicname=nil, remark=nil, createtime=nil, updatetime=nil, producerlimit=nil, consumerlimit=nil, pulsartopictype=nil, msgttl=nil, clusterid=nil, tenant=nil, isolateconsumerenable=nil, acktimeout=nil)
13434
13481
  @AverageMsgSize = averagemsgsize
13435
13482
  @ConsumerCount = consumercount
13436
13483
  @LastConfirmedEntry = lastconfirmedentry
@@ -13456,6 +13503,8 @@ module TencentCloud
13456
13503
  @MsgTTL = msgttl
13457
13504
  @ClusterId = clusterid
13458
13505
  @Tenant = tenant
13506
+ @IsolateConsumerEnable = isolateconsumerenable
13507
+ @AckTimeOut = acktimeout
13459
13508
  end
13460
13509
 
13461
13510
  def deserialize(params)
@@ -13491,6 +13540,8 @@ module TencentCloud
13491
13540
  @MsgTTL = params['MsgTTL']
13492
13541
  @ClusterId = params['ClusterId']
13493
13542
  @Tenant = params['Tenant']
13543
+ @IsolateConsumerEnable = params['IsolateConsumerEnable']
13544
+ @AckTimeOut = params['AckTimeOut']
13494
13545
  end
13495
13546
  end
13496
13547
 
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: 3.0.1053
4
+ version: 3.0.1055
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-05-07 00:00:00.000000000 Z
11
+ date: 2025-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common