doc-exports/docs/modelarts/api-ref/GetProcessorTaskItems.html
Artem Goncharov 3196b64bfc
move doc sources to other location (#3)
move doc sources to other location

Reviewed-by: OpenTelekomCloud Bot <None>
2022-04-27 16:24:25 +00:00

7.4 KiB

Querying the Algorithm Type for Data Processing

Function

This API is used to query the algorithm type for data processing.

URI

GET /v2/{project_id}/processor-tasks/items

Table 1 Path parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain the project ID, see Obtaining a Project ID.

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response body parameters

Parameter

Type

Description

items

Array of ProcessorTaskItem objects

Algorithm type list.

total

Integer

Total number.

Table 3 ProcessorTaskItem

Parameter

Type

Description

label_en

String

English name of an algorithm type.

label_zh

String

Chinese name of an algorithm type.

template_id

String

Algorithm type ID.

Example Requests

Querying the List of the Algorithm Type for Data Processing

GET https://{endpoint}/v2/{project_id}/processor-tasks/items

Example Responses

Status code: 200

OK

{
  "total" : 4,
  "items" : [ {
    "template_id" : "sys_data_cleaning",
    "label_zh" : "label_zh to translate",
    "label_en" : "data cleaning"
  }, {
    "template_id" : "sys_data_validation",
    "label_zh" : "label_zh to translate",
    "label_en" : "data validation"
  }, {
    "template_id" : "sys_data_selection",
    "label_zh" : "label_zh to translate",
    "label_en" : "data selection"
  }, {
    "template_id" : "sys_data_augmentation",
    "label_zh" : "label_zh to translate",
    "label_en" : "data augmentation"
  } ]
}

Status Codes

Status Code

Description

200

OK

401

Unauthorized

403

Forbidden

404

Not Found

Error Codes

See Error Codes.