tencentcloud-sdk-trocket 3.0.1118 → 3.0.1120

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/v20230308/models.rb +19 -15
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0d88e85d60da014e5cb293e93814f6547f376df
4
- data.tar.gz: 8df42ebd0d64f6f9fb79030890663b61816624c9
3
+ metadata.gz: bb22f05cdfd0ac33213772593f2201cc685348cb
4
+ data.tar.gz: 46a35935a0b960af50a005a37299c90e6c16158f
5
5
  SHA512:
6
- metadata.gz: 256f659450d70d29a87db02d885452e2a71a298e2282a6fa04ee93794e1b119bbeb322f7928a667734bae2348c12c363afa825301a8439fa8a31f4871db0680c
7
- data.tar.gz: 9c222080db8f581b07b742188eb2210c607f1b9c0963deb03a3452e5e2d0afc73d1e907bad4637c91e89c36106e2a4414f6d42056940d0efc7b708ca398617e0
6
+ metadata.gz: 13cdf9327e5a3fb53d452d162788f6d64889455decaedb1e3865ff2a043df2c37319a07d9f7494e939055d4ddd1131a98e68f70cb8c791c3432c2e5f717180cc
7
+ data.tar.gz: e2e0b0fe404367bbad63e1c7cc7d09c5e48c0cc10f3346024fd214ce95fd11b6d976a446f4253c0cd5cd18c18732910864c189e6a56f6c10d630dccf96a8f71d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1118
1
+ 3.0.1120
@@ -296,12 +296,12 @@ module TencentCloud
296
296
  # @type Name: String
297
297
  # @param SkuCode: 商品规格,从 [DescribeProductSKUs](https://cloud.tencent.com/document/api/1493/107676) 接口中的 [ProductSKU](https://cloud.tencent.com/document/api/1493/96031#ProductSKU) 出参获得。
298
298
  # @type SkuCode: String
299
+ # @param VpcList: 集群绑定的VPC信息
300
+ # @type VpcList: Array
299
301
  # @param Remark: 备注信息
300
302
  # @type Remark: String
301
303
  # @param TagList: 标签列表
302
304
  # @type TagList: Array
303
- # @param VpcList: 集群绑定的VPC信息,必填
304
- # @type VpcList: Array
305
305
  # @param EnablePublic: 是否开启公网,默认值为false表示不开启
306
306
  # @type EnablePublic: Boolean
307
307
  # @param BillingFlow: 公网是否按流量计费,默认值为false表示不按流量计费
@@ -330,15 +330,15 @@ module TencentCloud
330
330
  # @param ZoneIds: 部署可用区列表,从 [DescribeZones](https://cloud.tencent.com/document/product/1596/77929) 接口返回中的 [ZoneInfo](https://cloud.tencent.com/document/api/1596/77932#ZoneInfo) 数据结构中获得。
331
331
  # @type ZoneIds: Array
332
332
 
333
- attr_accessor :InstanceType, :Name, :SkuCode, :Remark, :TagList, :VpcList, :EnablePublic, :BillingFlow, :Bandwidth, :IpRules, :MessageRetention, :PayMode, :RenewFlag, :TimeSpan, :MaxTopicNum, :ZoneIds
333
+ attr_accessor :InstanceType, :Name, :SkuCode, :VpcList, :Remark, :TagList, :EnablePublic, :BillingFlow, :Bandwidth, :IpRules, :MessageRetention, :PayMode, :RenewFlag, :TimeSpan, :MaxTopicNum, :ZoneIds
334
334
 
335
- def initialize(instancetype=nil, name=nil, skucode=nil, remark=nil, taglist=nil, vpclist=nil, enablepublic=nil, billingflow=nil, bandwidth=nil, iprules=nil, messageretention=nil, paymode=nil, renewflag=nil, timespan=nil, maxtopicnum=nil, zoneids=nil)
335
+ def initialize(instancetype=nil, name=nil, skucode=nil, vpclist=nil, remark=nil, taglist=nil, enablepublic=nil, billingflow=nil, bandwidth=nil, iprules=nil, messageretention=nil, paymode=nil, renewflag=nil, timespan=nil, maxtopicnum=nil, zoneids=nil)
336
336
  @InstanceType = instancetype
337
337
  @Name = name
338
338
  @SkuCode = skucode
339
+ @VpcList = vpclist
339
340
  @Remark = remark
340
341
  @TagList = taglist
341
- @VpcList = vpclist
342
342
  @EnablePublic = enablepublic
343
343
  @BillingFlow = billingflow
344
344
  @Bandwidth = bandwidth
@@ -355,6 +355,14 @@ module TencentCloud
355
355
  @InstanceType = params['InstanceType']
356
356
  @Name = params['Name']
357
357
  @SkuCode = params['SkuCode']
358
+ unless params['VpcList'].nil?
359
+ @VpcList = []
360
+ params['VpcList'].each do |i|
361
+ vpcinfo_tmp = VpcInfo.new
362
+ vpcinfo_tmp.deserialize(i)
363
+ @VpcList << vpcinfo_tmp
364
+ end
365
+ end
358
366
  @Remark = params['Remark']
359
367
  unless params['TagList'].nil?
360
368
  @TagList = []
@@ -364,14 +372,6 @@ module TencentCloud
364
372
  @TagList << tag_tmp
365
373
  end
366
374
  end
367
- unless params['VpcList'].nil?
368
- @VpcList = []
369
- params['VpcList'].each do |i|
370
- vpcinfo_tmp = VpcInfo.new
371
- vpcinfo_tmp.deserialize(i)
372
- @VpcList << vpcinfo_tmp
373
- end
374
- end
375
375
  @EnablePublic = params['EnablePublic']
376
376
  @BillingFlow = params['BillingFlow']
377
377
  @Bandwidth = params['Bandwidth']
@@ -3457,14 +3457,17 @@ module TencentCloud
3457
3457
  # @type Offset: Integer
3458
3458
  # @param Limit: 查询结果限制数量,默认20。
3459
3459
  # @type Limit: Integer
3460
+ # @param FromGroup: 按照消费组查询订阅的主题
3461
+ # @type FromGroup: String
3460
3462
 
3461
- attr_accessor :InstanceId, :Filters, :Offset, :Limit
3463
+ attr_accessor :InstanceId, :Filters, :Offset, :Limit, :FromGroup
3462
3464
 
3463
- def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil)
3465
+ def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil, fromgroup=nil)
3464
3466
  @InstanceId = instanceid
3465
3467
  @Filters = filters
3466
3468
  @Offset = offset
3467
3469
  @Limit = limit
3470
+ @FromGroup = fromgroup
3468
3471
  end
3469
3472
 
3470
3473
  def deserialize(params)
@@ -3479,6 +3482,7 @@ module TencentCloud
3479
3482
  end
3480
3483
  @Offset = params['Offset']
3481
3484
  @Limit = params['Limit']
3485
+ @FromGroup = params['FromGroup']
3482
3486
  end
3483
3487
  end
3484
3488
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1118
4
+ version: 3.0.1120
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-05 00:00:00.000000000 Z
11
+ date: 2025-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common