tencentcloud-sdk-nodejs-tione 4.1.277 → 4.1.279
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/package.json
CHANGED
|
@@ -272,6 +272,10 @@ export interface DescribeLogsRequest {
|
|
|
272
272
|
* <p>使用OFFSET分页查询时,指定返回的数据偏移量,默认为0</p>
|
|
273
273
|
*/
|
|
274
274
|
Offset?: number;
|
|
275
|
+
/**
|
|
276
|
+
* <p>日志类别</p><p>枚举值:</p><ul><li>stdout: stdout</li><li>stderr: stderr</li></ul><p>默认值:""</p>
|
|
277
|
+
*/
|
|
278
|
+
LogStream?: string;
|
|
275
279
|
}
|
|
276
280
|
/**
|
|
277
281
|
* DescribeModelAccelerateVersions请求参数结构体
|
|
@@ -687,6 +691,23 @@ export interface Filter {
|
|
|
687
691
|
*/
|
|
688
692
|
Fuzzy?: boolean;
|
|
689
693
|
}
|
|
694
|
+
/**
|
|
695
|
+
* 训练诊断工具配置
|
|
696
|
+
*/
|
|
697
|
+
export interface TrainToolConfig {
|
|
698
|
+
/**
|
|
699
|
+
* <p>是否开启 Hang 检测</p><p>默认值:false</p>
|
|
700
|
+
*/
|
|
701
|
+
EnableHangMonitor?: boolean;
|
|
702
|
+
/**
|
|
703
|
+
* <p>Hang 检测的节点列表</p>
|
|
704
|
+
*/
|
|
705
|
+
HangMonitorNodes?: Array<string>;
|
|
706
|
+
/**
|
|
707
|
+
* <p>Hang 超时时间</p><p>取值范围:[1, 14400]</p><p>单位:分</p>
|
|
708
|
+
*/
|
|
709
|
+
LogHangTimeoutInMinute?: number;
|
|
710
|
+
}
|
|
690
711
|
/**
|
|
691
712
|
* DescribeTrainingModelVersions请求参数结构体
|
|
692
713
|
*/
|
|
@@ -3233,25 +3254,33 @@ export interface AnnotationTaskInfo {
|
|
|
3233
3254
|
*/
|
|
3234
3255
|
export interface LogIdentity {
|
|
3235
3256
|
/**
|
|
3236
|
-
*
|
|
3257
|
+
* <p>单条日志的ID</p>
|
|
3237
3258
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3238
3259
|
*/
|
|
3239
|
-
Id
|
|
3260
|
+
Id?: string;
|
|
3240
3261
|
/**
|
|
3241
|
-
*
|
|
3262
|
+
* <p>单条日志的内容</p>
|
|
3242
3263
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3243
3264
|
*/
|
|
3244
|
-
Message
|
|
3265
|
+
Message?: string;
|
|
3245
3266
|
/**
|
|
3246
|
-
*
|
|
3267
|
+
* <p>这条日志对应的Pod名称</p>
|
|
3247
3268
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3248
3269
|
*/
|
|
3249
|
-
PodName
|
|
3270
|
+
PodName?: string;
|
|
3250
3271
|
/**
|
|
3251
|
-
*
|
|
3272
|
+
* <p>日志的时间戳(RFC3339格式的时间字符串)</p>
|
|
3252
3273
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3253
3274
|
*/
|
|
3254
|
-
Timestamp
|
|
3275
|
+
Timestamp?: string;
|
|
3276
|
+
/**
|
|
3277
|
+
* <p>日志上报请求包的ID</p>
|
|
3278
|
+
*/
|
|
3279
|
+
PkgId?: string;
|
|
3280
|
+
/**
|
|
3281
|
+
* <p>请求包内日志的ID</p>
|
|
3282
|
+
*/
|
|
3283
|
+
PkgLogId?: string;
|
|
3255
3284
|
}
|
|
3256
3285
|
/**
|
|
3257
3286
|
* 挂载的实例列表
|
|
@@ -4580,6 +4609,14 @@ export interface CreateTrainingTaskRequest {
|
|
|
4580
4609
|
* <p>环境变量</p>
|
|
4581
4610
|
*/
|
|
4582
4611
|
Envs?: Array<EnvVar>;
|
|
4612
|
+
/**
|
|
4613
|
+
* <p>训练诊断工具配置</p>
|
|
4614
|
+
*/
|
|
4615
|
+
TrainToolConfig?: TrainToolConfig;
|
|
4616
|
+
/**
|
|
4617
|
+
* <p>资源供应属性</p>
|
|
4618
|
+
*/
|
|
4619
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
4583
4620
|
}
|
|
4584
4621
|
/**
|
|
4585
4622
|
* 对话输入内容
|