tencentcloud-sdk-tione 3.0.513 → 3.0.514
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/tencentcloud-sdk-tione.rb +3 -3
- data/lib/v20211111/models.rb +193 -8
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab71ef73cf104ed801080d8cf8945b4e38b01a2b
|
4
|
+
data.tar.gz: 2d3db4a3f989c01c8143249a9f910c095374db6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a343a623ebe51e776d57581ef364fe7548c1508033adc31c6f10c2d3caa070dfefb121b34b5e13642902dc3cfa4c10d0a6d44147e4a8351d4745ec2709fef13
|
7
|
+
data.tar.gz: b6be974a8dc95e8b5e7c626de9e492317ef41d16a96aa4918d23298c90eb7d45303b0ae17c478bd4cba923fae047d0c2dc91b190f456516af63ac3fd7430b40f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.514
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
4
4
|
|
5
|
-
require_relative 'v20211111/client'
|
6
|
-
require_relative 'v20211111/models'
|
7
|
-
|
8
5
|
require_relative 'v20191022/client'
|
9
6
|
require_relative 'v20191022/models'
|
10
7
|
|
8
|
+
require_relative 'v20211111/client'
|
9
|
+
require_relative 'v20211111/models'
|
10
|
+
|
11
11
|
module TencentCloud
|
12
12
|
module Tione
|
13
13
|
end
|
data/lib/v20211111/models.rb
CHANGED
@@ -222,10 +222,13 @@ module TencentCloud
|
|
222
222
|
# @param BillingInfo: 计费金额信息,eg:2.00元/小时 (for后付费)
|
223
223
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
224
224
|
# @type BillingInfo: String
|
225
|
+
# @param PodList: 运行中的Pod的名字
|
226
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
227
|
+
# @type PodList: Array
|
225
228
|
|
226
|
-
attr_accessor :BatchTaskId, :BatchTaskName, :Uin, :SubUin, :Region, :ChargeType, :ResourceGroupId, :ResourceGroupName, :ResourceConfigInfo, :Tags, :ModelInfo, :ImageInfo, :CodePackagePath, :StartCmd, :DataConfigs, :Outputs, :LogEnable, :LogConfig, :VpcId, :SubnetId, :Status, :RuntimeInSeconds, :CreateTime, :UpdateTime, :StartTime, :EndTime, :ChargeStatus, :LatestInstanceId, :Remark, :FailureReason, :BillingInfo
|
229
|
+
attr_accessor :BatchTaskId, :BatchTaskName, :Uin, :SubUin, :Region, :ChargeType, :ResourceGroupId, :ResourceGroupName, :ResourceConfigInfo, :Tags, :ModelInfo, :ImageInfo, :CodePackagePath, :StartCmd, :DataConfigs, :Outputs, :LogEnable, :LogConfig, :VpcId, :SubnetId, :Status, :RuntimeInSeconds, :CreateTime, :UpdateTime, :StartTime, :EndTime, :ChargeStatus, :LatestInstanceId, :Remark, :FailureReason, :BillingInfo, :PodList
|
227
230
|
|
228
|
-
def initialize(batchtaskid=nil, batchtaskname=nil, uin=nil, subuin=nil, region=nil, chargetype=nil, resourcegroupid=nil, resourcegroupname=nil, resourceconfiginfo=nil, tags=nil, modelinfo=nil, imageinfo=nil, codepackagepath=nil, startcmd=nil, dataconfigs=nil, outputs=nil, logenable=nil, logconfig=nil, vpcid=nil, subnetid=nil, status=nil, runtimeinseconds=nil, createtime=nil, updatetime=nil, starttime=nil, endtime=nil, chargestatus=nil, latestinstanceid=nil, remark=nil, failurereason=nil, billinginfo=nil)
|
231
|
+
def initialize(batchtaskid=nil, batchtaskname=nil, uin=nil, subuin=nil, region=nil, chargetype=nil, resourcegroupid=nil, resourcegroupname=nil, resourceconfiginfo=nil, tags=nil, modelinfo=nil, imageinfo=nil, codepackagepath=nil, startcmd=nil, dataconfigs=nil, outputs=nil, logenable=nil, logconfig=nil, vpcid=nil, subnetid=nil, status=nil, runtimeinseconds=nil, createtime=nil, updatetime=nil, starttime=nil, endtime=nil, chargestatus=nil, latestinstanceid=nil, remark=nil, failurereason=nil, billinginfo=nil, podlist=nil)
|
229
232
|
@BatchTaskId = batchtaskid
|
230
233
|
@BatchTaskName = batchtaskname
|
231
234
|
@Uin = uin
|
@@ -257,6 +260,7 @@ module TencentCloud
|
|
257
260
|
@Remark = remark
|
258
261
|
@FailureReason = failurereason
|
259
262
|
@BillingInfo = billinginfo
|
263
|
+
@PodList = podlist
|
260
264
|
end
|
261
265
|
|
262
266
|
def deserialize(params)
|
@@ -327,6 +331,7 @@ module TencentCloud
|
|
327
331
|
@Remark = params['Remark']
|
328
332
|
@FailureReason = params['FailureReason']
|
329
333
|
@BillingInfo = params['BillingInfo']
|
334
|
+
@PodList = params['PodList']
|
330
335
|
end
|
331
336
|
end
|
332
337
|
|
@@ -504,6 +509,78 @@ module TencentCloud
|
|
504
509
|
end
|
505
510
|
end
|
506
511
|
|
512
|
+
# 容器信息
|
513
|
+
class Container < TencentCloud::Common::AbstractModel
|
514
|
+
# @param Name: 名字
|
515
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
516
|
+
# @type Name: String
|
517
|
+
# @param ContainerId: id
|
518
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
519
|
+
# @type ContainerId: String
|
520
|
+
# @param Image: 镜像地址
|
521
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
522
|
+
# @type Image: String
|
523
|
+
# @param Status: 容器状态
|
524
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
525
|
+
# @type Status: :class:`Tencentcloud::Tione.v20211111.models.ContainerStatus`
|
526
|
+
|
527
|
+
attr_accessor :Name, :ContainerId, :Image, :Status
|
528
|
+
|
529
|
+
def initialize(name=nil, containerid=nil, image=nil, status=nil)
|
530
|
+
@Name = name
|
531
|
+
@ContainerId = containerid
|
532
|
+
@Image = image
|
533
|
+
@Status = status
|
534
|
+
end
|
535
|
+
|
536
|
+
def deserialize(params)
|
537
|
+
@Name = params['Name']
|
538
|
+
@ContainerId = params['ContainerId']
|
539
|
+
@Image = params['Image']
|
540
|
+
unless params['Status'].nil?
|
541
|
+
@Status = ContainerStatus.new
|
542
|
+
@Status.deserialize(params['Status'])
|
543
|
+
end
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
# 容器状态
|
548
|
+
class ContainerStatus < TencentCloud::Common::AbstractModel
|
549
|
+
# @param RestartCount: 重启次数
|
550
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
551
|
+
# @type RestartCount: Integer
|
552
|
+
# @param State: 状态
|
553
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
554
|
+
# @type State: String
|
555
|
+
# @param Ready: 是否就绪
|
556
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
557
|
+
# @type Ready: Boolean
|
558
|
+
# @param Reason: 状态原因
|
559
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
560
|
+
# @type Reason: String
|
561
|
+
# @param Message: 容器的错误信息
|
562
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
563
|
+
# @type Message: String
|
564
|
+
|
565
|
+
attr_accessor :RestartCount, :State, :Ready, :Reason, :Message
|
566
|
+
|
567
|
+
def initialize(restartcount=nil, state=nil, ready=nil, reason=nil, message=nil)
|
568
|
+
@RestartCount = restartcount
|
569
|
+
@State = state
|
570
|
+
@Ready = ready
|
571
|
+
@Reason = reason
|
572
|
+
@Message = message
|
573
|
+
end
|
574
|
+
|
575
|
+
def deserialize(params)
|
576
|
+
@RestartCount = params['RestartCount']
|
577
|
+
@State = params['State']
|
578
|
+
@Ready = params['Ready']
|
579
|
+
@Reason = params['Reason']
|
580
|
+
@Message = params['Message']
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
507
584
|
# cos的路径信息
|
508
585
|
class CosPathInfo < TencentCloud::Common::AbstractModel
|
509
586
|
# @param Bucket: 存储桶
|
@@ -1992,6 +2069,23 @@ module TencentCloud
|
|
1992
2069
|
end
|
1993
2070
|
end
|
1994
2071
|
|
2072
|
+
# 默认Nginx网关结构
|
2073
|
+
class DefaultNginxGatewayCallInfo < TencentCloud::Common::AbstractModel
|
2074
|
+
# @param Host: host
|
2075
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2076
|
+
# @type Host: String
|
2077
|
+
|
2078
|
+
attr_accessor :Host
|
2079
|
+
|
2080
|
+
def initialize(host=nil)
|
2081
|
+
@Host = host
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
def deserialize(params)
|
2085
|
+
@Host = params['Host']
|
2086
|
+
end
|
2087
|
+
end
|
2088
|
+
|
1995
2089
|
# DeleteBatchTask请求参数结构体
|
1996
2090
|
class DeleteBatchTaskRequest < TencentCloud::Common::AbstractModel
|
1997
2091
|
# @param BatchTaskId: 跑批任务ID
|
@@ -3350,14 +3444,18 @@ module TencentCloud
|
|
3350
3444
|
# @param InferGatewayCallInfo: 升级网关调用信息
|
3351
3445
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3352
3446
|
# @type InferGatewayCallInfo: :class:`Tencentcloud::Tione.v20211111.models.InferGatewayCallInfo`
|
3447
|
+
# @param DefaultNginxGatewayCallInfo: 默认nginx网关的调用信息
|
3448
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3449
|
+
# @type DefaultNginxGatewayCallInfo: :class:`Tencentcloud::Tione.v20211111.models.DefaultNginxGatewayCallInfo`
|
3353
3450
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3354
3451
|
# @type RequestId: String
|
3355
3452
|
|
3356
|
-
attr_accessor :ServiceCallInfo, :InferGatewayCallInfo, :RequestId
|
3453
|
+
attr_accessor :ServiceCallInfo, :InferGatewayCallInfo, :DefaultNginxGatewayCallInfo, :RequestId
|
3357
3454
|
|
3358
|
-
def initialize(servicecallinfo=nil, infergatewaycallinfo=nil, requestid=nil)
|
3455
|
+
def initialize(servicecallinfo=nil, infergatewaycallinfo=nil, defaultnginxgatewaycallinfo=nil, requestid=nil)
|
3359
3456
|
@ServiceCallInfo = servicecallinfo
|
3360
3457
|
@InferGatewayCallInfo = infergatewaycallinfo
|
3458
|
+
@DefaultNginxGatewayCallInfo = defaultnginxgatewaycallinfo
|
3361
3459
|
@RequestId = requestid
|
3362
3460
|
end
|
3363
3461
|
|
@@ -3370,6 +3468,10 @@ module TencentCloud
|
|
3370
3468
|
@InferGatewayCallInfo = InferGatewayCallInfo.new
|
3371
3469
|
@InferGatewayCallInfo.deserialize(params['InferGatewayCallInfo'])
|
3372
3470
|
end
|
3471
|
+
unless params['DefaultNginxGatewayCallInfo'].nil?
|
3472
|
+
@DefaultNginxGatewayCallInfo = DefaultNginxGatewayCallInfo.new
|
3473
|
+
@DefaultNginxGatewayCallInfo.deserialize(params['DefaultNginxGatewayCallInfo'])
|
3474
|
+
end
|
3373
3475
|
@RequestId = params['RequestId']
|
3374
3476
|
end
|
3375
3477
|
end
|
@@ -5554,6 +5656,56 @@ module TencentCloud
|
|
5554
5656
|
end
|
5555
5657
|
end
|
5556
5658
|
|
5659
|
+
# Pod信息展示
|
5660
|
+
class Pod < TencentCloud::Common::AbstractModel
|
5661
|
+
# @param Name: pod名
|
5662
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5663
|
+
# @type Name: String
|
5664
|
+
# @param Uid: pod的唯一id
|
5665
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5666
|
+
# @type Uid: String
|
5667
|
+
# @param ChargeType: 服务付费模式
|
5668
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5669
|
+
# @type ChargeType: String
|
5670
|
+
# @param Phase: pod的状态
|
5671
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5672
|
+
# @type Phase: String
|
5673
|
+
# @param IP: pod的IP
|
5674
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5675
|
+
# @type IP: String
|
5676
|
+
# @param CreateTime: pod的创建时间
|
5677
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5678
|
+
# @type CreateTime: String
|
5679
|
+
# @param Containers: 容器列表
|
5680
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5681
|
+
# @type Containers: :class:`Tencentcloud::Tione.v20211111.models.Container`
|
5682
|
+
|
5683
|
+
attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers
|
5684
|
+
|
5685
|
+
def initialize(name=nil, uid=nil, chargetype=nil, phase=nil, ip=nil, createtime=nil, containers=nil)
|
5686
|
+
@Name = name
|
5687
|
+
@Uid = uid
|
5688
|
+
@ChargeType = chargetype
|
5689
|
+
@Phase = phase
|
5690
|
+
@IP = ip
|
5691
|
+
@CreateTime = createtime
|
5692
|
+
@Containers = containers
|
5693
|
+
end
|
5694
|
+
|
5695
|
+
def deserialize(params)
|
5696
|
+
@Name = params['Name']
|
5697
|
+
@Uid = params['Uid']
|
5698
|
+
@ChargeType = params['ChargeType']
|
5699
|
+
@Phase = params['Phase']
|
5700
|
+
@IP = params['IP']
|
5701
|
+
@CreateTime = params['CreateTime']
|
5702
|
+
unless params['Containers'].nil?
|
5703
|
+
@Containers = Container.new
|
5704
|
+
@Containers.deserialize(params['Containers'])
|
5705
|
+
end
|
5706
|
+
end
|
5707
|
+
end
|
5708
|
+
|
5557
5709
|
# 点信息描述
|
5558
5710
|
class PointInfo < TencentCloud::Common::AbstractModel
|
5559
5711
|
# @param X: X坐标值
|
@@ -6510,10 +6662,13 @@ module TencentCloud
|
|
6510
6662
|
# @param ModelHotUpdateEnable: 是否开启模型的热更新。默认不开启
|
6511
6663
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6512
6664
|
# @type ModelHotUpdateEnable: Boolean
|
6665
|
+
# @param Pods: Pod列表信息
|
6666
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6667
|
+
# @type Pods: :class:`Tencentcloud::Tione.v20211111.models.Pod`
|
6513
6668
|
|
6514
|
-
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :PodList, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable
|
6669
|
+
attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :PodList, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :Pods
|
6515
6670
|
|
6516
|
-
def initialize(replicas=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, modelinfo=nil, logenable=nil, logconfig=nil, authorizationenable=nil, horizontalpodautoscaler=nil, status=nil, weight=nil, podlist=nil, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil)
|
6671
|
+
def initialize(replicas=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, modelinfo=nil, logenable=nil, logconfig=nil, authorizationenable=nil, horizontalpodautoscaler=nil, status=nil, weight=nil, podlist=nil, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, pods=nil)
|
6517
6672
|
@Replicas = replicas
|
6518
6673
|
@ImageInfo = imageinfo
|
6519
6674
|
@Env = env
|
@@ -6532,6 +6687,7 @@ module TencentCloud
|
|
6532
6687
|
@HybridBillingPrepaidReplicas = hybridbillingprepaidreplicas
|
6533
6688
|
@OldHybridBillingPrepaidReplicas = oldhybridbillingprepaidreplicas
|
6534
6689
|
@ModelHotUpdateEnable = modelhotupdateenable
|
6690
|
+
@Pods = pods
|
6535
6691
|
end
|
6536
6692
|
|
6537
6693
|
def deserialize(params)
|
@@ -6581,6 +6737,10 @@ module TencentCloud
|
|
6581
6737
|
@HybridBillingPrepaidReplicas = params['HybridBillingPrepaidReplicas']
|
6582
6738
|
@OldHybridBillingPrepaidReplicas = params['OldHybridBillingPrepaidReplicas']
|
6583
6739
|
@ModelHotUpdateEnable = params['ModelHotUpdateEnable']
|
6740
|
+
unless params['Pods'].nil?
|
6741
|
+
@Pods = Pod.new
|
6742
|
+
@Pods.deserialize(params['Pods'])
|
6743
|
+
end
|
6584
6744
|
end
|
6585
6745
|
end
|
6586
6746
|
|
@@ -7314,10 +7474,25 @@ module TencentCloud
|
|
7314
7474
|
# @param ModelHotUpdatePath: 模型热更新目录
|
7315
7475
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7316
7476
|
# @type ModelHotUpdatePath: :class:`Tencentcloud::Tione.v20211111.models.CosPathInfo`
|
7477
|
+
# @param ReasoningEnvironmentId: 推理环境id
|
7478
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7479
|
+
# @type ReasoningEnvironmentId: String
|
7480
|
+
# @param TrainingJobVersion: 训练任务版本
|
7481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7482
|
+
# @type TrainingJobVersion: String
|
7483
|
+
# @param TrainingPreference: 训练偏好
|
7484
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7485
|
+
# @type TrainingPreference: String
|
7486
|
+
# @param AutoMLTaskId: 自动学习任务id
|
7487
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7488
|
+
# @type AutoMLTaskId: String
|
7489
|
+
# @param IsQAT: 是否QAT模型
|
7490
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7491
|
+
# @type IsQAT: Boolean
|
7317
7492
|
|
7318
|
-
attr_accessor :TrainingModelId, :TrainingModelVersionId, :TrainingModelVersion, :TrainingModelSource, :TrainingModelCreateTime, :TrainingModelCreator, :AlgorithmFramework, :ReasoningEnvironment, :ReasoningEnvironmentSource, :TrainingModelIndex, :TrainingJobName, :TrainingModelCosPath, :TrainingModelName, :TrainingJobId, :ReasoningImageInfo, :CreateTime, :TrainingModelStatus, :TrainingModelProgress, :TrainingModelErrorMsg, :TrainingModelFormat, :VersionType, :GPUType, :AutoClean, :ModelCleanPeriod, :MaxReservedModels, :ModelHotUpdatePath
|
7493
|
+
attr_accessor :TrainingModelId, :TrainingModelVersionId, :TrainingModelVersion, :TrainingModelSource, :TrainingModelCreateTime, :TrainingModelCreator, :AlgorithmFramework, :ReasoningEnvironment, :ReasoningEnvironmentSource, :TrainingModelIndex, :TrainingJobName, :TrainingModelCosPath, :TrainingModelName, :TrainingJobId, :ReasoningImageInfo, :CreateTime, :TrainingModelStatus, :TrainingModelProgress, :TrainingModelErrorMsg, :TrainingModelFormat, :VersionType, :GPUType, :AutoClean, :ModelCleanPeriod, :MaxReservedModels, :ModelHotUpdatePath, :ReasoningEnvironmentId, :TrainingJobVersion, :TrainingPreference, :AutoMLTaskId, :IsQAT
|
7319
7494
|
|
7320
|
-
def initialize(trainingmodelid=nil, trainingmodelversionid=nil, trainingmodelversion=nil, trainingmodelsource=nil, trainingmodelcreatetime=nil, trainingmodelcreator=nil, algorithmframework=nil, reasoningenvironment=nil, reasoningenvironmentsource=nil, trainingmodelindex=nil, trainingjobname=nil, trainingmodelcospath=nil, trainingmodelname=nil, trainingjobid=nil, reasoningimageinfo=nil, createtime=nil, trainingmodelstatus=nil, trainingmodelprogress=nil, trainingmodelerrormsg=nil, trainingmodelformat=nil, versiontype=nil, gputype=nil, autoclean=nil, modelcleanperiod=nil, maxreservedmodels=nil, modelhotupdatepath=nil)
|
7495
|
+
def initialize(trainingmodelid=nil, trainingmodelversionid=nil, trainingmodelversion=nil, trainingmodelsource=nil, trainingmodelcreatetime=nil, trainingmodelcreator=nil, algorithmframework=nil, reasoningenvironment=nil, reasoningenvironmentsource=nil, trainingmodelindex=nil, trainingjobname=nil, trainingmodelcospath=nil, trainingmodelname=nil, trainingjobid=nil, reasoningimageinfo=nil, createtime=nil, trainingmodelstatus=nil, trainingmodelprogress=nil, trainingmodelerrormsg=nil, trainingmodelformat=nil, versiontype=nil, gputype=nil, autoclean=nil, modelcleanperiod=nil, maxreservedmodels=nil, modelhotupdatepath=nil, reasoningenvironmentid=nil, trainingjobversion=nil, trainingpreference=nil, automltaskid=nil, isqat=nil)
|
7321
7496
|
@TrainingModelId = trainingmodelid
|
7322
7497
|
@TrainingModelVersionId = trainingmodelversionid
|
7323
7498
|
@TrainingModelVersion = trainingmodelversion
|
@@ -7344,6 +7519,11 @@ module TencentCloud
|
|
7344
7519
|
@ModelCleanPeriod = modelcleanperiod
|
7345
7520
|
@MaxReservedModels = maxreservedmodels
|
7346
7521
|
@ModelHotUpdatePath = modelhotupdatepath
|
7522
|
+
@ReasoningEnvironmentId = reasoningenvironmentid
|
7523
|
+
@TrainingJobVersion = trainingjobversion
|
7524
|
+
@TrainingPreference = trainingpreference
|
7525
|
+
@AutoMLTaskId = automltaskid
|
7526
|
+
@IsQAT = isqat
|
7347
7527
|
end
|
7348
7528
|
|
7349
7529
|
def deserialize(params)
|
@@ -7382,6 +7562,11 @@ module TencentCloud
|
|
7382
7562
|
@ModelHotUpdatePath = CosPathInfo.new
|
7383
7563
|
@ModelHotUpdatePath.deserialize(params['ModelHotUpdatePath'])
|
7384
7564
|
end
|
7565
|
+
@ReasoningEnvironmentId = params['ReasoningEnvironmentId']
|
7566
|
+
@TrainingJobVersion = params['TrainingJobVersion']
|
7567
|
+
@TrainingPreference = params['TrainingPreference']
|
7568
|
+
@AutoMLTaskId = params['AutoMLTaskId']
|
7569
|
+
@IsQAT = params['IsQAT']
|
7385
7570
|
end
|
7386
7571
|
end
|
7387
7572
|
|
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.514
|
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-02-
|
11
|
+
date: 2023-02-22 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
36
|
- lib/v20211111/models.rb
|
38
|
-
- lib/
|
39
|
-
- lib/v20191022/models.rb
|
37
|
+
- lib/v20211111/client.rb
|
40
38
|
- lib/tencentcloud-sdk-tione.rb
|
39
|
+
- lib/v20191022/models.rb
|
40
|
+
- lib/v20191022/client.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|