tencentcloud-sdk-tione 3.0.579 → 3.0.580
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 +33 -5
- 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: a1b6895d821ca64154588214d053e16e1eae20d7
|
4
|
+
data.tar.gz: 55c2a9d426690cbfd8e6a8974a41a833b39efedc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47771817d74c0cfd2555b37dc595cd6a9f50e23d5483d0b8db7c8cb25d2ab0de8755d425d9d49aeec5238938436d9052a6b757e9747a2b129db782a0096e5911
|
7
|
+
data.tar.gz: 24d40d21c428211cf04e35ac146667cf0b38540ac3386b14d406db1d5f9a72dcee6d1e5b1aab4893b224dbb161e0593de7c11d3d73a2de49b4d7a59a485c7eb3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.580
|
data/lib/v20211111/models.rb
CHANGED
@@ -521,6 +521,28 @@ module TencentCloud
|
|
521
521
|
end
|
522
522
|
end
|
523
523
|
|
524
|
+
# 配置CFSTurbo参数
|
525
|
+
class CFSTurbo < TencentCloud::Common::AbstractModel
|
526
|
+
# @param Id: CFSTurbo实例id
|
527
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
528
|
+
# @type Id: String
|
529
|
+
# @param Path: CFSTurbo路径
|
530
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
531
|
+
# @type Path: String
|
532
|
+
|
533
|
+
attr_accessor :Id, :Path
|
534
|
+
|
535
|
+
def initialize(id=nil, path=nil)
|
536
|
+
@Id = id
|
537
|
+
@Path = path
|
538
|
+
end
|
539
|
+
|
540
|
+
def deserialize(params)
|
541
|
+
@Id = params['Id']
|
542
|
+
@Path = params['Path']
|
543
|
+
end
|
544
|
+
end
|
545
|
+
|
524
546
|
# 容器信息
|
525
547
|
class Container < TencentCloud::Common::AbstractModel
|
526
548
|
# @param Name: 名字
|
@@ -1705,13 +1727,16 @@ module TencentCloud
|
|
1705
1727
|
# @param HDFSSource: 来自HDFS的数据
|
1706
1728
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1707
1729
|
# @type HDFSSource: :class:`Tencentcloud::Tione.v20211111.models.HDFSConfig`
|
1708
|
-
# @param GooseFSSource:
|
1730
|
+
# @param GooseFSSource: 配置GooseFS的数据
|
1709
1731
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1710
1732
|
# @type GooseFSSource: :class:`Tencentcloud::Tione.v20211111.models.GooseFS`
|
1733
|
+
# @param CFSTurboSource: 配置TurboFS的数据
|
1734
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1735
|
+
# @type CFSTurboSource: :class:`Tencentcloud::Tione.v20211111.models.CFSTurbo`
|
1711
1736
|
|
1712
|
-
attr_accessor :MappingPath, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource
|
1737
|
+
attr_accessor :MappingPath, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource, :CFSTurboSource
|
1713
1738
|
|
1714
|
-
def initialize(mappingpath=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil)
|
1739
|
+
def initialize(mappingpath=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil, cfsturbosource=nil)
|
1715
1740
|
@MappingPath = mappingpath
|
1716
1741
|
@DataSourceType = datasourcetype
|
1717
1742
|
@DataSetSource = datasetsource
|
@@ -1719,6 +1744,7 @@ module TencentCloud
|
|
1719
1744
|
@CFSSource = cfssource
|
1720
1745
|
@HDFSSource = hdfssource
|
1721
1746
|
@GooseFSSource = goosefssource
|
1747
|
+
@CFSTurboSource = cfsturbosource
|
1722
1748
|
end
|
1723
1749
|
|
1724
1750
|
def deserialize(params)
|
@@ -1744,6 +1770,10 @@ module TencentCloud
|
|
1744
1770
|
@GooseFSSource = GooseFS.new
|
1745
1771
|
@GooseFSSource.deserialize(params['GooseFSSource'])
|
1746
1772
|
end
|
1773
|
+
unless params['CFSTurboSource'].nil?
|
1774
|
+
@CFSTurboSource = CFSTurbo.new
|
1775
|
+
@CFSTurboSource.deserialize(params['CFSTurboSource'])
|
1776
|
+
end
|
1747
1777
|
end
|
1748
1778
|
end
|
1749
1779
|
|
@@ -6027,10 +6057,8 @@ module TencentCloud
|
|
6027
6057
|
# @param RealGpu: 创建或更新时无需填写,仅展示需要关注
|
6028
6058
|
# 后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
|
6029
6059
|
# RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
|
6030
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6031
6060
|
# @type RealGpu: Integer
|
6032
6061
|
# @param RealGpuDetailSet: 创建或更新时无需填写,仅展示需要关注。详细的GPU使用信息。
|
6033
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6034
6062
|
# @type RealGpuDetailSet: Array
|
6035
6063
|
|
6036
6064
|
attr_accessor :Cpu, :Memory, :Gpu, :GpuType, :RealGpu, :RealGpuDetailSet
|
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.580
|
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-05-
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|