tencentcloud-sdk-tdmq 1.0.291 → 1.0.294

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/v20200217/models.rb +40 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2e6dc028fd56a6cd71aa0f2d5a9a1b6883b8510
4
- data.tar.gz: 63817b25896a26ed210f870701ab57d89623501c
3
+ metadata.gz: 7eafa4c13597f33da9b613f19ffc3afa23c987f9
4
+ data.tar.gz: f3cfdd6d57c0a18cf7c6b315f8f855a3a88ab348
5
5
  SHA512:
6
- metadata.gz: 756c90d0de16cd8ec3ab2dda86e603060e3909f2b5dc822ea3800e8948e128c249e1f446112eaffc2d442ead7ef29c58b02f7070a08b51868cad7bd05cc50980
7
- data.tar.gz: 812e9e129dbbe733df7dd75b9228df4613b0f5fa0c3c65977bf88b09a46594702720c5d1c5c19b21afb534cd2d1bb1ca45f3c7c54d9cd1a7be83663404de9212
6
+ metadata.gz: 67e5bbcf8b780f8a3475fe51c70e72b778e63ea4b1fa4af78304476b85cd8c7e7b1b1470eee74b21c05f4c5ef6bcb5fbdbb54b623f1836bd044b58ee7b575493
7
+ data.tar.gz: e756dbbc0751182d0977714bbd11c7c949193ec5d5800e441008cec8777418d2361e4c6279a939e5323569e0c618dfd1dc88738afff156b403ed9bf938efc9fc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.291
1
+ 1.0.294
@@ -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.291
4
+ version: 1.0.294
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-07 00:00:00.000000000 Z
11
+ date: 2022-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common