tencentcloud-sdk-cmq 1.0.200
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-cmq.rb +11 -0
- data/lib/v20190304/client.rb +444 -0
- data/lib/v20190304/models.rb +1357 -0
- metadata +66 -0
@@ -0,0 +1,1357 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
module TencentCloud
|
18
|
+
module Cmq
|
19
|
+
module V20190304
|
20
|
+
# ClearQueue请求参数结构体
|
21
|
+
class ClearQueueRequest < TencentCloud::Common::AbstractModel
|
22
|
+
# @param QueueName: 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
23
|
+
# @type QueueName: String
|
24
|
+
|
25
|
+
attr_accessor :QueueName
|
26
|
+
|
27
|
+
def initialize(queuename=nil)
|
28
|
+
@QueueName = queuename
|
29
|
+
end
|
30
|
+
|
31
|
+
def deserialize(params)
|
32
|
+
@QueueName = params['QueueName']
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
# ClearQueue返回参数结构体
|
37
|
+
class ClearQueueResponse < TencentCloud::Common::AbstractModel
|
38
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
39
|
+
# @type RequestId: String
|
40
|
+
|
41
|
+
attr_accessor :RequestId
|
42
|
+
|
43
|
+
def initialize(requestid=nil)
|
44
|
+
@RequestId = requestid
|
45
|
+
end
|
46
|
+
|
47
|
+
def deserialize(params)
|
48
|
+
@RequestId = params['RequestId']
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
# ClearSubscriptionFilterTags请求参数结构体
|
53
|
+
class ClearSubscriptionFilterTagsRequest < TencentCloud::Common::AbstractModel
|
54
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
55
|
+
# @type TopicName: String
|
56
|
+
# @param SubscriptionName: 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
57
|
+
# @type SubscriptionName: String
|
58
|
+
|
59
|
+
attr_accessor :TopicName, :SubscriptionName
|
60
|
+
|
61
|
+
def initialize(topicname=nil, subscriptionname=nil)
|
62
|
+
@TopicName = topicname
|
63
|
+
@SubscriptionName = subscriptionname
|
64
|
+
end
|
65
|
+
|
66
|
+
def deserialize(params)
|
67
|
+
@TopicName = params['TopicName']
|
68
|
+
@SubscriptionName = params['SubscriptionName']
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# ClearSubscriptionFilterTags返回参数结构体
|
73
|
+
class ClearSubscriptionFilterTagsResponse < TencentCloud::Common::AbstractModel
|
74
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
75
|
+
# @type RequestId: String
|
76
|
+
|
77
|
+
attr_accessor :RequestId
|
78
|
+
|
79
|
+
def initialize(requestid=nil)
|
80
|
+
@RequestId = requestid
|
81
|
+
end
|
82
|
+
|
83
|
+
def deserialize(params)
|
84
|
+
@RequestId = params['RequestId']
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# CreateQueue请求参数结构体
|
89
|
+
class CreateQueueRequest < TencentCloud::Common::AbstractModel
|
90
|
+
# @param QueueName: 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
91
|
+
# @type QueueName: String
|
92
|
+
# @param MaxMsgHeapNum: 最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
|
93
|
+
# @type MaxMsgHeapNum: Integer
|
94
|
+
# @param PollingWaitSeconds: 消息接收长轮询等待时间。取值范围 0-30 秒,默认值 0。
|
95
|
+
# @type PollingWaitSeconds: Integer
|
96
|
+
# @param VisibilityTimeout: 消息可见性超时。取值范围 1-43200 秒(即12小时内),默认值 30。
|
97
|
+
# @type VisibilityTimeout: Integer
|
98
|
+
# @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
|
99
|
+
# @type MaxMsgSize: Integer
|
100
|
+
# @param MsgRetentionSeconds: 消息保留周期。取值范围 60-1296000 秒(1min-15天),默认值 345600 (4 天)。
|
101
|
+
# @type MsgRetentionSeconds: Integer
|
102
|
+
# @param RewindSeconds: 队列是否开启回溯消息能力,该参数取值范围0-msgRetentionSeconds,即最大的回溯时间为消息在队列中的保留周期,0表示不开启。
|
103
|
+
# @type RewindSeconds: Integer
|
104
|
+
# @param Transaction: 1 表示事务队列,0 表示普通队列
|
105
|
+
# @type Transaction: Integer
|
106
|
+
# @param FirstQueryInterval: 第一次回查间隔
|
107
|
+
# @type FirstQueryInterval: Integer
|
108
|
+
# @param MaxQueryCount: 最大回查次数
|
109
|
+
# @type MaxQueryCount: Integer
|
110
|
+
# @param DeadLetterQueueName: 死信队列名称
|
111
|
+
# @type DeadLetterQueueName: String
|
112
|
+
# @param Policy: 死信策略。0为消息被多次消费未删除,1为Time-To-Live过期
|
113
|
+
# @type Policy: Integer
|
114
|
+
# @param MaxReceiveCount: 最大接收次数 1-1000
|
115
|
+
# @type MaxReceiveCount: Integer
|
116
|
+
# @param MaxTimeToLive: policy为1时必选。最大未消费过期时间。范围300-43200,单位秒,需要小于消息最大保留时间msgRetentionSeconds
|
117
|
+
# @type MaxTimeToLive: Integer
|
118
|
+
# @param Trace: 是否开启消息轨迹追踪,当不设置字段时,默认为不开启,该字段为true表示开启,为false表示不开启
|
119
|
+
# @type Trace: Boolean
|
120
|
+
|
121
|
+
attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :Transaction, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :Policy, :MaxReceiveCount, :MaxTimeToLive, :Trace
|
122
|
+
|
123
|
+
def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, transaction=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, policy=nil, maxreceivecount=nil, maxtimetolive=nil, trace=nil)
|
124
|
+
@QueueName = queuename
|
125
|
+
@MaxMsgHeapNum = maxmsgheapnum
|
126
|
+
@PollingWaitSeconds = pollingwaitseconds
|
127
|
+
@VisibilityTimeout = visibilitytimeout
|
128
|
+
@MaxMsgSize = maxmsgsize
|
129
|
+
@MsgRetentionSeconds = msgretentionseconds
|
130
|
+
@RewindSeconds = rewindseconds
|
131
|
+
@Transaction = transaction
|
132
|
+
@FirstQueryInterval = firstqueryinterval
|
133
|
+
@MaxQueryCount = maxquerycount
|
134
|
+
@DeadLetterQueueName = deadletterqueuename
|
135
|
+
@Policy = policy
|
136
|
+
@MaxReceiveCount = maxreceivecount
|
137
|
+
@MaxTimeToLive = maxtimetolive
|
138
|
+
@Trace = trace
|
139
|
+
end
|
140
|
+
|
141
|
+
def deserialize(params)
|
142
|
+
@QueueName = params['QueueName']
|
143
|
+
@MaxMsgHeapNum = params['MaxMsgHeapNum']
|
144
|
+
@PollingWaitSeconds = params['PollingWaitSeconds']
|
145
|
+
@VisibilityTimeout = params['VisibilityTimeout']
|
146
|
+
@MaxMsgSize = params['MaxMsgSize']
|
147
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
148
|
+
@RewindSeconds = params['RewindSeconds']
|
149
|
+
@Transaction = params['Transaction']
|
150
|
+
@FirstQueryInterval = params['FirstQueryInterval']
|
151
|
+
@MaxQueryCount = params['MaxQueryCount']
|
152
|
+
@DeadLetterQueueName = params['DeadLetterQueueName']
|
153
|
+
@Policy = params['Policy']
|
154
|
+
@MaxReceiveCount = params['MaxReceiveCount']
|
155
|
+
@MaxTimeToLive = params['MaxTimeToLive']
|
156
|
+
@Trace = params['Trace']
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
# CreateQueue返回参数结构体
|
161
|
+
class CreateQueueResponse < TencentCloud::Common::AbstractModel
|
162
|
+
# @param QueueId: 创建成功的queueId
|
163
|
+
# @type QueueId: String
|
164
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
165
|
+
# @type RequestId: String
|
166
|
+
|
167
|
+
attr_accessor :QueueId, :RequestId
|
168
|
+
|
169
|
+
def initialize(queueid=nil, requestid=nil)
|
170
|
+
@QueueId = queueid
|
171
|
+
@RequestId = requestid
|
172
|
+
end
|
173
|
+
|
174
|
+
def deserialize(params)
|
175
|
+
@QueueId = params['QueueId']
|
176
|
+
@RequestId = params['RequestId']
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
# CreateSubscribe请求参数结构体
|
181
|
+
class CreateSubscribeRequest < TencentCloud::Common::AbstractModel
|
182
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
183
|
+
# @type TopicName: String
|
184
|
+
# @param SubscriptionName: 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
185
|
+
# @type SubscriptionName: String
|
186
|
+
# @param Protocol: 订阅的协议,目前支持两种协议:http、queue。使用http协议,用户需自己搭建接受消息的web server。使用queue,消息会自动推送到CMQ queue,用户可以并发地拉取消息。
|
187
|
+
# @type Protocol: String
|
188
|
+
# @param Endpoint: 接收通知的Endpoint,根据协议Protocol区分:对于http,Endpoint必须以“`http://`”开头,host可以是域名或IP;对于Queue,则填QueueName。 请注意,目前推送服务不能推送到私有网络中,因此Endpoint填写为私有网络域名或地址将接收不到推送的消息,目前支持推送到公网和基础网络。
|
189
|
+
# @type Endpoint: String
|
190
|
+
# @param NotifyStrategy: 向Endpoint推送消息出现错误时,CMQ推送服务器的重试策略。取值有:1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始1s,后面是2s,4s,8s...由于Topic消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是EXPONENTIAL_DECAY_RETRY。
|
191
|
+
# @type NotifyStrategy: String
|
192
|
+
# @param FilterTag: 消息正文。消息标签(用于消息过滤)。标签数量不能超过5个,每个标签不超过16个字符。与(Batch)PublishMessage的MsgTag参数配合使用,规则:1)如果FilterTag没有设置,则无论MsgTag是否有设置,订阅接收所有发布到Topic的消息;2)如果FilterTag数组有值,则只有数组中至少有一个值在MsgTag数组中也存在时(即FilterTag和MsgTag有交集),订阅才接收该发布到Topic的消息;3)如果FilterTag数组有值,但MsgTag没设置,则不接收任何发布到Topic的消息,可以认为是2)的一种特例,此时FilterTag和MsgTag没有交集。规则整体的设计思想是以订阅者的意愿为主。
|
193
|
+
# @type FilterTag: Array
|
194
|
+
# @param BindingKey: BindingKey数量不超过5个, 每个BindingKey长度不超过64字节,该字段表示订阅接收消息的过滤策略,每个BindingKey最多含有15个“.”, 即最多16个词组。
|
195
|
+
# @type BindingKey: Array
|
196
|
+
# @param NotifyContentFormat: 推送内容的格式。取值:1)JSON;2)SIMPLIFIED,即raw格式。如果Protocol是queue,则取值必须为SIMPLIFIED。如果Protocol是http,两个值均可以,默认值是JSON。
|
197
|
+
# @type NotifyContentFormat: String
|
198
|
+
|
199
|
+
attr_accessor :TopicName, :SubscriptionName, :Protocol, :Endpoint, :NotifyStrategy, :FilterTag, :BindingKey, :NotifyContentFormat
|
200
|
+
|
201
|
+
def initialize(topicname=nil, subscriptionname=nil, protocol=nil, endpoint=nil, notifystrategy=nil, filtertag=nil, bindingkey=nil, notifycontentformat=nil)
|
202
|
+
@TopicName = topicname
|
203
|
+
@SubscriptionName = subscriptionname
|
204
|
+
@Protocol = protocol
|
205
|
+
@Endpoint = endpoint
|
206
|
+
@NotifyStrategy = notifystrategy
|
207
|
+
@FilterTag = filtertag
|
208
|
+
@BindingKey = bindingkey
|
209
|
+
@NotifyContentFormat = notifycontentformat
|
210
|
+
end
|
211
|
+
|
212
|
+
def deserialize(params)
|
213
|
+
@TopicName = params['TopicName']
|
214
|
+
@SubscriptionName = params['SubscriptionName']
|
215
|
+
@Protocol = params['Protocol']
|
216
|
+
@Endpoint = params['Endpoint']
|
217
|
+
@NotifyStrategy = params['NotifyStrategy']
|
218
|
+
@FilterTag = params['FilterTag']
|
219
|
+
@BindingKey = params['BindingKey']
|
220
|
+
@NotifyContentFormat = params['NotifyContentFormat']
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
# CreateSubscribe返回参数结构体
|
225
|
+
class CreateSubscribeResponse < TencentCloud::Common::AbstractModel
|
226
|
+
# @param SubscriptionId: SubscriptionId
|
227
|
+
# @type SubscriptionId: String
|
228
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
229
|
+
# @type RequestId: String
|
230
|
+
|
231
|
+
attr_accessor :SubscriptionId, :RequestId
|
232
|
+
|
233
|
+
def initialize(subscriptionid=nil, requestid=nil)
|
234
|
+
@SubscriptionId = subscriptionid
|
235
|
+
@RequestId = requestid
|
236
|
+
end
|
237
|
+
|
238
|
+
def deserialize(params)
|
239
|
+
@SubscriptionId = params['SubscriptionId']
|
240
|
+
@RequestId = params['RequestId']
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
# CreateTopic请求参数结构体
|
245
|
+
class CreateTopicRequest < TencentCloud::Common::AbstractModel
|
246
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
247
|
+
# @type TopicName: String
|
248
|
+
# @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
|
249
|
+
# @type MaxMsgSize: Integer
|
250
|
+
# @param FilterType: 用于指定主题的消息匹配策略。1:表示标签匹配策略;2:表示路由匹配策略,默认值为标签匹配策略。
|
251
|
+
# @type FilterType: Integer
|
252
|
+
# @param MsgRetentionSeconds: 消息保存时间。取值范围60 - 86400 s(即1分钟 - 1天),默认值86400。
|
253
|
+
# @type MsgRetentionSeconds: Integer
|
254
|
+
# @param Trace: 是否开启消息轨迹标识,true表示开启,false表示不开启,不填表示不开启。
|
255
|
+
# @type Trace: Boolean
|
256
|
+
|
257
|
+
attr_accessor :TopicName, :MaxMsgSize, :FilterType, :MsgRetentionSeconds, :Trace
|
258
|
+
|
259
|
+
def initialize(topicname=nil, maxmsgsize=nil, filtertype=nil, msgretentionseconds=nil, trace=nil)
|
260
|
+
@TopicName = topicname
|
261
|
+
@MaxMsgSize = maxmsgsize
|
262
|
+
@FilterType = filtertype
|
263
|
+
@MsgRetentionSeconds = msgretentionseconds
|
264
|
+
@Trace = trace
|
265
|
+
end
|
266
|
+
|
267
|
+
def deserialize(params)
|
268
|
+
@TopicName = params['TopicName']
|
269
|
+
@MaxMsgSize = params['MaxMsgSize']
|
270
|
+
@FilterType = params['FilterType']
|
271
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
272
|
+
@Trace = params['Trace']
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
# CreateTopic返回参数结构体
|
277
|
+
class CreateTopicResponse < TencentCloud::Common::AbstractModel
|
278
|
+
# @param TopicId: TopicName
|
279
|
+
# @type TopicId: String
|
280
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
281
|
+
# @type RequestId: String
|
282
|
+
|
283
|
+
attr_accessor :TopicId, :RequestId
|
284
|
+
|
285
|
+
def initialize(topicid=nil, requestid=nil)
|
286
|
+
@TopicId = topicid
|
287
|
+
@RequestId = requestid
|
288
|
+
end
|
289
|
+
|
290
|
+
def deserialize(params)
|
291
|
+
@TopicId = params['TopicId']
|
292
|
+
@RequestId = params['RequestId']
|
293
|
+
end
|
294
|
+
end
|
295
|
+
|
296
|
+
# DeadLetterPolicy
|
297
|
+
class DeadLetterPolicy < TencentCloud::Common::AbstractModel
|
298
|
+
# @param DeadLetterQueueName: 死信队列名字。
|
299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
300
|
+
# @type DeadLetterQueueName: String
|
301
|
+
# @param DeadLetterQueue: 死信队列。
|
302
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
303
|
+
# @type DeadLetterQueue: String
|
304
|
+
# @param Policy: 死信队列策略。
|
305
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
306
|
+
# @type Policy: Integer
|
307
|
+
# @param MaxTimeToLive: 最大未消费过期时间。Policy为1时必选。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds。
|
308
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
309
|
+
# @type MaxTimeToLive: Integer
|
310
|
+
# @param MaxReceiveCount: 最大接收次数。
|
311
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
312
|
+
# @type MaxReceiveCount: Integer
|
313
|
+
|
314
|
+
attr_accessor :DeadLetterQueueName, :DeadLetterQueue, :Policy, :MaxTimeToLive, :MaxReceiveCount
|
315
|
+
|
316
|
+
def initialize(deadletterqueuename=nil, deadletterqueue=nil, policy=nil, maxtimetolive=nil, maxreceivecount=nil)
|
317
|
+
@DeadLetterQueueName = deadletterqueuename
|
318
|
+
@DeadLetterQueue = deadletterqueue
|
319
|
+
@Policy = policy
|
320
|
+
@MaxTimeToLive = maxtimetolive
|
321
|
+
@MaxReceiveCount = maxreceivecount
|
322
|
+
end
|
323
|
+
|
324
|
+
def deserialize(params)
|
325
|
+
@DeadLetterQueueName = params['DeadLetterQueueName']
|
326
|
+
@DeadLetterQueue = params['DeadLetterQueue']
|
327
|
+
@Policy = params['Policy']
|
328
|
+
@MaxTimeToLive = params['MaxTimeToLive']
|
329
|
+
@MaxReceiveCount = params['MaxReceiveCount']
|
330
|
+
end
|
331
|
+
end
|
332
|
+
|
333
|
+
# DeadLetterSource
|
334
|
+
class DeadLetterSource < TencentCloud::Common::AbstractModel
|
335
|
+
# @param QueueId: 消息队列ID。
|
336
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
337
|
+
# @type QueueId: String
|
338
|
+
# @param QueueName: 消息队列名字。
|
339
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
340
|
+
# @type QueueName: String
|
341
|
+
|
342
|
+
attr_accessor :QueueId, :QueueName
|
343
|
+
|
344
|
+
def initialize(queueid=nil, queuename=nil)
|
345
|
+
@QueueId = queueid
|
346
|
+
@QueueName = queuename
|
347
|
+
end
|
348
|
+
|
349
|
+
def deserialize(params)
|
350
|
+
@QueueId = params['QueueId']
|
351
|
+
@QueueName = params['QueueName']
|
352
|
+
end
|
353
|
+
end
|
354
|
+
|
355
|
+
# DeleteQueue请求参数结构体
|
356
|
+
class DeleteQueueRequest < TencentCloud::Common::AbstractModel
|
357
|
+
# @param QueueName: 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
358
|
+
# @type QueueName: String
|
359
|
+
|
360
|
+
attr_accessor :QueueName
|
361
|
+
|
362
|
+
def initialize(queuename=nil)
|
363
|
+
@QueueName = queuename
|
364
|
+
end
|
365
|
+
|
366
|
+
def deserialize(params)
|
367
|
+
@QueueName = params['QueueName']
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
# DeleteQueue返回参数结构体
|
372
|
+
class DeleteQueueResponse < TencentCloud::Common::AbstractModel
|
373
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
374
|
+
# @type RequestId: String
|
375
|
+
|
376
|
+
attr_accessor :RequestId
|
377
|
+
|
378
|
+
def initialize(requestid=nil)
|
379
|
+
@RequestId = requestid
|
380
|
+
end
|
381
|
+
|
382
|
+
def deserialize(params)
|
383
|
+
@RequestId = params['RequestId']
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
# DeleteSubscribe请求参数结构体
|
388
|
+
class DeleteSubscribeRequest < TencentCloud::Common::AbstractModel
|
389
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
390
|
+
# @type TopicName: String
|
391
|
+
# @param SubscriptionName: 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
392
|
+
# @type SubscriptionName: String
|
393
|
+
|
394
|
+
attr_accessor :TopicName, :SubscriptionName
|
395
|
+
|
396
|
+
def initialize(topicname=nil, subscriptionname=nil)
|
397
|
+
@TopicName = topicname
|
398
|
+
@SubscriptionName = subscriptionname
|
399
|
+
end
|
400
|
+
|
401
|
+
def deserialize(params)
|
402
|
+
@TopicName = params['TopicName']
|
403
|
+
@SubscriptionName = params['SubscriptionName']
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
# DeleteSubscribe返回参数结构体
|
408
|
+
class DeleteSubscribeResponse < TencentCloud::Common::AbstractModel
|
409
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
410
|
+
# @type RequestId: String
|
411
|
+
|
412
|
+
attr_accessor :RequestId
|
413
|
+
|
414
|
+
def initialize(requestid=nil)
|
415
|
+
@RequestId = requestid
|
416
|
+
end
|
417
|
+
|
418
|
+
def deserialize(params)
|
419
|
+
@RequestId = params['RequestId']
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
# DeleteTopic请求参数结构体
|
424
|
+
class DeleteTopicRequest < TencentCloud::Common::AbstractModel
|
425
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
426
|
+
# @type TopicName: String
|
427
|
+
|
428
|
+
attr_accessor :TopicName
|
429
|
+
|
430
|
+
def initialize(topicname=nil)
|
431
|
+
@TopicName = topicname
|
432
|
+
end
|
433
|
+
|
434
|
+
def deserialize(params)
|
435
|
+
@TopicName = params['TopicName']
|
436
|
+
end
|
437
|
+
end
|
438
|
+
|
439
|
+
# DeleteTopic返回参数结构体
|
440
|
+
class DeleteTopicResponse < TencentCloud::Common::AbstractModel
|
441
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
442
|
+
# @type RequestId: String
|
443
|
+
|
444
|
+
attr_accessor :RequestId
|
445
|
+
|
446
|
+
def initialize(requestid=nil)
|
447
|
+
@RequestId = requestid
|
448
|
+
end
|
449
|
+
|
450
|
+
def deserialize(params)
|
451
|
+
@RequestId = params['RequestId']
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
# DescribeDeadLetterSourceQueues请求参数结构体
|
456
|
+
class DescribeDeadLetterSourceQueuesRequest < TencentCloud::Common::AbstractModel
|
457
|
+
# @param DeadLetterQueueName: 死信队列名称
|
458
|
+
# @type DeadLetterQueueName: String
|
459
|
+
# @param Limit: 分页时本页获取主题列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0。
|
460
|
+
# @type Limit: Integer
|
461
|
+
# @param Offset: 分页时本页获取主题的个数,如果不传递该参数,则该参数默认为20,最大值为50。
|
462
|
+
# @type Offset: Integer
|
463
|
+
# @param Filters: 过滤死信队列源队列名称,目前仅支持SourceQueueName过滤
|
464
|
+
# @type Filters: Array
|
465
|
+
|
466
|
+
attr_accessor :DeadLetterQueueName, :Limit, :Offset, :Filters
|
467
|
+
|
468
|
+
def initialize(deadletterqueuename=nil, limit=nil, offset=nil, filters=nil)
|
469
|
+
@DeadLetterQueueName = deadletterqueuename
|
470
|
+
@Limit = limit
|
471
|
+
@Offset = offset
|
472
|
+
@Filters = filters
|
473
|
+
end
|
474
|
+
|
475
|
+
def deserialize(params)
|
476
|
+
@DeadLetterQueueName = params['DeadLetterQueueName']
|
477
|
+
@Limit = params['Limit']
|
478
|
+
@Offset = params['Offset']
|
479
|
+
unless params['Filters'].nil?
|
480
|
+
@Filters = []
|
481
|
+
params['Filters'].each do |i|
|
482
|
+
filter_tmp = Filter.new
|
483
|
+
filter_tmp.deserialize(i)
|
484
|
+
@Filters << filter_tmp
|
485
|
+
end
|
486
|
+
end
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
490
|
+
# DescribeDeadLetterSourceQueues返回参数结构体
|
491
|
+
class DescribeDeadLetterSourceQueuesResponse < TencentCloud::Common::AbstractModel
|
492
|
+
# @param TotalCount: 满足本次条件的队列个数
|
493
|
+
# @type TotalCount: Integer
|
494
|
+
# @param QueueSet: 死信队列源队列
|
495
|
+
# @type QueueSet: Array
|
496
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
497
|
+
# @type RequestId: String
|
498
|
+
|
499
|
+
attr_accessor :TotalCount, :QueueSet, :RequestId
|
500
|
+
|
501
|
+
def initialize(totalcount=nil, queueset=nil, requestid=nil)
|
502
|
+
@TotalCount = totalcount
|
503
|
+
@QueueSet = queueset
|
504
|
+
@RequestId = requestid
|
505
|
+
end
|
506
|
+
|
507
|
+
def deserialize(params)
|
508
|
+
@TotalCount = params['TotalCount']
|
509
|
+
unless params['QueueSet'].nil?
|
510
|
+
@QueueSet = []
|
511
|
+
params['QueueSet'].each do |i|
|
512
|
+
deadlettersource_tmp = DeadLetterSource.new
|
513
|
+
deadlettersource_tmp.deserialize(i)
|
514
|
+
@QueueSet << deadlettersource_tmp
|
515
|
+
end
|
516
|
+
end
|
517
|
+
@RequestId = params['RequestId']
|
518
|
+
end
|
519
|
+
end
|
520
|
+
|
521
|
+
# DescribeQueueDetail请求参数结构体
|
522
|
+
class DescribeQueueDetailRequest < TencentCloud::Common::AbstractModel
|
523
|
+
# @param Offset: 分页时本页获取队列列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0
|
524
|
+
# @type Offset: Integer
|
525
|
+
# @param Limit: 分页时本页获取队列的个数,如果不传递该参数,则该参数默认为20,最大值为50。
|
526
|
+
# @type Limit: Integer
|
527
|
+
# @param Filters: 筛选参数,目前支持QueueName筛选,且仅支持一个关键字
|
528
|
+
# @type Filters: Array
|
529
|
+
# @param TagKey: 标签搜索
|
530
|
+
# @type TagKey: String
|
531
|
+
# @param QueueName: 精确匹配QueueName
|
532
|
+
# @type QueueName: String
|
533
|
+
|
534
|
+
attr_accessor :Offset, :Limit, :Filters, :TagKey, :QueueName
|
535
|
+
|
536
|
+
def initialize(offset=nil, limit=nil, filters=nil, tagkey=nil, queuename=nil)
|
537
|
+
@Offset = offset
|
538
|
+
@Limit = limit
|
539
|
+
@Filters = filters
|
540
|
+
@TagKey = tagkey
|
541
|
+
@QueueName = queuename
|
542
|
+
end
|
543
|
+
|
544
|
+
def deserialize(params)
|
545
|
+
@Offset = params['Offset']
|
546
|
+
@Limit = params['Limit']
|
547
|
+
unless params['Filters'].nil?
|
548
|
+
@Filters = []
|
549
|
+
params['Filters'].each do |i|
|
550
|
+
filter_tmp = Filter.new
|
551
|
+
filter_tmp.deserialize(i)
|
552
|
+
@Filters << filter_tmp
|
553
|
+
end
|
554
|
+
end
|
555
|
+
@TagKey = params['TagKey']
|
556
|
+
@QueueName = params['QueueName']
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
560
|
+
# DescribeQueueDetail返回参数结构体
|
561
|
+
class DescribeQueueDetailResponse < TencentCloud::Common::AbstractModel
|
562
|
+
# @param TotalCount: 总队列数。
|
563
|
+
# @type TotalCount: Integer
|
564
|
+
# @param QueueSet: 队列详情列表。
|
565
|
+
# @type QueueSet: Array
|
566
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
567
|
+
# @type RequestId: String
|
568
|
+
|
569
|
+
attr_accessor :TotalCount, :QueueSet, :RequestId
|
570
|
+
|
571
|
+
def initialize(totalcount=nil, queueset=nil, requestid=nil)
|
572
|
+
@TotalCount = totalcount
|
573
|
+
@QueueSet = queueset
|
574
|
+
@RequestId = requestid
|
575
|
+
end
|
576
|
+
|
577
|
+
def deserialize(params)
|
578
|
+
@TotalCount = params['TotalCount']
|
579
|
+
unless params['QueueSet'].nil?
|
580
|
+
@QueueSet = []
|
581
|
+
params['QueueSet'].each do |i|
|
582
|
+
queueset_tmp = QueueSet.new
|
583
|
+
queueset_tmp.deserialize(i)
|
584
|
+
@QueueSet << queueset_tmp
|
585
|
+
end
|
586
|
+
end
|
587
|
+
@RequestId = params['RequestId']
|
588
|
+
end
|
589
|
+
end
|
590
|
+
|
591
|
+
# DescribeSubscriptionDetail请求参数结构体
|
592
|
+
class DescribeSubscriptionDetailRequest < TencentCloud::Common::AbstractModel
|
593
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
594
|
+
# @type TopicName: String
|
595
|
+
# @param Offset: 分页时本页获取主题列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0
|
596
|
+
# @type Offset: Integer
|
597
|
+
# @param Limit: 分页时本页获取主题的个数,如果不传递该参数,则该参数默认为20,最大值为50。
|
598
|
+
# @type Limit: Integer
|
599
|
+
# @param Filters: 筛选参数,目前只支持SubscriptionName,且仅支持一个关键字。
|
600
|
+
# @type Filters: Array
|
601
|
+
|
602
|
+
attr_accessor :TopicName, :Offset, :Limit, :Filters
|
603
|
+
|
604
|
+
def initialize(topicname=nil, offset=nil, limit=nil, filters=nil)
|
605
|
+
@TopicName = topicname
|
606
|
+
@Offset = offset
|
607
|
+
@Limit = limit
|
608
|
+
@Filters = filters
|
609
|
+
end
|
610
|
+
|
611
|
+
def deserialize(params)
|
612
|
+
@TopicName = params['TopicName']
|
613
|
+
@Offset = params['Offset']
|
614
|
+
@Limit = params['Limit']
|
615
|
+
unless params['Filters'].nil?
|
616
|
+
@Filters = []
|
617
|
+
params['Filters'].each do |i|
|
618
|
+
filter_tmp = Filter.new
|
619
|
+
filter_tmp.deserialize(i)
|
620
|
+
@Filters << filter_tmp
|
621
|
+
end
|
622
|
+
end
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
626
|
+
# DescribeSubscriptionDetail返回参数结构体
|
627
|
+
class DescribeSubscriptionDetailResponse < TencentCloud::Common::AbstractModel
|
628
|
+
# @param TotalCount: 总数
|
629
|
+
# @type TotalCount: Integer
|
630
|
+
# @param SubscriptionSet: Subscription属性集合
|
631
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
632
|
+
# @type SubscriptionSet: Array
|
633
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
634
|
+
# @type RequestId: String
|
635
|
+
|
636
|
+
attr_accessor :TotalCount, :SubscriptionSet, :RequestId
|
637
|
+
|
638
|
+
def initialize(totalcount=nil, subscriptionset=nil, requestid=nil)
|
639
|
+
@TotalCount = totalcount
|
640
|
+
@SubscriptionSet = subscriptionset
|
641
|
+
@RequestId = requestid
|
642
|
+
end
|
643
|
+
|
644
|
+
def deserialize(params)
|
645
|
+
@TotalCount = params['TotalCount']
|
646
|
+
unless params['SubscriptionSet'].nil?
|
647
|
+
@SubscriptionSet = []
|
648
|
+
params['SubscriptionSet'].each do |i|
|
649
|
+
subscription_tmp = Subscription.new
|
650
|
+
subscription_tmp.deserialize(i)
|
651
|
+
@SubscriptionSet << subscription_tmp
|
652
|
+
end
|
653
|
+
end
|
654
|
+
@RequestId = params['RequestId']
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
# DescribeTopicDetail请求参数结构体
|
659
|
+
class DescribeTopicDetailRequest < TencentCloud::Common::AbstractModel
|
660
|
+
# @param Offset: 分页时本页获取队列列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0。
|
661
|
+
# @type Offset: Integer
|
662
|
+
# @param Limit: 分页时本页获取队列的个数,如果不传递该参数,则该参数默认为20,最大值为50。
|
663
|
+
# @type Limit: Integer
|
664
|
+
# @param Filters: 目前只支持过滤TopicName , 且只能填一个过滤值。
|
665
|
+
# @type Filters: Array
|
666
|
+
# @param TagKey: 标签匹配。
|
667
|
+
# @type TagKey: String
|
668
|
+
# @param TopicName: 精确匹配TopicName。
|
669
|
+
# @type TopicName: String
|
670
|
+
|
671
|
+
attr_accessor :Offset, :Limit, :Filters, :TagKey, :TopicName
|
672
|
+
|
673
|
+
def initialize(offset=nil, limit=nil, filters=nil, tagkey=nil, topicname=nil)
|
674
|
+
@Offset = offset
|
675
|
+
@Limit = limit
|
676
|
+
@Filters = filters
|
677
|
+
@TagKey = tagkey
|
678
|
+
@TopicName = topicname
|
679
|
+
end
|
680
|
+
|
681
|
+
def deserialize(params)
|
682
|
+
@Offset = params['Offset']
|
683
|
+
@Limit = params['Limit']
|
684
|
+
unless params['Filters'].nil?
|
685
|
+
@Filters = []
|
686
|
+
params['Filters'].each do |i|
|
687
|
+
filter_tmp = Filter.new
|
688
|
+
filter_tmp.deserialize(i)
|
689
|
+
@Filters << filter_tmp
|
690
|
+
end
|
691
|
+
end
|
692
|
+
@TagKey = params['TagKey']
|
693
|
+
@TopicName = params['TopicName']
|
694
|
+
end
|
695
|
+
end
|
696
|
+
|
697
|
+
# DescribeTopicDetail返回参数结构体
|
698
|
+
class DescribeTopicDetailResponse < TencentCloud::Common::AbstractModel
|
699
|
+
# @param TotalCount: 主题列表总数。
|
700
|
+
# @type TotalCount: Integer
|
701
|
+
# @param TopicSet: 主题详情列表。
|
702
|
+
# @type TopicSet: Array
|
703
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
704
|
+
# @type RequestId: String
|
705
|
+
|
706
|
+
attr_accessor :TotalCount, :TopicSet, :RequestId
|
707
|
+
|
708
|
+
def initialize(totalcount=nil, topicset=nil, requestid=nil)
|
709
|
+
@TotalCount = totalcount
|
710
|
+
@TopicSet = topicset
|
711
|
+
@RequestId = requestid
|
712
|
+
end
|
713
|
+
|
714
|
+
def deserialize(params)
|
715
|
+
@TotalCount = params['TotalCount']
|
716
|
+
unless params['TopicSet'].nil?
|
717
|
+
@TopicSet = []
|
718
|
+
params['TopicSet'].each do |i|
|
719
|
+
topicset_tmp = TopicSet.new
|
720
|
+
topicset_tmp.deserialize(i)
|
721
|
+
@TopicSet << topicset_tmp
|
722
|
+
end
|
723
|
+
end
|
724
|
+
@RequestId = params['RequestId']
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
728
|
+
# 过滤参数
|
729
|
+
class Filter < TencentCloud::Common::AbstractModel
|
730
|
+
# @param Name: 过滤参数的名字
|
731
|
+
# @type Name: String
|
732
|
+
# @param Values: 数值
|
733
|
+
# @type Values: Array
|
734
|
+
|
735
|
+
attr_accessor :Name, :Values
|
736
|
+
|
737
|
+
def initialize(name=nil, values=nil)
|
738
|
+
@Name = name
|
739
|
+
@Values = values
|
740
|
+
end
|
741
|
+
|
742
|
+
def deserialize(params)
|
743
|
+
@Name = params['Name']
|
744
|
+
@Values = params['Values']
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
748
|
+
# ModifyQueueAttribute请求参数结构体
|
749
|
+
class ModifyQueueAttributeRequest < TencentCloud::Common::AbstractModel
|
750
|
+
# @param QueueName: 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
751
|
+
# @type QueueName: String
|
752
|
+
# @param MaxMsgHeapNum: 最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
|
753
|
+
# @type MaxMsgHeapNum: Integer
|
754
|
+
# @param PollingWaitSeconds: 消息接收长轮询等待时间。取值范围 0-30 秒,默认值 0。
|
755
|
+
# @type PollingWaitSeconds: Integer
|
756
|
+
# @param VisibilityTimeout: 消息可见性超时。取值范围 1-43200 秒(即12小时内),默认值 30。
|
757
|
+
# @type VisibilityTimeout: Integer
|
758
|
+
# @param MaxMsgSize: 消息最大长度。取值范围 1024-65536 Byte(即1-64K),默认值 65536。
|
759
|
+
# @type MaxMsgSize: Integer
|
760
|
+
# @param MsgRetentionSeconds: 消息保留周期。取值范围 60-1296000 秒(1min-15天),默认值 345600 (4 天)。
|
761
|
+
# @type MsgRetentionSeconds: Integer
|
762
|
+
# @param RewindSeconds: 消息最长回溯时间,取值范围0-msgRetentionSeconds,消息的最大回溯之间为消息在队列中的保存周期,0表示不开启消息回溯。
|
763
|
+
# @type RewindSeconds: Integer
|
764
|
+
# @param FirstQueryInterval: 第一次查询时间
|
765
|
+
# @type FirstQueryInterval: Integer
|
766
|
+
# @param MaxQueryCount: 最大查询次数
|
767
|
+
# @type MaxQueryCount: Integer
|
768
|
+
# @param DeadLetterQueueName: 死信队列名称
|
769
|
+
# @type DeadLetterQueueName: String
|
770
|
+
# @param MaxTimeToLive: MaxTimeToLivepolicy为1时必选。最大未消费过期时间。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds
|
771
|
+
# @type MaxTimeToLive: Integer
|
772
|
+
# @param MaxReceiveCount: 最大接收次数
|
773
|
+
# @type MaxReceiveCount: Integer
|
774
|
+
# @param Policy: 死信队列策略
|
775
|
+
# @type Policy: Integer
|
776
|
+
# @param Trace: 是否开启消息轨迹标识,true表示开启,false表示不开启,不填表示不开启。
|
777
|
+
# @type Trace: Boolean
|
778
|
+
|
779
|
+
attr_accessor :QueueName, :MaxMsgHeapNum, :PollingWaitSeconds, :VisibilityTimeout, :MaxMsgSize, :MsgRetentionSeconds, :RewindSeconds, :FirstQueryInterval, :MaxQueryCount, :DeadLetterQueueName, :MaxTimeToLive, :MaxReceiveCount, :Policy, :Trace
|
780
|
+
|
781
|
+
def initialize(queuename=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, msgretentionseconds=nil, rewindseconds=nil, firstqueryinterval=nil, maxquerycount=nil, deadletterqueuename=nil, maxtimetolive=nil, maxreceivecount=nil, policy=nil, trace=nil)
|
782
|
+
@QueueName = queuename
|
783
|
+
@MaxMsgHeapNum = maxmsgheapnum
|
784
|
+
@PollingWaitSeconds = pollingwaitseconds
|
785
|
+
@VisibilityTimeout = visibilitytimeout
|
786
|
+
@MaxMsgSize = maxmsgsize
|
787
|
+
@MsgRetentionSeconds = msgretentionseconds
|
788
|
+
@RewindSeconds = rewindseconds
|
789
|
+
@FirstQueryInterval = firstqueryinterval
|
790
|
+
@MaxQueryCount = maxquerycount
|
791
|
+
@DeadLetterQueueName = deadletterqueuename
|
792
|
+
@MaxTimeToLive = maxtimetolive
|
793
|
+
@MaxReceiveCount = maxreceivecount
|
794
|
+
@Policy = policy
|
795
|
+
@Trace = trace
|
796
|
+
end
|
797
|
+
|
798
|
+
def deserialize(params)
|
799
|
+
@QueueName = params['QueueName']
|
800
|
+
@MaxMsgHeapNum = params['MaxMsgHeapNum']
|
801
|
+
@PollingWaitSeconds = params['PollingWaitSeconds']
|
802
|
+
@VisibilityTimeout = params['VisibilityTimeout']
|
803
|
+
@MaxMsgSize = params['MaxMsgSize']
|
804
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
805
|
+
@RewindSeconds = params['RewindSeconds']
|
806
|
+
@FirstQueryInterval = params['FirstQueryInterval']
|
807
|
+
@MaxQueryCount = params['MaxQueryCount']
|
808
|
+
@DeadLetterQueueName = params['DeadLetterQueueName']
|
809
|
+
@MaxTimeToLive = params['MaxTimeToLive']
|
810
|
+
@MaxReceiveCount = params['MaxReceiveCount']
|
811
|
+
@Policy = params['Policy']
|
812
|
+
@Trace = params['Trace']
|
813
|
+
end
|
814
|
+
end
|
815
|
+
|
816
|
+
# ModifyQueueAttribute返回参数结构体
|
817
|
+
class ModifyQueueAttributeResponse < TencentCloud::Common::AbstractModel
|
818
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
819
|
+
# @type RequestId: String
|
820
|
+
|
821
|
+
attr_accessor :RequestId
|
822
|
+
|
823
|
+
def initialize(requestid=nil)
|
824
|
+
@RequestId = requestid
|
825
|
+
end
|
826
|
+
|
827
|
+
def deserialize(params)
|
828
|
+
@RequestId = params['RequestId']
|
829
|
+
end
|
830
|
+
end
|
831
|
+
|
832
|
+
# ModifySubscriptionAttribute请求参数结构体
|
833
|
+
class ModifySubscriptionAttributeRequest < TencentCloud::Common::AbstractModel
|
834
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
835
|
+
# @type TopicName: String
|
836
|
+
# @param SubscriptionName: 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
837
|
+
# @type SubscriptionName: String
|
838
|
+
# @param NotifyStrategy: 向 Endpoint 推送消息出现错误时,CMQ 推送服务器的重试策略。取值如下:
|
839
|
+
# (1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息。
|
840
|
+
# (2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始1s,后面是2s,4s,8s···由于 Topic 消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是 EXPONENTIAL_DECAY_RETRY。
|
841
|
+
# @type NotifyStrategy: String
|
842
|
+
# @param NotifyContentFormat: 推送内容的格式。取值:(1)JSON;(2)SIMPLIFIED,即 raw 格式。如果 Protocol 是 queue,则取值必须为 SIMPLIFIED。如果 Protocol 是 HTTP,两个值均可以,默认值是 JSON。
|
843
|
+
# @type NotifyContentFormat: String
|
844
|
+
# @param FilterTags: 消息正文。消息标签(用于消息过滤)。标签数量不能超过5个,每个标签不超过16个字符。与(Batch)PublishMessage的MsgTag参数配合使用,规则:1)如果FilterTag没有设置,则无论MsgTag是否有设置,订阅接收所有发布到Topic的消息;2)如果FilterTag数组有值,则只有数组中至少有一个值在MsgTag数组中也存在时(即FilterTag和MsgTag有交集),订阅才接收该发布到Topic的消息;3)如果FilterTag数组有值,但MsgTag没设置,则不接收任何发布到Topic的消息,可以认为是2)的一种特例,此时FilterTag和MsgTag没有交集。规则整体的设计思想是以订阅者的意愿为主。
|
845
|
+
# @type FilterTags: Array
|
846
|
+
# @param BindingKey: BindingKey数量不超过5个, 每个BindingKey长度不超过64字节,该字段表示订阅接收消息的过滤策略,每个BindingKey最多含有15个“.”, 即最多16个词组。
|
847
|
+
# @type BindingKey: Array
|
848
|
+
|
849
|
+
attr_accessor :TopicName, :SubscriptionName, :NotifyStrategy, :NotifyContentFormat, :FilterTags, :BindingKey
|
850
|
+
|
851
|
+
def initialize(topicname=nil, subscriptionname=nil, notifystrategy=nil, notifycontentformat=nil, filtertags=nil, bindingkey=nil)
|
852
|
+
@TopicName = topicname
|
853
|
+
@SubscriptionName = subscriptionname
|
854
|
+
@NotifyStrategy = notifystrategy
|
855
|
+
@NotifyContentFormat = notifycontentformat
|
856
|
+
@FilterTags = filtertags
|
857
|
+
@BindingKey = bindingkey
|
858
|
+
end
|
859
|
+
|
860
|
+
def deserialize(params)
|
861
|
+
@TopicName = params['TopicName']
|
862
|
+
@SubscriptionName = params['SubscriptionName']
|
863
|
+
@NotifyStrategy = params['NotifyStrategy']
|
864
|
+
@NotifyContentFormat = params['NotifyContentFormat']
|
865
|
+
@FilterTags = params['FilterTags']
|
866
|
+
@BindingKey = params['BindingKey']
|
867
|
+
end
|
868
|
+
end
|
869
|
+
|
870
|
+
# ModifySubscriptionAttribute返回参数结构体
|
871
|
+
class ModifySubscriptionAttributeResponse < TencentCloud::Common::AbstractModel
|
872
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
873
|
+
# @type RequestId: String
|
874
|
+
|
875
|
+
attr_accessor :RequestId
|
876
|
+
|
877
|
+
def initialize(requestid=nil)
|
878
|
+
@RequestId = requestid
|
879
|
+
end
|
880
|
+
|
881
|
+
def deserialize(params)
|
882
|
+
@RequestId = params['RequestId']
|
883
|
+
end
|
884
|
+
end
|
885
|
+
|
886
|
+
# ModifyTopicAttribute请求参数结构体
|
887
|
+
class ModifyTopicAttributeRequest < TencentCloud::Common::AbstractModel
|
888
|
+
# @param TopicName: 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
889
|
+
# @type TopicName: String
|
890
|
+
# @param MaxMsgSize: 消息最大长度。取值范围1024 - 65536 Byte(即1 - 64K),默认值65536。
|
891
|
+
# @type MaxMsgSize: Integer
|
892
|
+
# @param MsgRetentionSeconds: 消息保存时间。取值范围60 - 86400 s(即1分钟 - 1天),默认值86400。
|
893
|
+
# @type MsgRetentionSeconds: Integer
|
894
|
+
# @param Trace: 是否开启消息轨迹标识,true表示开启,false表示不开启,不填表示不开启。
|
895
|
+
# @type Trace: Boolean
|
896
|
+
|
897
|
+
attr_accessor :TopicName, :MaxMsgSize, :MsgRetentionSeconds, :Trace
|
898
|
+
|
899
|
+
def initialize(topicname=nil, maxmsgsize=nil, msgretentionseconds=nil, trace=nil)
|
900
|
+
@TopicName = topicname
|
901
|
+
@MaxMsgSize = maxmsgsize
|
902
|
+
@MsgRetentionSeconds = msgretentionseconds
|
903
|
+
@Trace = trace
|
904
|
+
end
|
905
|
+
|
906
|
+
def deserialize(params)
|
907
|
+
@TopicName = params['TopicName']
|
908
|
+
@MaxMsgSize = params['MaxMsgSize']
|
909
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
910
|
+
@Trace = params['Trace']
|
911
|
+
end
|
912
|
+
end
|
913
|
+
|
914
|
+
# ModifyTopicAttribute返回参数结构体
|
915
|
+
class ModifyTopicAttributeResponse < TencentCloud::Common::AbstractModel
|
916
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
917
|
+
# @type RequestId: String
|
918
|
+
|
919
|
+
attr_accessor :RequestId
|
920
|
+
|
921
|
+
def initialize(requestid=nil)
|
922
|
+
@RequestId = requestid
|
923
|
+
end
|
924
|
+
|
925
|
+
def deserialize(params)
|
926
|
+
@RequestId = params['RequestId']
|
927
|
+
end
|
928
|
+
end
|
929
|
+
|
930
|
+
# 批量queue属性信息
|
931
|
+
class QueueSet < TencentCloud::Common::AbstractModel
|
932
|
+
# @param QueueId: 消息队列ID。
|
933
|
+
# @type QueueId: String
|
934
|
+
# @param QueueName: 消息队列名字。
|
935
|
+
# @type QueueName: String
|
936
|
+
# @param Qps: 每秒钟生产消息条数的限制,消费消息的大小是该值的1.1倍。
|
937
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
938
|
+
# @type Qps: Integer
|
939
|
+
# @param Bps: 带宽限制。
|
940
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
941
|
+
# @type Bps: Integer
|
942
|
+
# @param MaxDelaySeconds: 飞行消息最大保留时间。
|
943
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
944
|
+
# @type MaxDelaySeconds: Integer
|
945
|
+
# @param MaxMsgHeapNum: 最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
|
946
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
947
|
+
# @type MaxMsgHeapNum: Integer
|
948
|
+
# @param PollingWaitSeconds: 消息接收长轮询等待时间。取值范围0 - 30秒,默认值0。
|
949
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
950
|
+
# @type PollingWaitSeconds: Integer
|
951
|
+
# @param MsgRetentionSeconds: 消息保留周期。取值范围60-1296000秒(1min-15天),默认值345600秒(4 天)。
|
952
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
953
|
+
# @type MsgRetentionSeconds: Integer
|
954
|
+
# @param VisibilityTimeout: 消息可见性超时。取值范围1 - 43200秒(即12小时内),默认值30。
|
955
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
956
|
+
# @type VisibilityTimeout: Integer
|
957
|
+
# @param MaxMsgSize: 消息最大长度。取值范围1024 - 1048576 Byte(即1K - 1024K),默认值65536。
|
958
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
959
|
+
# @type MaxMsgSize: Integer
|
960
|
+
# @param RewindSeconds: 回溯队列的消息回溯时间最大值,取值范围0 - 43200秒,0表示不开启消息回溯。
|
961
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
962
|
+
# @type RewindSeconds: Integer
|
963
|
+
# @param CreateTime: 队列的创建时间。返回 Unix 时间戳,精确到秒。
|
964
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
965
|
+
# @type CreateTime: Integer
|
966
|
+
# @param LastModifyTime: 最后一次修改队列属性的时间。返回 Unix 时间戳,精确到秒。
|
967
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
968
|
+
# @type LastModifyTime: Integer
|
969
|
+
# @param ActiveMsgNum: 在队列中处于 Active 状态(不处于被消费状态)的消息总数,为近似值。
|
970
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
971
|
+
# @type ActiveMsgNum: Integer
|
972
|
+
# @param InactiveMsgNum: 在队列中处于 Inactive 状态(正处于被消费状态)的消息总数,为近似值。
|
973
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
974
|
+
# @type InactiveMsgNum: Integer
|
975
|
+
# @param DelayMsgNum: 延迟消息数。
|
976
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
977
|
+
# @type DelayMsgNum: Integer
|
978
|
+
# @param RewindMsgNum: 已调用 DelMsg 接口删除,但还在回溯保留时间内的消息数量。
|
979
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
980
|
+
# @type RewindMsgNum: Integer
|
981
|
+
# @param MinMsgTime: 消息最小未消费时间,单位为秒。
|
982
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
983
|
+
# @type MinMsgTime: Integer
|
984
|
+
# @param Transaction: 事务消息队列。true表示是事务消息,false表示不是事务消息。
|
985
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
986
|
+
# @type Transaction: Boolean
|
987
|
+
# @param DeadLetterSource: 死信队列。
|
988
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
989
|
+
# @type DeadLetterSource: Array
|
990
|
+
# @param DeadLetterPolicy: 死信队列策略。
|
991
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
992
|
+
# @type DeadLetterPolicy: :class:`Tencentcloud::Cmq.v20190304.models.DeadLetterPolicy`
|
993
|
+
# @param TransactionPolicy: 事务消息策略。
|
994
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
995
|
+
# @type TransactionPolicy: :class:`Tencentcloud::Cmq.v20190304.models.TransactionPolicy`
|
996
|
+
# @param CreateUin: 创建者Uin。
|
997
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
998
|
+
# @type CreateUin: Integer
|
999
|
+
# @param Tags: 关联的标签。
|
1000
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1001
|
+
# @type Tags: Array
|
1002
|
+
# @param Trace: 消息轨迹。true表示开启,false表示不开启。
|
1003
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1004
|
+
# @type Trace: Boolean
|
1005
|
+
|
1006
|
+
attr_accessor :QueueId, :QueueName, :Qps, :Bps, :MaxDelaySeconds, :MaxMsgHeapNum, :PollingWaitSeconds, :MsgRetentionSeconds, :VisibilityTimeout, :MaxMsgSize, :RewindSeconds, :CreateTime, :LastModifyTime, :ActiveMsgNum, :InactiveMsgNum, :DelayMsgNum, :RewindMsgNum, :MinMsgTime, :Transaction, :DeadLetterSource, :DeadLetterPolicy, :TransactionPolicy, :CreateUin, :Tags, :Trace
|
1007
|
+
|
1008
|
+
def initialize(queueid=nil, queuename=nil, qps=nil, bps=nil, maxdelayseconds=nil, maxmsgheapnum=nil, pollingwaitseconds=nil, msgretentionseconds=nil, visibilitytimeout=nil, maxmsgsize=nil, rewindseconds=nil, createtime=nil, lastmodifytime=nil, activemsgnum=nil, inactivemsgnum=nil, delaymsgnum=nil, rewindmsgnum=nil, minmsgtime=nil, transaction=nil, deadlettersource=nil, deadletterpolicy=nil, transactionpolicy=nil, createuin=nil, tags=nil, trace=nil)
|
1009
|
+
@QueueId = queueid
|
1010
|
+
@QueueName = queuename
|
1011
|
+
@Qps = qps
|
1012
|
+
@Bps = bps
|
1013
|
+
@MaxDelaySeconds = maxdelayseconds
|
1014
|
+
@MaxMsgHeapNum = maxmsgheapnum
|
1015
|
+
@PollingWaitSeconds = pollingwaitseconds
|
1016
|
+
@MsgRetentionSeconds = msgretentionseconds
|
1017
|
+
@VisibilityTimeout = visibilitytimeout
|
1018
|
+
@MaxMsgSize = maxmsgsize
|
1019
|
+
@RewindSeconds = rewindseconds
|
1020
|
+
@CreateTime = createtime
|
1021
|
+
@LastModifyTime = lastmodifytime
|
1022
|
+
@ActiveMsgNum = activemsgnum
|
1023
|
+
@InactiveMsgNum = inactivemsgnum
|
1024
|
+
@DelayMsgNum = delaymsgnum
|
1025
|
+
@RewindMsgNum = rewindmsgnum
|
1026
|
+
@MinMsgTime = minmsgtime
|
1027
|
+
@Transaction = transaction
|
1028
|
+
@DeadLetterSource = deadlettersource
|
1029
|
+
@DeadLetterPolicy = deadletterpolicy
|
1030
|
+
@TransactionPolicy = transactionpolicy
|
1031
|
+
@CreateUin = createuin
|
1032
|
+
@Tags = tags
|
1033
|
+
@Trace = trace
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
def deserialize(params)
|
1037
|
+
@QueueId = params['QueueId']
|
1038
|
+
@QueueName = params['QueueName']
|
1039
|
+
@Qps = params['Qps']
|
1040
|
+
@Bps = params['Bps']
|
1041
|
+
@MaxDelaySeconds = params['MaxDelaySeconds']
|
1042
|
+
@MaxMsgHeapNum = params['MaxMsgHeapNum']
|
1043
|
+
@PollingWaitSeconds = params['PollingWaitSeconds']
|
1044
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
1045
|
+
@VisibilityTimeout = params['VisibilityTimeout']
|
1046
|
+
@MaxMsgSize = params['MaxMsgSize']
|
1047
|
+
@RewindSeconds = params['RewindSeconds']
|
1048
|
+
@CreateTime = params['CreateTime']
|
1049
|
+
@LastModifyTime = params['LastModifyTime']
|
1050
|
+
@ActiveMsgNum = params['ActiveMsgNum']
|
1051
|
+
@InactiveMsgNum = params['InactiveMsgNum']
|
1052
|
+
@DelayMsgNum = params['DelayMsgNum']
|
1053
|
+
@RewindMsgNum = params['RewindMsgNum']
|
1054
|
+
@MinMsgTime = params['MinMsgTime']
|
1055
|
+
@Transaction = params['Transaction']
|
1056
|
+
unless params['DeadLetterSource'].nil?
|
1057
|
+
@DeadLetterSource = []
|
1058
|
+
params['DeadLetterSource'].each do |i|
|
1059
|
+
deadlettersource_tmp = DeadLetterSource.new
|
1060
|
+
deadlettersource_tmp.deserialize(i)
|
1061
|
+
@DeadLetterSource << deadlettersource_tmp
|
1062
|
+
end
|
1063
|
+
end
|
1064
|
+
unless params['DeadLetterPolicy'].nil?
|
1065
|
+
@DeadLetterPolicy = DeadLetterPolicy.new
|
1066
|
+
@DeadLetterPolicy.deserialize(params['DeadLetterPolicy'])
|
1067
|
+
end
|
1068
|
+
unless params['TransactionPolicy'].nil?
|
1069
|
+
@TransactionPolicy = TransactionPolicy.new
|
1070
|
+
@TransactionPolicy.deserialize(params['TransactionPolicy'])
|
1071
|
+
end
|
1072
|
+
@CreateUin = params['CreateUin']
|
1073
|
+
unless params['Tags'].nil?
|
1074
|
+
@Tags = []
|
1075
|
+
params['Tags'].each do |i|
|
1076
|
+
tag_tmp = Tag.new
|
1077
|
+
tag_tmp.deserialize(i)
|
1078
|
+
@Tags << tag_tmp
|
1079
|
+
end
|
1080
|
+
end
|
1081
|
+
@Trace = params['Trace']
|
1082
|
+
end
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
# RewindQueue请求参数结构体
|
1086
|
+
class RewindQueueRequest < TencentCloud::Common::AbstractModel
|
1087
|
+
# @param QueueName: 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
1088
|
+
# @type QueueName: String
|
1089
|
+
# @param StartConsumeTime: 设定该时间,则(Batch)receiveMessage接口,会按照生产消息的先后顺序消费该时间戳以后的消息。
|
1090
|
+
# @type StartConsumeTime: Integer
|
1091
|
+
|
1092
|
+
attr_accessor :QueueName, :StartConsumeTime
|
1093
|
+
|
1094
|
+
def initialize(queuename=nil, startconsumetime=nil)
|
1095
|
+
@QueueName = queuename
|
1096
|
+
@StartConsumeTime = startconsumetime
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
def deserialize(params)
|
1100
|
+
@QueueName = params['QueueName']
|
1101
|
+
@StartConsumeTime = params['StartConsumeTime']
|
1102
|
+
end
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
# RewindQueue返回参数结构体
|
1106
|
+
class RewindQueueResponse < TencentCloud::Common::AbstractModel
|
1107
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1108
|
+
# @type RequestId: String
|
1109
|
+
|
1110
|
+
attr_accessor :RequestId
|
1111
|
+
|
1112
|
+
def initialize(requestid=nil)
|
1113
|
+
@RequestId = requestid
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
def deserialize(params)
|
1117
|
+
@RequestId = params['RequestId']
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
# 订阅返回参数
|
1122
|
+
class Subscription < TencentCloud::Common::AbstractModel
|
1123
|
+
# @param SubscriptionName: 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
1124
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1125
|
+
# @type SubscriptionName: String
|
1126
|
+
# @param SubscriptionId: 订阅 ID。订阅 ID 在拉取监控数据时会用到。
|
1127
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1128
|
+
# @type SubscriptionId: String
|
1129
|
+
# @param TopicOwner: 订阅拥有者的 APPID。
|
1130
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1131
|
+
# @type TopicOwner: Integer
|
1132
|
+
# @param MsgCount: 该订阅待投递的消息数。
|
1133
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1134
|
+
# @type MsgCount: Integer
|
1135
|
+
# @param LastModifyTime: 最后一次修改订阅属性的时间。返回 Unix 时间戳,精确到秒。
|
1136
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1137
|
+
# @type LastModifyTime: Integer
|
1138
|
+
# @param CreateTime: 订阅的创建时间。返回 Unix 时间戳,精确到秒。
|
1139
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1140
|
+
# @type CreateTime: Integer
|
1141
|
+
# @param BindingKey: 表示订阅接收消息的过滤策略。
|
1142
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1143
|
+
# @type BindingKey: Array
|
1144
|
+
# @param Endpoint: 接收通知的 endpoint,根据协议 protocol 区分:对于 HTTP,endpoint 必须以http://开头,host 可以是域名或 IP;对于 queue,则填 queueName。
|
1145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1146
|
+
# @type Endpoint: String
|
1147
|
+
# @param FilterTags: 描述用户创建订阅时选择的过滤策略:
|
1148
|
+
# filterType = 1表示用户使用 filterTag 标签过滤
|
1149
|
+
# filterType = 2表示用户使用 bindingKey 过滤。
|
1150
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1151
|
+
# @type FilterTags: Array
|
1152
|
+
# @param Protocol: 订阅的协议,目前支持两种协议:HTTP、queue。使用 HTTP 协议,用户需自己搭建接受消息的 Web Server。使用 queue,消息会自动推送到 CMQ queue,用户可以并发地拉取消息。
|
1153
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1154
|
+
# @type Protocol: String
|
1155
|
+
# @param NotifyStrategy: 向 endpoint 推送消息出现错误时,CMQ 推送服务器的重试策略。取值有:
|
1156
|
+
# (1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;
|
1157
|
+
# (2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始 1s,后面是 2s,4s,8s...由于 Topic 消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是 EXPONENTIAL_DECAY_RETRY。
|
1158
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1159
|
+
# @type NotifyStrategy: String
|
1160
|
+
# @param NotifyContentFormat: 推送内容的格式。取值:(1)JSON;(2)SIMPLIFIED,即 raw 格式。如果 protocol 是 queue,则取值必须为 SIMPLIFIED。如果 protocol 是 HTTP,两个值均可以,默认值是 JSON。
|
1161
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1162
|
+
# @type NotifyContentFormat: String
|
1163
|
+
|
1164
|
+
attr_accessor :SubscriptionName, :SubscriptionId, :TopicOwner, :MsgCount, :LastModifyTime, :CreateTime, :BindingKey, :Endpoint, :FilterTags, :Protocol, :NotifyStrategy, :NotifyContentFormat
|
1165
|
+
|
1166
|
+
def initialize(subscriptionname=nil, subscriptionid=nil, topicowner=nil, msgcount=nil, lastmodifytime=nil, createtime=nil, bindingkey=nil, endpoint=nil, filtertags=nil, protocol=nil, notifystrategy=nil, notifycontentformat=nil)
|
1167
|
+
@SubscriptionName = subscriptionname
|
1168
|
+
@SubscriptionId = subscriptionid
|
1169
|
+
@TopicOwner = topicowner
|
1170
|
+
@MsgCount = msgcount
|
1171
|
+
@LastModifyTime = lastmodifytime
|
1172
|
+
@CreateTime = createtime
|
1173
|
+
@BindingKey = bindingkey
|
1174
|
+
@Endpoint = endpoint
|
1175
|
+
@FilterTags = filtertags
|
1176
|
+
@Protocol = protocol
|
1177
|
+
@NotifyStrategy = notifystrategy
|
1178
|
+
@NotifyContentFormat = notifycontentformat
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
def deserialize(params)
|
1182
|
+
@SubscriptionName = params['SubscriptionName']
|
1183
|
+
@SubscriptionId = params['SubscriptionId']
|
1184
|
+
@TopicOwner = params['TopicOwner']
|
1185
|
+
@MsgCount = params['MsgCount']
|
1186
|
+
@LastModifyTime = params['LastModifyTime']
|
1187
|
+
@CreateTime = params['CreateTime']
|
1188
|
+
@BindingKey = params['BindingKey']
|
1189
|
+
@Endpoint = params['Endpoint']
|
1190
|
+
@FilterTags = params['FilterTags']
|
1191
|
+
@Protocol = params['Protocol']
|
1192
|
+
@NotifyStrategy = params['NotifyStrategy']
|
1193
|
+
@NotifyContentFormat = params['NotifyContentFormat']
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
# 标签
|
1198
|
+
class Tag < TencentCloud::Common::AbstractModel
|
1199
|
+
# @param TagKey: 标签Key
|
1200
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1201
|
+
# @type TagKey: String
|
1202
|
+
# @param TagValue: 标签值
|
1203
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1204
|
+
# @type TagValue: String
|
1205
|
+
|
1206
|
+
attr_accessor :TagKey, :TagValue
|
1207
|
+
|
1208
|
+
def initialize(tagkey=nil, tagvalue=nil)
|
1209
|
+
@TagKey = tagkey
|
1210
|
+
@TagValue = tagvalue
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
def deserialize(params)
|
1214
|
+
@TagKey = params['TagKey']
|
1215
|
+
@TagValue = params['TagValue']
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# topic返回信息展示字段
|
1220
|
+
class TopicSet < TencentCloud::Common::AbstractModel
|
1221
|
+
# @param TopicId: 主题的 ID。
|
1222
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1223
|
+
# @type TopicId: String
|
1224
|
+
# @param TopicName: 主题名称。
|
1225
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1226
|
+
# @type TopicName: String
|
1227
|
+
# @param MsgRetentionSeconds: 消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
|
1228
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1229
|
+
# @type MsgRetentionSeconds: Integer
|
1230
|
+
# @param MaxMsgSize: 消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为65536。
|
1231
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1232
|
+
# @type MaxMsgSize: Integer
|
1233
|
+
# @param Qps: 每秒钟发布消息的条数。
|
1234
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1235
|
+
# @type Qps: Integer
|
1236
|
+
# @param FilterType: 描述用户创建订阅时选择的过滤策略:
|
1237
|
+
# FilterType = 1表示用户使用 FilterTag 标签过滤;
|
1238
|
+
# FilterType = 2表示用户使用 BindingKey 过滤。
|
1239
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1240
|
+
# @type FilterType: Integer
|
1241
|
+
# @param CreateTime: 主题的创建时间。返回 Unix 时间戳,精确到秒。
|
1242
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1243
|
+
# @type CreateTime: Integer
|
1244
|
+
# @param LastModifyTime: 最后一次修改主题属性的时间。返回 Unix 时间戳,精确到秒。
|
1245
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1246
|
+
# @type LastModifyTime: Integer
|
1247
|
+
# @param MsgCount: 当前该主题中消息数目(消息堆积数)。
|
1248
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1249
|
+
# @type MsgCount: Integer
|
1250
|
+
# @param CreateUin: 创建者 Uin,CAM 鉴权 resource 由该字段组合而成。
|
1251
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1252
|
+
# @type CreateUin: Integer
|
1253
|
+
# @param Tags: 关联的标签。
|
1254
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1255
|
+
# @type Tags: Array
|
1256
|
+
# @param Trace: 消息轨迹。true表示开启,false表示不开启。
|
1257
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1258
|
+
# @type Trace: Boolean
|
1259
|
+
|
1260
|
+
attr_accessor :TopicId, :TopicName, :MsgRetentionSeconds, :MaxMsgSize, :Qps, :FilterType, :CreateTime, :LastModifyTime, :MsgCount, :CreateUin, :Tags, :Trace
|
1261
|
+
|
1262
|
+
def initialize(topicid=nil, topicname=nil, msgretentionseconds=nil, maxmsgsize=nil, qps=nil, filtertype=nil, createtime=nil, lastmodifytime=nil, msgcount=nil, createuin=nil, tags=nil, trace=nil)
|
1263
|
+
@TopicId = topicid
|
1264
|
+
@TopicName = topicname
|
1265
|
+
@MsgRetentionSeconds = msgretentionseconds
|
1266
|
+
@MaxMsgSize = maxmsgsize
|
1267
|
+
@Qps = qps
|
1268
|
+
@FilterType = filtertype
|
1269
|
+
@CreateTime = createtime
|
1270
|
+
@LastModifyTime = lastmodifytime
|
1271
|
+
@MsgCount = msgcount
|
1272
|
+
@CreateUin = createuin
|
1273
|
+
@Tags = tags
|
1274
|
+
@Trace = trace
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
def deserialize(params)
|
1278
|
+
@TopicId = params['TopicId']
|
1279
|
+
@TopicName = params['TopicName']
|
1280
|
+
@MsgRetentionSeconds = params['MsgRetentionSeconds']
|
1281
|
+
@MaxMsgSize = params['MaxMsgSize']
|
1282
|
+
@Qps = params['Qps']
|
1283
|
+
@FilterType = params['FilterType']
|
1284
|
+
@CreateTime = params['CreateTime']
|
1285
|
+
@LastModifyTime = params['LastModifyTime']
|
1286
|
+
@MsgCount = params['MsgCount']
|
1287
|
+
@CreateUin = params['CreateUin']
|
1288
|
+
unless params['Tags'].nil?
|
1289
|
+
@Tags = []
|
1290
|
+
params['Tags'].each do |i|
|
1291
|
+
tag_tmp = Tag.new
|
1292
|
+
tag_tmp.deserialize(i)
|
1293
|
+
@Tags << tag_tmp
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
@Trace = params['Trace']
|
1297
|
+
end
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
# TransactionPolicy
|
1301
|
+
class TransactionPolicy < TencentCloud::Common::AbstractModel
|
1302
|
+
# @param FirstQueryInterval: 第一次回查时间。
|
1303
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1304
|
+
# @type FirstQueryInterval: Integer
|
1305
|
+
# @param MaxQueryCount: 最大查询次数。
|
1306
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1307
|
+
# @type MaxQueryCount: Integer
|
1308
|
+
|
1309
|
+
attr_accessor :FirstQueryInterval, :MaxQueryCount
|
1310
|
+
|
1311
|
+
def initialize(firstqueryinterval=nil, maxquerycount=nil)
|
1312
|
+
@FirstQueryInterval = firstqueryinterval
|
1313
|
+
@MaxQueryCount = maxquerycount
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
def deserialize(params)
|
1317
|
+
@FirstQueryInterval = params['FirstQueryInterval']
|
1318
|
+
@MaxQueryCount = params['MaxQueryCount']
|
1319
|
+
end
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
# UnbindDeadLetter请求参数结构体
|
1323
|
+
class UnbindDeadLetterRequest < TencentCloud::Common::AbstractModel
|
1324
|
+
# @param QueueName: 死信策略源队列名称,调用本接口会清空该队列的死信队列策略。
|
1325
|
+
# @type QueueName: String
|
1326
|
+
|
1327
|
+
attr_accessor :QueueName
|
1328
|
+
|
1329
|
+
def initialize(queuename=nil)
|
1330
|
+
@QueueName = queuename
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
def deserialize(params)
|
1334
|
+
@QueueName = params['QueueName']
|
1335
|
+
end
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
# UnbindDeadLetter返回参数结构体
|
1339
|
+
class UnbindDeadLetterResponse < TencentCloud::Common::AbstractModel
|
1340
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1341
|
+
# @type RequestId: String
|
1342
|
+
|
1343
|
+
attr_accessor :RequestId
|
1344
|
+
|
1345
|
+
def initialize(requestid=nil)
|
1346
|
+
@RequestId = requestid
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
def deserialize(params)
|
1350
|
+
@RequestId = params['RequestId']
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
end
|
1355
|
+
end
|
1356
|
+
end
|
1357
|
+
|