tencentcloud-sdk-nodejs-tione 4.0.856 → 4.0.860
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 +1 -1
- package/products.md +29 -29
- package/src/services/tione/v20211111/tione_client.ts +80 -574
- package/src/services/tione/v20211111/tione_models.ts +1967 -4821
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +17 -169
- package/tencentcloud/services/tione/v20211111/tione_client.js +24 -252
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +1951 -4691
|
@@ -34,16 +34,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
34
34
|
return this.request("DescribeTrainingModelVersion", req, cb);
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
*/
|
|
39
|
-
async DeleteBatchTask(req, cb) {
|
|
40
|
-
return this.request("DeleteBatchTask", req, cb);
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* 本接口(DescribeBillingSpecs)用于查询计费项列表
|
|
37
|
+
* 查询单个服务
|
|
44
38
|
*/
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
39
|
+
async DescribeModelService(req, cb) {
|
|
40
|
+
return this.request("DescribeModelService", req, cb);
|
|
47
41
|
}
|
|
48
42
|
/**
|
|
49
43
|
* 导入模型
|
|
@@ -51,12 +45,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
51
45
|
async CreateTrainingModel(req, cb) {
|
|
52
46
|
return this.request("CreateTrainingModel", req, cb);
|
|
53
47
|
}
|
|
54
|
-
/**
|
|
55
|
-
* 本接口(DescribeBillingSpecsPrice)用于查询按量计费计费项价格。
|
|
56
|
-
*/
|
|
57
|
-
async DescribeBillingSpecsPrice(req, cb) {
|
|
58
|
-
return this.request("DescribeBillingSpecsPrice", req, cb);
|
|
59
|
-
}
|
|
60
48
|
/**
|
|
61
49
|
* 展示服务的调用信息
|
|
62
50
|
*/
|
|
@@ -64,28 +52,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
64
52
|
return this.request("DescribeModelServiceCallInfo", req, cb);
|
|
65
53
|
}
|
|
66
54
|
/**
|
|
67
|
-
*
|
|
68
|
-
*/
|
|
69
|
-
async ModifyModelServicePartialConfig(req, cb) {
|
|
70
|
-
return this.request("ModifyModelServicePartialConfig", req, cb);
|
|
71
|
-
}
|
|
72
|
-
/**
|
|
73
|
-
* 保存优化模型
|
|
74
|
-
*/
|
|
75
|
-
async CreateOptimizedModel(req, cb) {
|
|
76
|
-
return this.request("CreateOptimizedModel", req, cb);
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* 训练任务详情
|
|
80
|
-
*/
|
|
81
|
-
async DescribeTrainingTask(req, cb) {
|
|
82
|
-
return this.request("DescribeTrainingTask", req, cb);
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* 获取任务式建模训练任务,Notebook,在线服务和批量预测任务的事件API
|
|
55
|
+
* 训练任务列表
|
|
86
56
|
*/
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
57
|
+
async DescribeTrainingTasks(req, cb) {
|
|
58
|
+
return this.request("DescribeTrainingTasks", req, cb);
|
|
89
59
|
}
|
|
90
60
|
/**
|
|
91
61
|
* 获取内置镜像列表
|
|
@@ -99,42 +69,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
99
69
|
async StartNotebook(req, cb) {
|
|
100
70
|
return this.request("StartNotebook", req, cb);
|
|
101
71
|
}
|
|
102
|
-
/**
|
|
103
|
-
* 查询单个服务
|
|
104
|
-
*/
|
|
105
|
-
async DescribeModelService(req, cb) {
|
|
106
|
-
return this.request("DescribeModelService", req, cb);
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
* 训练框架列表
|
|
110
|
-
*/
|
|
111
|
-
async DescribeTrainingFrameworks(req, cb) {
|
|
112
|
-
return this.request("DescribeTrainingFrameworks", req, cb);
|
|
113
|
-
}
|
|
114
72
|
/**
|
|
115
73
|
* 删除数据集
|
|
116
74
|
*/
|
|
117
75
|
async DeleteDataset(req, cb) {
|
|
118
76
|
return this.request("DeleteDataset", req, cb);
|
|
119
77
|
}
|
|
120
|
-
/**
|
|
121
|
-
* 创建模型训练任务
|
|
122
|
-
*/
|
|
123
|
-
async CreateTrainingTask(req, cb) {
|
|
124
|
-
return this.request("CreateTrainingTask", req, cb);
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* 停止批量预测任务
|
|
128
|
-
*/
|
|
129
|
-
async StopBatchTask(req, cb) {
|
|
130
|
-
return this.request("StopBatchTask", req, cb);
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* 查询非结构化数据集详情
|
|
134
|
-
*/
|
|
135
|
-
async DescribeDatasetDetailUnstructured(req, cb) {
|
|
136
|
-
return this.request("DescribeDatasetDetailUnstructured", req, cb);
|
|
137
|
-
}
|
|
138
78
|
/**
|
|
139
79
|
* 删除Notebook
|
|
140
80
|
*/
|
|
@@ -142,10 +82,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
142
82
|
return this.request("DeleteNotebook", req, cb);
|
|
143
83
|
}
|
|
144
84
|
/**
|
|
145
|
-
*
|
|
85
|
+
* 训练任务详情
|
|
146
86
|
*/
|
|
147
|
-
async
|
|
148
|
-
return this.request("
|
|
87
|
+
async DescribeTrainingTask(req, cb) {
|
|
88
|
+
return this.request("DescribeTrainingTask", req, cb);
|
|
149
89
|
}
|
|
150
90
|
/**
|
|
151
91
|
* 训练任务pod列表
|
|
@@ -172,28 +112,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
172
112
|
return this.request("ChatCompletion", req, cb);
|
|
173
113
|
}
|
|
174
114
|
/**
|
|
175
|
-
*
|
|
176
|
-
*/
|
|
177
|
-
async DescribeTrainingMetrics(req, cb) {
|
|
178
|
-
return this.request("DescribeTrainingMetrics", req, cb);
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* 修改Notebook标签
|
|
182
|
-
*/
|
|
183
|
-
async ModifyNotebookTags(req, cb) {
|
|
184
|
-
return this.request("ModifyNotebookTags", req, cb);
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* 删除模型
|
|
188
|
-
*/
|
|
189
|
-
async DeleteTrainingModel(req, cb) {
|
|
190
|
-
return this.request("DeleteTrainingModel", req, cb);
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* 更新推理服务组流量分配
|
|
115
|
+
* 模型加速之后的模型版本列表
|
|
194
116
|
*/
|
|
195
|
-
async
|
|
196
|
-
return this.request("
|
|
117
|
+
async DescribeModelAccelerateVersions(req, cb) {
|
|
118
|
+
return this.request("DescribeModelAccelerateVersions", req, cb);
|
|
197
119
|
}
|
|
198
120
|
/**
|
|
199
121
|
* 创建数据集
|
|
@@ -201,12 +123,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
201
123
|
async CreateDataset(req, cb) {
|
|
202
124
|
return this.request("CreateDataset", req, cb);
|
|
203
125
|
}
|
|
204
|
-
/**
|
|
205
|
-
* 查询批量预测任务实例列表
|
|
206
|
-
*/
|
|
207
|
-
async DescribeBatchTaskInstances(req, cb) {
|
|
208
|
-
return this.request("DescribeBatchTaskInstances", req, cb);
|
|
209
|
-
}
|
|
210
126
|
/**
|
|
211
127
|
* 创建Notebook
|
|
212
128
|
*/
|
|
@@ -214,34 +130,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
214
130
|
return this.request("CreateNotebook", req, cb);
|
|
215
131
|
}
|
|
216
132
|
/**
|
|
217
|
-
*
|
|
218
|
-
*/
|
|
219
|
-
async DescribeModelAccEngineVersions(req, cb) {
|
|
220
|
-
return this.request("DescribeModelAccEngineVersions", req, cb);
|
|
221
|
-
}
|
|
222
|
-
/**
|
|
223
|
-
* 停止模型训练任务
|
|
224
|
-
*/
|
|
225
|
-
async StopTrainingTask(req, cb) {
|
|
226
|
-
return this.request("StopTrainingTask", req, cb);
|
|
227
|
-
}
|
|
228
|
-
/**
|
|
229
|
-
* 启动模型训练任务
|
|
230
|
-
*/
|
|
231
|
-
async StartTrainingTask(req, cb) {
|
|
232
|
-
return this.request("StartTrainingTask", req, cb);
|
|
233
|
-
}
|
|
234
|
-
/**
|
|
235
|
-
* 删除模型加速任务
|
|
236
|
-
*/
|
|
237
|
-
async DeleteModelAccelerateTask(req, cb) {
|
|
238
|
-
return this.request("DeleteModelAccelerateTask", req, cb);
|
|
239
|
-
}
|
|
240
|
-
/**
|
|
241
|
-
* 列举API
|
|
133
|
+
* 查询单个服务组
|
|
242
134
|
*/
|
|
243
|
-
async
|
|
244
|
-
return this.request("
|
|
135
|
+
async DescribeModelServiceGroup(req, cb) {
|
|
136
|
+
return this.request("DescribeModelServiceGroup", req, cb);
|
|
245
137
|
}
|
|
246
138
|
/**
|
|
247
139
|
* 根据服务组id删除服务组下所有模型服务
|
|
@@ -255,60 +147,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
255
147
|
async PushTrainingMetrics(req, cb) {
|
|
256
148
|
return this.request("PushTrainingMetrics", req, cb);
|
|
257
149
|
}
|
|
258
|
-
/**
|
|
259
|
-
* 查询批量预测任务列表信息
|
|
260
|
-
*/
|
|
261
|
-
async DescribeBatchTasks(req, cb) {
|
|
262
|
-
return this.request("DescribeBatchTasks", req, cb);
|
|
263
|
-
}
|
|
264
150
|
/**
|
|
265
151
|
* 模型版本列表
|
|
266
152
|
*/
|
|
267
153
|
async DescribeTrainingModelVersions(req, cb) {
|
|
268
154
|
return this.request("DescribeTrainingModelVersions", req, cb);
|
|
269
155
|
}
|
|
270
|
-
/**
|
|
271
|
-
* 查看notebook镜像保存记录
|
|
272
|
-
*/
|
|
273
|
-
async DescribeNotebookImageRecords(req, cb) {
|
|
274
|
-
return this.request("DescribeNotebookImageRecords", req, cb);
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
* 保存镜像
|
|
278
|
-
*/
|
|
279
|
-
async CreateNotebookImage(req, cb) {
|
|
280
|
-
return this.request("CreateNotebookImage", req, cb);
|
|
281
|
-
}
|
|
282
|
-
/**
|
|
283
|
-
* 查询模型加速任务列表
|
|
284
|
-
*/
|
|
285
|
-
async DescribeModelAccelerateTasks(req, cb) {
|
|
286
|
-
return this.request("DescribeModelAccelerateTasks", req, cb);
|
|
287
|
-
}
|
|
288
156
|
/**
|
|
289
157
|
* 用于创建、发布一个新的模型服务
|
|
290
158
|
*/
|
|
291
159
|
async CreateModelService(req, cb) {
|
|
292
160
|
return this.request("CreateModelService", req, cb);
|
|
293
161
|
}
|
|
294
|
-
/**
|
|
295
|
-
* 查询数据集列表
|
|
296
|
-
*/
|
|
297
|
-
async DescribeDatasets(req, cb) {
|
|
298
|
-
return this.request("DescribeDatasets", req, cb);
|
|
299
|
-
}
|
|
300
162
|
/**
|
|
301
163
|
* 生成Notebook访问链接
|
|
302
164
|
*/
|
|
303
165
|
async CreatePresignedNotebookUrl(req, cb) {
|
|
304
166
|
return this.request("CreatePresignedNotebookUrl", req, cb);
|
|
305
167
|
}
|
|
306
|
-
/**
|
|
307
|
-
* 获取任务式建模训练任务,Notebook,在线服务和批量预测任务的日志API
|
|
308
|
-
*/
|
|
309
|
-
async DescribeLogs(req, cb) {
|
|
310
|
-
return this.request("DescribeLogs", req, cb);
|
|
311
|
-
}
|
|
312
168
|
/**
|
|
313
169
|
* 根据服务id删除模型服务
|
|
314
170
|
*/
|
|
@@ -316,16 +172,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
316
172
|
return this.request("DeleteModelService", req, cb);
|
|
317
173
|
}
|
|
318
174
|
/**
|
|
319
|
-
*
|
|
320
|
-
*/
|
|
321
|
-
async DescribeDatasetDetailStructured(req, cb) {
|
|
322
|
-
return this.request("DescribeDatasetDetailStructured", req, cb);
|
|
323
|
-
}
|
|
324
|
-
/**
|
|
325
|
-
* 重启模型加速任务
|
|
175
|
+
* 查询数据集列表
|
|
326
176
|
*/
|
|
327
|
-
async
|
|
328
|
-
return this.request("
|
|
177
|
+
async DescribeDatasets(req, cb) {
|
|
178
|
+
return this.request("DescribeDatasets", req, cb);
|
|
329
179
|
}
|
|
330
180
|
/**
|
|
331
181
|
* 查询资源组节点运行中的任务
|
|
@@ -339,24 +189,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
339
189
|
async SendChatMessage(req, cb) {
|
|
340
190
|
return this.request("SendChatMessage", req, cb);
|
|
341
191
|
}
|
|
342
|
-
/**
|
|
343
|
-
* 查询多个服务
|
|
344
|
-
*/
|
|
345
|
-
async DescribeModelServices(req, cb) {
|
|
346
|
-
return this.request("DescribeModelServices", req, cb);
|
|
347
|
-
}
|
|
348
|
-
/**
|
|
349
|
-
* 训练任务列表
|
|
350
|
-
*/
|
|
351
|
-
async DescribeTrainingTasks(req, cb) {
|
|
352
|
-
return this.request("DescribeTrainingTasks", req, cb);
|
|
353
|
-
}
|
|
354
|
-
/**
|
|
355
|
-
* 删除notebook镜像保存记录
|
|
356
|
-
*/
|
|
357
|
-
async DeleteNotebookImageRecord(req, cb) {
|
|
358
|
-
return this.request("DeleteNotebookImageRecord", req, cb);
|
|
359
|
-
}
|
|
360
192
|
/**
|
|
361
193
|
* 用于更新模型服务
|
|
362
194
|
*/
|
|
@@ -370,46 +202,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
370
202
|
return this.request("DescribeNotebooks", req, cb);
|
|
371
203
|
}
|
|
372
204
|
/**
|
|
373
|
-
*
|
|
374
|
-
*/
|
|
375
|
-
async CreateBatchTask(req, cb) {
|
|
376
|
-
return this.request("CreateBatchTask", req, cb);
|
|
377
|
-
}
|
|
378
|
-
/**
|
|
379
|
-
* 停止保存镜像
|
|
380
|
-
*/
|
|
381
|
-
async StopCreatingImage(req, cb) {
|
|
382
|
-
return this.request("StopCreatingImage", req, cb);
|
|
383
|
-
}
|
|
384
|
-
/**
|
|
385
|
-
* 删除训练任务
|
|
386
|
-
*/
|
|
387
|
-
async DeleteTrainingTask(req, cb) {
|
|
388
|
-
return this.request("DeleteTrainingTask", req, cb);
|
|
389
|
-
}
|
|
390
|
-
/**
|
|
391
|
-
* 模型加速之后的模型版本列表
|
|
392
|
-
*/
|
|
393
|
-
async DescribeModelAccelerateVersions(req, cb) {
|
|
394
|
-
return this.request("DescribeModelAccelerateVersions", req, cb);
|
|
395
|
-
}
|
|
396
|
-
/**
|
|
397
|
-
* 批量创建模型加速任务
|
|
398
|
-
*/
|
|
399
|
-
async CreateBatchModelAccTasks(req, cb) {
|
|
400
|
-
return this.request("CreateBatchModelAccTasks", req, cb);
|
|
401
|
-
}
|
|
402
|
-
/**
|
|
403
|
-
* 查询批量预测任务
|
|
205
|
+
* 删除模型
|
|
404
206
|
*/
|
|
405
|
-
async
|
|
406
|
-
return this.request("
|
|
207
|
+
async DeleteTrainingModel(req, cb) {
|
|
208
|
+
return this.request("DeleteTrainingModel", req, cb);
|
|
407
209
|
}
|
|
408
210
|
/**
|
|
409
|
-
*
|
|
211
|
+
* 停止模型加速任务
|
|
410
212
|
*/
|
|
411
|
-
async
|
|
412
|
-
return this.request("
|
|
213
|
+
async StopModelAccelerateTask(req, cb) {
|
|
214
|
+
return this.request("StopModelAccelerateTask", req, cb);
|
|
413
215
|
}
|
|
414
216
|
/**
|
|
415
217
|
* 查询资源组节点列表
|
|
@@ -417,30 +219,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
417
219
|
async DescribeBillingResourceGroup(req, cb) {
|
|
418
220
|
return this.request("DescribeBillingResourceGroup", req, cb);
|
|
419
221
|
}
|
|
420
|
-
/**
|
|
421
|
-
* 查询最近上报的训练自定义指标
|
|
422
|
-
*/
|
|
423
|
-
async DescribeLatestTrainingMetrics(req, cb) {
|
|
424
|
-
return this.request("DescribeLatestTrainingMetrics", req, cb);
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* 查询镜像kernel
|
|
428
|
-
*/
|
|
429
|
-
async DescribeNotebookImageKernels(req, cb) {
|
|
430
|
-
return this.request("DescribeNotebookImageKernels", req, cb);
|
|
431
|
-
}
|
|
432
222
|
/**
|
|
433
223
|
* Notebook详情
|
|
434
224
|
*/
|
|
435
225
|
async DescribeNotebook(req, cb) {
|
|
436
226
|
return this.request("DescribeNotebook", req, cb);
|
|
437
227
|
}
|
|
438
|
-
/**
|
|
439
|
-
* 展示服务的历史版本
|
|
440
|
-
*/
|
|
441
|
-
async DescribeModelServiceHistory(req, cb) {
|
|
442
|
-
return this.request("DescribeModelServiceHistory", req, cb);
|
|
443
|
-
}
|
|
444
228
|
/**
|
|
445
229
|
* 删除模型版本
|
|
446
230
|
*/
|
|
@@ -465,18 +249,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
465
249
|
async DescribeModelServiceGroups(req, cb) {
|
|
466
250
|
return this.request("DescribeModelServiceGroups", req, cb);
|
|
467
251
|
}
|
|
468
|
-
/**
|
|
469
|
-
* 修改Notebook
|
|
470
|
-
*/
|
|
471
|
-
async ModifyNotebook(req, cb) {
|
|
472
|
-
return this.request("ModifyNotebook", req, cb);
|
|
473
|
-
}
|
|
474
|
-
/**
|
|
475
|
-
* 停止模型加速任务
|
|
476
|
-
*/
|
|
477
|
-
async StopModelAccelerateTask(req, cb) {
|
|
478
|
-
return this.request("StopModelAccelerateTask", req, cb);
|
|
479
|
-
}
|
|
480
252
|
/**
|
|
481
253
|
* 停止Notebook
|
|
482
254
|
*/
|