tencentcloud-sdk-ckafka 3.0.648 → 3.0.649
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190819/models.rb +55 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6c3901d16b4145578339e06fd699a51ce962987
|
4
|
+
data.tar.gz: f92359ea9336cdf92a7cb5c9686c3093dfd8ebb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cea19b579d438093c0c1fd0fc213d5622bd54ee527d9335053032a714abb7c5f75ce4816b1e1439ff4993048560c1cb7b71176ad6612fd73746682e1c02aa572
|
7
|
+
data.tar.gz: 02c9ee8d9382f00e1a49533ec66039da0107d3fd7203d01eec9f925e0915b631fbc38efbe6ae8f0b257ec6ef96a57965a7eba0f21fe5cad5483d467306e6bb9e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.649
|
data/lib/v20190819/models.rb
CHANGED
@@ -659,6 +659,33 @@ module TencentCloud
|
|
659
659
|
end
|
660
660
|
end
|
661
661
|
|
662
|
+
# broker维度topic 流量排行指标
|
663
|
+
class BrokerTopicFlowData < TencentCloud::Common::AbstractModel
|
664
|
+
# @param TopicName: Topic 名称
|
665
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
666
|
+
# @type TopicName: String
|
667
|
+
# @param TopicId: Topic Id
|
668
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
669
|
+
# @type TopicId: String
|
670
|
+
# @param TopicTraffic: Topic 流量(MB)
|
671
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
672
|
+
# @type TopicTraffic: String
|
673
|
+
|
674
|
+
attr_accessor :TopicName, :TopicId, :TopicTraffic
|
675
|
+
|
676
|
+
def initialize(topicname=nil, topicid=nil, topictraffic=nil)
|
677
|
+
@TopicName = topicname
|
678
|
+
@TopicId = topicid
|
679
|
+
@TopicTraffic = topictraffic
|
680
|
+
end
|
681
|
+
|
682
|
+
def deserialize(params)
|
683
|
+
@TopicName = params['TopicName']
|
684
|
+
@TopicId = params['TopicId']
|
685
|
+
@TopicTraffic = params['TopicTraffic']
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
662
689
|
# CancelAuthorizationToken请求参数结构体
|
663
690
|
class CancelAuthorizationTokenRequest < TencentCloud::Common::AbstractModel
|
664
691
|
# @param InstanceId: 实例ID
|
@@ -2231,10 +2258,12 @@ module TencentCloud
|
|
2231
2258
|
# @type PublicNetworkMonthly: Integer
|
2232
2259
|
# @param InstanceNum: 购买实例数量。非必填,默认值为 1。当传入该参数时,会创建多个 instanceName 加后缀区分的实例
|
2233
2260
|
# @type InstanceNum: Integer
|
2261
|
+
# @param AutoVoucher: 是否自动选择代金券:1-是;0否。默认为0
|
2262
|
+
# @type AutoVoucher: Integer
|
2234
2263
|
|
2235
|
-
attr_accessor :InstanceName, :ZoneId, :Period, :InstanceType, :VpcId, :SubnetId, :MsgRetentionTime, :ClusterId, :RenewFlag, :KafkaVersion, :SpecificationsType, :DiskSize, :BandWidth, :Partition, :Tags, :DiskType, :MultiZoneFlag, :ZoneIds, :PublicNetworkMonthly, :InstanceNum
|
2264
|
+
attr_accessor :InstanceName, :ZoneId, :Period, :InstanceType, :VpcId, :SubnetId, :MsgRetentionTime, :ClusterId, :RenewFlag, :KafkaVersion, :SpecificationsType, :DiskSize, :BandWidth, :Partition, :Tags, :DiskType, :MultiZoneFlag, :ZoneIds, :PublicNetworkMonthly, :InstanceNum, :AutoVoucher
|
2236
2265
|
|
2237
|
-
def initialize(instancename=nil, zoneid=nil, period=nil, instancetype=nil, vpcid=nil, subnetid=nil, msgretentiontime=nil, clusterid=nil, renewflag=nil, kafkaversion=nil, specificationstype=nil, disksize=nil, bandwidth=nil, partition=nil, tags=nil, disktype=nil, multizoneflag=nil, zoneids=nil, publicnetworkmonthly=nil, instancenum=nil)
|
2266
|
+
def initialize(instancename=nil, zoneid=nil, period=nil, instancetype=nil, vpcid=nil, subnetid=nil, msgretentiontime=nil, clusterid=nil, renewflag=nil, kafkaversion=nil, specificationstype=nil, disksize=nil, bandwidth=nil, partition=nil, tags=nil, disktype=nil, multizoneflag=nil, zoneids=nil, publicnetworkmonthly=nil, instancenum=nil, autovoucher=nil)
|
2238
2267
|
@InstanceName = instancename
|
2239
2268
|
@ZoneId = zoneid
|
2240
2269
|
@Period = period
|
@@ -2255,6 +2284,7 @@ module TencentCloud
|
|
2255
2284
|
@ZoneIds = zoneids
|
2256
2285
|
@PublicNetworkMonthly = publicnetworkmonthly
|
2257
2286
|
@InstanceNum = instancenum
|
2287
|
+
@AutoVoucher = autovoucher
|
2258
2288
|
end
|
2259
2289
|
|
2260
2290
|
def deserialize(params)
|
@@ -2285,6 +2315,7 @@ module TencentCloud
|
|
2285
2315
|
@ZoneIds = params['ZoneIds']
|
2286
2316
|
@PublicNetworkMonthly = params['PublicNetworkMonthly']
|
2287
2317
|
@InstanceNum = params['InstanceNum']
|
2318
|
+
@AutoVoucher = params['AutoVoucher']
|
2288
2319
|
end
|
2289
2320
|
end
|
2290
2321
|
|
@@ -10950,15 +10981,18 @@ module TencentCloud
|
|
10950
10981
|
# @param BrokerTopicData: 单个broker 节点 Topic占用的数据大小
|
10951
10982
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10952
10983
|
# @type BrokerTopicData: Array
|
10984
|
+
# @param BrokerTopicFlowData: 单个Broker 节点Topic 流量的大小(单位MB)
|
10985
|
+
# @type BrokerTopicFlowData: Array
|
10953
10986
|
|
10954
|
-
attr_accessor :TopicFlow, :ConsumeSpeed, :TopicMessageHeap, :BrokerIp, :BrokerTopicData
|
10987
|
+
attr_accessor :TopicFlow, :ConsumeSpeed, :TopicMessageHeap, :BrokerIp, :BrokerTopicData, :BrokerTopicFlowData
|
10955
10988
|
|
10956
|
-
def initialize(topicflow=nil, consumespeed=nil, topicmessageheap=nil, brokerip=nil, brokertopicdata=nil)
|
10989
|
+
def initialize(topicflow=nil, consumespeed=nil, topicmessageheap=nil, brokerip=nil, brokertopicdata=nil, brokertopicflowdata=nil)
|
10957
10990
|
@TopicFlow = topicflow
|
10958
10991
|
@ConsumeSpeed = consumespeed
|
10959
10992
|
@TopicMessageHeap = topicmessageheap
|
10960
10993
|
@BrokerIp = brokerip
|
10961
10994
|
@BrokerTopicData = brokertopicdata
|
10995
|
+
@BrokerTopicFlowData = brokertopicflowdata
|
10962
10996
|
end
|
10963
10997
|
|
10964
10998
|
def deserialize(params)
|
@@ -10995,6 +11029,14 @@ module TencentCloud
|
|
10995
11029
|
@BrokerTopicData << brokertopicdata_tmp
|
10996
11030
|
end
|
10997
11031
|
end
|
11032
|
+
unless params['BrokerTopicFlowData'].nil?
|
11033
|
+
@BrokerTopicFlowData = []
|
11034
|
+
params['BrokerTopicFlowData'].each do |i|
|
11035
|
+
brokertopicflowdata_tmp = BrokerTopicFlowData.new
|
11036
|
+
brokertopicflowdata_tmp.deserialize(i)
|
11037
|
+
@BrokerTopicFlowData << brokertopicflowdata_tmp
|
11038
|
+
end
|
11039
|
+
end
|
10998
11040
|
end
|
10999
11041
|
end
|
11000
11042
|
|
@@ -11655,10 +11697,15 @@ module TencentCloud
|
|
11655
11697
|
# @param SalesInfo: 标准版售罄信息
|
11656
11698
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11657
11699
|
# @type SalesInfo: Array
|
11700
|
+
# @param ExtraFlag: 额外标识
|
11701
|
+
# @type ExtraFlag: String
|
11658
11702
|
|
11659
|
-
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo
|
11703
|
+
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
|
11704
|
+
extend Gem::Deprecate
|
11705
|
+
deprecate :Exflag, :none, 2023, 8
|
11706
|
+
deprecate :Exflag=, :none, 2023, 8
|
11660
11707
|
|
11661
|
-
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil)
|
11708
|
+
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
|
11662
11709
|
@ZoneId = zoneid
|
11663
11710
|
@IsInternalApp = isinternalapp
|
11664
11711
|
@AppId = appid
|
@@ -11668,6 +11715,7 @@ module TencentCloud
|
|
11668
11715
|
@Exflag = exflag
|
11669
11716
|
@SoldOut = soldout
|
11670
11717
|
@SalesInfo = salesinfo
|
11718
|
+
@ExtraFlag = extraflag
|
11671
11719
|
end
|
11672
11720
|
|
11673
11721
|
def deserialize(params)
|
@@ -11687,6 +11735,7 @@ module TencentCloud
|
|
11687
11735
|
@SalesInfo << saleinfo_tmp
|
11688
11736
|
end
|
11689
11737
|
end
|
11738
|
+
@ExtraFlag = params['ExtraFlag']
|
11690
11739
|
end
|
11691
11740
|
end
|
11692
11741
|
|
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.
|
4
|
+
version: 3.0.649
|
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-08-
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|