tencentcloud-sdk-tdmq 1.0.290 → 1.0.293
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 +40 -10
- 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: 04f953579edefe37c5f3425733f822a8b630d805
|
4
|
+
data.tar.gz: ecc1628e1afbcedcaa12c1925030ce2d0f0ff16c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b4dca2ce780f3a591482123bdb54c2d6896e40a80ab1b04fd372e5544fa9f20503c67df2265abb428495cee42815c46b624313566b8ad8284a9847ecba978cf
|
7
|
+
data.tar.gz: e0568e475093da6a32a142dbe51ed736daa70008934bcf9d6df53593272cc7176b94ed293bddf81225f13f0edcd429125456d391992e299741510745022220bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.293
|
data/lib/v20200217/models.rb
CHANGED
@@ -273,10 +273,13 @@ module TencentCloud
|
|
273
273
|
# @param DeadLetterRoutingKey: 死信交换机路由键
|
274
274
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
275
275
|
# @type DeadLetterRoutingKey: String
|
276
|
+
# @param TopicName: Queue对应的Topic名称
|
277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
278
|
+
# @type TopicName: String
|
276
279
|
|
277
|
-
attr_accessor :Name, :Remark, :DestBindedNum, :CreateTime, :UpdateTime, :OnlineConsumerNum, :Tps, :AccumulativeMsgNum, :AutoDelete, :DeadLetterExchange, :DeadLetterRoutingKey
|
280
|
+
attr_accessor :Name, :Remark, :DestBindedNum, :CreateTime, :UpdateTime, :OnlineConsumerNum, :Tps, :AccumulativeMsgNum, :AutoDelete, :DeadLetterExchange, :DeadLetterRoutingKey, :TopicName
|
278
281
|
|
279
|
-
def initialize(name=nil, remark=nil, destbindednum=nil, createtime=nil, updatetime=nil, onlineconsumernum=nil, tps=nil, accumulativemsgnum=nil, autodelete=nil, deadletterexchange=nil, deadletterroutingkey=nil)
|
282
|
+
def initialize(name=nil, remark=nil, destbindednum=nil, createtime=nil, updatetime=nil, onlineconsumernum=nil, tps=nil, accumulativemsgnum=nil, autodelete=nil, deadletterexchange=nil, deadletterroutingkey=nil, topicname=nil)
|
280
283
|
@Name = name
|
281
284
|
@Remark = remark
|
282
285
|
@DestBindedNum = destbindednum
|
@@ -288,6 +291,7 @@ module TencentCloud
|
|
288
291
|
@AutoDelete = autodelete
|
289
292
|
@DeadLetterExchange = deadletterexchange
|
290
293
|
@DeadLetterRoutingKey = deadletterroutingkey
|
294
|
+
@TopicName = topicname
|
291
295
|
end
|
292
296
|
|
293
297
|
def deserialize(params)
|
@@ -302,6 +306,7 @@ module TencentCloud
|
|
302
306
|
@AutoDelete = params['AutoDelete']
|
303
307
|
@DeadLetterExchange = params['DeadLetterExchange']
|
304
308
|
@DeadLetterRoutingKey = params['DeadLetterRoutingKey']
|
309
|
+
@TopicName = params['TopicName']
|
305
310
|
end
|
306
311
|
end
|
307
312
|
|
@@ -827,10 +832,13 @@ module TencentCloud
|
|
827
832
|
# @param MaxMsgBacklogSize: 最大消息堆积大小(字节)
|
828
833
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
829
834
|
# @type MaxMsgBacklogSize: Integer
|
835
|
+
# @param RetentionSizeInMB: 队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
|
836
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
837
|
+
# @type RetentionSizeInMB: Integer
|
830
838
|
|
831
|
-
attr_accessor :QueueId, :QueueName, :Qps, :Bps, :MaxDelaySeconds, :MaxMsgHeapNum, :PollingWaitSeconds, :MsgRetentionSeconds, :VisibilityTimeout, :MaxMsgSize, :RewindSeconds, :CreateTime, :LastModifyTime, :ActiveMsgNum, :InactiveMsgNum, :DelayMsgNum, :RewindMsgNum, :MinMsgTime, :Transaction, :DeadLetterSource, :DeadLetterPolicy, :TransactionPolicy, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status, :MaxUnackedMsgNum, :MaxMsgBacklogSize
|
839
|
+
attr_accessor :QueueId, :QueueName, :Qps, :Bps, :MaxDelaySeconds, :MaxMsgHeapNum, :PollingWaitSeconds, :MsgRetentionSeconds, :VisibilityTimeout, :MaxMsgSize, :RewindSeconds, :CreateTime, :LastModifyTime, :ActiveMsgNum, :InactiveMsgNum, :DelayMsgNum, :RewindMsgNum, :MinMsgTime, :Transaction, :DeadLetterSource, :DeadLetterPolicy, :TransactionPolicy, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status, :MaxUnackedMsgNum, :MaxMsgBacklogSize, :RetentionSizeInMB
|
832
840
|
|
833
|
-
def initialize(queueid=nil, queuename=nil, qps=nil, bps=nil, maxdelayseconds=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, msgretentionseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, rewindseconds=nil, createtime=nil, lastmodifytime=nil, activemsgnum=nil, inactivemsgnum=nil, delaymsgnum=nil, rewindmsgnum=nil, minmsgtime=nil, transaction=nil, deadlettersource=nil, deadletterpolicy=nil, transactionpolicy=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil, maxunackedmsgnum=nil, maxmsgbacklogsize=nil)
|
841
|
+
def initialize(queueid=nil, queuename=nil, qps=nil, bps=nil, maxdelayseconds=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, msgretentionseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, rewindseconds=nil, createtime=nil, lastmodifytime=nil, activemsgnum=nil, inactivemsgnum=nil, delaymsgnum=nil, rewindmsgnum=nil, minmsgtime=nil, transaction=nil, deadlettersource=nil, deadletterpolicy=nil, transactionpolicy=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil, maxunackedmsgnum=nil, maxmsgbacklogsize=nil, retentionsizeinmb=nil)
|
834
842
|
@QueueId = queueid
|
835
843
|
@QueueName = queuename
|
836
844
|
@Qps = qps
|
@@ -861,6 +869,7 @@ module TencentCloud
|
|
861
869
|
@Status = status
|
862
870
|
@MaxUnackedMsgNum = maxunackedmsgnum
|
863
871
|
@MaxMsgBacklogSize = maxmsgbacklogsize
|
872
|
+
@RetentionSizeInMB = retentionsizeinmb
|
864
873
|
end
|
865
874
|
|
866
875
|
def deserialize(params)
|
@@ -914,6 +923,7 @@ module TencentCloud
|
|
914
923
|
@Status = params['Status']
|
915
924
|
@MaxUnackedMsgNum = params['MaxUnackedMsgNum']
|
916
925
|
@MaxMsgBacklogSize = params['MaxMsgBacklogSize']
|
926
|
+
@RetentionSizeInMB = params['RetentionSizeInMB']
|
917
927
|
end
|
918
928
|
end
|
919
929
|
|
@@ -1039,10 +1049,13 @@ module TencentCloud
|
|
1039
1049
|
# @param NamespaceName: 命名空间名称
|
1040
1050
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1041
1051
|
# @type NamespaceName: String
|
1052
|
+
# @param Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
|
1053
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1054
|
+
# @type Status: Integer
|
1042
1055
|
|
1043
|
-
attr_accessor :TopicId, :TopicName, :MsgRetentionSeconds, :MaxMsgSize, :Qps, :FilterType, :CreateTime, :LastModifyTime, :MsgCount, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName
|
1056
|
+
attr_accessor :TopicId, :TopicName, :MsgRetentionSeconds, :MaxMsgSize, :Qps, :FilterType, :CreateTime, :LastModifyTime, :MsgCount, :CreateUin, :Tags, :Trace, :TenantId, :NamespaceName, :Status
|
1044
1057
|
|
1045
|
-
def initialize(topicid=nil, topicname=nil, msgretentionseconds=nil, maxmsgsize=nil, qps=nil, filtertype=nil, createtime=nil, lastmodifytime=nil, msgcount=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil)
|
1058
|
+
def initialize(topicid=nil, topicname=nil, msgretentionseconds=nil, maxmsgsize=nil, qps=nil, filtertype=nil, createtime=nil, lastmodifytime=nil, msgcount=nil, createuin=nil, tags=nil, trace=nil, tenantid=nil, namespacename=nil, status=nil)
|
1046
1059
|
@TopicId = topicid
|
1047
1060
|
@TopicName = topicname
|
1048
1061
|
@MsgRetentionSeconds = msgretentionseconds
|
@@ -1057,6 +1070,7 @@ module TencentCloud
|
|
1057
1070
|
@Trace = trace
|
1058
1071
|
@TenantId = tenantid
|
1059
1072
|
@NamespaceName = namespacename
|
1073
|
+
@Status = status
|
1060
1074
|
end
|
1061
1075
|
|
1062
1076
|
def deserialize(params)
|
@@ -1081,6 +1095,7 @@ module TencentCloud
|
|
1081
1095
|
@Trace = params['Trace']
|
1082
1096
|
@TenantId = params['TenantId']
|
1083
1097
|
@NamespaceName = params['NamespaceName']
|
1098
|
+
@Status = params['Status']
|
1084
1099
|
end
|
1085
1100
|
end
|
1086
1101
|
|
@@ -6647,10 +6662,13 @@ module TencentCloud
|
|
6647
6662
|
# @type PublicEndPoint: String
|
6648
6663
|
# @param VpcEndPoint: VPC接入地址
|
6649
6664
|
# @type VpcEndPoint: String
|
6665
|
+
# @param SupportNamespaceEndpoint: 是否支持命名空间接入点
|
6666
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6667
|
+
# @type SupportNamespaceEndpoint: Boolean
|
6650
6668
|
|
6651
|
-
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint
|
6669
|
+
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint
|
6652
6670
|
|
6653
|
-
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil)
|
6671
|
+
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil)
|
6654
6672
|
@ClusterId = clusterid
|
6655
6673
|
@ClusterName = clustername
|
6656
6674
|
@Region = region
|
@@ -6658,6 +6676,7 @@ module TencentCloud
|
|
6658
6676
|
@Remark = remark
|
6659
6677
|
@PublicEndPoint = publicendpoint
|
6660
6678
|
@VpcEndPoint = vpcendpoint
|
6679
|
+
@SupportNamespaceEndpoint = supportnamespaceendpoint
|
6661
6680
|
end
|
6662
6681
|
|
6663
6682
|
def deserialize(params)
|
@@ -6668,6 +6687,7 @@ module TencentCloud
|
|
6668
6687
|
@Remark = params['Remark']
|
6669
6688
|
@PublicEndPoint = params['PublicEndPoint']
|
6670
6689
|
@VpcEndPoint = params['VpcEndPoint']
|
6690
|
+
@SupportNamespaceEndpoint = params['SupportNamespaceEndpoint']
|
6671
6691
|
end
|
6672
6692
|
end
|
6673
6693
|
|
@@ -6777,14 +6797,22 @@ module TencentCloud
|
|
6777
6797
|
# @param Remark: 说明
|
6778
6798
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6779
6799
|
# @type Remark: String
|
6800
|
+
# @param PublicEndpoint: 公网接入点地址
|
6801
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6802
|
+
# @type PublicEndpoint: String
|
6803
|
+
# @param VpcEndpoint: VPC接入点地址
|
6804
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6805
|
+
# @type VpcEndpoint: String
|
6780
6806
|
|
6781
|
-
attr_accessor :NamespaceId, :Ttl, :RetentionTime, :Remark
|
6807
|
+
attr_accessor :NamespaceId, :Ttl, :RetentionTime, :Remark, :PublicEndpoint, :VpcEndpoint
|
6782
6808
|
|
6783
|
-
def initialize(namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil)
|
6809
|
+
def initialize(namespaceid=nil, ttl=nil, retentiontime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil)
|
6784
6810
|
@NamespaceId = namespaceid
|
6785
6811
|
@Ttl = ttl
|
6786
6812
|
@RetentionTime = retentiontime
|
6787
6813
|
@Remark = remark
|
6814
|
+
@PublicEndpoint = publicendpoint
|
6815
|
+
@VpcEndpoint = vpcendpoint
|
6788
6816
|
end
|
6789
6817
|
|
6790
6818
|
def deserialize(params)
|
@@ -6792,6 +6820,8 @@ module TencentCloud
|
|
6792
6820
|
@Ttl = params['Ttl']
|
6793
6821
|
@RetentionTime = params['RetentionTime']
|
6794
6822
|
@Remark = params['Remark']
|
6823
|
+
@PublicEndpoint = params['PublicEndpoint']
|
6824
|
+
@VpcEndpoint = params['VpcEndpoint']
|
6795
6825
|
end
|
6796
6826
|
end
|
6797
6827
|
|
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: 1.0.
|
4
|
+
version: 1.0.293
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|