File tree Expand file tree Collapse file tree 7 files changed +28
-20
lines changed Expand file tree Collapse file tree 7 files changed +28
-20
lines changed Original file line number Diff line number Diff line change 1
1
put :
2
2
tags :
3
3
- tasks
4
- summary : Disable a task
4
+ summary : Disable a task V1
5
5
description : Disables a task using the v1 endpoint, please use `disableTask` instead.
6
6
operationId : disableTaskV1
7
7
deprecated : true
Original file line number Diff line number Diff line change 1
1
put :
2
2
tags :
3
3
- tasks
4
- summary : Enable a task
4
+ summary : Enable a task V1
5
5
description : Enables a task using the v1 endpoint, please use `enableTask` instead.
6
6
operationId : enableTaskV1
7
+ deprecated : true
7
8
x-acl :
8
9
- addObject
9
10
- deleteIndex
Original file line number Diff line number Diff line change 1
1
post :
2
2
tags :
3
3
- tasks
4
- summary : Run a task
4
+ summary : Run a task V1
5
5
description : Runs a task using the v1 endpoint, please use `runTask` instead. You can check the status of task runs with the observability endpoints.
6
6
operationId : runTaskV1
7
+ deprecated : true
7
8
x-acl :
8
9
- addObject
9
10
- deleteIndex
Original file line number Diff line number Diff line change 1
1
post :
2
2
tags :
3
3
- tasks
4
- summary : Search for tasks
4
+ summary : Search for tasks V1
5
5
description : Searches for tasks using the v1 endpoint, please use `searchTasks` instead.
6
6
operationId : searchTasksV1
7
+ deprecated : true
7
8
x-acl :
8
9
- addObject
9
10
- deleteIndex
Original file line number Diff line number Diff line change 1
1
get :
2
2
tags :
3
3
- tasks
4
- summary : Retrieve a task
4
+ summary : Retrieve a task V1
5
5
description : Retrieves a task by its ID using the v1 endpoint, please use `getTask` instead.
6
6
operationId : getTaskV1
7
+ deprecated : true
7
8
x-acl :
8
9
- addObject
9
10
- deleteIndex
23
24
patch :
24
25
tags :
25
26
- tasks
26
- summary : Update a task
27
+ summary : Update a task V1
27
28
description : Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
28
29
operationId : updateTaskV1
30
+ deprecated : true
29
31
parameters :
30
32
- $ref : ' ../../../common/parameters.yml#/pathTaskID'
31
33
x-codegen-request-body-name : taskUpdate
@@ -51,6 +53,7 @@ delete:
51
53
summary : Delete a task
52
54
description : Deletes a task by its ID using the v1 endpoint, please use `deleteTask` instead.
53
55
operationId : deleteTaskV1
56
+ deprecated : true
54
57
parameters :
55
58
- $ref : ' ../../../common/parameters.yml#/pathTaskID'
56
59
responses :
Original file line number Diff line number Diff line change 1
1
get :
2
2
tags :
3
3
- tasks
4
- summary : List tasks
4
+ summary : List tasks V1
5
5
description : Retrieves a list of tasks using the v1 endpoint, please use `getTasks` instead.
6
6
operationId : listTasksV1
7
+ deprecated : true
7
8
x-acl :
8
9
- addObject
9
10
- deleteIndex
44
45
post :
45
46
tags :
46
47
- tasks
47
- summary : Create a task
48
+ summary : Create a task V1
48
49
description : Creates a new task using the v1 endpoint, please use `createTask` instead.
49
50
operationId : createTaskV1
51
+ deprecated : true
50
52
x-codegen-request-body-name : taskCreate
51
53
requestBody :
52
54
description : Request body for creating a task.
Original file line number Diff line number Diff line change @@ -144,18 +144,6 @@ paths:
144
144
$ref : ' paths/sources/runSource.yml'
145
145
146
146
# tasks API.
147
- /1/tasks :
148
- $ref : ' paths/tasks/v1/tasks.yml'
149
- /1/tasks/search :
150
- $ref : ' paths/tasks/v1/searchTasks.yml'
151
- /1/tasks/{taskID} :
152
- $ref : ' paths/tasks/v1/taskID.yml'
153
- /1/tasks/{taskID}/run :
154
- $ref : ' paths/tasks/v1/runTask.yml'
155
- /1/tasks/{taskID}/enable :
156
- $ref : ' paths/tasks/v1/enableTask.yml'
157
- /1/tasks/{taskID}/disable :
158
- $ref : ' paths/tasks/v1/disableTask.yml'
159
147
/2/tasks :
160
148
$ref : ' paths/tasks/v2/tasks.yml'
161
149
/2/tasks/search :
@@ -170,6 +158,18 @@ paths:
170
158
$ref : ' paths/tasks/v2/enableTask.yml'
171
159
/2/tasks/{taskID}/disable :
172
160
$ref : ' paths/tasks/v2/disableTask.yml'
161
+ /1/tasks :
162
+ $ref : ' paths/tasks/v1/tasks.yml'
163
+ /1/tasks/search :
164
+ $ref : ' paths/tasks/v1/searchTasks.yml'
165
+ /1/tasks/{taskID} :
166
+ $ref : ' paths/tasks/v1/taskID.yml'
167
+ /1/tasks/{taskID}/run :
168
+ $ref : ' paths/tasks/v1/runTask.yml'
169
+ /1/tasks/{taskID}/enable :
170
+ $ref : ' paths/tasks/v1/enableTask.yml'
171
+ /1/tasks/{taskID}/disable :
172
+ $ref : ' paths/tasks/v1/disableTask.yml'
173
173
174
174
# transformations API.
175
175
/1/transformations :
You can’t perform that action at this time.
0 commit comments