File tree Expand file tree Collapse file tree 7 files changed +20
-20
lines changed Expand file tree Collapse file tree 7 files changed +20
-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
7
deprecated : true
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
7
deprecated : true
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
7
deprecated : true
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
7
deprecated : true
24
24
patch :
25
25
tags :
26
26
- tasks
27
- summary : Update a task
27
+ summary : Update a task V1
28
28
description : Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
29
29
operationId : updateTaskV1
30
30
deprecated : true
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
7
deprecated : true
45
45
post :
46
46
tags :
47
47
- tasks
48
- summary : Create a task
48
+ summary : Create a task V1
49
49
description : Creates a new task using the v1 endpoint, please use `createTask` instead.
50
50
operationId : createTaskV1
51
51
deprecated : true
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