File tree Expand file tree Collapse file tree 1 file changed +43
-2
lines changed
services/web/server/src/simcore_service_webserver/api/v0 Expand file tree Collapse file tree 1 file changed +43
-2
lines changed Original file line number Diff line number Diff line change @@ -3127,8 +3127,49 @@ paths:
31273127 delete :
31283128 tags :
31293129 - long-running-tasks
3130- summary : Cancel And Delete Task
3131- description : Cancels and deletes a task
3130+ summary : Delete Task
3131+ description : Deletes a task
3132+ operationId : selete_async_job
3133+ parameters :
3134+ - name : task_id
3135+ in : path
3136+ required : true
3137+ schema :
3138+ type : string
3139+ title : Task Id
3140+ responses :
3141+ ' 204 ' :
3142+ description : Successful Response
3143+ ' 404 ' :
3144+ content :
3145+ application/json :
3146+ schema :
3147+ $ref : ' #/components/schemas/EnvelopedError'
3148+ description : Not Found
3149+ ' 403 ' :
3150+ content :
3151+ application/json :
3152+ schema :
3153+ $ref : ' #/components/schemas/EnvelopedError'
3154+ description : Forbidden
3155+ ' 410 ' :
3156+ content :
3157+ application/json :
3158+ schema :
3159+ $ref : ' #/components/schemas/EnvelopedError'
3160+ description : Gone
3161+ ' 500 ' :
3162+ content :
3163+ application/json :
3164+ schema :
3165+ $ref : ' #/components/schemas/EnvelopedError'
3166+ description : Internal Server Error
3167+ /v0/tasks/{task_id}:abort :
3168+ post :
3169+ tags :
3170+ - long-running-tasks
3171+ summary : Abort Task
3172+ description : Aborts a task
31323173 operationId : abort_async_job
31333174 parameters :
31343175 - name : task_id
You can’t perform that action at this time.
0 commit comments