tencentcloud-sdk-tdmq 3.0.722 → 3.0.724
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 +21 -4
- 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: 49e8b8147539fea0e0046b77b8d3f0daa7964b7c
|
4
|
+
data.tar.gz: 9fa4c01382412ac01de43dda0739415b61af93b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5575ec8179d7ff7ac5fe8c5ec0e0d7c2d167068de3186b669dfee46cd33ef20c71fee40d78ac2eb8ec3cd1e795436d92676661d3f0a084d0eb741b80ba72fc03
|
7
|
+
data.tar.gz: 8aea48490cb09afd553f979b51d921546d7b7304b649fb69188618352fcebbdd2944a94c5ad4b71d0480072952ca2d7dc87f9e3e06de9a866863a2e6686eb6ed
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.724
|
data/lib/v20200217/models.rb
CHANGED
@@ -6259,8 +6259,8 @@ module TencentCloud
|
|
6259
6259
|
|
6260
6260
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :StartTime, :EndTime, :MsgId, :MsgKey, :Offset, :Limit, :TaskRequestId, :QueryDlqMsg, :NumOfLatestMsg, :Tag, :QueryDeadLetterMessage
|
6261
6261
|
extend Gem::Deprecate
|
6262
|
-
deprecate :QueryDlqMsg, :none, 2023,
|
6263
|
-
deprecate :QueryDlqMsg=, :none, 2023,
|
6262
|
+
deprecate :QueryDlqMsg, :none, 2023, 12
|
6263
|
+
deprecate :QueryDlqMsg=, :none, 2023, 12
|
6264
6264
|
|
6265
6265
|
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)
|
6266
6266
|
@ClusterId = clusterid
|
@@ -8728,10 +8728,16 @@ module TencentCloud
|
|
8728
8728
|
# @type SubnetId: String
|
8729
8729
|
# @param MaxBandWidth: 峰值带宽。单位:mbps
|
8730
8730
|
# @type MaxBandWidth: Integer
|
8731
|
+
# @param Tags: 集群的标签列表
|
8732
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8733
|
+
# @type Tags: Array
|
8734
|
+
# @param CreateTime: 集群创建时间
|
8735
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8736
|
+
# @type CreateTime: String
|
8731
8737
|
|
8732
|
-
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :ConfigDisplay, :MaxTps, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ScalableTps, :VpcId, :SubnetId, :MaxBandWidth
|
8738
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :ConfigDisplay, :MaxTps, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ScalableTps, :VpcId, :SubnetId, :MaxBandWidth, :Tags, :CreateTime
|
8733
8739
|
|
8734
|
-
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, configdisplay=nil, maxtps=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, scalabletps=nil, vpcid=nil, subnetid=nil, maxbandwidth=nil)
|
8740
|
+
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, configdisplay=nil, maxtps=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, scalabletps=nil, vpcid=nil, subnetid=nil, maxbandwidth=nil, tags=nil, createtime=nil)
|
8735
8741
|
@InstanceId = instanceid
|
8736
8742
|
@InstanceName = instancename
|
8737
8743
|
@InstanceVersion = instanceversion
|
@@ -8748,6 +8754,8 @@ module TencentCloud
|
|
8748
8754
|
@VpcId = vpcid
|
8749
8755
|
@SubnetId = subnetid
|
8750
8756
|
@MaxBandWidth = maxbandwidth
|
8757
|
+
@Tags = tags
|
8758
|
+
@CreateTime = createtime
|
8751
8759
|
end
|
8752
8760
|
|
8753
8761
|
def deserialize(params)
|
@@ -8767,6 +8775,15 @@ module TencentCloud
|
|
8767
8775
|
@VpcId = params['VpcId']
|
8768
8776
|
@SubnetId = params['SubnetId']
|
8769
8777
|
@MaxBandWidth = params['MaxBandWidth']
|
8778
|
+
unless params['Tags'].nil?
|
8779
|
+
@Tags = []
|
8780
|
+
params['Tags'].each do |i|
|
8781
|
+
tag_tmp = Tag.new
|
8782
|
+
tag_tmp.deserialize(i)
|
8783
|
+
@Tags << tag_tmp
|
8784
|
+
end
|
8785
|
+
end
|
8786
|
+
@CreateTime = params['CreateTime']
|
8770
8787
|
end
|
8771
8788
|
end
|
8772
8789
|
|
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.724
|
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-12-
|
11
|
+
date: 2023-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|