tencentcloud-sdk-trocket 3.0.796 → 3.0.797
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/v20230308/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12b79b7b69a0e0c9ae55bf5c922592fe08ec81a0
|
4
|
+
data.tar.gz: b2aa43ec60bfa7802bd7b55439c859222130c283
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73f0bc3923837a766e4373b844c6ba84c76f52765b750fac412d3a4045a6ba736b740eb0707eb043f916a2f9b512a1f1856072299e319da3bbc71deb93ebc02b
|
7
|
+
data.tar.gz: e028a1c15c16ffef667415aac08621711b7d0db7ec201fe28734e89a23e670e12a9ca880b3a64cc602cbb923b44fea01aec0205fdc763309b9c8695dbe45c86b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.797
|
data/lib/v20230308/models.rb
CHANGED
@@ -3379,14 +3379,17 @@ module TencentCloud
|
|
3379
3379
|
# @type QueueNum: Integer
|
3380
3380
|
# @param Remark: 备注信息
|
3381
3381
|
# @type Remark: String
|
3382
|
+
# @param MsgTTL: 消息保留时长
|
3383
|
+
# @type MsgTTL: Integer
|
3382
3384
|
|
3383
|
-
attr_accessor :InstanceId, :Topic, :QueueNum, :Remark
|
3385
|
+
attr_accessor :InstanceId, :Topic, :QueueNum, :Remark, :MsgTTL
|
3384
3386
|
|
3385
|
-
def initialize(instanceid=nil, topic=nil, queuenum=nil, remark=nil)
|
3387
|
+
def initialize(instanceid=nil, topic=nil, queuenum=nil, remark=nil, msgttl=nil)
|
3386
3388
|
@InstanceId = instanceid
|
3387
3389
|
@Topic = topic
|
3388
3390
|
@QueueNum = queuenum
|
3389
3391
|
@Remark = remark
|
3392
|
+
@MsgTTL = msgttl
|
3390
3393
|
end
|
3391
3394
|
|
3392
3395
|
def deserialize(params)
|
@@ -3394,6 +3397,7 @@ module TencentCloud
|
|
3394
3397
|
@Topic = params['Topic']
|
3395
3398
|
@QueueNum = params['QueueNum']
|
3396
3399
|
@Remark = params['Remark']
|
3400
|
+
@MsgTTL = params['MsgTTL']
|
3397
3401
|
end
|
3398
3402
|
end
|
3399
3403
|
|