tencentcloud-sdk-tdmq 3.0.639 → 3.0.641

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 +20 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c25581f6fdfad0e85de76c29c60d57976fbc191e
4
- data.tar.gz: 97af39318b54733a3786374dbd7bb7161ddc88e1
3
+ metadata.gz: a7c9819acff23b7b8b5b547745fbc23c0403a80f
4
+ data.tar.gz: a0117988293824eee39af4509d9c6a519bf8c456
5
5
  SHA512:
6
- metadata.gz: 28fc828ec64ffb26f1c1b4b75d9b02a00e198a30fa34bd14c8d3d0ece1a5c923d2df53cdc5508d0aa70f05d35ef7b6b01043799c5c1ce05fdb512b3337027d14
7
- data.tar.gz: ba92f1e28497bd58eb6090c186eb7c17044b316845bc1f9c7721cebb4f8f731efe773fa6abecd79b5e5ab775e01f11afb9e6962f2b5b9a527ac615f5253ddce7
6
+ metadata.gz: bc38521b574b07035d079d4b0dd59845945dee216d19f824877f13a97e22f0eb3a284ff3215a90ffcb768c57d9bd2f8ff8a3597acb1bdfd9c9726466485b4d63
7
+ data.tar.gz: 315d08edf1e27e5975bca2970a6ff91e1370d4222004fa1159aadcba007b087e764d434b787f0c0e8f90f5818640b4ed121fc90d0a4d60dbf2c991592d1625dc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.639
1
+ 3.0.641
@@ -1976,10 +1976,12 @@ module TencentCloud
1976
1976
  # 2: 持久非分区
1977
1977
  # 3: 持久分区
1978
1978
  # @type PulsarTopicType: Integer
1979
+ # @param MsgTTL: 未消费消息过期时间,单位:秒,取值范围:60秒~15天。
1980
+ # @type MsgTTL: Integer
1979
1981
 
1980
- attr_accessor :EnvironmentId, :TopicName, :Partitions, :Remark, :TopicType, :ClusterId, :PulsarTopicType
1982
+ attr_accessor :EnvironmentId, :TopicName, :Partitions, :Remark, :TopicType, :ClusterId, :PulsarTopicType, :MsgTTL
1981
1983
 
1982
- def initialize(environmentid=nil, topicname=nil, partitions=nil, remark=nil, topictype=nil, clusterid=nil, pulsartopictype=nil)
1984
+ def initialize(environmentid=nil, topicname=nil, partitions=nil, remark=nil, topictype=nil, clusterid=nil, pulsartopictype=nil, msgttl=nil)
1983
1985
  @EnvironmentId = environmentid
1984
1986
  @TopicName = topicname
1985
1987
  @Partitions = partitions
@@ -1987,6 +1989,7 @@ module TencentCloud
1987
1989
  @TopicType = topictype
1988
1990
  @ClusterId = clusterid
1989
1991
  @PulsarTopicType = pulsartopictype
1992
+ @MsgTTL = msgttl
1990
1993
  end
1991
1994
 
1992
1995
  def deserialize(params)
@@ -1997,6 +2000,7 @@ module TencentCloud
1997
2000
  @TopicType = params['TopicType']
1998
2001
  @ClusterId = params['ClusterId']
1999
2002
  @PulsarTopicType = params['PulsarTopicType']
2003
+ @MsgTTL = params['MsgTTL']
2000
2004
  end
2001
2005
  end
2002
2006
 
@@ -6408,15 +6412,18 @@ module TencentCloud
6408
6412
  # @type Remark: String
6409
6413
  # @param ClusterId: Pulsar 集群的ID
6410
6414
  # @type ClusterId: String
6415
+ # @param MsgTTL: 未消费消息过期时间,单位:秒,取值范围:60秒~15天。
6416
+ # @type MsgTTL: Integer
6411
6417
 
6412
- attr_accessor :EnvironmentId, :TopicName, :Partitions, :Remark, :ClusterId
6418
+ attr_accessor :EnvironmentId, :TopicName, :Partitions, :Remark, :ClusterId, :MsgTTL
6413
6419
 
6414
- def initialize(environmentid=nil, topicname=nil, partitions=nil, remark=nil, clusterid=nil)
6420
+ def initialize(environmentid=nil, topicname=nil, partitions=nil, remark=nil, clusterid=nil, msgttl=nil)
6415
6421
  @EnvironmentId = environmentid
