tencentcloud-sdk-tdmq 1.0.294 → 1.0.295

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200217/models.rb +16 -8
  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: ad7162bfae2c5177e663f50466f6bfa3346227cc
4
+ data.tar.gz: 275636f8df0342f6c4bfe94e843288c8a327ecfb
5
5
  SHA512:
6
- metadata.gz: 67e5bbcf8b780f8a3475fe51c70e72b778e63ea4b1fa4af78304476b85cd8c7e7b1b1470eee74b21c05f4c5ef6bcb5fbdbb54b623f1836bd044b58ee7b575493
7
- data.tar.gz: e756dbbc0751182d0977714bbd11c7c949193ec5d5800e441008cec8777418d2361e4c6279a939e5323569e0c618dfd1dc88738afff156b403ed9bf938efc9fc
6
+ metadata.gz: 36935728d6d471192dcca2c20b311a1a3f41c10fc9fc7e60356995f03ccbe70389afc7f40f82d449e67ef861b3754eb04dc875b10f2f0ac49bf087d68eea8263
7
+ data.tar.gz: 3355903605a0d203691192dcc978dafdbf258e67956c1c8ffadf78c65d4d5e6196907fe17dd3ba1f1e10a8778ad28f7f2da3e123c3ac9119e4b4f612730b2117
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.294
1
+ 1.0.295
@@ -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
 
@@ -5578,9 +5582,9 @@ module TencentCloud
5578
5582
  # @type VisibilityTimeout: Integer
5579
5583
  # @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
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.295
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-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common