tencentcloud-sdk-ckafka 3.0.596 → 3.0.597

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/v20190819/models.rb +52 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa2783bedee7a6e5afb84ce2399cb3583b0f21db
4
- data.tar.gz: 9f4fc35fdb8184d70a998e2b6e6b37db0c7bcfdd
3
+ metadata.gz: 5f6f3bd550f13f0bf3577c7fa4cd1647c0c0b7b7
4
+ data.tar.gz: f9a13dbf9416808908c7fb65a764c0e7befff61b
5
5
  SHA512:
6
- metadata.gz: 4ba135063e671254150d87a743b6f68b0a66e531460d560c0c97b4454d40f9c5d224c38cadc0038c6395bf811f56140c5833c6000a0b06dfd56b85141c75a208
7
- data.tar.gz: 8091444a442f7b19625fbfe05d39a1ed77f80bbe38558f77be0c118f601ca8fba7bc7a8840baf50b6020e92a483bb517b9b44882b3cf7238748ed6be6b946ae5
6
+ metadata.gz: ccf87944b2ef32fe0694d24a1db4cd78ceba5891259e78ad4e792e3272c47618c670efe18dbc8db5552e3129842d440f490ad66ceea5299c0d8e7ce03fb05cc9
7
+ data.tar.gz: db33d8c707a6fc570e442d269fb9e0f05cd8c8e4cbc43dd89371e6772ca13a3d781238f99d3e0653c42cea55aa8a0bd948b05a643757e78b3f6ffc07073972bd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.596
1
+ 3.0.597
@@ -632,6 +632,33 @@ module TencentCloud
632
632
  end
633
633
  end
634
634
 
635
+ # 主题占用Broker磁盘大小
636
+ class BrokerTopicData < TencentCloud::Common::AbstractModel
637
+ # @param TopicName: 主题名称
638
+ # 注意:此字段可能返回 null,表示取不到有效值。
639
+ # @type TopicName: String
640
+ # @param TopicId: 主题ID
641
+ # 注意:此字段可能返回 null,表示取不到有效值。
642
+ # @type TopicId: String
643
+ # @param DataSize: 主题占用Broker 容量大小
644
+ # 注意:此字段可能返回 null,表示取不到有效值。
645
+ # @type DataSize: Integer
646
+
647
+ attr_accessor :TopicName, :TopicId, :DataSize
648
+
649
+ def initialize(topicname=nil, topicid=nil, datasize=nil)
650
+ @TopicName = topicname
651
+ @TopicId = topicid
652
+ @DataSize = datasize
653
+ end
654
+
655
+ def deserialize(params)
656
+ @TopicName = params['TopicName']
657
+ @TopicId = params['TopicId']
658
+ @DataSize = params['DataSize']
659
+ end
660
+ end
661
+
635
662
  # CancelAuthorizationToken请求参数结构体
636
663
  class CancelAuthorizationTokenRequest < TencentCloud::Common::AbstractModel
637
664
  # @param InstanceId: 实例ID
@@ -5338,14 +5365,17 @@ module TencentCloud
5338
5365
  # @type BeginDate: String
5339
5366
  # @param EndDate: 排行结束日期
5340
5367
  # @type EndDate: String
5368
+ # @param BrokerIp: Broker IP 地址
5369
+ # @type BrokerIp: String
5341
5370
 
5342
- attr_accessor :InstanceId, :RankingType, :BeginDate, :EndDate
5371
+ attr_accessor :InstanceId, :RankingType, :BeginDate, :EndDate, :BrokerIp
5343
5372
 
5344
- def initialize(instanceid=nil, rankingtype=nil, begindate=nil, enddate=nil)
5373
+ def initialize(instanceid=nil, rankingtype=nil, begindate=nil, enddate=nil, brokerip=nil)
5345
5374
  @InstanceId = instanceid
5346
5375
  @RankingType = rankingtype
5347
5376
  @BeginDate = begindate
5348
5377
  @EndDate = enddate
5378
+ @BrokerIp = brokerip
5349
5379
  end
5350
5380
 
5351
5381
  def deserialize(params)
@@ -5353,6 +5383,7 @@ module TencentCloud
5353
5383
  @RankingType = params['RankingType']
5354
5384
  @BeginDate = params['BeginDate']
5355
5385
  @EndDate = params['EndDate']
5386
+ @BrokerIp = params['BrokerIp']
5356
5387
  end
5357
5388
  end
5358
5389
 
@@ -10527,13 +10558,21 @@ module TencentCloud
10527
10558
  # @param TopicMessageHeap: Topic 消息堆积/占用磁盘排行
10528
10559
  # 注意:此字段可能返回 null,表示取不到有效值。
10529
10560
  # @type TopicMessageHeap: Array
10561
+ # @param BrokerIp: Broker Ip 列表
10562
+ # 注意:此字段可能返回 null,表示取不到有效值。
10563
+ # @type BrokerIp: Array
10564
+ # @param BrokerTopicData: 单个broker 节点 Topic占用的数据大小
10565
+ # 注意:此字段可能返回 null,表示取不到有效值。
10566
+ # @type BrokerTopicData: Array
10530
10567
 
10531
- attr_accessor :TopicFlow, :ConsumeSpeed, :TopicMessageHeap
10568
+ attr_accessor :TopicFlow, :ConsumeSpeed, :TopicMessageHeap, :BrokerIp, :BrokerTopicData
10532
10569
 
10533
- def initialize(topicflow=nil, consumespeed=nil, topicmessageheap=nil)
10570
+ def initialize(topicflow=nil, consumespeed=nil, topicmessageheap=nil, brokerip=nil, brokertopicdata=nil)
10534
10571
  @TopicFlow = topicflow
10535
10572
  @ConsumeSpeed = consumespeed
10536
10573
  @TopicMessageHeap = topicmessageheap
10574
+ @BrokerIp = brokerip
10575
+ @BrokerTopicData = brokertopicdata
10537
10576
  end
10538
10577
 
10539
10578
  def deserialize(params)
@@ -10561,6 +10600,15 @@ module TencentCloud
10561
10600
  @TopicMessageHeap << topicmessageheapranking_tmp
10562
10601
  end
10563
10602
  end
10603
+ @BrokerIp = params['BrokerIp']
10604
+ unless params['BrokerTopicData'].nil?
10605
+ @BrokerTopicData = []
10606
+ params['BrokerTopicData'].each do |i|
10607
+ brokertopicdata_tmp = BrokerTopicData.new
10608
+ brokertopicdata_tmp.deserialize(i)
10609
+ @BrokerTopicData << brokertopicdata_tmp
10610
+ end
10611
+ end
10564
10612
  end
10565
10613
  end
10566
10614
 
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.596
4
+ version: 3.0.597
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-06-20 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common