tencentcloud-sdk-thpc 1.0.223 → 1.0.224

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/v20211109/models.rb +37 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ca2943b5f37da7addcda8e0591de97ebc313837
4
- data.tar.gz: 1f37bc8dabc7909a9193457918bb5adf7865096f
3
+ metadata.gz: 7fbbed0b6f5cbf9cd97009ac553e167598a5eafd
4
+ data.tar.gz: 55b985af5c03ddfae0da0f216bdf558be8df2c1d
5
5
  SHA512:
6
- metadata.gz: 2c2b121fed8b800de9d3c8a915a93a37a70eeee5a4407f13b76ac7edfad0a69e282109504d54f1895129ef35ed6eaf15b6b4d64d625616e344f770840a2b5079
7
- data.tar.gz: 222774200defa2ddb2e621f5e34ca2dccff966e99463d4f95c1018d3f2421d26f85e83ad732ec765285205c50fd05277c40d17beee26676ee740b2638c5ee510
6
+ metadata.gz: ac83d8c1b61559ffdc937db16e567ed6dd842c8cef81ac28cc93a4c9190ad5fb753d1a44bee1768309b45a9b1b17ce839a2be450880a710cf5ca111b653608f3
7
+ data.tar.gz: 8f0eaaedc2398935fe1e7046c5a114da7690a163be478d9543ccfc449d632db1203969261beb14b8065a1f86d1c4aea4fcde147c338cc9f88886b6fefa37b7e7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.223
1
+ 1.0.224
@@ -272,6 +272,30 @@ module TencentCloud
272
272
  end
273
273
  end
274
274
 
275
+ # 描述GooseFS挂载信息
276
+ class GooseFSOption < TencentCloud::Common::AbstractModel
277
+ # @param LocalPath: 文件系统本地挂载路径
278
+ # @type LocalPath: String
279
+ # @param RemotePath: 文件系统远程挂载路径
280
+ # @type RemotePath: String
281
+ # @param Masters: 文件系统master的ip和端口
282
+ # @type Masters: Array
283
+
284
+ attr_accessor :LocalPath, :RemotePath, :Masters
285
+
286
+ def initialize(localpath=nil, remotepath=nil, masters=nil)
287
+ @LocalPath = localpath
288
+ @RemotePath = remotepath
289
+ @Masters = masters
290
+ end
291
+
292
+ def deserialize(params)
293
+ @LocalPath = params['LocalPath']
294
+ @RemotePath = params['RemotePath']
295
+ @Masters = params['Masters']
296
+ end
297
+ end
298
+
275
299
  # 描述了实例的计费模式
276
300
  class InstanceChargePrepaid < TencentCloud::Common::AbstractModel
277
301
  # @param Period: 购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36, 48, 60。
@@ -419,11 +443,14 @@ module TencentCloud
419
443
  class StorageOption < TencentCloud::Common::AbstractModel
420
444
  # @param CFSOptions: 集群挂载CFS文件系统选项
421
445
  # @type CFSOptions: Array
446
+ # @param GooseFSOptions: 集群挂在GooseFS文件系统选项
447
+ # @type GooseFSOptions: Array
422
448
 
423
- attr_accessor :CFSOptions
449
+ attr_accessor :CFSOptions, :GooseFSOptions
424
450
 
425
- def initialize(cfsoptions=nil)
451
+ def initialize(cfsoptions=nil, goosefsoptions=nil)
426
452
  @CFSOptions = cfsoptions
453
+ @GooseFSOptions = goosefsoptions
427
454
  end
428
455
 
429
456
  def deserialize(params)
@@ -435,6 +462,14 @@ module TencentCloud
435
462
  @CFSOptions << cfsoption_tmp
436
463
  end
437
464
  end
465
+ unless params['GooseFSOptions'].nil?
466
+ @GooseFSOptions = []
467
+ params['GooseFSOptions'].each do |i|
468
+ goosefsoption_tmp = GooseFSOption.new
469
+ goosefsoption_tmp.deserialize(i)
470
+ @GooseFSOptions << goosefsoption_tmp
471
+ end
472
+ end
438
473
  end
439
474
  end
440
475
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-thpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.223
4
+ version: 1.0.224
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-14 00:00:00.000000000 Z
11
+ date: 2021-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common