tencentcloud-sdk-tdmq 3.0.886 → 3.0.887
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 +19 -10
- 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: b5d4210c01be6a6e7620da40ac822cc19b988630
|
4
|
+
data.tar.gz: 90e9fe00133bc623824c9abb6220e6b2e2ac872f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff603f0422a4427da552f8eb95b20a6bcd6188dbf7cee6d41359b65ac210e6d2e7c3511d81b08da17d84dfb17221d2bbc98e4beb4a295540d41de49f71a3187a
|
7
|
+
data.tar.gz: f48bff7a7baa029275af793c0e7fe4b2d48c7d9920e984a32f2c745d2bc6ae771004c437c1904deabc825b33eabe1e355a8173026de585b4dcbe4767c7bb0302
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.887
|
data/lib/v20200217/models.rb
CHANGED
@@ -6158,8 +6158,8 @@ module TencentCloud
|
|
6158
6158
|
|
6159
6159
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :PulsarMsgId, :QueryDlqMsg, :QueryDeadLetterMessage, :Offset, :Limit, :FilterTrackGroup
|
6160
6160
|
extend Gem::Deprecate
|
6161
|
-
deprecate :QueryDlqMsg, :none, 2024,
|
6162
|
-
deprecate :QueryDlqMsg=, :none, 2024,
|
6161
|
+
deprecate :QueryDlqMsg, :none, 2024, 8
|
6162
|
+
deprecate :QueryDlqMsg=, :none, 2024, 8
|
6163
6163
|
|
6164
6164
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, pulsarmsgid=nil, querydlqmsg=nil, querydeadlettermessage=nil, offset=nil, limit=nil, filtertrackgroup=nil)
|
6165
6165
|
@ClusterId = clusterid
|
@@ -6264,8 +6264,8 @@ module TencentCloud
|
|
6264
6264
|
|
6265
6265
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :GroupName, :QueryDLQMsg, :QueryDeadLetterMessage
|
6266
6266
|
extend Gem::Deprecate
|
6267
|
-
deprecate :QueryDLQMsg, :none, 2024,
|
6268
|
-
deprecate :QueryDLQMsg=, :none, 2024,
|
6267
|
+
deprecate :QueryDLQMsg, :none, 2024, 8
|
6268
|
+
deprecate :QueryDLQMsg=, :none, 2024, 8
|
6269
6269
|
|
6270
6270
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, groupname=nil, querydlqmsg=nil, querydeadlettermessage=nil)
|
6271
6271
|
@ClusterId = clusterid
|
@@ -6546,18 +6546,22 @@ module TencentCloud
|
|
6546
6546
|
# @param PayMode: 付费模式
|
6547
6547
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6548
6548
|
# @type PayMode: Integer
|
6549
|
+
# @param BillingFlow: 公网是否按流量计费
|
6550
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6551
|
+
# @type BillingFlow: Boolean
|
6549
6552
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6550
6553
|
# @type RequestId: String
|
6551
6554
|
|
6552
|
-
attr_accessor :Status, :PayStatus, :AccessUrl, :Rules, :Bandwidth, :PayMode, :RequestId
|
6555
|
+
attr_accessor :Status, :PayStatus, :AccessUrl, :Rules, :Bandwidth, :PayMode, :BillingFlow, :RequestId
|
6553
6556
|
|
6554
|
-
def initialize(status=nil, paystatus=nil, accessurl=nil, rules=nil, bandwidth=nil, paymode=nil, requestid=nil)
|
6557
|
+
def initialize(status=nil, paystatus=nil, accessurl=nil, rules=nil, bandwidth=nil, paymode=nil, billingflow=nil, requestid=nil)
|
6555
6558
|
@Status = status
|
6556
6559
|
@PayStatus = paystatus
|
6557
6560
|
@AccessUrl = accessurl
|
6558
6561
|
@Rules = rules
|
6559
6562
|
@Bandwidth = bandwidth
|
6560
6563
|
@PayMode = paymode
|
6564
|
+
@BillingFlow = billingflow
|
6561
6565
|
@RequestId = requestid
|
6562
6566
|
end
|
6563
6567
|
|
@@ -6575,6 +6579,7 @@ module TencentCloud
|
|
6575
6579
|
end
|
6576
6580
|
@Bandwidth = params['Bandwidth']
|
6577
6581
|
@PayMode = params['PayMode']
|
6582
|
+
@BillingFlow = params['BillingFlow']
|
6578
6583
|
@RequestId = params['RequestId']
|
6579
6584
|
end
|
6580
6585
|
end
|
@@ -7082,8 +7087,8 @@ module TencentCloud
|
|
7082
7087
|
|
7083
7088
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :StartTime, :EndTime, :MsgId, :MsgKey, :Offset, :Limit, :TaskRequestId, :QueryDlqMsg, :NumOfLatestMsg, :Tag, :QueryDeadLetterMessage
|
7084
7089
|
extend Gem::Deprecate
|
7085
|
-
deprecate :QueryDlqMsg, :none, 2024,
|
7086
|
-
deprecate :QueryDlqMsg=, :none, 2024,
|
7090
|
+
deprecate :QueryDlqMsg, :none, 2024, 8
|
7091
|
+
deprecate :QueryDlqMsg=, :none, 2024, 8
|
7087
7092
|
|
7088
7093
|
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)
|
7089
7094
|
@ClusterId = clusterid
|
@@ -12580,15 +12585,18 @@ module TencentCloud
|
|
12580
12585
|
# @type PayMode: Integer
|
12581
12586
|
# @param Rules: 公网访问安全规则列表,Enabled为true时必须传入
|
12582
12587
|
# @type Rules: Array
|
12588
|
+
# @param BillingFlow: 公网是否按流量计费
|
12589
|
+
# @type BillingFlow: Boolean
|
12583
12590
|
|
12584
|
-
attr_accessor :InstanceId, :Enabled, :Bandwidth, :PayMode, :Rules
|
12591
|
+
attr_accessor :InstanceId, :Enabled, :Bandwidth, :PayMode, :Rules, :BillingFlow
|
12585
12592
|
|
12586
|
-
def initialize(instanceid=nil, enabled=nil, bandwidth=nil, paymode=nil, rules=nil)
|
12593
|
+
def initialize(instanceid=nil, enabled=nil, bandwidth=nil, paymode=nil, rules=nil, billingflow=nil)
|
12587
12594
|
@InstanceId = instanceid
|
12588
12595
|
@Enabled = enabled
|
12589
12596
|
@Bandwidth = bandwidth
|
12590
12597
|
@PayMode = paymode
|
12591
12598
|
@Rules = rules
|
12599
|
+
@BillingFlow = billingflow
|
12592
12600
|
end
|
12593
12601
|
|
12594
12602
|
def deserialize(params)
|
@@ -12604,6 +12612,7 @@ module TencentCloud
|
|
12604
12612
|
@Rules << publicaccessrule_tmp
|
12605
12613
|
end
|
12606
12614
|
end
|
12615
|
+
@BillingFlow = params['BillingFlow']
|
12607
12616
|
end
|
12608
12617
|
end
|
12609
12618
|
|
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.887
|
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-08-
|
11
|
+
date: 2024-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|