tencentcloud-sdk-tione 3.0.809 → 3.0.810
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 +27 -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: b13574beed38a324268780107313e14fb5bcfb0f
|
4
|
+
data.tar.gz: ff7aa5329e27d190c3fb61fb689f65355e7b650d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96fc522572b0f9837cefa72fad2b899df0d115f191b2da8c04f7e1acf70e7b6823baa297cb29dfc4aedb8af83e5a3a8e57c0ec56a5133256b34af5dfb8e39d22
|
7
|
+
data.tar.gz: 8bc81cba8715c01e1ecba781fc85fc88cc6c1e599a2ab510d0a981843b72dc45592d7b25c32a966a7479ae3b6a95e32028941f0600e586a5a1fae70c4e6bd964
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.810
|
data/lib/v20211111/models.rb
CHANGED
@@ -2183,10 +2183,13 @@ module TencentCloud
|
|
2183
2183
|
# @param CFSTurboSource: 配置TurboFS的数据
|
2184
2184
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2185
2185
|
# @type CFSTurboSource: :class:`Tencentcloud::Tione.v20211111.models.CFSTurbo`
|
2186
|
+
# @param LocalDiskSource: 来自本地磁盘的信息
|
2187
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2188
|
+
# @type LocalDiskSource: :class:`Tencentcloud::Tione.v20211111.models.LocalDisk`
|
2186
2189
|
|
2187
|
-
attr_accessor :MappingPath, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource, :CFSTurboSource
|
2190
|
+
attr_accessor :MappingPath, :DataSourceType, :DataSetSource, :COSSource, :CFSSource, :HDFSSource, :GooseFSSource, :CFSTurboSource, :LocalDiskSource
|
2188
2191
|
|
2189
|
-
def initialize(mappingpath=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil, cfsturbosource=nil)
|
2192
|
+
def initialize(mappingpath=nil, datasourcetype=nil, datasetsource=nil, cossource=nil, cfssource=nil, hdfssource=nil, goosefssource=nil, cfsturbosource=nil, localdisksource=nil)
|
2190
2193
|
@MappingPath = mappingpath
|
2191
2194
|
@DataSourceType = datasourcetype
|
2192
2195
|
@DataSetSource = datasetsource
|
@@ -2195,6 +2198,7 @@ module TencentCloud
|
|
2195
2198
|
@HDFSSource = hdfssource
|
2196
2199
|
@GooseFSSource = goosefssource
|
2197
2200
|
@CFSTurboSource = cfsturbosource
|
2201
|
+
@LocalDiskSource = localdisksource
|
2198
2202
|
end
|
2199
2203
|
|
2200
2204
|
def deserialize(params)
|
@@ -2224,6 +2228,10 @@ module TencentCloud
|
|
2224
2228
|
@CFSTurboSource = CFSTurbo.new
|
2225
2229
|
@CFSTurboSource.deserialize(params['CFSTurboSource'])
|
2226
2230
|
end
|
2231
|
+
unless params['LocalDiskSource'].nil?
|
2232
|
+
@LocalDiskSource = LocalDisk.new
|
2233
|
+
@LocalDiskSource.deserialize(params['LocalDiskSource'])
|
2234
|
+
end
|
2227
2235
|
end
|
2228
2236
|
end
|
2229
2237
|
|
@@ -6472,6 +6480,23 @@ module TencentCloud
|
|
6472
6480
|
end
|
6473
6481
|
end
|
6474
6482
|
|
6483
|
+
# 本地磁盘信息
|
6484
|
+
class LocalDisk < TencentCloud::Common::AbstractModel
|
6485
|
+
# @param InstanceId: 节点ID
|
6486
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6487
|
+
# @type InstanceId: String
|
6488
|
+
|
6489
|
+
attr_accessor :InstanceId
|
6490
|
+
|
6491
|
+
def initialize(instanceid=nil)
|
6492
|
+
@InstanceId = instanceid
|
6493
|
+
end
|
6494
|
+
|
6495
|
+
def deserialize(params)
|
6496
|
+
@InstanceId = params['InstanceId']
|
6497
|
+
end
|
6498
|
+
end
|
6499
|
+
|
6475
6500
|
# 日志配置
|
6476
6501
|
class LogConfig < TencentCloud::Common::AbstractModel
|
6477
6502
|
# @param LogsetId: 日志需要投递到cls的日志集
|
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.810
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|