tencentcloud-sdk-tdmq 1.0.268 → 1.0.271

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200217/models.rb +44 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a0ce84981ddef11dea2d84e86e350f9260e49c1f
4
- data.tar.gz: 83c63f3732524b454c78fffb813d5bfecfd1a879
3
+ metadata.gz: 71c2717dd17b0f0833df240c86e4228cd4bcc6d8
4
+ data.tar.gz: be81ad32bdb2d1a49b2d0335d0c4452fd62855ff
5
5
  SHA512:
6
- metadata.gz: 3e98ee192e8a42b5cd6733915c6173d0c6416c5b47cd6832770e07779019ba24ca48ab3f5bdb6b7b34a67ec64d213e1d12fd04132d9eaed04d114395a50126da
7
- data.tar.gz: 4de5b8686a1f3cd3dd98011e47e04f5e1a820a26c2d2eaf96754f71494ab37aa0a518ac5306d9d521ce35af95b2747452d9b61410a4594bb637d67e9d4b53cdc
6
+ metadata.gz: d3d7f7aadc7489a4813259bda41938b925204aad545f22ec68e181ab25b4223fed0d63c3c5208c5a03fad7c070ca2e4ff30c82f1fb3fcdaeddf71cee688c2e08
7
+ data.tar.gz: d3ad1d7fe63565e86fb601569a858e1b7cf94ef858e505b1d52f2303e0395bfa50cf1eb6e15bd28bebaca1854449f6bd2aeca8d0fded7b1b070386374cc02498
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.268
1
+ 1.0.271
@@ -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.268
4
+ version: 1.0.271
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-03-02 00:00:00.000000000 Z
11
+ date: 2022-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common