tencentcloud-sdk-nodejs-tione 4.1.189 → 4.1.191
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
|
@@ -197,6 +197,10 @@ export interface CreateModelServiceRequest {
|
|
|
197
197
|
* 调度策略 [binpack] 优先占满整机,尽量避免碎卡(默认值)[spread] 优先分散在各个节点,确保服务高可用
|
|
198
198
|
*/
|
|
199
199
|
SchedulingStrategy?: string;
|
|
200
|
+
/**
|
|
201
|
+
* 网关日志投递相关配置
|
|
202
|
+
*/
|
|
203
|
+
GatewayLogConfig?: LogConfig;
|
|
200
204
|
}
|
|
201
205
|
/**
|
|
202
206
|
* DescribeLogs请求参数结构体
|
|
@@ -529,6 +533,11 @@ export interface NotebookSetItem {
|
|
|
529
533
|
* 容器服务暴露端口配置
|
|
530
534
|
*/
|
|
531
535
|
ExposePortConfig?: ExposePortConfig;
|
|
536
|
+
/**
|
|
537
|
+
* 描述
|
|
538
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
539
|
+
*/
|
|
540
|
+
Description?: string;
|
|
532
541
|
}
|
|
533
542
|
/**
|
|
534
543
|
* ModifyNotebookTags请求参数结构体
|
|
@@ -633,6 +642,10 @@ export interface AuthTokenBase {
|
|
|
633
642
|
* token状态
|
|
634
643
|
*/
|
|
635
644
|
Status?: string;
|
|
645
|
+
/**
|
|
646
|
+
* token的唯一id,与value一一对应,重置后id也会一并变化
|
|
647
|
+
*/
|
|
648
|
+
Id?: string;
|
|
636
649
|
}
|
|
637
650
|
/**
|
|
638
651
|
* DeleteNotebook请求参数结构体
|
|
@@ -1202,6 +1215,10 @@ export interface DescribeTrainingTaskRequest {
|
|
|
1202
1215
|
* 训练任务ID
|
|
1203
1216
|
*/
|
|
1204
1217
|
Id: string;
|
|
1218
|
+
/**
|
|
1219
|
+
* 训练任务实例ID
|
|
1220
|
+
*/
|
|
1221
|
+
InstanceId?: string;
|
|
1205
1222
|
}
|
|
1206
1223
|
/**
|
|
1207
1224
|
* StartNotebook返回参数结构体
|
|
@@ -2255,6 +2272,10 @@ export interface CreateNotebookRequest {
|
|
|
2255
2272
|
* GooseFS存储配置
|
|
2256
2273
|
*/
|
|
2257
2274
|
VolumeSourceGooseFS?: GooseFS;
|
|
2275
|
+
/**
|
|
2276
|
+
* 描述
|
|
2277
|
+
*/
|
|
2278
|
+
Description?: string;
|
|
2258
2279
|
}
|
|
2259
2280
|
/**
|
|
2260
2281
|
* CreatePresignedNotebookUrl返回参数结构体
|
|
@@ -2379,6 +2400,10 @@ export interface ModifyNotebookRequest {
|
|
|
2379
2400
|
* 自定义环境变量
|
|
2380
2401
|
*/
|
|
2381
2402
|
Envs?: Array<EnvVar>;
|
|
2403
|
+
/**
|
|
2404
|
+
* 描述
|
|
2405
|
+
*/
|
|
2406
|
+
Description?: string;
|
|
2382
2407
|
}
|
|
2383
2408
|
/**
|
|
2384
2409
|
* hpa的描述
|
|
@@ -4854,6 +4879,11 @@ export interface NotebookDetail {
|
|
|
4854
4879
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4855
4880
|
*/
|
|
4856
4881
|
AppId?: string;
|
|
4882
|
+
/**
|
|
4883
|
+
* 描述
|
|
4884
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4885
|
+
*/
|
|
4886
|
+
Description?: string;
|
|
4857
4887
|
}
|
|
4858
4888
|
/**
|
|
4859
4889
|
* DescribeBillingResourceInstanceRunningJobs请求参数结构体
|
|
@@ -5249,6 +5279,10 @@ export interface ServiceGroup {
|
|
|
5249
5279
|
* 子用户的 nickname
|
|
5250
5280
|
*/
|
|
5251
5281
|
SubUinName?: string;
|
|
5282
|
+
/**
|
|
5283
|
+
* 网关日志投递相关配置
|
|
5284
|
+
*/
|
|
5285
|
+
GatewayLogConfig?: LogConfig;
|
|
5252
5286
|
}
|
|
5253
5287
|
/**
|
|
5254
5288
|
* 服务的限流限速等配置
|