tencentcloud-sdk-tione 3.0.1039 → 3.0.1040
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/v20211111/models.rb +25 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 382dc531b705d75bd70881f9fa2d0bd77e537530
|
4
|
+
data.tar.gz: 3d67ab0d122c09b19cbb289f6c92161b2cfd462f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2b5a55e33db5fb7b6b082b140cd829a9f08690225a046977a8dff869e16d4de68fb2f9d4d415194f887795c1d005e7439775a4c94d086181b12ab9be3d9d547
|
7
|
+
data.tar.gz: 764872f504d5be4a957e41b70b2fc1e514c651929806d9bd28998b5457df57e4f6a1d4cd9f7fcec4cf3a2ab6eb6b2d52cb47e9390958781e8ea740fd91e785be
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1040
|
data/lib/v20211111/models.rb
CHANGED
@@ -1309,10 +1309,12 @@ module TencentCloud
|
|
1309
1309
|
# @param CBSSource: CBS配置信息
|
1310
1310
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1311
1311
|
# @type CBSSource: :class:`Tencentcloud::Tione.v20211111.models.CBSConfig`
|
1312
|
+
# @param HostPathSource: 主机路径信息
|
1313
|
+
# @type HostPathSource: :class:`Tencentcloud::Tione.v20211111.models.HostPath`
|
1312
1314
|
|
1313
|
-
attr_accessor :MappingPath, :DataSourceUsage, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource, :CFSTurboSource, :LocalDiskSource, :CBSSource
|
1315
|
+
attr_accessor :MappingPath, :DataSourceUsage, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource, :CFSTurboSource, :LocalDiskSource, :CBSSource, :HostPathSource
|
1314
1316
|
|
1315
|
-
def initialize(mappingpath=nil, datasourceusage=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil, cfsturbosource=nil, localdisksource=nil, cbssource=nil)
|
1317
|
+
def initialize(mappingpath=nil, datasourceusage=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil, cfsturbosource=nil, localdisksource=nil, cbssource=nil, hostpathsource=nil)
|
1316
1318
|
@MappingPath = mappingpath
|
1317
1319
|
@DataSourceUsage = datasourceusage
|
1318
1320
|
@DataSourceType = datasourcetype
|
@@ -1324,6 +1326,7 @@ module TencentCloud
|
|
1324
1326
|
@CFSTurboSource = cfsturbosource
|
1325
1327
|
@LocalDiskSource = localdisksource
|
1326
1328
|
@CBSSource = cbssource
|
1329
|
+
@HostPathSource = hostpathsource
|
1327
1330
|
end
|
1328
1331
|
|
1329
1332
|
def deserialize(params)
|
@@ -1362,6 +1365,10 @@ module TencentCloud
|
|
1362
1365
|
@CBSSource = CBSConfig.new
|
1363
1366
|
@CBSSource.deserialize(params['CBSSource'])
|
1364
1367
|
end
|
1368
|
+
unless params['HostPathSource'].nil?
|
1369
|
+
@HostPathSource = HostPath.new
|
1370
|
+
@HostPathSource.deserialize(params['HostPathSource'])
|
1371
|
+
end
|
1365
1372
|
end
|
1366
1373
|
end
|
1367
1374
|
|
@@ -3816,6 +3823,22 @@ module TencentCloud
|
|
3816
3823
|
end
|
3817
3824
|
end
|
3818
3825
|
|
3826
|
+
# 主机路径挂载配置
|
3827
|
+
class HostPath < TencentCloud::Common::AbstractModel
|
3828
|
+
# @param Path: 需要挂载的主机路径
|
3829
|
+
# @type Path: String
|
3830
|
+
|
3831
|
+
attr_accessor :Path
|
3832
|
+
|
3833
|
+
def initialize(path=nil)
|
3834
|
+
@Path = path
|
3835
|
+
end
|
3836
|
+
|
3837
|
+
def deserialize(params)
|
3838
|
+
@Path = params['Path']
|
3839
|
+
end
|
3840
|
+
end
|
3841
|
+
|
3819
3842
|
# 模型专业参数
|
3820
3843
|
class HyperParameter < TencentCloud::Common::AbstractModel
|
3821
3844
|
# @param MaxNNZ: 最大nnz数
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1040
|
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-04-
|
11
|
+
date: 2025-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20211111/client.rb
|
37
|
-
- lib/v20211111/models.rb
|
38
36
|
- lib/tencentcloud-sdk-tione.rb
|
39
37
|
- lib/v20191022/client.rb
|
40
38
|
- lib/v20191022/models.rb
|
39
|
+
- lib/v20211111/client.rb
|
40
|
+
- lib/v20211111/models.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|