tencentcloud-sdk-tdmq 1.0.294 → 1.0.297

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 +17 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7eafa4c13597f33da9b613f19ffc3afa23c987f9
4
- data.tar.gz: f3cfdd6d57c0a18cf7c6b315f8f855a3a88ab348
3
+ metadata.gz: bad694d52c26fb92c037bf813d07b4f425c18127
4
+ data.tar.gz: 01bc26158a148c8209a74b1b3fc9a793f41da539
5
5
  SHA512:
6
- metadata.gz: 67e5bbcf8b780f8a3475fe51c70e72b778e63ea4b1fa4af78304476b85cd8c7e7b1b1470eee74b21c05f4c5ef6bcb5fbdbb54b623f1836bd044b58ee7b575493
7
- data.tar.gz: e756dbbc0751182d0977714bbd11c7c949193ec5d5800e441008cec8777418d2361e4c6279a939e5323569e0c618dfd1dc88738afff156b403ed9bf938efc9fc
6
+ metadata.gz: 1077c0f75543761beb46693e4ede24e8f158d34872e23dae22d117ef3c337b9bf3d501b2f41576ac2eea3a3fee878ebcb7922de47901cc5468fabee04daefd24
7
+ data.tar.gz: b793a38f519aa34b371e648096d4b46da61f754945167c8395f73cccccb24008ec3bbccd4ccaf073334d1dac85ee7bd541f9621540544834115ba7d038b40d91
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.294
1
+ 1.0.297
@@ -1521,9 +1521,9 @@ module TencentCloud
1521
1521
  # @type VisibilityTimeout: Integer
1522
1522
  # @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
1523
1523
  # @type MaxMsgSize: Integer
1524
- # @param MsgRetentionSeconds: 消息保留周期。取值范围 60-1296000 秒(1min-15天),默认值 345600 (4 )。
1524
+ # @param MsgRetentionSeconds: 消息最长未确认时间。取值范围 30-43200 秒(30秒~12小时),默认值 3600 (1 小时)。
1525
1525
  # @type MsgRetentionSeconds: Integer
1526
- # @param RewindSeconds: 队列是否开启回溯消息能力,该参数取值范围0-msgRetentionSeconds,即最大的回溯时间为消息在队列中的保留周期,0表示不开启。
1526
+ # @param RewindSeconds: 队列是否开启回溯消息能力,该参数取值范围0-1296000,0表示不开启。
1527
1527
  # @type RewindSeconds: Integer
1528
1528
  # @param Transaction: 1 表示事务队列,0 表示普通队列
1529
1529
  # @type Transaction: Integer
@@ -1543,10 +1543,12 @@ module TencentCloud
1543
1543
  # @type Trace: Boolean
1544
1544
  # @param Tags: 标签数组
1545
1545
  # @type Tags: Array
1546
+ # @param RetentionSizeInMB: 队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
1547
+ # @type RetentionSizeInMB: Integer
1546
1548
 
1547
- attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :Transaction, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :Policy, :MaxReceiveCount, :MaxTimeToLive, :Trace, :Tags
1549
+ attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :Transaction, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :Policy, :MaxReceiveCount, :MaxTimeToLive, :Trace, :Tags, :RetentionSizeInMB
1548
1550
 
1549
- def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, transaction=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, policy=nil, maxreceivecount=nil, maxtimetolive=nil, trace=nil, tags=nil)
1551
+ def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, transaction=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, policy=nil, maxreceivecount=nil, maxtimetolive=nil, trace=nil, tags=nil, retentionsizeinmb=nil)
1550
1552
  @QueueName = queuename
1551
1553
  @MaxMsgHeapNum = maxmsgheapnum
1552
1554
  @PollingWaitSeconds = pollingwaitseconds
@@ -1563,6 +1565,7 @@ module TencentCloud
1563
1565
  @MaxTimeToLive = maxtimetolive
