tencentcloud-sdk-trocket 3.0.1118 → 3.0.1119

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 +13 -13
  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: 9a3c87a5627adb3ea4e6e3fcab0bc789be3a50ae
4
+ data.tar.gz: c00877ce521ff2d7f6c7e40aa0790eb29e162c14
5
5
  SHA512:
6
- metadata.gz: 256f659450d70d29a87db02d885452e2a71a298e2282a6fa04ee93794e1b119bbeb322f7928a667734bae2348c12c363afa825301a8439fa8a31f4871db0680c
7
- data.tar.gz: 9c222080db8f581b07b742188eb2210c607f1b9c0963deb03a3452e5e2d0afc73d1e907bad4637c91e89c36106e2a4414f6d42056940d0efc7b708ca398617e0
6
+ metadata.gz: 026db3f197ebef23f7ea53b0c810cc2aacf891c8d75638ab9a0645587a222210e0f18b228e8aede08b322db43ac5896f76a44deceae87d106671e3deb5b21586
7
+ data.tar.gz: d068f8b3857fa5a3be288a469ea5fdee85cfd8f17873fc725d9b91be990b2ac9adbfa5caab6f05ee86134689f4e9c3da4db9a718a523496c096f4ec38a7313f6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1118
1
+ 3.0.1119
@@ -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']
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.1119
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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common