tencentcloud-sdk-tdmq 1.0.266 → 1.0.269
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 +44 -11
- 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: 679ff86434237f380a42227fc29abf96e1b5f716
|
4
|
+
data.tar.gz: 152f64729398b56f9a8e9aff47fbe730a7c161e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26b2d2a6f4a41b80724148a649c5f8f6a293ef53eab59200dc73bb6b8988d13d85223f0c6a725d62d47b643e23f0076b5ff5e71e37d96d3eb8b8db50676e76f9
|
7
|
+
data.tar.gz: e495773789f374b0965f100e9d946e5838cdd894db1eb316109745d61f5d3db4cd8c703a15f4c8384d9a3aa3269d90f192ec0d7706f35fcb15116b73e8ba81fc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.269
|
data/lib/v20200217/models.rb
CHANGED
@@ -74,13 +74,17 @@ module TencentCloud
|
|
74
74
|
# @param Tags: 标签
|
75
75
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
76
76
|
# @type Tags: Array
|
77
|
+
# @param Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
|
78
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
79
|
+
# @type Status: Integer
|
77
80
|
|
78
|
-
attr_accessor :Info, :Config, :Tags
|
81
|
+
attr_accessor :Info, :Config, :Tags, :Status
|
79
82
|
|
80
|
-
def initialize(info=nil, config=nil, tags=nil)
|
83
|
+
def initialize(info=nil, config=nil, tags=nil, status=nil)
|
81
84
|
@Info = info
|
82
85
|
@Config = config
|
83
86
|
@Tags = tags
|
87
|
+
@Status = status
|
84
88
|
end
|
85
89
|
|
86
90
|
def deserialize(params)
|
@@ -100,6 +104,7 @@ module TencentCloud
|
|
100
104
|
@Tags << tag_tmp
|
101
105
|
end
|
102
106
|
end
|
107
|
+
@Status = params['Status']
|
103
108
|
end
|
104
109
|
end
|
105
110
|
|
@@ -193,10 +198,19 @@ module TencentCloud
|
|
193
198
|
# @type UpdateTime: Integer
|
194
199
|
# @param Internal: 是否为内部Exchange(以amq.前缀开头的)
|
195
200
|
# @type Internal: Boolean
|
201
|
+
# @param AlternateExchange: 备用Exchange名称
|
202
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
203
|
+
# @type AlternateExchange: String
|
204
|
+
# @param AlternateExchangeDeleteMark: 备用Exchange是否删除标识: true(已删除)
|
205
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
206
|
+
# @type AlternateExchangeDeleteMark: Boolean
|
207
|
+
# @param DelayType: 延迟Exchange的类别,为枚举类型:Direct, Fanout, Topic
|
208
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
209
|
+
# @type DelayType: String
|
196
210
|
|
197
|
-
attr_accessor :Name, :Type, :SourceBindedNum, :Remark, :DestBindedNum, :CreateTime, :UpdateTime, :Internal
|
211
|
+
attr_accessor :Name, :Type, :SourceBindedNum, :Remark, :DestBindedNum, :CreateTime, :UpdateTime, :Internal, :AlternateExchange, :AlternateExchangeDeleteMark, :DelayType
|
198
212
|
|
199
|
-
def initialize(name=nil, type=nil, sourcebindednum=nil, remark=nil, destbindednum=nil, createtime=nil, updatetime=nil, internal=nil)
|
213
|
+
def initialize(name=nil, type=nil, sourcebindednum=nil, remark=nil, destbindednum=nil, createtime=nil, updatetime=nil, internal=nil, alternateexchange=nil, alternateexchangedeletemark=nil, delaytype=nil)
|
200
214
|
@Name = name
|
201
215
|
@Type = type
|
202
216
|
@SourceBindedNum = sourcebindednum
|
@@ -205,6 +219,9 @@ module TencentCloud
|
|
205
219
|
@CreateTime = createtime
|
206
220
|
@UpdateTime = updatetime
|
207
221
|
@Internal = internal
|
222
|
+
@AlternateExchange = alternateexchange
|
223
|
+
@AlternateExchangeDeleteMark = alternateexchangedeletemark
|
224
|
+
@DelayType = delaytype
|
208
225
|
end
|
209
226
|
|
210
227
|
def deserialize(params)
|
@@ -216,6 +233,9 @@ module TencentCloud
|
|
216
233
|
@CreateTime = params['CreateTime']
|
217
234
|
@UpdateTime = params['UpdateTime']
|
218
235
|
@Internal = params['Internal']
|
236
|
+
@AlternateExchange = params['AlternateExchange']
|
237
|
+
@AlternateExchangeDeleteMark = params['AlternateExchangeDeleteMark']
|
238
|
+
@DelayType = params['DelayType']
|
219
239
|
end
|
220
240
|
end
|
221
241
|
|
@@ -351,10 +371,13 @@ module TencentCloud
|
|
351
371
|
# @type Username: String
|
352
372
|
# @param Password: 密码
|
353
373
|
# @type Password: String
|
374
|
+
# @param Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
|
375
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
376
|
+
# @type Status: Integer
|
354
377
|
|
355
|
-
attr_accessor :VHostId, :MsgTtl, :Remark, :CreateTime, :UpdateTime, :Username, :Password
|
378
|
+
attr_accessor :VHostId, :MsgTtl, :Remark, :CreateTime, :UpdateTime, :Username, :Password, :Status
|
356
379
|
|
357
|
-
def initialize(vhostid=nil, msgttl=nil, remark=nil, createtime=nil, updatetime=nil, username=nil, password=nil)
|
380
|
+
def initialize(vhostid=nil, msgttl=nil, remark=nil, createtime=nil, updatetime=nil, username=nil, password=nil, status=nil)
|
358
381
|
@VHostId = vhostid
|
359
382
|
@MsgTtl = msgttl
|
360
383
|
@Remark = remark
|
@@ -362,6 +385,7 @@ module TencentCloud
|
|
362
385
|
@UpdateTime = updatetime
|
363
386
|
@Username = username
|
364
387
|
@Password = password
|
388
|
+
@Status = status
|
365
389
|
end
|
366
390
|
|
367
391
|
def deserialize(params)
|
@@ -372,6 +396,7 @@ module TencentCloud
|
|
372
396
|
@UpdateTime = params['UpdateTime']
|
373
397
|
@Username = params['Username']
|
374
398
|
@Password = params['Password']
|
399
|
+
@Status = params['Status']
|
375
400
|
end
|
376
401
|
end
|
377
402
|
|
@@ -1204,7 +1229,7 @@ module TencentCloud
|
|
1204
1229
|
# @type Exchange: String
|
1205
1230
|
# @param VHosts: 交换机所在的vhost,目前支持在单个vhost下创建主题
|
1206
1231
|
# @type VHosts: Array
|
1207
|
-
# @param Type: 交换机类型,可选值为Direct, Fanout, Topic
|
1232
|
+
# @param Type: 交换机类型,可选值为Direct, Fanout, Topic, x-delayed-message
|
1208
1233
|
# @type Type: String
|
1209
1234
|
# @param ClusterId: 集群ID
|
1210
1235
|
# @type ClusterId: String
|
@@ -1212,16 +1237,19 @@ module TencentCloud
|
|
1212
1237
|
# @type Remark: String
|
1213
1238
|
# @param AlternateExchange: 备用交换机名称
|
1214
1239
|
# @type AlternateExchange: String
|
1240
|
+
# @param DelayedType: 延迟交换机类型,可选值为Direct, Fanout, Topic, 不允许为x-delayed-message
|
1241
|
+
# @type DelayedType: String
|
1215
1242
|
|
1216
|
-
attr_accessor :Exchange, :VHosts, :Type, :ClusterId, :Remark, :AlternateExchange
|
1243
|
+
attr_accessor :Exchange, :VHosts, :Type, :ClusterId, :Remark, :AlternateExchange, :DelayedType
|
1217
1244
|
|
1218
|
-
def initialize(exchange=nil, vhosts=nil, type=nil, clusterid=nil, remark=nil, alternateexchange=nil)
|
1245
|
+
def initialize(exchange=nil, vhosts=nil, type=nil, clusterid=nil, remark=nil, alternateexchange=nil, delayedtype=nil)
|
1219
1246
|
@Exchange = exchange
|
1220
1247
|
@VHosts = vhosts
|
1221
1248
|
@Type = type
|
1222
1249
|
@ClusterId = clusterid
|
1223
1250
|
@Remark = remark
|
1224
1251
|
@AlternateExchange = alternateexchange
|
1252
|
+
@DelayedType = delayedtype
|
1225
1253
|
end
|
1226
1254
|
|
1227
1255
|
def deserialize(params)
|
@@ -1231,6 +1259,7 @@ module TencentCloud
|
|
1231
1259
|
@ClusterId = params['ClusterId']
|
1232
1260
|
@Remark = params['Remark']
|
1233
1261
|
@AlternateExchange = params['AlternateExchange']
|
1262
|
+
@DelayedType = params['DelayedType']
|
1234
1263
|
end
|
1235
1264
|
end
|
1236
1265
|
|
@@ -3330,14 +3359,17 @@ module TencentCloud
|
|
3330
3359
|
# @type Limit: Integer
|
3331
3360
|
# @param NameKeyword: 按名称搜索
|
3332
3361
|
# @type NameKeyword: String
|
3362
|
+
# @param VHostIdList: VHostId 列表过滤
|
3363
|
+
# @type VHostIdList: Array
|
3333
3364
|
|
3334
|
-
attr_accessor :ClusterId, :Offset, :Limit, :NameKeyword
|
3365
|
+
attr_accessor :ClusterId, :Offset, :Limit, :NameKeyword, :VHostIdList
|
3335
3366
|
|
3336
|
-
def initialize(clusterid=nil, offset=nil, limit=nil, namekeyword=nil)
|
3367
|
+
def initialize(clusterid=nil, offset=nil, limit=nil, namekeyword=nil, vhostidlist=nil)
|
3337
3368
|
@ClusterId = clusterid
|
3338
3369
|
@Offset = offset
|
3339
3370
|
@Limit = limit
|
3340
3371
|
@NameKeyword = namekeyword
|
3372
|
+
@VHostIdList = vhostidlist
|
3341
3373
|
end
|
3342
3374
|
|
3343
3375
|
def deserialize(params)
|
@@ -3345,6 +3377,7 @@ module TencentCloud
|
|
3345
3377
|
@Offset = params['Offset']
|
3346
3378
|
@Limit = params['Limit']
|
3347
3379
|
@NameKeyword = params['NameKeyword']
|
3380
|
+
@VHostIdList = params['VHostIdList']
|
3348
3381
|
end
|
3349
3382
|
end
|
3350
3383
|
|
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: 1.0.
|
4
|
+
version: 1.0.269
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|