tencentcloud-sdk-thpc 3.0.489 → 3.0.490

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/v20220401/models.rb +98 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 421f66611f537f7a8d2e89dc77ded57bf3afebe9
4
- data.tar.gz: 689371d9318dd1f26739e7181b4ec08844f3c98e
3
+ metadata.gz: 85caf2e665c42dae3ebe2a94cdaa84f84d764e5f
4
+ data.tar.gz: b6b7d7503840690acf9c91da750ccaedffd61b9b
5
5
  SHA512:
6
- metadata.gz: 3e6685fbad1d05bb3b295a82c97845cbbad34e27c8123fc5afbf1b99c4bedc07c0a30f3116b6be426576b2389e16c22c9ff215deea76e63ee29dc7a1aa87398b
7
- data.tar.gz: 1553b9d44f09e431b0872146e06e1f6721c1cf2ff05edf12c575db5f921a2879b146cd2412fdffe66d0fcb2c44e120c999ce530c4a1556d90fd9673c25b35ae9
6
+ metadata.gz: 0414eb971c01a5a8b2cfb6867c3a09f9479d2524df7b5e95b8764fb2e8eb0a21abefcced3b64df9620a0ff408af398c81c7c7330cb98fb1a9df68fb6c4ef6a49
7
+ data.tar.gz: e5fcd6bfafadd50a06a3eb2796bc3d46fd51d867ebb8b6418a084bb5dea4e7a24bb3fb569ce100eda6e4211b7534ef905a3314bbe4f453361576ff949d962f15
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.489
1
+ 3.0.490
@@ -290,6 +290,37 @@ module TencentCloud
290
290
  end
291
291
  end
292
292
 
293
+ # CFS存储选项概览信息。
294
+ class CFSOptionOverview < TencentCloud::Common::AbstractModel
295
+ # @param LocalPath: 文件系统本地挂载路径。
296
+ # @type LocalPath: String
297
+ # @param RemotePath: 文件系统远程挂载ip及路径。
298
+ # @type RemotePath: String
299
+ # @param Protocol: 文件系统协议类型。
300
+ # <li>NFS 3.0。
301
+ # <li>NFS 4.0。
302
+ # <li>TURBO。
303
+ # @type Protocol: String
304
+ # @param StorageType: 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
305
+ # @type StorageType: String
306
+
307
+ attr_accessor :LocalPath, :RemotePath, :Protocol, :StorageType
308
+
309
+ def initialize(localpath=nil, remotepath=nil, protocol=nil, storagetype=nil)
310
+ @LocalPath = localpath
311
+ @RemotePath = remotepath
312
+ @Protocol = protocol
313
+ @StorageType = storagetype
314
+ end
315
+
316
+ def deserialize(params)
317
+ @LocalPath = params['LocalPath']
318
+ @RemotePath = params['RemotePath']
319
+ @Protocol = params['Protocol']
320
+ @StorageType = params['StorageType']
321
+ end
322
+ end
323
+
293
324
  # 符合条件的集群活动信息。
294
325
  class ClusterActivity < TencentCloud::Common::AbstractModel
295
326
  # @param ClusterId: 集群ID。
@@ -860,16 +891,23 @@ module TencentCloud
860
891
 
861
892
  # DescribeClusterStorageOption返回参数结构体
862
893
  class DescribeClusterStorageOptionResponse < TencentCloud::Common::AbstractModel
894
+ # @param StorageOption: 集群存储选项信息概览。
895
+ # @type StorageOption: :class:`Tencentcloud::Thpc.v20220401.models.StorageOptionOverview`
863
896
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
864
897
  # @type RequestId: String
865
898
 
866
- attr_accessor :RequestId
899
+ attr_accessor :StorageOption, :RequestId
867
900
 
868
- def initialize(requestid=nil)
901
+ def initialize(storageoption=nil, requestid=nil)
902
+ @StorageOption = storageoption
869
903
  @RequestId = requestid
870
904
  end
871
905
 
872
906
  def deserialize(params)
907
+ unless params['StorageOption'].nil?
908
+ @StorageOption = StorageOptionOverview.new
909
+ @StorageOption.deserialize(params['StorageOption'])
910
+ end
873
911
  @RequestId = params['RequestId']
874
912
  end
875
913
  end
@@ -995,6 +1033,30 @@ module TencentCloud
995
1033
  end
996
1034
  end
997
1035
 
1036
+ # GooseFS存储选项概览信息。
1037
+ class GooseFSOptionOverview < TencentCloud::Common::AbstractModel
1038
+ # @param LocalPath: 文件系统本地挂载路径。
1039
+ # @type LocalPath: String
1040
+ # @param RemotePath: 文件系统远程挂载路径。
1041
+ # @type RemotePath: String
1042
+ # @param Masters: 文件系统master的ip和端口。
1043
+ # @type Masters: Array
1044
+
1045
+ attr_accessor :LocalPath, :RemotePath, :Masters
1046
+
1047
+ def initialize(localpath=nil, remotepath=nil, masters=nil)
1048
+ @LocalPath = localpath
1049
+ @RemotePath = remotepath
1050
+ @Masters = masters
1051
+ end
1052
+
1053
+ def deserialize(params)
1054
+ @LocalPath = params['LocalPath']
1055
+ @RemotePath = params['RemotePath']
1056
+ @Masters = params['Masters']
1057
+ end
1058
+ end
1059
+
998
1060
  # 描述了实例的计费模式
999
1061
  class InstanceChargePrepaid < TencentCloud::Common::AbstractModel
1000
1062
  # @param Period: 购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36, 48, 60。
@@ -1434,6 +1496,40 @@ module TencentCloud
1434
1496
  end
1435
1497
  end
1436
1498
 
1499
+ # 集群存储选项概览信息。
1500
+ class StorageOptionOverview < TencentCloud::Common::AbstractModel
1501
+ # @param CFSOptions: CFS存储选项概览信息列表。
1502
+ # @type CFSOptions: Array
1503
+ # @param GooseFSOptions: GooseFS存储选项概览信息列表。
1504
+ # @type GooseFSOptions: Array
1505
+
1506
+ attr_accessor :CFSOptions, :GooseFSOptions
1507
+
1508
+ def initialize(cfsoptions=nil, goosefsoptions=nil)
1509
+ @CFSOptions = cfsoptions
1510
+ @GooseFSOptions = goosefsoptions
1511
+ end
1512
+
1513
+ def deserialize(params)
1514
+ unless params['CFSOptions'].nil?
1515
+ @CFSOptions = []
1516
+ params['CFSOptions'].each do |i|
1517
+ cfsoptionoverview_tmp = CFSOptionOverview.new
1518
+ cfsoptionoverview_tmp.deserialize(i)
1519
+ @CFSOptions << cfsoptionoverview_tmp
1520
+ end
1521
+ end
1522
+ unless params['GooseFSOptions'].nil?
1523
+ @GooseFSOptions = []
1524
+ params['GooseFSOptions'].each do |i|
1525
+ goosefsoptionoverview_tmp = GooseFSOptionOverview.new
1526
+ goosefsoptionoverview_tmp.deserialize(i)
1527
+ @GooseFSOptions << goosefsoptionoverview_tmp
1528
+ end
1529
+ end
1530
+ end
1531
+ end
1532
+
1437
1533
  # 描述了操作系统所在块设备即系统盘的信息
1438
1534
  class SystemDisk < TencentCloud::Common::AbstractModel
1439
1535
  # @param DiskType: 系统盘类型。系统盘类型限制详见存储概述。取值范围:
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: 3.0.489
4
+ version: 3.0.490
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common