tencentcloud-sdk-tione 3.0.1040 → 3.0.1042
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 +46 -4
- 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: 54eed066ec6af253b8847abdc4668ee2bbd101de
|
4
|
+
data.tar.gz: c3a16a11670c8a5f73bf2b153975a35e7796d4b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1bedc07c51cd7969a1227b6302785916a7a2108f97fdead4457d369a737b926cd52f6d5dbbfcfaed0bc01f95a9f383c40a1d1a50356af4c334435269a0dc09f
|
7
|
+
data.tar.gz: e58e9aad8e96d08f195b6cb940f2e21b909f1a04a36150494c5c6497ad2c157ede18bd98dc2796034ca55012793ac304d81922c24ad017ad08ad78d357efa6ba
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1042
|
data/lib/v20211111/models.rb
CHANGED
@@ -195,6 +195,26 @@ module TencentCloud
|
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
198
|
+
# 代码仓库配置
|
199
|
+
class CodeRepoConfig < TencentCloud::Common::AbstractModel
|
200
|
+
# @param Id: 代码仓库Id
|
201
|
+
# @type Id: String
|
202
|
+
# @param TargetPath: 代码仓下载目标地址
|
203
|
+
# @type TargetPath: String
|
204
|
+
|
205
|
+
attr_accessor :Id, :TargetPath
|
206
|
+
|
207
|
+
def initialize(id=nil, targetpath=nil)
|
208
|
+
@Id = id
|
209
|
+
@TargetPath = targetpath
|
210
|
+
end
|
211
|
+
|
212
|
+
def deserialize(params)
|
213
|
+
@Id = params['Id']
|
214
|
+
@TargetPath = params['TargetPath']
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
198
218
|
# 容器信息
|
199
219
|
class Container < TencentCloud::Common::AbstractModel
|
200
220
|
# @param Name: 名字
|
@@ -1096,10 +1116,12 @@ module TencentCloud
|
|
1096
1116
|
# @type CallbackUrl: String
|
1097
1117
|
# @param EncodedStartCmdInfo: 编码后的任务启动命令,与StartCmdInfo同时配置时,仅当前参数生效
|
1098
1118
|
# @type EncodedStartCmdInfo: :class:`Tencentcloud::Tione.v20211111.models.EncodedStartCmdInfo`
|
1119
|
+
# @param CodeRepos: 代码仓库配置
|
1120
|
+
# @type CodeRepos: Array
|
1099
1121
|
|
1100
|
-
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ResourceGroupId, :Tags, :ImageInfo, :CodePackagePath, :StartCmdInfo, :TrainingMode, :DataConfigs, :VpcId, :SubnetId, :Output, :LogConfig, :TuningParameters, :LogEnable, :Remark, :DataSource, :CallbackUrl, :EncodedStartCmdInfo
|
1122
|
+
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ResourceGroupId, :Tags, :ImageInfo, :CodePackagePath, :StartCmdInfo, :TrainingMode, :DataConfigs, :VpcId, :SubnetId, :Output, :LogConfig, :TuningParameters, :LogEnable, :Remark, :DataSource, :CallbackUrl, :EncodedStartCmdInfo, :CodeRepos
|
1101
1123
|
|
1102
|
-
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, resourcegroupid=nil, tags=nil, imageinfo=nil, codepackagepath=nil, startcmdinfo=nil, trainingmode=nil, dataconfigs=nil, vpcid=nil, subnetid=nil, output=nil, logconfig=nil, tuningparameters=nil, logenable=nil, remark=nil, datasource=nil, callbackurl=nil, encodedstartcmdinfo=nil)
|
1124
|
+
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, resourcegroupid=nil, tags=nil, imageinfo=nil, codepackagepath=nil, startcmdinfo=nil, trainingmode=nil, dataconfigs=nil, vpcid=nil, subnetid=nil, output=nil, logconfig=nil, tuningparameters=nil, logenable=nil, remark=nil, datasource=nil, callbackurl=nil, encodedstartcmdinfo=nil, coderepos=nil)
|
1103
1125
|
@Name = name
|
1104
1126
|
@ChargeType = chargetype
|
1105
1127
|
@ResourceConfigInfos = resourceconfiginfos
|
@@ -1123,6 +1145,7 @@ module TencentCloud
|
|
1123
1145
|
@DataSource = datasource
|
1124
1146
|
@CallbackUrl = callbackurl
|
1125
1147
|
@EncodedStartCmdInfo = encodedstartcmdinfo
|
1148
|
+
@CodeRepos = coderepos
|
1126
1149
|
end
|
1127
1150
|
|
1128
1151
|
def deserialize(params)
|
@@ -1188,6 +1211,14 @@ module TencentCloud
|
|
1188
1211
|
@EncodedStartCmdInfo = EncodedStartCmdInfo.new
|
1189
1212
|
@EncodedStartCmdInfo.deserialize(params['EncodedStartCmdInfo'])
|
1190
1213
|
end
|
1214
|
+
unless params['CodeRepos'].nil?
|
1215
|
+
@CodeRepos = []
|
1216
|
+
params['CodeRepos'].each do |i|
|
1217
|
+
coderepoconfig_tmp = CodeRepoConfig.new
|
1218
|
+
coderepoconfig_tmp.deserialize(i)
|
1219
|
+
@CodeRepos << coderepoconfig_tmp
|
1220
|
+
end
|
1221
|
+
end
|
1191
1222
|
end
|
1192
1223
|
end
|
1193
1224
|
|
@@ -7612,10 +7643,12 @@ module TencentCloud
|
|
7612
7643
|
# @param CallbackUrl: 回调地址
|
7613
7644
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7614
7645
|
# @type CallbackUrl: String
|
7646
|
+
# @param CodeRepos: 任务关联的代码仓库配置
|
7647
|
+
# @type CodeRepos: Array
|
7615
7648
|
|
7616
|
-
attr_accessor :Id, :Name, :Uin, :SubUin, :SubUinName, :Region, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ChargeType, :ResourceGroupId, :ResourceConfigInfos, :Tags, :TrainingMode, :CodePackagePath, :StartCmdInfo, :DataSource, :DataConfigs, :TuningParameters, :Output, :LogEnable, :LogConfig, :VpcId, :SubnetId, :ImageInfo, :RuntimeInSeconds, :CreateTime, :StartTime, :ChargeStatus, :LatestInstanceId, :TensorBoardId, :Remark, :FailureReason, :UpdateTime, :EndTime, :BillingInfo, :ResourceGroupName, :Message, :Status, :CallbackUrl
|
7649
|
+
attr_accessor :Id, :Name, :Uin, :SubUin, :SubUinName, :Region, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ChargeType, :ResourceGroupId, :ResourceConfigInfos, :Tags, :TrainingMode, :CodePackagePath, :StartCmdInfo, :DataSource, :DataConfigs, :TuningParameters, :Output, :LogEnable, :LogConfig, :VpcId, :SubnetId, :ImageInfo, :RuntimeInSeconds, :CreateTime, :StartTime, :ChargeStatus, :LatestInstanceId, :TensorBoardId, :Remark, :FailureReason, :UpdateTime, :EndTime, :BillingInfo, :ResourceGroupName, :Message, :Status, :CallbackUrl, :CodeRepos
|
7617
7650
|
|
7618
|
-
def initialize(id=nil, name=nil, uin=nil, subuin=nil, subuinname=nil, region=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, chargetype=nil, resourcegroupid=nil, resourceconfiginfos=nil, tags=nil, trainingmode=nil, codepackagepath=nil, startcmdinfo=nil, datasource=nil, dataconfigs=nil, tuningparameters=nil, output=nil, logenable=nil, logconfig=nil, vpcid=nil, subnetid=nil, imageinfo=nil, runtimeinseconds=nil, createtime=nil, starttime=nil, chargestatus=nil, latestinstanceid=nil, tensorboardid=nil, remark=nil, failurereason=nil, updatetime=nil, endtime=nil, billinginfo=nil, resourcegroupname=nil, message=nil, status=nil, callbackurl=nil)
|
7651
|
+
def initialize(id=nil, name=nil, uin=nil, subuin=nil, subuinname=nil, region=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, chargetype=nil, resourcegroupid=nil, resourceconfiginfos=nil, tags=nil, trainingmode=nil, codepackagepath=nil, startcmdinfo=nil, datasource=nil, dataconfigs=nil, tuningparameters=nil, output=nil, logenable=nil, logconfig=nil, vpcid=nil, subnetid=nil, imageinfo=nil, runtimeinseconds=nil, createtime=nil, starttime=nil, chargestatus=nil, latestinstanceid=nil, tensorboardid=nil, remark=nil, failurereason=nil, updatetime=nil, endtime=nil, billinginfo=nil, resourcegroupname=nil, message=nil, status=nil, callbackurl=nil, coderepos=nil)
|
7619
7652
|
@Id = id
|
7620
7653
|
@Name = name
|
7621
7654
|
@Uin = uin
|
@@ -7656,6 +7689,7 @@ module TencentCloud
|
|
7656
7689
|
@Message = message
|
7657
7690
|
@Status = status
|
7658
7691
|
@CallbackUrl = callbackurl
|
7692
|
+
@CodeRepos = coderepos
|
7659
7693
|
end
|
7660
7694
|
|
7661
7695
|
def deserialize(params)
|
@@ -7735,6 +7769,14 @@ module TencentCloud
|
|
7735
7769
|
@Message = params['Message']
|
7736
7770
|
@Status = params['Status']
|
7737
7771
|
@CallbackUrl = params['CallbackUrl']
|
7772
|
+
unless params['CodeRepos'].nil?
|
7773
|
+
@CodeRepos = []
|
7774
|
+
params['CodeRepos'].each do |i|
|
7775
|
+
coderepoconfig_tmp = CodeRepoConfig.new
|
7776
|
+
coderepoconfig_tmp.deserialize(i)
|
7777
|
+
@CodeRepos << coderepoconfig_tmp
|
7778
|
+
end
|
7779
|
+
end
|
7738
7780
|
end
|
7739
7781
|
end
|
7740
7782
|
|
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.1042
|
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-17 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
|
36
38
|
- lib/tencentcloud-sdk-tione.rb
|
37
39
|
- lib/v20191022/client.rb
|
38
40
|
- 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:
|