6416
6422
  @TopicName = topicname
6417
6423
  @Partitions = partitions
6418
6424
  @Remark = remark
6419
6425
  @ClusterId = clusterid
6426
+ @MsgTTL = msgttl
6420
6427
  end
6421
6428
 
6422
6429
  def deserialize(params)
@@ -6425,6 +6432,7 @@ module TencentCloud
6425
6432
  @Partitions = params['Partitions']
6426
6433
  @Remark = params['Remark']
6427
6434
  @ClusterId = params['ClusterId']
6435
+ @MsgTTL = params['MsgTTL']
6428
6436
  end
6429
6437
  end
6430
6438
 
@@ -8844,10 +8852,14 @@ module TencentCloud
8844
8852
  # 3: 持久分区
8845
8853
  # 注意:此字段可能返回 null,表示取不到有效值。
8846
8854
  # @type PulsarTopicType: Integer
8855
+ # @param MsgTTL: 未消费消息过期时间,单位:秒
8856
+
8857
+ # 注意:此字段可能返回 null,表示取不到有效值。
8858
+ # @type MsgTTL: Integer
8847
8859
 
8848
- attr_accessor :AverageMsgSize, :ConsumerCount, :LastConfirmedEntry, :LastLedgerCreatedTimestamp, :MsgRateIn, :MsgRateOut, :MsgThroughputIn, :MsgThroughputOut, :NumberOfEntries, :Partitions, :ProducerCount, :TotalSize, :SubTopicSets, :TopicType, :EnvironmentId, :TopicName, :Remark, :CreateTime, :UpdateTime, :ProducerLimit, :ConsumerLimit, :PulsarTopicType
8860
+ attr_accessor :AverageMsgSize, :ConsumerCount, :LastConfirmedEntry, :LastLedgerCreatedTimestamp, :MsgRateIn, :MsgRateOut, :MsgThroughputIn, :MsgThroughputOut, :NumberOfEntries, :Partitions, :ProducerCount, :TotalSize, :SubTopicSets, :TopicType, :EnvironmentId, :TopicName, :Remark, :CreateTime, :UpdateTime, :ProducerLimit, :ConsumerLimit, :PulsarTopicType, :MsgTTL
8849
8861
 
8850
- def initialize(averagemsgsize=nil, consumercount=nil, lastconfirmedentry=nil, lastledgercreatedtimestamp=nil, msgratein=nil, msgrateout=nil, msgthroughputin=nil, msgthroughputout=nil, numberofentries=nil, partitions=nil, producercount=nil, totalsize=nil, subtopicsets=nil, topictype=nil, environmentid=nil, topicname=nil, remark=nil, createtime=nil, updatetime=nil, producerlimit=nil, consumerlimit=nil, pulsartopictype=nil)
8862
+ def initialize(averagemsgsize=nil, consumercount=nil, lastconfirmedentry=nil, lastledgercreatedtimestamp=nil, msgratein=nil, msgrateout=nil, msgthroughputin=nil, msgthroughputout=nil, numberofentries=nil, partitions=nil, producercount=nil, totalsize=nil, subtopicsets=nil, topictype=nil, environmentid=nil, topicname=nil, remark=nil, createtime=nil, updatetime=nil, producerlimit=nil, consumerlimit=nil, pulsartopictype=nil, msgttl=nil)
8851
8863
  @AverageMsgSize = averagemsgsize
8852
8864
  @ConsumerCount = consumercount
8853
8865
  @LastConfirmedEntry = lastconfirmedentry
@@ -8870,6 +8882,7 @@ module TencentCloud
8870
8882
  @ProducerLimit = producerlimit
8871
8883
  @ConsumerLimit = consumerlimit
8872
8884
  @PulsarTopicType = pulsartopictype
8885
+ @MsgTTL = msgttl
8873
8886
  end
8874
8887
 
8875
8888
  def deserialize(params)
@@ -8902,6 +8915,7 @@ module TencentCloud
8902
8915
  @ProducerLimit = params['ProducerLimit']
8903
8916
  @ConsumerLimit = params['ConsumerLimit']
8904
8917
  @PulsarTopicType = params['PulsarTopicType']
8918
+ @MsgTTL = params['MsgTTL']
8905
8919
  end
8906
8920
  end
8907
8921
 
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: 3.0.639
4
+ version: 3.0.641
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-18 00:00:00.000000000 Z
11
+ date: 2023-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common