This API is used to query the details about the version of a data processing task.
GET /v2/{project_id}/processor-tasks/{task_id}/versions/{version_id}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details about how to obtain the project ID, see Obtaining a Project ID. |
task_id |
Yes |
String |
ID of a data processing task. |
version_id |
Yes |
String |
Version ID of a data processing task. |
None
Status code: 200
Parameter |
Type |
Description |
---|---|---|
add_sample_count |
Integer |
Number of added images after processing. |
create_time |
Long |
Time when a data processing task is created. |
deleted_sample_count |
Integer |
Number of deleted images after processing. |
description |
String |
Version description of a data processing task. |
duration_seconds |
Integer |
Running time of a data processing task, in seconds. |
inputs |
Array of ProcessorDataSource objects |
Input channel of a data processing task. |
modified_sample_count |
Integer |
Number of modified images after processing. |
origin_sample_count |
Integer |
Number of images before processing. |
status |
Integer |
Status of a data processing task. The options are as follows:
|
task_id |
String |
ID of a data processing task. |
task_version_id |
String |
Version ID of a data processing task. |
template |
TemplateParam object |
Algorithm template, such as the algorithm ID and parameters. |
unmodified_sample_count |
Integer |
Number of unmodified images after processing. |
update_time |
Long |
Time when a data processing task is created. |
version_name |
String |
Version name of a data processing task. |
work_path |
WorkPath object |
Output channel of a data processing task. |
Parameter |
Type |
Description |
---|---|---|
name |
String |
Dataset name. |
source |
String |
Data source path. The options are as follows:
|
type |
String |
Data source type. The options are as follows:
|
version_id |
String |
Version of a dataset. |
version_name |
String |
Dataset version name. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Task type, that is, ID of a data processing template. The options are as follows:
|
name |
String |
Template name. |
operator_params |
Array of OperatorParam objects |
Operator parameter list. |
Parameter |
Type |
Description |
---|---|---|
advanced_params_switch |
Boolean |
Advanced parameter switch. |
id |
String |
ID of an operator. |
name |
String |
Name of an operator. |
params |
Object |
Operator parameter. The parameter type is map<string,object>. Currently, object only supports the types of Boolean, Integer, Long, String, List and Map<String,String>. For two special scenarios of object detection and image classification in a data preprocessing task, the value of task_type is object_detection or image_classification. |
Parameter |
Type |
Description |
---|---|---|
name |
String |
Dataset name. |
output_path |
String |
Output path. |
path |
String |
Working path. The options are as follows:
|
type |
String |
Type of a working path. The options are as follows:
|
version_id |
String |
Version of a dataset. |
version_name |
String |
Name of a dataset version. The value can contain 0 to 32 characters. Only digits, letters, underscores (_), and hyphens (-) are allowed. |
Querying Details About a Data Processing Task Version
GET https://{endpoint}/v2/{project_id}/processor-tasks/{task_id}/versions/{version_id}
Status code: 200
OK
{ "task_version_id" : "qSaudx2sbPvthHygckA", "task_id" : "kM7j9TSa611ZzBThzSr", "version_name" : "V002", "description" : "", "status" : 0, "create_time" : 1606377874450, "inputs" : [ { "type" : "DATASET", "source" : "PYc9H2HGv5BJNwBGXyK", "version_id" : "Osc8SZ7TZStiRV4vYkZ", "name" : "dataset-test", "version_name" : "V0010" } ], "work_path" : { "type" : "DATASET", "path" : "PYc9H2HGv5BJNwBGXyK", "name" : "dataset-test", "version_name" : "V0011", "output_path" : "/test-obs/classify/output/qSaudx2sbPvthHygckA/" }, "template" : { "id" : "sys_data_validation", "name" : "name to translate", "operator_params" : [ { "name" : "MetaValidation", "advanced_params_switch" : false, "params" : { "task_type" : "image_classification", "dataset_type" : "manifest", "source_service" : "select", "filter_func" : "data_validation_select", "image_max_width" : "1920", "image_max_height" : "1920", "total_status" : "[0,1,2]" } } ] }, "duration_seconds" : 312 }
Status Code |
Description |
---|---|
200 |
OK |
401 |
Unauthorized |
403 |
Forbidden |
404 |
Not Found |
See Error Codes.