Skip to content

Commit 6590314

Browse files
committed
rename summary
1 parent 8c6ae09 commit 6590314

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

specs/ingestion/paths/tasks/v1/disableTask.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
put:
22
tags:
33
- tasks
4-
summary: Disable a task
4+
summary: Disable a task V1
55
description: Disables a task using the v1 endpoint, please use `disableTask` instead.
66
operationId: disableTaskV1
77
deprecated: true

specs/ingestion/paths/tasks/v1/enableTask.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
put:
22
tags:
33
- tasks
4-
summary: Enable a task
4+
summary: Enable a task V1
55
description: Enables a task using the v1 endpoint, please use `enableTask` instead.
66
operationId: enableTaskV1
77
deprecated: true

specs/ingestion/paths/tasks/v1/runTask.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
post:
22
tags:
33
- tasks
4-
summary: Run a task
4+
summary: Run a task V1
55
description: Runs a task using the v1 endpoint, please use `runTask` instead. You can check the status of task runs with the observability endpoints.
66
operationId: runTaskV1
77
deprecated: true

specs/ingestion/paths/tasks/v1/searchTasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
post:
22
tags:
33
- tasks
4-
summary: Search for tasks
4+
summary: Search for tasks V1
55
description: Searches for tasks using the v1 endpoint, please use `searchTasks` instead.
66
operationId: searchTasksV1
77
deprecated: true

specs/ingestion/paths/tasks/v1/taskID.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
get:
22
tags:
33
- tasks
4-
summary: Retrieve a task
4+
summary: Retrieve a task V1
55
description: Retrieves a task by its ID using the v1 endpoint, please use `getTask` instead.
66
operationId: getTaskV1
77
deprecated: true
@@ -24,7 +24,7 @@ get:
2424
patch:
2525
tags:
2626
- tasks
27-
summary: Update a task
27+
summary: Update a task V1
2828
description: Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
2929
operationId: updateTaskV1
3030
deprecated: true

specs/ingestion/paths/tasks/v1/tasks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
get:
22
tags:
33
- tasks
4-
summary: List tasks
4+
summary: List tasks V1
55
description: Retrieves a list of tasks using the v1 endpoint, please use `getTasks` instead.
66
operationId: listTasksV1
77
deprecated: true
@@ -45,7 +45,7 @@ get:
4545
post:
4646
tags:
4747
- tasks
48-
summary: Create a task
48+
summary: Create a task V1
4949
description: Creates a new task using the v1 endpoint, please use `createTask` instead.
5050
operationId: createTaskV1
5151
deprecated: true

specs/ingestion/spec.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -144,18 +144,6 @@ paths:
144144
$ref: 'paths/sources/runSource.yml'
145145

146146
# 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'
159147
/2/tasks:
160148
$ref: 'paths/tasks/v2/tasks.yml'
161149
/2/tasks/search:
@@ -170,6 +158,18 @@ paths:
170158
$ref: 'paths/tasks/v2/enableTask.yml'
171159
/2/tasks/{taskID}/disable:
172160
$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'
173173

174174
# transformations API.
175175
/1/transformations:

0 commit comments

Comments
 (0)