tencentcloud-sdk-tdmq 3.0.793 → 3.0.795
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/v20200217/models.rb +42 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbc9acd59149b7f62fbc47a44cd22d7254e2c378
|
4
|
+
data.tar.gz: f31fb74f4109b6346de608865d6e62adc3a51d12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 806a8e560de4639fd25180595af2302ddb66d5fed9cb601dc8309279eb50c635f5d1408dd76d825e49181bdd6607da286c9ade412e7cb88bd67f277b35e84158
|
7
|
+
data.tar.gz: 11708e6ddde1377bc1e90ee5a4a1319297cb36f4508e652c1051e271b4172ad64bb90ce6cae533618919e30b527c751db2ba98222fba36a02f59a0a4f401be0d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.795
|
data/lib/v20200217/models.rb
CHANGED
@@ -1991,10 +1991,20 @@ module TencentCloud
|
|
1991
1991
|
# @type VpcInfo: :class:`Tencentcloud::Tdmq.v20200217.models.VpcInfo`
|
1992
1992
|
# @param TimeSpan: 购买时长,月为单位
|
1993
1993
|
# @type TimeSpan: Integer
|
1994
|
+
# @param SupportsMigrateToCloud: 是否用于迁移上云,默认为false
|
1995
|
+
# @type SupportsMigrateToCloud: Boolean
|
1996
|
+
# @param EnablePublic: 是否开启公网
|
1997
|
+
# @type EnablePublic: Boolean
|
1998
|
+
# @param Bandwidth: 公网带宽,在开启公网情况下为必传字段
|
1999
|
+
# @type Bandwidth: Integer
|
2000
|
+
# @param IpRules: 公网白名单
|
2001
|
+
# @type IpRules: Array
|
2002
|
+
# @param Tags: 标签
|
2003
|
+
# @type Tags: Array
|
1994
2004
|
|
1995
|
-
attr_accessor :Name, :Spec, :NodeCount, :StorageSize, :ZoneIds, :VpcInfo, :TimeSpan
|
2005
|
+
attr_accessor :Name, :Spec, :NodeCount, :StorageSize, :ZoneIds, :VpcInfo, :TimeSpan, :SupportsMigrateToCloud, :EnablePublic, :Bandwidth, :IpRules, :Tags
|
1996
2006
|
|
1997
|
-
def initialize(name=nil, spec=nil, nodecount=nil, storagesize=nil, zoneids=nil, vpcinfo=nil, timespan=nil)
|
2007
|
+
def initialize(name=nil, spec=nil, nodecount=nil, storagesize=nil, zoneids=nil, vpcinfo=nil, timespan=nil, supportsmigratetocloud=nil, enablepublic=nil, bandwidth=nil, iprules=nil, tags=nil)
|
1998
2008
|
@Name = name
|
1999
2009
|
@Spec = spec
|
2000
2010
|
@NodeCount = nodecount
|
@@ -2002,6 +2012,11 @@ module TencentCloud
|
|
2002
2012
|
@ZoneIds = zoneids
|
2003
2013
|
@VpcInfo = vpcinfo
|
2004
2014
|
@TimeSpan = timespan
|
2015
|
+
@SupportsMigrateToCloud = supportsmigratetocloud
|
2016
|
+
@EnablePublic = enablepublic
|
2017
|
+
@Bandwidth = bandwidth
|
2018
|
+
@IpRules = iprules
|
2019
|
+
@Tags = tags
|
2005
2020
|
end
|
2006
2021
|
|
2007
2022
|
def deserialize(params)
|
@@ -2015,6 +2030,25 @@ module TencentCloud
|
|
2015
2030
|
@VpcInfo.deserialize(params['VpcInfo'])
|
2016
2031
|
end
|
2017
2032
|
@TimeSpan = params['TimeSpan']
|
2033
|
+
@SupportsMigrateToCloud = params['SupportsMigrateToCloud']
|
2034
|
+
@EnablePublic = params['EnablePublic']
|
2035
|
+
@Bandwidth = params['Bandwidth']
|
2036
|
+
unless params['IpRules'].nil?
|
2037
|
+
@IpRules = []
|
2038
|
+
params['IpRules'].each do |i|
|
2039
|
+
publicaccessrule_tmp = PublicAccessRule.new
|
2040
|
+
publicaccessrule_tmp.deserialize(i)
|
2041
|
+
@IpRules << publicaccessrule_tmp
|
2042
|
+
end
|
2043
|
+
end
|
2044
|
+
unless params['Tags'].nil?
|
2045
|
+
@Tags = []
|
2046
|
+
params['Tags'].each do |i|
|
2047
|
+
tag_tmp = Tag.new
|
2048
|
+
tag_tmp.deserialize(i)
|
2049
|
+
@Tags << tag_tmp
|
2050
|
+
end
|
2051
|
+
end
|
2018
2052
|
end
|
2019
2053
|
end
|
2020
2054
|
|
@@ -5717,8 +5751,8 @@ module TencentCloud
|
|
5717
5751
|
|
5718
5752
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :PulsarMsgId, :QueryDlqMsg, :QueryDeadLetterMessage, :Offset, :Limit, :FilterTrackGroup
|
5719
5753
|
extend Gem::Deprecate
|
5720
|
-
deprecate :QueryDlqMsg, :none, 2024,
|
5721
|
-
deprecate :QueryDlqMsg=, :none, 2024,
|
5754
|
+
deprecate :QueryDlqMsg, :none, 2024, 4
|
5755
|
+
deprecate :QueryDlqMsg=, :none, 2024, 4
|
5722
5756
|
|
5723
5757
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, pulsarmsgid=nil, querydlqmsg=nil, querydeadlettermessage=nil, offset=nil, limit=nil, filtertrackgroup=nil)
|
5724
5758
|
@ClusterId = clusterid
|
@@ -5823,8 +5857,8 @@ module TencentCloud
|
|
5823
5857
|
|
5824
5858
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :GroupName, :QueryDLQMsg, :QueryDeadLetterMessage
|
5825
5859
|
extend Gem::Deprecate
|
5826
|
-
deprecate :QueryDLQMsg, :none, 2024,
|
5827
|
-
deprecate :QueryDLQMsg=, :none, 2024,
|
5860
|
+
deprecate :QueryDLQMsg, :none, 2024, 4
|
5861
|
+
deprecate :QueryDLQMsg=, :none, 2024, 4
|
5828
5862
|
|
5829
5863
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, groupname=nil, querydlqmsg=nil, querydeadlettermessage=nil)
|
5830
5864
|
@ClusterId = clusterid
|
@@ -6568,8 +6602,8 @@ module TencentCloud
|
|
6568
6602
|
|
6569
6603
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :StartTime, :EndTime, :MsgId, :MsgKey, :Offset, :Limit, :TaskRequestId, :QueryDlqMsg, :NumOfLatestMsg, :Tag, :QueryDeadLetterMessage
|
6570
6604
|
extend Gem::Deprecate
|
6571
|
-
deprecate :QueryDlqMsg, :none, 2024,
|
6572
|
-
deprecate :QueryDlqMsg=, :none, 2024,
|
6605
|
+
deprecate :QueryDlqMsg, :none, 2024, 4
|
6606
|
+
deprecate :QueryDlqMsg=, :none, 2024, 4
|
6573
6607
|
|
6574
6608
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, starttime=nil, endtime=nil, msgid=nil, msgkey=nil, offset=nil, limit=nil, taskrequestid=nil, querydlqmsg=nil, numoflatestmsg=nil, tag=nil, querydeadlettermessage=nil)
|
6575
6609
|
@ClusterId = clusterid
|
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.
|
4
|
+
version: 3.0.795
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|