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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211109/models.rb +37 -2
- 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: 7fbbed0b6f5cbf9cd97009ac553e167598a5eafd
|
4
|
+
data.tar.gz: 55b985af5c03ddfae0da0f216bdf558be8df2c1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac83d8c1b61559ffdc937db16e567ed6dd842c8cef81ac28cc93a4c9190ad5fb753d1a44bee1768309b45a9b1b17ce839a2be450880a710cf5ca111b653608f3
|
7
|
+
data.tar.gz: 8f0eaaedc2398935fe1e7046c5a114da7690a163be478d9543ccfc449d632db1203969261beb14b8065a1f86d1c4aea4fcde147c338cc9f88886b6fefa37b7e7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.224
|
data/lib/v20211109/models.rb
CHANGED
@@ -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.
|
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-
|
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
|