tencentcloud-sdk-tione 3.0.1094 → 3.0.1098
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 +20 -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: 1c191ff4a83b1e2a83bf95f38262cc29683e345a
|
4
|
+
data.tar.gz: 1e82532f997247337418fc97746c7098253a6bf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb5bfeaca3c45adc4b4736f3e4b6c1808e0cef5b12566f34bd96b5e191af8293f81c7f35adef1593fc5127bf7764d1f53dba0c6be5e2337e4580fbcd28b13482
|
7
|
+
data.tar.gz: e24744882cc623403995e07dca2f4134f43112860021fc67f792060be8787063bf6a007daffd3201aa8eb6299cad6ad7970befe880fa90c23dbbaf07d76b5714
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1098
|
data/lib/v20211111/models.rb
CHANGED
@@ -5320,10 +5320,12 @@ module TencentCloud
|
|
5320
5320
|
# @type IsPrivateModel: Boolean
|
5321
5321
|
# @param ModelCategory: 模型的类别 多模态MultiModal, 文本大模型 LLM
|
5322
5322
|
# @type ModelCategory: String
|
5323
|
+
# @param PublicDataSource: 数据源的配置
|
5324
|
+
# @type PublicDataSource: :class:`Tencentcloud::Tione.v20211111.models.PublicDataSourceFS`
|
5323
5325
|
|
5324
|
-
attr_accessor :ModelVersionId, :ModelId, :ModelName, :ModelVersion, :ModelSource, :CosPathInfo, :GooseFSx, :AlgorithmFramework, :ModelType, :ModelFormat, :IsPrivateModel, :ModelCategory
|
5326
|
+
attr_accessor :ModelVersionId, :ModelId, :ModelName, :ModelVersion, :ModelSource, :CosPathInfo, :GooseFSx, :AlgorithmFramework, :ModelType, :ModelFormat, :IsPrivateModel, :ModelCategory, :PublicDataSource
|
5325
5327
|
|
5326
|
-
def initialize(modelversionid=nil, modelid=nil, modelname=nil, modelversion=nil, modelsource=nil, cospathinfo=nil, goosefsx=nil, algorithmframework=nil, modeltype=nil, modelformat=nil, isprivatemodel=nil, modelcategory=nil)
|
5328
|
+
def initialize(modelversionid=nil, modelid=nil, modelname=nil, modelversion=nil, modelsource=nil, cospathinfo=nil, goosefsx=nil, algorithmframework=nil, modeltype=nil, modelformat=nil, isprivatemodel=nil, modelcategory=nil, publicdatasource=nil)
|
5327
5329
|
@ModelVersionId = modelversionid
|
5328
5330
|
@ModelId = modelid
|
5329
5331
|
@ModelName = modelname
|
@@ -5336,6 +5338,7 @@ module TencentCloud
|
|
5336
5338
|
@ModelFormat = modelformat
|
5337
5339
|
@IsPrivateModel = isprivatemodel
|
5338
5340
|
@ModelCategory = modelcategory
|
5341
|
+
@PublicDataSource = publicdatasource
|
5339
5342
|
end
|
5340
5343
|
|
5341
5344
|
def deserialize(params)
|
@@ -5357,6 +5360,10 @@ module TencentCloud
|
|
5357
5360
|
@ModelFormat = params['ModelFormat']
|
5358
5361
|
@IsPrivateModel = params['IsPrivateModel']
|
5359
5362
|
@ModelCategory = params['ModelCategory']
|
5363
|
+
unless params['PublicDataSource'].nil?
|
5364
|
+
@PublicDataSource = PublicDataSourceFS.new
|
5365
|
+
@PublicDataSource.deserialize(params['PublicDataSource'])
|
5366
|
+
end
|
5360
5367
|
end
|
5361
5368
|
end
|
5362
5369
|
|
@@ -6653,6 +6660,17 @@ module TencentCloud
|
|
6653
6660
|
end
|
6654
6661
|
end
|
6655
6662
|
|
6663
|
+
# 公有云数据源结构
|
6664
|
+
class PublicDataSourceFS < TencentCloud::Common::AbstractModel
|
6665
|
+
|
6666
|
+
|
6667
|
+
def initialize()
|
6668
|
+
end
|
6669
|
+
|
6670
|
+
def deserialize(params)
|
6671
|
+
end
|
6672
|
+
end
|
6673
|
+
|
6656
6674
|
# PushTrainingMetrics请求参数结构体
|
6657
6675
|
class PushTrainingMetricsRequest < TencentCloud::Common::AbstractModel
|
6658
6676
|
# @param Data: 指标数据
|
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.1098
|
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-07-
|
11
|
+
date: 2025-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|