tencentcloud-sdk-tdmq 3.0.1205 → 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 +88 -16
- 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
|
|
|
@@ -2595,10 +2606,14 @@ module TencentCloud
|
|
|
2595
2606
|
# @type AckTimeOut: Integer
|
|
2596
2607
|
# @param PulsarTopicMessageType: Pulsar主题消息类型0: 混合消息1:普通消息2:延迟消息
|
|
2597
2608
|
# @type PulsarTopicMessageType: Integer
|
|
2609
|
+
# @param Tags: 主题标签
|
|
2610
|
+
# @type Tags: Array
|
|
2611
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
2612
|
+
# @type DelayMessagePolicy: String
|
|
2598
2613
|
|
|
2599
|
-
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
|
|
2600
2615
|
|
|
2601
|
-
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)
|
|
2602
2617
|
@EnvironmentId = environmentid
|
|
2603
2618
|
@TopicName = topicname
|
|
2604
2619
|
@Partitions = partitions
|
|
@@ -2611,6 +2626,8 @@ module TencentCloud
|
|
|
2611
2626
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
2612
2627
|
@AckTimeOut = acktimeout
|
|
2613
2628
|
@PulsarTopicMessageType = pulsartopicmessagetype
|
|
2629
|
+
@Tags = tags
|
|
2630
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
2614
2631
|
end
|
|
2615
2632
|
|
|
2616
2633
|
def deserialize(params)
|
|
@@ -2626,6 +2643,15 @@ module TencentCloud
|
|
|
2626
2643
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
2627
2644
|
@AckTimeOut = params['AckTimeOut']
|
|
2628
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']
|
|
2629
2655
|
end
|
|
2630
2656
|
end
|
|
2631
2657
|
|
|
@@ -8251,10 +8277,12 @@ module TencentCloud
|
|
|
8251
8277
|
# @type SubscriptionExpirationTime: Integer
|
|
8252
8278
|
# @param SubscriptionExpirationTimeEnable: 离线订阅过期自动清理时间开关
|
|
8253
8279
|
# @type SubscriptionExpirationTimeEnable: Boolean
|
|
8280
|
+
# @param Tags: 命名空间标签
|
|
8281
|
+
# @type Tags: Array
|
|
8254
8282
|
|
|
8255
|
-
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
|
|
8256
8284
|
|
|
8257
|
-
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)
|
|
8258
8286
|
@EnvironmentId = environmentid
|
|
8259
8287
|
@Remark = remark
|
|
8260
8288
|
@MsgTTL = msgttl
|
|
@@ -8267,6 +8295,7 @@ module TencentCloud
|
|
|
8267
8295
|
@AutoSubscriptionCreation = autosubscriptioncreation
|
|
8268
8296
|
@SubscriptionExpirationTime = subscriptionexpirationtime
|
|
8269
8297
|
@SubscriptionExpirationTimeEnable = subscriptionexpirationtimeenable
|
|
8298
|
+
@Tags = tags
|
|
8270
8299
|
end
|
|
8271
8300
|
|
|
8272
8301
|
def deserialize(params)
|
|
@@ -8285,6 +8314,14 @@ module TencentCloud
|
|
|
8285
8314
|
@AutoSubscriptionCreation = params['AutoSubscriptionCreation']
|
|
8286
8315
|
@SubscriptionExpirationTime = params['SubscriptionExpirationTime']
|
|
8287
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
|
|
8288
8325
|
end
|
|
8289
8326
|
end
|
|
8290
8327
|
|
|
@@ -10076,10 +10113,12 @@ module TencentCloud
|
|
|
10076
10113
|
# @type IsolateConsumerEnable: Boolean
|
|
10077
10114
|
# @param AckTimeOut: 消费者 Ack 超时时间,单位:秒,范围60-(3600*24
|
|
10078
10115
|
# @type AckTimeOut: Integer
|
|
10116
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
10117
|
+
# @type DelayMessagePolicy: String
|
|
10079
10118
|
|
|
10080
|
-
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut
|
|
10119
|
+
attr_accessor :EnvironmentId, :TopicName, :Partitions, :ClusterId, :Remark, :MsgTTL, :UnackPolicy, :IsolateConsumerEnable, :AckTimeOut, :DelayMessagePolicy
|
|
10081
10120
|
|
|
10082
|
-
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)
|
|
10083
10122
|
@EnvironmentId = environmentid
|
|
10084
10123
|
@TopicName = topicname
|
|
10085
10124
|
@Partitions = partitions
|
|
@@ -10089,6 +10128,7 @@ module TencentCloud
|
|
|
10089
10128
|
@UnackPolicy = unackpolicy
|
|
10090
10129
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
10091
10130
|
@AckTimeOut = acktimeout
|
|
10131
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
10092
10132
|
end
|
|
10093
10133
|
|
|
10094
10134
|
def deserialize(params)
|
|
@@ -10101,6 +10141,7 @@ module TencentCloud
|
|
|
10101
10141
|
@UnackPolicy = params['UnackPolicy']
|
|
10102
10142
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
10103
10143
|
@AckTimeOut = params['AckTimeOut']
|
|
10144
|
+
@DelayMessagePolicy = params['DelayMessagePolicy']
|
|
10104
10145
|
end
|
|
10105
10146
|
end
|
|
10106
10147
|
|
|
@@ -10700,7 +10741,7 @@ module TencentCloud
|
|
|
10700
10741
|
# @type MaxBandWidth: Integer
|
|
10701
10742
|
# @param MaxNamespaces: 最大命名空间个数
|
|
10702
10743
|
# @type MaxNamespaces: Integer
|
|
10703
|
-
# @param MaxTopics:
|
|
10744
|
+
# @param MaxTopics: 可以创建的最大主题数
|
|
10704
10745
|
# @type MaxTopics: Integer
|
|
10705
10746
|
# @param ScalableTps: 规格外弹性TPS
|
|
10706
10747
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -10709,12 +10750,20 @@ module TencentCloud
|
|
|
10709
10750
|
# 当前集群topic的最大分区数
|
|
10710
10751
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10711
10752
|
# @type MaxPartitions: Integer
|
|
10712
|
-
# @param MaxDelayedMessages:
|
|
10753
|
+
# @param MaxDelayedMessages: 最大延迟消息数量。0代表没有限制
|
|
10713
10754
|
# @type MaxDelayedMessages: Integer
|
|
10714
|
-
|
|
10715
|
-
|
|
10716
|
-
|
|
10717
|
-
|
|
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)
|
|
10718
10767
|
@SpecName = specname
|
|
10719
10768
|
@MaxTps = maxtps
|
|
10720
10769
|
@MaxBandWidth = maxbandwidth
|
|
@@ -10723,6 +10772,10 @@ module TencentCloud
|
|
|
10723
10772
|
@ScalableTps = scalabletps
|
|
10724
10773
|
@MaxPartitions = maxpartitions
|
|
10725
10774
|
@MaxDelayedMessages = maxdelayedmessages
|
|
10775
|
+
@MaxTopicsPartitioned = maxtopicspartitioned
|
|
10776
|
+
@BrokerMaxConnections = brokermaxconnections
|
|
10777
|
+
@BrokerMaxConnectionsPerIp = brokermaxconnectionsperip
|
|
10778
|
+
@MaximumElasticStorage = maximumelasticstorage
|
|
10726
10779
|
end
|
|
10727
10780
|
|
|
10728
10781
|
def deserialize(params)
|
|
@@ -10734,6 +10787,10 @@ module TencentCloud
|
|
|
10734
10787
|
@ScalableTps = params['ScalableTps']
|
|
10735
10788
|
@MaxPartitions = params['MaxPartitions']
|
|
10736
10789
|
@MaxDelayedMessages = params['MaxDelayedMessages']
|
|
10790
|
+
@MaxTopicsPartitioned = params['MaxTopicsPartitioned']
|
|
10791
|
+
@BrokerMaxConnections = params['BrokerMaxConnections']
|
|
10792
|
+
@BrokerMaxConnectionsPerIp = params['BrokerMaxConnectionsPerIp']
|
|
10793
|
+
@MaximumElasticStorage = params['MaximumElasticStorage']
|
|
10737
10794
|
end
|
|
10738
10795
|
end
|
|
10739
10796
|
|
|
@@ -14033,10 +14090,14 @@ module TencentCloud
|
|
|
14033
14090
|
# @type AckTimeOut: Integer
|
|
14034
14091
|
# @param PulsarTopicMessageType: Pulsar主题消息类型0: 混合消息1:普通消息2:延迟消息
|
|
14035
14092
|
# @type PulsarTopicMessageType: Integer
|
|
14093
|
+
# @param Tags: 主题标签
|
|
14094
|
+
# @type Tags: Array
|
|
14095
|
+
# @param DelayMessagePolicy: defaultPolicy/timingwheelPolicy不传默认是社区版本延迟消息策略
|
|
14096
|
+
# @type DelayMessagePolicy: String
|
|
14036
14097
|
|
|
14037
|
-
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
|
|
14038
14099
|
|
|
14039
|
-
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)
|
|
14040
14101
|
@AverageMsgSize = averagemsgsize
|
|
14041
14102
|
@ConsumerCount = consumercount
|
|
14042
14103
|
@LastConfirmedEntry = lastconfirmedentry
|
|
@@ -14065,6 +14126,8 @@ module TencentCloud
|
|
|
14065
14126
|
@IsolateConsumerEnable = isolateconsumerenable
|
|
14066
14127
|
@AckTimeOut = acktimeout
|
|
14067
14128
|
@PulsarTopicMessageType = pulsartopicmessagetype
|
|
14129
|
+
@Tags = tags
|
|
14130
|
+
@DelayMessagePolicy = delaymessagepolicy
|
|
14068
14131
|
end
|
|
14069
14132
|
|
|
14070
14133
|
def deserialize(params)
|
|
@@ -14103,6 +14166,15 @@ module TencentCloud
|
|
|
14103
14166
|
@IsolateConsumerEnable = params['IsolateConsumerEnable']
|
|
14104
14167
|
@AckTimeOut = params['AckTimeOut']
|
|
14105
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']
|
|
14106
14178
|
end
|
|
14107
14179
|
end
|
|
14108
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
|