tencentcloud-sdk-nodejs-tione 4.1.275 → 4.1.278
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
|
@@ -186,6 +186,10 @@ export interface CreateModelServiceRequest {
|
|
|
186
186
|
* <p>网关相关配置</p>
|
|
187
187
|
*/
|
|
188
188
|
GatewayConfig?: GatewayConfig;
|
|
189
|
+
/**
|
|
190
|
+
* <p>资源供应属性(潮汐/竞价等供应模式);空表示常规按量后付费</p>
|
|
191
|
+
*/
|
|
192
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
189
193
|
}
|
|
190
194
|
/**
|
|
191
195
|
* DescribePresetImageList请求参数结构体
|
|
@@ -268,6 +272,10 @@ export interface DescribeLogsRequest {
|
|
|
268
272
|
* <p>使用OFFSET分页查询时,指定返回的数据偏移量,默认为0</p>
|
|
269
273
|
*/
|
|
270
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;
|
|
271
279
|
}
|
|
272
280
|
/**
|
|
273
281
|
* DescribeModelAccelerateVersions请求参数结构体
|
|
@@ -683,6 +691,23 @@ export interface Filter {
|
|
|
683
691
|
*/
|
|
684
692
|
Fuzzy?: boolean;
|
|
685
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
|
+
}
|
|
686
711
|
/**
|
|
687
712
|
* DescribeTrainingModelVersions请求参数结构体
|
|
688
713
|
*/
|
|
@@ -925,6 +950,11 @@ export interface Service {
|
|
|
925
950
|
* <p>变更服务的子账户名称</p>
|
|
926
951
|
*/
|
|
927
952
|
ChangerName?: string;
|
|
953
|
+
/**
|
|
954
|
+
* <p>资源供应属性(潮汐/竞价等供应模式);空表示常规按量后付费</p>
|
|
955
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
956
|
+
*/
|
|
957
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
928
958
|
}
|
|
929
959
|
/**
|
|
930
960
|
* 设备对应的镜像信息
|
|
@@ -3224,25 +3254,33 @@ export interface AnnotationTaskInfo {
|
|
|
3224
3254
|
*/
|
|
3225
3255
|
export interface LogIdentity {
|
|
3226
3256
|
/**
|
|
3227
|
-
*
|
|
3257
|
+
* <p>单条日志的ID</p>
|
|
3228
3258
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3229
3259
|
*/
|
|
3230
|
-
Id
|
|
3260
|
+
Id?: string;
|
|
3231
3261
|
/**
|
|
3232
|
-
*
|
|
3262
|
+
* <p>单条日志的内容</p>
|
|
3233
3263
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3234
3264
|
*/
|
|
3235
|
-
Message
|
|
3265
|
+
Message?: string;
|
|
3236
3266
|
/**
|
|
3237
|
-
*
|
|
3267
|
+
* <p>这条日志对应的Pod名称</p>
|
|
3238
3268
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3239
3269
|
*/
|
|
3240
|
-
PodName
|
|
3270
|
+
PodName?: string;
|
|
3241
3271
|
/**
|
|
3242
|
-
*
|
|
3272
|
+
* <p>日志的时间戳(RFC3339格式的时间字符串)</p>
|
|
3243
3273
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3244
3274
|
*/
|
|
3245
|
-
Timestamp
|
|
3275
|
+
Timestamp?: string;
|
|
3276
|
+
/**
|
|
3277
|
+
* <p>日志上报请求包的ID</p>
|
|
3278
|
+
*/
|
|
3279
|
+
PkgId?: string;
|
|
3280
|
+
/**
|
|
3281
|
+
* <p>请求包内日志的ID</p>
|
|
3282
|
+
*/
|
|
3283
|
+
PkgLogId?: string;
|
|
3246
3284
|
}
|
|
3247
3285
|
/**
|
|
3248
3286
|
* 挂载的实例列表
|
|
@@ -4571,6 +4609,14 @@ export interface CreateTrainingTaskRequest {
|
|
|
4571
4609
|
* <p>环境变量</p>
|
|
4572
4610
|
*/
|
|
4573
4611
|
Envs?: Array<EnvVar>;
|
|
4612
|
+
/**
|
|
4613
|
+
* <p>训练诊断工具配置</p>
|
|
4614
|
+
*/
|
|
4615
|
+
TrainToolConfig?: TrainToolConfig;
|
|
4616
|
+
/**
|
|
4617
|
+
* <p>资源供应属性</p>
|
|
4618
|
+
*/
|
|
4619
|
+
ResourceSupplyAttribute?: ResourceSupplyAttribute;
|
|
4574
4620
|
}
|
|
4575
4621
|
/**
|
|
4576
4622
|
* 对话输入内容
|
|
@@ -6794,6 +6840,15 @@ export interface MountLimitInfo {
|
|
|
6794
6840
|
*/
|
|
6795
6841
|
ExtraConf?: StorageExtraConf;
|
|
6796
6842
|
}
|
|
6843
|
+
/**
|
|
6844
|
+
* 资源供应属性
|
|
6845
|
+
*/
|
|
6846
|
+
export interface ResourceSupplyAttribute {
|
|
6847
|
+
/**
|
|
6848
|
+
* <p>资源供应类型。TIDE:潮汐;SPOT:竞价;空:常规按量后付费</p>
|
|
6849
|
+
*/
|
|
6850
|
+
SupplyType?: string;
|
|
6851
|
+
}
|
|
6797
6852
|
/**
|
|
6798
6853
|
* DescribePresetImageList返回参数结构体
|
|
6799
6854
|
*/
|