tencentcloud-sdk-nodejs-tione 4.0.794 → 4.0.810
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 +191 -191
- package/src/services/tione/v20211111/tione_client.ts +18 -6
- package/src/services/tione/v20211111/tione_models.ts +198 -174
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +5 -1
- package/tencentcloud/services/tione/v20211111/tione_client.js +6 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +195 -173
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
DescribeModelAccelerateVersionsRequest,
|
|
25
25
|
StopModelAccelerateTaskRequest,
|
|
26
26
|
DeleteTrainingModelVersionResponse,
|
|
27
|
+
TrainingDataPoint,
|
|
27
28
|
BatchTaskDetail,
|
|
28
29
|
DeleteNotebookImageRecordRequest,
|
|
29
30
|
NotebookSetItem,
|
|
@@ -64,7 +65,7 @@ import {
|
|
|
64
65
|
CreateBatchTaskRequest,
|
|
65
66
|
ResourceInstanceRunningJobInfo,
|
|
66
67
|
DescribeLatestTrainingMetricsResponse,
|
|
67
|
-
|
|
68
|
+
DefaultNginxGatewayCallInfo,
|
|
68
69
|
FilterLabelInfo,
|
|
69
70
|
WorkloadStatus,
|
|
70
71
|
CFSConfig,
|
|
@@ -99,6 +100,7 @@ import {
|
|
|
99
100
|
DescribeTrainingModelsResponse,
|
|
100
101
|
DescribeBatchTaskInstancesResponse,
|
|
101
102
|
CreateNotebookRequest,
|
|
103
|
+
CreatePresignedNotebookUrlResponse,
|
|
102
104
|
ModifyNotebookRequest,
|
|
103
105
|
DescribeModelServicesRequest,
|
|
104
106
|
RestartModelAccelerateTaskResponse,
|
|
@@ -153,7 +155,7 @@ import {
|
|
|
153
155
|
DeleteModelAccelerateTaskRequest,
|
|
154
156
|
CreateTrainingTaskRequest,
|
|
155
157
|
Message,
|
|
156
|
-
|
|
158
|
+
CreatePresignedNotebookUrlRequest,
|
|
157
159
|
ModifyNotebookResponse,
|
|
158
160
|
DescribeModelServiceResponse,
|
|
159
161
|
DescribeDatasetsResponse,
|
|
@@ -172,14 +174,15 @@ import {
|
|
|
172
174
|
DeleteModelServiceResponse,
|
|
173
175
|
DatasetGroup,
|
|
174
176
|
DescribeTrainingModelsRequest,
|
|
175
|
-
|
|
177
|
+
StatefulSetCondition,
|
|
176
178
|
TextLabelDistributionDetailInfoFourthClass,
|
|
177
179
|
Pod,
|
|
178
180
|
DescribeLatestTrainingMetricsRequest,
|
|
179
|
-
|
|
181
|
+
DescribeDatasetDetailUnstructuredResponse,
|
|
180
182
|
OcrLabelInfo,
|
|
181
183
|
DeleteBatchTaskRequest,
|
|
182
184
|
GroupResource,
|
|
185
|
+
ResourceInfo,
|
|
183
186
|
DescribeModelServiceCallInfoResponse,
|
|
184
187
|
DataSetConfig,
|
|
185
188
|
ScheduledAction,
|
|
@@ -224,7 +227,6 @@ import {
|
|
|
224
227
|
DeleteDatasetResponse,
|
|
225
228
|
HorizontalPodAutoscaler,
|
|
226
229
|
ServiceCallInfo,
|
|
227
|
-
CreateBatchModelAccTasksResponse,
|
|
228
230
|
CustomTrainingPoint,
|
|
229
231
|
DescribeNotebookRequest,
|
|
230
232
|
NotebookDetail,
|
|
@@ -264,7 +266,7 @@ import {
|
|
|
264
266
|
DescribeModelServiceHotUpdatedRequest,
|
|
265
267
|
DescribeTrainingTaskResponse,
|
|
266
268
|
DescribeBatchTaskResponse,
|
|
267
|
-
|
|
269
|
+
CreateBatchModelAccTasksResponse,
|
|
268
270
|
MetricData,
|
|
269
271
|
DeleteTrainingModelVersionRequest,
|
|
270
272
|
DescribeModelAccEngineVersionsRequest,
|
|
@@ -736,6 +738,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
736
738
|
return this.request("DescribeDatasets", req, cb)
|
|
737
739
|
}
|
|
738
740
|
|
|
741
|
+
/**
|
|
742
|
+
* 生成Notebook访问链接
|
|
743
|
+
*/
|
|
744
|
+
async CreatePresignedNotebookUrl(
|
|
745
|
+
req: CreatePresignedNotebookUrlRequest,
|
|
746
|
+
cb?: (error: string, rep: CreatePresignedNotebookUrlResponse) => void
|
|
747
|
+
): Promise<CreatePresignedNotebookUrlResponse> {
|
|
748
|
+
return this.request("CreatePresignedNotebookUrl", req, cb)
|
|
749
|
+
}
|
|
750
|
+
|
|
739
751
|
/**
|
|
740
752
|
* 获取任务式建模训练任务,Notebook,在线服务和批量预测任务的日志API
|
|
741
753
|
*/
|