1564
1566
  @Trace = trace
1565
1567
  @Tags = tags
1568
+ @RetentionSizeInMB = retentionsizeinmb
1566
1569
  end
1567
1570
 
1568
1571
  def deserialize(params)
@@ -1589,6 +1592,7 @@ module TencentCloud
1589
1592
  @Tags << tag_tmp
1590
1593
  end
1591
1594
  end
1595
+ @RetentionSizeInMB = params['RetentionSizeInMB']
1592
1596
  end
1593
1597
  end
1594
1598
 
@@ -5576,11 +5580,11 @@ module TencentCloud
5576
5580
  # @type PollingWaitSeconds: Integer
5577
5581
  # @param VisibilityTimeout: 消息可见性超时。取值范围 1-43200 秒(即12小时内),默认值 30。
5578
5582
  # @type VisibilityTimeout: Integer
5579
- # @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
5583
+ # @param MaxMsgSize: 消息最大长度,新版CMQ新建的队列默认1024KB,不支持修改
5580
5584
  # @type MaxMsgSize: Integer
5581
- # @param MsgRetentionSeconds: 消息保留周期。取值范围 60-1296000 秒(1min-15天),默认值 345600 (4 )。
5585
+ # @param MsgRetentionSeconds: 消息最长未确认时间。取值范围 30-43200 秒(30秒~12小时),默认值 3600 (1 小时)。
5582
5586
  # @type MsgRetentionSeconds: Integer
5583
- # @param RewindSeconds: 消息最长回溯时间,取值范围0-msgRetentionSeconds,消息的最大回溯之间为消息在队列中的保存周期,0表示不开启消息回溯。
5587
+ # @param RewindSeconds: 队列是否开启回溯消息能力,该参数取值范围0-1296000,0表示不开启。
5584
5588
  # @type RewindSeconds: Integer
5585
5589
  # @param FirstQueryInterval: 第一次查询时间
5586
5590
  # @type FirstQueryInterval: Integer
@@ -5598,10 +5602,12 @@ module TencentCloud
5598
5602
  # @type Trace: Boolean
5599
5603
  # @param Transaction: 是否开启事务,1开启,0不开启
5600
5604
  # @type Transaction: Integer
5605
+ # @param RetentionSizeInMB: 队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
5606
+ # @type RetentionSizeInMB: Integer
5601
5607
 
5602
- attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :MaxTimeToLive, :MaxReceiveCount, :Policy, :Trace, :Transaction
5608
+ attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :MaxTimeToLive, :MaxReceiveCount, :Policy, :Trace, :Transaction, :RetentionSizeInMB
5603
5609
 
5604
- def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, maxtimetolive=nil, maxreceivecount=nil, policy=nil, trace=nil, transaction=nil)
5610
+ def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, maxtimetolive=nil, maxreceivecount=nil, policy=nil, trace=nil, transaction=nil, retentionsizeinmb=nil)
5605
5611
  @QueueName = queuename
5606
5612
  @MaxMsgHeapNum = maxmsgheapnum
5607
5613
  @PollingWaitSeconds = pollingwaitseconds
@@ -5617,6 +5623,7 @@ module TencentCloud
5617
5623
  @Policy = policy
5618
5624
  @Trace = trace
5619
5625
  @Transaction = transaction
5626
+ @RetentionSizeInMB = retentionsizeinmb
5620
5627
  end
5621
5628
 
5622
5629
  def deserialize(params)
@@ -5635,6 +5642,7 @@ module TencentCloud
5635
5642
  @Policy = params['Policy']
5636
5643
  @Trace = params['Trace']
5637
5644
  @Transaction = params['Transaction']
5645
+ @RetentionSizeInMB = params['RetentionSizeInMB']
5638
5646
  end
5639
5647
  end
5640
5648
 
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.294
4
+ version: 1.0.297
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-12 00:00:00.000000000 Z
11
+ date: 2022-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common