tencentcloud-sdk-tdmq 3.0.1201 → 3.0.1207
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/v20200217/models.rb +109 -24
- 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: 6ad30810cf01a005b0d1a5b182c4024b6c6ac777
|
|
4
|
+
data.tar.gz: 4d538daeacb2713b747903c068a27ffe99b2f6c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 769e76177aee290b7e597b70905997de8c4ebcb4c21d5d8e31b28d5c29d4701c1c24fce597ad4ac164c5bd17a3fe061b3f97e114a0ae2938395539efb9b306c4
|
|
7
|
+
data.tar.gz: 8e0eed42775ff916752c0bc73c9fe5bd39d4fdc0a850d029041c43adb2aa25199b96e42ccfe2e1ffd334b6489cd52a63b81b39407e2ef2f29638c7a888d3a233
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1207
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -1437,10 +1437,12 @@ module TencentCloud
|
|
|
1437
1437
|
# @type SubscriptionExpirationTime: Integer
|
|
1438
1438
|
# @param SubscriptionExpirationTimeEnable: 离线订阅过期自动清理时间开关
|
|
1439
1439
|
# @type SubscriptionExpirationTimeEnable: Boolean
|
|
1440
|
+
# @param Tags: 命名空间标签
|
|
1441
|
+
# @type Tags: Array
|
|
1440
1442
|
|
|
1441
|
-
attr_accessor :EnvironmentId, :MsgTTL, :ClusterId, :Remark, :RetentionPolicy, :AutoSubscriptionCreation, :SubscriptionExpirationTime, :SubscriptionExpirationTimeEnable
|
|
1443
|
+
attr_accessor :EnvironmentId, :MsgTTL, :ClusterId, :Remark, :RetentionPolicy, :AutoSubscriptionCreation, :SubscriptionExpirationTime, :SubscriptionExpirationTimeEnable, :Tags
|
|
1442
1444
|
|
|
1443
|
-
def initialize(environmentid=nil, msgttl=nil, clusterid=nil, remark=nil, retentionpolicy=nil, autosubscriptioncreation=nil, subscriptionexpirationtime=nil, subscriptionexpirationtimeenable=nil)
|
|
1445
|
+
def initialize(environmentid=nil, msgttl=nil, clusterid=nil, remark=nil, retentionpolicy=nil, autosubscriptioncreation=nil, subscriptionexpirationtime=nil, subscriptionexpirationtimeenable=nil, tags=nil)
|
|
1444
1446
|
@EnvironmentId = environmentid
|
|
1445
1447
|
@MsgTTL = msgttl
|
|
1446
1448
|
@ClusterId = clusterid
|
|
@@ -1449,6 +1451,7 @@ module TencentCloud
|
|
|
1449
1451
|
@AutoSubscriptionCreation = autosubscriptioncreation
|
|
1450
1452
|
@SubscriptionExpirationTime = subscriptionexpirationtime
|
|
1451
1453
|
@SubscriptionExpirationTimeEnable = subscriptionexpirationtimeenable
|
|
1454
|
+
@Tags = tags
|
|
1452
1455
|
end
|
|
1453
1456
|
|
|
1454
1457
|
def deserialize(params)
|
|
@@ -1463,6 +1466,14 @@ module TencentCloud
|
|
|
1463
1466
|
@AutoSubscriptionCreation = params['AutoSubscriptionCreation']
|
|
1464
1467
|
@SubscriptionExpirationTime = params['SubscriptionExpirationTime']
|
|
1465
1468
|
@SubscriptionExpirationTimeEnable = params['SubscriptionExpirationTimeEnable']
|
|
1469
|
+
unless params['Tags'].nil?
|
|
1470
|
+
@Tags = []
|
|
1471
|
+
params['Tags'].each do |i|
|
|
1472
|
+
tag_tmp = Tag.new
|
|
1473
|
+
tag_tmp.deserialize(i)
|
|
1474
|
+
@Tags << tag_tmp
|
|
1475
|
+
end
|
|
1476
|
+
end
|
|
1466
1477
|
end
|
|
1467
1478
|
end
|
|
1468
1479
|
|
|
@@ -2336,8 +2347,6 @@ module TencentCloud
|
|
|
2336
2347
|
# @type Name: String
|
|
2337
2348
|
# @param Spec: 集群规格,支持规格有 1.通用型:rocket-vip-basic-0; 2.基础型:rocket-vip-basic-1; 3.标准型:rocket-vip-basic-2; 4.高阶Ⅰ型:rocket-vip-basic-3; 5.高阶Ⅱ型:rocket-vip-basic-4
|
|
2338
2349
|
# @type Spec: String
|
|
2339
|
-
# @param NodeCount: 节点数量,最小2,最大20
|
|
2340
|
-
# @type NodeCount: Integer
|
|
2341
2350
|
# @param StorageSize: 单节点存储空间,GB为单位,最低200GB
|
|
2342
2351
|
# @type StorageSize: Integer
|
|
2343
2352
|
# @param ZoneIds: 节点部署的区域ID列表,如广州一区,则是100001,具体可查询腾讯云官网
|
|
@@ -2346,6 +2355,10 @@ module TencentCloud
|
|
|
2346
2355
|
# @type VpcInfo: :class:`Tencentcloud::Tdmq.v20200217.models.VpcInfo`
|
|
2347
2356
|
# @param TimeSpan: 购买时长,月为单位
|
|
2348
2357
|
# @type TimeSpan: Integer
|
|
2358
|
+
# @param NodeCount: 节点数量,创建专享集群时必填
|
|
2359
|
+
# @type NodeCount: Integer
|
|
2360
|
+
# @param GeneralSkuCode: 通用集群规格标识,新购通用集群时必填,从 [DescribeRocketMQGeneralSKUs](https://cloud.tencent.com/document/api/1179/127066) 接口返回的 [GeneralSKU](https://cloud.tencent.com/document/api/1179/46089#GeneralSKU) 字段获取。
|
|
2361
|
+
# @type GeneralSkuCode: String
|
|
2349
2362
|
# @param SupportsMigrateToCloud: 是否用于迁移上云,默认为false
|
|
2350
2363
|
# @type SupportsMigrateToCloud: Boolean
|
|
2351
2364
|
# @param EnablePublic: 是否开启公网
|
|
@@ -2357,16 +2370,17 @@ module TencentCloud
|
|
|
2357
2370
|
# @param Tags: 标签
|
|
2358
2371
|
# @type Tags: Array
|
|
2359
2372
|
|
|
2360
|
-
attr_accessor :Name, :Spec, :
|
|
2373
|
+
attr_accessor :Name, :Spec, :StorageSize, :ZoneIds, :VpcInfo, :TimeSpan, :NodeCount, :GeneralSkuCode, :SupportsMigrateToCloud, :EnablePublic, :Bandwidth, :IpRules, :Tags
|
|
2361
2374
|
|
|
2362
|
-
def initialize(name=nil, spec=nil,
|
|
2375
|
+
def initialize(name=nil, spec=nil, storagesize=nil, zoneids=nil, vpcinfo=nil, timespan=nil, nodecount=nil, generalskucode=nil, supportsmigratetocloud=nil, enablepublic=nil, bandwidth=nil, iprules=nil, tags=nil)
|
|
2363
2376
|
@Name = name
|
|
2364
2377
|
@Spec = spec
|
|
2365
|
-
@NodeCount = nodecount
|
|
2366
2378
|
@StorageSize = storagesize
|
|
2367
2379
|
@ZoneIds = zoneids
|
|
2368
2380
|
@VpcInfo = vpcinfo
|
|
2369
2381
|
@TimeSpan = timespan
|
|
2382
|
+
@NodeCount = nodecount
|
|
2383
|
+
@GeneralSkuCode = generalskucode
|
|
2370
2384
|
@SupportsMigrateToCloud = supportsmigratetocloud
|
|
2371
2385
|
@EnablePublic = enablepublic
|
|
2372
2386
|
@Bandwidth = bandwidth
|
|
@@ -2377,7 +2391,6 @@ module TencentCloud
|
|
|
2377
2391
|
def deserialize(params)
|
|
2378
2392
|
@Name = params['Name']
|
|
2379
2393
|
@Spec = params['Spec']
|
|
2380
|
-
@NodeCount = params['NodeCount']
|
|
2381
2394
|
@StorageSize = params['StorageSize']
|
|
2382
2395
|
@ZoneIds = params['ZoneIds']
|
|
2383
2396
|
unless params['VpcInfo'].nil?
|
|
@@ -2385,6 +2398,8 @@ module TencentCloud
|
|
|
2385
2398
|
@VpcInfo.deserialize(params['VpcInfo'])
|
|
2386
2399
|
end
|
|
2387
2400
|
@TimeSpan = params['TimeSpan']
|
|
2401
|
+
@NodeCount = params['NodeCount']
|
|
2402
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
2388
2403
|
@SupportsMigrateToCloud = params['SupportsMigrateToCloud']
|
|
2389
2404
|
@EnablePublic = params['EnablePublic']
|
|
2390
2405
|
@Bandwidth = params['Bandwidth']
|
|
@@ -2591,10 +2606,14 @@ module TencentCloud
|
|
|
2591
2606
|
# @type AckTimeOut: Integer
|
|
2592
2607
|
# @param PulsarTopicMessageType: Pulsar主题消息类型0: 混合消息1:普通消息2:延迟消息
|
|
2593
2608
|
# @type PulsarTopicMessageType: Integer
|
|
2609
|
+
# @param Tags: 主题标签
|
|
2610
|
+
# @type Tags: Array
|
|
2611
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
2612
|
+
# @type DelayMessagePolicy: String
|
|
2594
2613
|
|
|
2595
|
-
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :TopicType, :PulsarTopicType, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut, :PulsarTopicMessageType
|
|
2614
|
+
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :TopicType, :PulsarTopicType, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut, :PulsarTopicMessageType, :Tags, :DelayMessagePolicy
|
|
2596
2615
|
|
|
2597
|
-
def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, topictype=nil, pulsartopictype=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil, pulsartopicmessagetype=nil)
|
|
2616
|
+
def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, topictype=nil, pulsartopictype=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil, pulsartopicmessagetype=nil, tags=nil, delaymessagepolicy=nil)
|
|
2598
2617
|
@EnvironmentId = environmentid
|
|
2599
2618
|
@TopicName = topicname
|
|
2600
2619
|
@Partitions = partitions
|
|
@@ -2607,6 +2626,8 @@ module TencentCloud
|
|
|
2607
2626
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
2608
2627
|
@AckTimeOut = acktimeout
|
|
2609
2628
|
@PulsarTopicMessageType = pulsartopicmessagetype
|
|
2629
|
+
@Tags = tags
|
|
2630
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
2610
2631
|
end
|
|
2611
2632
|
|
|
2612
2633
|
def deserialize(params)
|
|
@@ -2622,6 +2643,15 @@ module TencentCloud
|
|
|
2622
2643
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
2623
2644
|
@AckTimeOut = params['AckTimeOut']
|
|
2624
2645
|
@PulsarTopicMessageType = params['PulsarTopicMessageType']
|
|
2646
|
+
unless params['Tags'].nil?
|
|
2647
|
+
@Tags = []
|
|
2648
|
+
params['Tags'].each do |i|
|
|
2649
|
+
tag_tmp = Tag.new
|
|
2650
|
+
tag_tmp.deserialize(i)
|
|
2651
|
+
@Tags << tag_tmp
|
|
2652
|
+
end
|
|
2653
|
+
end
|
|
2654
|
+
@DelayMessagePolicy = params['DelayMessagePolicy']
|
|
2625
2655
|
end
|
|
2626
2656
|
end
|
|
2627
2657
|
|
|
@@ -8247,10 +8277,12 @@ module TencentCloud
|
|
|
8247
8277
|
# @type SubscriptionExpirationTime: Integer
|
|
8248
8278
|
# @param SubscriptionExpirationTimeEnable: 离线订阅过期自动清理时间开关
|
|
8249
8279
|
# @type SubscriptionExpirationTimeEnable: Boolean
|
|
8280
|
+
# @param Tags: 命名空间标签
|
|
8281
|
+
# @type Tags: Array
|
|
8250
8282
|
|
|
8251
|
-
attr_accessor :EnvironmentId, :Remark, :MsgTTL, :CreateTime, :UpdateTime, :NamespaceId, :NamespaceName, :TopicNum, :RetentionPolicy, :AutoSubscriptionCreation, :SubscriptionExpirationTime, :SubscriptionExpirationTimeEnable
|
|
8283
|
+
attr_accessor :EnvironmentId, :Remark, :MsgTTL, :CreateTime, :UpdateTime, :NamespaceId, :NamespaceName, :TopicNum, :RetentionPolicy, :AutoSubscriptionCreation, :SubscriptionExpirationTime, :SubscriptionExpirationTimeEnable, :Tags
|
|
8252
8284
|
|
|
8253
|
-
def initialize(environmentid=nil, remark=nil, msgttl=nil, createtime=nil, updatetime=nil, namespaceid=nil, namespacename=nil, topicnum=nil, retentionpolicy=nil, autosubscriptioncreation=nil, subscriptionexpirationtime=nil, subscriptionexpirationtimeenable=nil)
|
|
8285
|
+
def initialize(environmentid=nil, remark=nil, msgttl=nil, createtime=nil, updatetime=nil, namespaceid=nil, namespacename=nil, topicnum=nil, retentionpolicy=nil, autosubscriptioncreation=nil, subscriptionexpirationtime=nil, subscriptionexpirationtimeenable=nil, tags=nil)
|
|
8254
8286
|
@EnvironmentId = environmentid
|
|
8255
8287
|
@Remark = remark
|
|
8256
8288
|
@MsgTTL = msgttl
|
|
@@ -8263,6 +8295,7 @@ module TencentCloud
|
|
|
8263
8295
|
@AutoSubscriptionCreation = autosubscriptioncreation
|
|
8264
8296
|
@SubscriptionExpirationTime = subscriptionexpirationtime
|
|
8265
8297
|
@SubscriptionExpirationTimeEnable = subscriptionexpirationtimeenable
|
|
8298
|
+
@Tags = tags
|
|
8266
8299
|
end
|
|
8267
8300
|
|
|
8268
8301
|
def deserialize(params)
|
|
@@ -8281,6 +8314,14 @@ module TencentCloud
|
|
|
8281
8314
|
@AutoSubscriptionCreation = params['AutoSubscriptionCreation']
|
|
8282
8315
|
@SubscriptionExpirationTime = params['SubscriptionExpirationTime']
|
|
8283
8316
|
@SubscriptionExpirationTimeEnable = params['SubscriptionExpirationTimeEnable']
|
|
8317
|
+
unless params['Tags'].nil?
|
|
8318
|
+
@Tags = []
|
|
8319
|
+
params['Tags'].each do |i|
|
|
8320
|
+
tag_tmp = Tag.new
|
|
8321
|
+
tag_tmp.deserialize(i)
|
|
8322
|
+
@Tags << tag_tmp
|
|
8323
|
+
end
|
|
8324
|
+
end
|
|
8284
8325
|
end
|
|
8285
8326
|
end
|
|
8286
8327
|
|
|
@@ -10072,10 +10113,12 @@ module TencentCloud
|
|
|
10072
10113
|
# @type IsolateConsumerEnable: Boolean
|
|
10073
10114
|
# @param AckTimeOut: 消费者 Ack 超时时间,单位:秒,范围60-(3600*24
|
|
10074
10115
|
# @type AckTimeOut: Integer
|
|
10116
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
10117
|
+
# @type DelayMessagePolicy: String
|
|
10075
10118
|
|
|
10076
|
-
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut
|
|
10119
|
+
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut, :DelayMessagePolicy
|
|
10077
10120
|
|
|
10078
|
-
def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil)
|
|
10121
|
+
def initialize(environmentid=nil, topicname=nil, partitions=nil, clusterid=nil, remark=nil, msgttl=nil, unackpolicy=nil, isolateconsumerenable=nil, acktimeout=nil, delaymessagepolicy=nil)
|
|
10079
10122
|
@EnvironmentId = environmentid
|
|
10080
10123
|
@TopicName = topicname
|
|
10081
10124
|
@Partitions = partitions
|
|
@@ -10085,6 +10128,7 @@ module TencentCloud
|
|
|
10085
10128
|
@UnackPolicy = unackpolicy
|
|
10086
10129
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
10087
10130
|
@AckTimeOut = acktimeout
|
|
10131
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
10088
10132
|
end
|
|
10089
10133
|
|
|
10090
10134
|
def deserialize(params)
|
|
@@ -10097,6 +10141,7 @@ module TencentCloud
|
|
|
10097
10141
|
@UnackPolicy = params['UnackPolicy']
|
|
10098
10142
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
10099
10143
|
@AckTimeOut = params['AckTimeOut']
|
|
10144
|
+
@DelayMessagePolicy = params['DelayMessagePolicy']
|
|
10100
10145
|
end
|
|
10101
10146
|
end
|
|
10102
10147
|
|
|
@@ -10696,7 +10741,7 @@ module TencentCloud
|
|
|
10696
10741
|
# @type MaxBandWidth: Integer
|
|
10697
10742
|
# @param MaxNamespaces: 最大命名空间个数
|
|
10698
10743
|
# @type MaxNamespaces: Integer
|
|
10699
|
-
# @param MaxTopics:
|
|
10744
|
+
# @param MaxTopics: 可以创建的最大主题数
|
|
10700
10745
|
# @type MaxTopics: Integer
|
|
10701
10746
|
# @param ScalableTps: 规格外弹性TPS
|
|
10702
10747
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -10705,12 +10750,20 @@ module TencentCloud
|
|
|
10705
10750
|
# 当前集群topic的最大分区数
|
|
10706
10751
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10707
10752
|
# @type MaxPartitions: Integer
|
|
10708
|
-
# @param MaxDelayedMessages:
|
|
10753
|
+
# @param MaxDelayedMessages: 最大延迟消息数量。0代表没有限制
|
|
10709
10754
|
# @type MaxDelayedMessages: Integer
|
|
10710
|
-
|
|
10711
|
-
|
|
10712
|
-
|
|
10713
|
-
|
|
10755
|
+
# @param MaxTopicsPartitioned: 可以创建的最大主题分区数
|
|
10756
|
+
# @type MaxTopicsPartitioned: Integer
|
|
10757
|
+
# @param BrokerMaxConnections: 单broker最大链接数
|
|
10758
|
+
# @type BrokerMaxConnections: Integer
|
|
10759
|
+
# @param BrokerMaxConnectionsPerIp: 单IP最大链接数
|
|
10760
|
+
# @type BrokerMaxConnectionsPerIp: Integer
|
|
10761
|
+
# @param MaximumElasticStorage: 弹性存储集群最大存储规格;固定存储该值为0
|
|
10762
|
+
# @type MaximumElasticStorage: Integer
|
|
10763
|
+
|
|
10764
|
+
attr_accessor :SpecName, :MaxTps, :MaxBandWidth, :MaxNamespaces, :MaxTopics, :ScalableTps, :MaxPartitions, :MaxDelayedMessages, :MaxTopicsPartitioned, :BrokerMaxConnections, :BrokerMaxConnectionsPerIp, :MaximumElasticStorage
|
|
10765
|
+
|
|
10766
|
+
def initialize(specname=nil, maxtps=nil, maxbandwidth=nil, maxnamespaces=nil, maxtopics=nil, scalabletps=nil, maxpartitions=nil, maxdelayedmessages=nil, maxtopicspartitioned=nil, brokermaxconnections=nil, brokermaxconnectionsperip=nil, maximumelasticstorage=nil)
|
|
10714
10767
|
@SpecName = specname
|
|
10715
10768
|
@MaxTps = maxtps
|
|
10716
10769
|
@MaxBandWidth = maxbandwidth
|
|
@@ -10719,6 +10772,10 @@ module TencentCloud
|
|
|
10719
10772
|
@ScalableTps = scalabletps
|
|
10720
10773
|
@MaxPartitions = maxpartitions
|
|
10721
10774
|
@MaxDelayedMessages = maxdelayedmessages
|
|
10775
|
+
@MaxTopicsPartitioned = maxtopicspartitioned
|
|
10776
|
+
@BrokerMaxConnections = brokermaxconnections
|
|
10777
|
+
@BrokerMaxConnectionsPerIp = brokermaxconnectionsperip
|
|
10778
|
+
@MaximumElasticStorage = maximumelasticstorage
|
|
10722
10779
|
end
|
|
10723
10780
|
|
|
10724
10781
|
def deserialize(params)
|
|
@@ -10730,6 +10787,10 @@ module TencentCloud
|
|
|
10730
10787
|
@ScalableTps = params['ScalableTps']
|
|
10731
10788
|
@MaxPartitions = params['MaxPartitions']
|
|
10732
10789
|
@MaxDelayedMessages = params['MaxDelayedMessages']
|
|
10790
|
+
@MaxTopicsPartitioned = params['MaxTopicsPartitioned']
|
|
10791
|
+
@BrokerMaxConnections = params['BrokerMaxConnections']
|
|
10792
|
+
@BrokerMaxConnectionsPerIp = params['BrokerMaxConnectionsPerIp']
|
|
10793
|
+
@MaximumElasticStorage = params['MaximumElasticStorage']
|
|
10733
10794
|
end
|
|
10734
10795
|
end
|
|
10735
10796
|
|
|
@@ -12734,10 +12795,15 @@ module TencentCloud
|
|
|
12734
12795
|
# @type TopicNumUpperLimit: Integer
|
|
12735
12796
|
# @param SendReceiveRatio: 控制生产和消费消息的 TPS 占比,取值范围0~1,默认值为0.5
|
|
12736
12797
|
# @type SendReceiveRatio: Float
|
|
12798
|
+
# @param TpsLimit: 收发 TPS 峰值上限
|
|
12799
|
+
# @type TpsLimit: Integer
|
|
12800
|
+
# @param GeneralSkuCode: 通用集群规格
|
|
12801
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12802
|
+
# @type GeneralSkuCode: String
|
|
12737
12803
|
|
|
12738
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio
|
|
12804
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio, :TpsLimit, :GeneralSkuCode
|
|
12739
12805
|
|
|
12740
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil)
|
|
12806
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil, tpslimit=nil, generalskucode=nil)
|
|
12741
12807
|
@MaxTpsPerNamespace = maxtpspernamespace
|
|
12742
12808
|
@MaxNamespaceNum = maxnamespacenum
|
|
12743
12809
|
@UsedNamespaceNum = usednamespacenum
|
|
@@ -12756,6 +12822,8 @@ module TencentCloud
|
|
|
12756
12822
|
@TopicNumLowerLimit = topicnumlowerlimit
|
|
12757
12823
|
@TopicNumUpperLimit = topicnumupperlimit
|
|
12758
12824
|
@SendReceiveRatio = sendreceiveratio
|
|
12825
|
+
@TpsLimit = tpslimit
|
|
12826
|
+
@GeneralSkuCode = generalskucode
|
|
12759
12827
|
end
|
|
12760
12828
|
|
|
12761
12829
|
def deserialize(params)
|
|
@@ -12791,6 +12859,8 @@ module TencentCloud
|
|
|
12791
12859
|
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
|
12792
12860
|
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
|
12793
12861
|
@SendReceiveRatio = params['SendReceiveRatio']
|
|
12862
|
+
@TpsLimit = params['TpsLimit']
|
|
12863
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
12794
12864
|
end
|
|
12795
12865
|
end
|
|
12796
12866
|
|
|
@@ -14020,10 +14090,14 @@ module TencentCloud
|
|
|
14020
14090
|
# @type AckTimeOut: Integer
|
|
14021
14091
|
# @param PulsarTopicMessageType: Pulsar主题消息类型0: 混合消息1:普通消息2:延迟消息
|
|
14022
14092
|
# @type PulsarTopicMessageType: Integer
|
|
14093
|
+
# @param Tags: 主题标签
|
|
14094
|
+
# @type Tags: Array
|
|
14095
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
14096
|
+
# @type DelayMessagePolicy: String
|
|
14023
14097
|
|
|
14024
|
-
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, :PulsarTopicMessageType
|
|
14098
|
+
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, :PulsarTopicMessageType, :Tags, :DelayMessagePolicy
|
|
14025
14099
|
|
|
14026
|
-
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, pulsartopicmessagetype=nil)
|
|
14100
|
+
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, pulsartopicmessagetype=nil, tags=nil, delaymessagepolicy=nil)
|
|
14027
14101
|
@AverageMsgSize = averagemsgsize
|
|
14028
14102
|
@ConsumerCount = consumercount
|
|
14029
14103
|
@LastConfirmedEntry = lastconfirmedentry
|
|
@@ -14052,6 +14126,8 @@ module TencentCloud
|
|
|
14052
14126
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
14053
14127
|
@AckTimeOut = acktimeout
|
|
14054
14128
|
@PulsarTopicMessageType = pulsartopicmessagetype
|
|
14129
|
+
@Tags = tags
|
|
14130
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
14055
14131
|
end
|
|
14056
14132
|
|
|
14057
14133
|
def deserialize(params)
|
|
@@ -14090,6 +14166,15 @@ module TencentCloud
|
|
|
14090
14166
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
14091
14167
|
@AckTimeOut = params['AckTimeOut']
|
|
14092
14168
|
@PulsarTopicMessageType = params['PulsarTopicMessageType']
|
|
14169
|
+
unless params['Tags'].nil?
|
|
14170
|
+
@Tags = []
|
|
14171
|
+
params['Tags'].each do |i|
|
|
14172
|
+
tag_tmp = Tag.new
|
|
14173
|
+
tag_tmp.deserialize(i)
|
|
14174
|
+
@Tags << tag_tmp
|
|
14175
|
+
end
|
|
14176
|
+
end
|
|
14177
|
+
@DelayMessagePolicy = params['DelayMessagePolicy']
|
|
14093
14178
|
end
|
|
14094
14179
|
end
|
|
14095
14180
|
|
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.
|
|
4
|
+
version: 3.0.1207
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|