Querying the Version List of a Data Processing Task¶
Function¶
This API is used to query the version list of a data processing task.
Debugging¶
You can debug this API through automatic authentication in or use the SDK sample code generated by API Explorer.
URI¶
GET /v2/{project_id}/processor-tasks/{task_id}/versions
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Project ID. For details about how to obtain a project ID, see Obtaining a Project ID and Name. |
task_id | Yes | String | ID of a data processing task. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
limit | No | Integer | Maximum number of records returned on each page. The value ranges from 1 to 100. The default value is 100. |
offset | No | Integer | Start page of the paging list. The default value is 0. |
order | No | String | Sorting sequence of the query. Options:
|
sort_by | No | String | Sorting mode of the query. Options:
|
Request Parameters¶
None
Response Parameters¶
Status code: 200
Parameter | Type | Description |
---|---|---|
count | Integer | Total number of versions. |
versions | Array of DescTaskVersionResp objects | Version list of a data processing task queried by page. |
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. Options:
|
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. Options:
|
type | String | Data source type. Options:
|
version_id | String | Version of a dataset. |
version_name | String | Dataset version name. |
Parameter | Type | Description |
---|---|---|
id | String | Task type, which is the ID of a data processing template. Options:
|
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[/topic/body/section/table/tgroup/tbody/row/entry/p/br {""}) (br] 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. Options:
|
type | String | Type of a working path. Options:
|
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. |
Example Requests¶
Querying the Version List of a Data Processing Task
GET https://{endpoint}/v2/{project_id}/processor-tasks/{task_id}/versions?offset=0&limit=5
Example Responses¶
Status code: 200
OK
{
"count" : 2,
"versions" : [ {
"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" : 151
}, {
"task_version_id" : "YHFWU18zXuNbqxtzegG",
"task_id" : "kM7j9TSa611ZzBThzSr",
"version_name" : "V001",
"description" : "",
"status" : 2,
"create_time" : 1606375407276,
"inputs" : [ {
"type" : "DATASET",
"source" : "PYc9H2HGv5BJNwBGXyK",
"version_id" : "yoJ5ssClpNlOrsjjFDa",
"name" : "dataset-test",
"version_name" : "V009"
} ],
"work_path" : {
"type" : "DATASET",
"path" : "PYc9H2HGv5BJNwBGXyK",
"name" : "dataset-test",
"version_id" : "Osc8SZ7TZStiRV4vYkZ",
"version_name" : "V0010",
"output_path" : "/test-obs/classify/output/YHFWU18zXuNbqxtzegG/"
},
"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" : 812,
"origin_sample_count" : 18,
"add_sample_count" : 0,
"modified_sample_count" : 0,
"unmodified_sample_count" : 18,
"deleted_sample_count" : 0
} ]
}
Status Codes¶
Status Code | Description |
---|---|
200 | OK |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
Error Codes¶
See Error Codes.