tencentcloud-sdk-nodejs-tione 4.0.607 → 4.0.617
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.
- package/CHANGELOG.md +2165 -0
- package/SERVICE_CHANGELOG.md +1814 -109
- package/package.json +1 -1
- package/products.md +66 -66
- package/src/services/tione/v20211111/tione_client.ts +6 -4
- package/src/services/tione/v20211111/tione_models.ts +203 -160
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +1 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +172 -135
|
@@ -1107,13 +1107,19 @@ export interface DescribeTrainingMetricsRequest {
|
|
|
1107
1107
|
TaskId: string;
|
|
1108
1108
|
}
|
|
1109
1109
|
/**
|
|
1110
|
-
*
|
|
1110
|
+
* 配置CFSTurbo参数
|
|
1111
1111
|
*/
|
|
1112
|
-
export interface
|
|
1112
|
+
export interface CFSTurbo {
|
|
1113
1113
|
/**
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1114
|
+
* CFSTurbo实例id
|
|
1115
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1116
|
+
*/
|
|
1117
|
+
Id?: string;
|
|
1118
|
+
/**
|
|
1119
|
+
* CFSTurbo路径
|
|
1120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1121
|
+
*/
|
|
1122
|
+
Path?: string;
|
|
1117
1123
|
}
|
|
1118
1124
|
/**
|
|
1119
1125
|
* CreateBatchTask请求参数结构体
|
|
@@ -2886,6 +2892,120 @@ export interface ServiceInfo {
|
|
|
2886
2892
|
*/
|
|
2887
2893
|
ScheduledAction?: string;
|
|
2888
2894
|
}
|
|
2895
|
+
/**
|
|
2896
|
+
* 出参类型
|
|
2897
|
+
*/
|
|
2898
|
+
export interface TrainingTaskSetItem {
|
|
2899
|
+
/**
|
|
2900
|
+
* 训练任务ID
|
|
2901
|
+
*/
|
|
2902
|
+
Id: string;
|
|
2903
|
+
/**
|
|
2904
|
+
* 训练任务名称
|
|
2905
|
+
*/
|
|
2906
|
+
Name: string;
|
|
2907
|
+
/**
|
|
2908
|
+
* 框架名称
|
|
2909
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2910
|
+
*/
|
|
2911
|
+
FrameworkName: string;
|
|
2912
|
+
/**
|
|
2913
|
+
* 训练框架版本
|
|
2914
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2915
|
+
*/
|
|
2916
|
+
FrameworkVersion: string;
|
|
2917
|
+
/**
|
|
2918
|
+
* 框架运行环境
|
|
2919
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2920
|
+
*/
|
|
2921
|
+
FrameworkEnvironment: string;
|
|
2922
|
+
/**
|
|
2923
|
+
* 计费模式
|
|
2924
|
+
*/
|
|
2925
|
+
ChargeType: string;
|
|
2926
|
+
/**
|
|
2927
|
+
* 计费状态,eg:BILLING计费中,ARREARS_STOP欠费停止,NOT_BILLING不在计费中
|
|
2928
|
+
*/
|
|
2929
|
+
ChargeStatus: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* 预付费专用资源组
|
|
2932
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2933
|
+
*/
|
|
2934
|
+
ResourceGroupId: string;
|
|
2935
|
+
/**
|
|
2936
|
+
* 资源配置
|
|
2937
|
+
*/
|
|
2938
|
+
ResourceConfigInfos: Array<ResourceConfigInfo>;
|
|
2939
|
+
/**
|
|
2940
|
+
* 训练模式eg:PS_WORKER、DDP、MPI、HOROVOD
|
|
2941
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2942
|
+
*/
|
|
2943
|
+
TrainingMode: string;
|
|
2944
|
+
/**
|
|
2945
|
+
* 任务状态,eg:STARTING启动中、RUNNING运行中、STOPPING停止中、STOPPED已停止、FAILED异常、SUCCEED已完成
|
|
2946
|
+
*/
|
|
2947
|
+
Status: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* 运行时长
|
|
2950
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2951
|
+
*/
|
|
2952
|
+
RuntimeInSeconds: number;
|
|
2953
|
+
/**
|
|
2954
|
+
* 创建时间
|
|
2955
|
+
*/
|
|
2956
|
+
CreateTime: string;
|
|
2957
|
+
/**
|
|
2958
|
+
* 训练开始时间
|
|
2959
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2960
|
+
*/
|
|
2961
|
+
StartTime: string;
|
|
2962
|
+
/**
|
|
2963
|
+
* 训练结束时间
|
|
2964
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2965
|
+
*/
|
|
2966
|
+
EndTime: string;
|
|
2967
|
+
/**
|
|
2968
|
+
* 训练输出
|
|
2969
|
+
*/
|
|
2970
|
+
Output: CosPathInfo;
|
|
2971
|
+
/**
|
|
2972
|
+
* 失败原因
|
|
2973
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2974
|
+
*/
|
|
2975
|
+
FailureReason: string;
|
|
2976
|
+
/**
|
|
2977
|
+
* 更新时间
|
|
2978
|
+
*/
|
|
2979
|
+
UpdateTime: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* 计费金额信息,eg:2.00元/小时 (按量计费)
|
|
2982
|
+
*/
|
|
2983
|
+
BillingInfo: string;
|
|
2984
|
+
/**
|
|
2985
|
+
* 预付费专用资源组名称
|
|
2986
|
+
*/
|
|
2987
|
+
ResourceGroupName: string;
|
|
2988
|
+
/**
|
|
2989
|
+
* 自定义镜像信息
|
|
2990
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2991
|
+
*/
|
|
2992
|
+
ImageInfo: ImageInfo;
|
|
2993
|
+
/**
|
|
2994
|
+
* 任务信息
|
|
2995
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2996
|
+
*/
|
|
2997
|
+
Message: string;
|
|
2998
|
+
/**
|
|
2999
|
+
* 标签配置
|
|
3000
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3001
|
+
*/
|
|
3002
|
+
Tags: Array<Tag>;
|
|
3003
|
+
/**
|
|
3004
|
+
* 回调地址
|
|
3005
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3006
|
+
*/
|
|
3007
|
+
CallbackUrl: string;
|
|
3008
|
+
}
|
|
2889
3009
|
/**
|
|
2890
3010
|
* DescribeModelService请求参数结构体
|
|
2891
3011
|
*/
|
|
@@ -3601,13 +3721,11 @@ export interface ResourceInfo {
|
|
|
3601
3721
|
* 创建或更新时无需填写,仅展示需要关注
|
|
3602
3722
|
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
|
|
3603
3723
|
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
|
|
3604
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3605
3724
|
*/
|
|
3606
3725
|
RealGpu?: number;
|
|
3607
3726
|
/**
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
*/
|
|
3727
|
+
* 创建或更新时无需填写,仅展示需要关注。详细的GPU使用信息。
|
|
3728
|
+
*/
|
|
3611
3729
|
RealGpuDetailSet?: Array<GpuDetail>;
|
|
3612
3730
|
}
|
|
3613
3731
|
/**
|
|
@@ -3679,15 +3797,6 @@ export interface ScheduledAction {
|
|
|
3679
3797
|
*/
|
|
3680
3798
|
ScheduleStopTime?: string;
|
|
3681
3799
|
}
|
|
3682
|
-
/**
|
|
3683
|
-
* DeleteModelAccelerateTask返回参数结构体
|
|
3684
|
-
*/
|
|
3685
|
-
export interface DeleteModelAccelerateTaskResponse {
|
|
3686
|
-
/**
|
|
3687
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3688
|
-
*/
|
|
3689
|
-
RequestId?: string;
|
|
3690
|
-
}
|
|
3691
3800
|
/**
|
|
3692
3801
|
* DeleteTrainingTask请求参数结构体
|
|
3693
3802
|
*/
|
|
@@ -3796,6 +3905,21 @@ export interface ModifyModelServiceResponse {
|
|
|
3796
3905
|
*/
|
|
3797
3906
|
RequestId?: string;
|
|
3798
3907
|
}
|
|
3908
|
+
/**
|
|
3909
|
+
* 任务建模Pod信息
|
|
3910
|
+
*/
|
|
3911
|
+
export interface PodInfo {
|
|
3912
|
+
/**
|
|
3913
|
+
* pod名
|
|
3914
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3915
|
+
*/
|
|
3916
|
+
Name?: string;
|
|
3917
|
+
/**
|
|
3918
|
+
* pod的IP
|
|
3919
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3920
|
+
*/
|
|
3921
|
+
IP?: string;
|
|
3922
|
+
}
|
|
3799
3923
|
/**
|
|
3800
3924
|
* DeleteBatchTask返回参数结构体
|
|
3801
3925
|
*/
|
|
@@ -3943,6 +4067,20 @@ export interface CreateModelServiceResponse {
|
|
|
3943
4067
|
*/
|
|
3944
4068
|
RequestId?: string;
|
|
3945
4069
|
}
|
|
4070
|
+
/**
|
|
4071
|
+
* DescribeModelServiceGroup返回参数结构体
|
|
4072
|
+
*/
|
|
4073
|
+
export interface DescribeModelServiceGroupResponse {
|
|
4074
|
+
/**
|
|
4075
|
+
* 服务组信息
|
|
4076
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4077
|
+
*/
|
|
4078
|
+
ServiceGroup: ServiceGroup;
|
|
4079
|
+
/**
|
|
4080
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4081
|
+
*/
|
|
4082
|
+
RequestId?: string;
|
|
4083
|
+
}
|
|
3946
4084
|
/**
|
|
3947
4085
|
* 在线服务一个服务组的信息
|
|
3948
4086
|
*/
|
|
@@ -4081,14 +4219,9 @@ export interface ServiceLimit {
|
|
|
4081
4219
|
InstanceRpsLimit?: number;
|
|
4082
4220
|
}
|
|
4083
4221
|
/**
|
|
4084
|
-
*
|
|
4222
|
+
* DeleteModelAccelerateTask返回参数结构体
|
|
4085
4223
|
*/
|
|
4086
|
-
export interface
|
|
4087
|
-
/**
|
|
4088
|
-
* 服务组信息
|
|
4089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4090
|
-
*/
|
|
4091
|
-
ServiceGroup: ServiceGroup;
|
|
4224
|
+
export interface DeleteModelAccelerateTaskResponse {
|
|
4092
4225
|
/**
|
|
4093
4226
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4094
4227
|
*/
|
|
@@ -4879,118 +5012,13 @@ export interface RowValue {
|
|
|
4879
5012
|
Value: string;
|
|
4880
5013
|
}
|
|
4881
5014
|
/**
|
|
4882
|
-
*
|
|
5015
|
+
* DescribeTrainingTaskPods请求参数结构体
|
|
4883
5016
|
*/
|
|
4884
|
-
export interface
|
|
5017
|
+
export interface DescribeTrainingTaskPodsRequest {
|
|
4885
5018
|
/**
|
|
4886
5019
|
* 训练任务ID
|
|
4887
5020
|
*/
|
|
4888
5021
|
Id: string;
|
|
4889
|
-
/**
|
|
4890
|
-
* 训练任务名称
|
|
4891
|
-
*/
|
|
4892
|
-
Name: string;
|
|
4893
|
-
/**
|
|
4894
|
-
* 框架名称
|
|
4895
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4896
|
-
*/
|
|
4897
|
-
FrameworkName: string;
|
|
4898
|
-
/**
|
|
4899
|
-
* 训练框架版本
|
|
4900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4901
|
-
*/
|
|
4902
|
-
FrameworkVersion: string;
|
|
4903
|
-
/**
|
|
4904
|
-
* 框架运行环境
|
|
4905
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4906
|
-
*/
|
|
4907
|
-
FrameworkEnvironment: string;
|
|
4908
|
-
/**
|
|
4909
|
-
* 计费模式
|
|
4910
|
-
*/
|
|
4911
|
-
ChargeType: string;
|
|
4912
|
-
/**
|
|
4913
|
-
* 计费状态,eg:BILLING计费中,ARREARS_STOP欠费停止,NOT_BILLING不在计费中
|
|
4914
|
-
*/
|
|
4915
|
-
ChargeStatus: string;
|
|
4916
|
-
/**
|
|
4917
|
-
* 预付费专用资源组
|
|
4918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4919
|
-
*/
|
|
4920
|
-
ResourceGroupId: string;
|
|
4921
|
-
/**
|
|
4922
|
-
* 资源配置
|
|
4923
|
-
*/
|
|
4924
|
-
ResourceConfigInfos: Array<ResourceConfigInfo>;
|
|
4925
|
-
/**
|
|
4926
|
-
* 训练模式eg:PS_WORKER、DDP、MPI、HOROVOD
|
|
4927
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4928
|
-
*/
|
|
4929
|
-
TrainingMode: string;
|
|
4930
|
-
/**
|
|
4931
|
-
* 任务状态,eg:STARTING启动中、RUNNING运行中、STOPPING停止中、STOPPED已停止、FAILED异常、SUCCEED已完成
|
|
4932
|
-
*/
|
|
4933
|
-
Status: string;
|
|
4934
|
-
/**
|
|
4935
|
-
* 运行时长
|
|
4936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4937
|
-
*/
|
|
4938
|
-
RuntimeInSeconds: number;
|
|
4939
|
-
/**
|
|
4940
|
-
* 创建时间
|
|
4941
|
-
*/
|
|
4942
|
-
CreateTime: string;
|
|
4943
|
-
/**
|
|
4944
|
-
* 训练开始时间
|
|
4945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4946
|
-
*/
|
|
4947
|
-
StartTime: string;
|
|
4948
|
-
/**
|
|
4949
|
-
* 训练结束时间
|
|
4950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4951
|
-
*/
|
|
4952
|
-
EndTime: string;
|
|
4953
|
-
/**
|
|
4954
|
-
* 训练输出
|
|
4955
|
-
*/
|
|
4956
|
-
Output: CosPathInfo;
|
|
4957
|
-
/**
|
|
4958
|
-
* 失败原因
|
|
4959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4960
|
-
*/
|
|
4961
|
-
FailureReason: string;
|
|
4962
|
-
/**
|
|
4963
|
-
* 更新时间
|
|
4964
|
-
*/
|
|
4965
|
-
UpdateTime: string;
|
|
4966
|
-
/**
|
|
4967
|
-
* 计费金额信息,eg:2.00元/小时 (按量计费)
|
|
4968
|
-
*/
|
|
4969
|
-
BillingInfo: string;
|
|
4970
|
-
/**
|
|
4971
|
-
* 预付费专用资源组名称
|
|
4972
|
-
*/
|
|
4973
|
-
ResourceGroupName: string;
|
|
4974
|
-
/**
|
|
4975
|
-
* 自定义镜像信息
|
|
4976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4977
|
-
*/
|
|
4978
|
-
ImageInfo: ImageInfo;
|
|
4979
|
-
/**
|
|
4980
|
-
* 任务信息
|
|
4981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4982
|
-
*/
|
|
4983
|
-
Message: string;
|
|
4984
|
-
/**
|
|
4985
|
-
* 标签配置
|
|
4986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
|
-
*/
|
|
4988
|
-
Tags: Array<Tag>;
|
|
4989
|
-
/**
|
|
4990
|
-
* 回调地址
|
|
4991
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4992
|
-
*/
|
|
4993
|
-
CallbackUrl: string;
|
|
4994
5022
|
}
|
|
4995
5023
|
/**
|
|
4996
5024
|
* DescribeTrainingModelVersions返回参数结构体
|
|
@@ -5083,10 +5111,15 @@ export interface DataConfig {
|
|
|
5083
5111
|
*/
|
|
5084
5112
|
HDFSSource?: HDFSConfig;
|
|
5085
5113
|
/**
|
|
5086
|
-
*
|
|
5114
|
+
* 配置GooseFS的数据
|
|
5087
5115
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5088
5116
|
*/
|
|
5089
5117
|
GooseFSSource?: GooseFS;
|
|
5118
|
+
/**
|
|
5119
|
+
* 配置TurboFS的数据
|
|
5120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5121
|
+
*/
|
|
5122
|
+
CFSTurboSource?: CFSTurbo;
|
|
5090
5123
|
}
|
|
5091
5124
|
/**
|
|
5092
5125
|
* DescribeTrainingModelVersion请求参数结构体
|
|
@@ -5204,11 +5237,15 @@ export interface DescribeTrainingTaskPodsResponse {
|
|
|
5204
5237
|
/**
|
|
5205
5238
|
* pod名称列表
|
|
5206
5239
|
*/
|
|
5207
|
-
PodNames
|
|
5240
|
+
PodNames?: Array<string>;
|
|
5208
5241
|
/**
|
|
5209
5242
|
* 数量
|
|
5210
5243
|
*/
|
|
5211
|
-
TotalCount
|
|
5244
|
+
TotalCount?: number;
|
|
5245
|
+
/**
|
|
5246
|
+
* pod详细信息
|
|
5247
|
+
*/
|
|
5248
|
+
PodInfoList?: PodInfo;
|
|
5212
5249
|
/**
|
|
5213
5250
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5214
5251
|
*/
|