hydra-api: implement DELETE /jobset/{project-id}/{jobset-id}

[?]
Apr 27, 2021, 11:12 PM
KKAVBWFRUFMGAHC37Q2HN4CLRPDJMVQU4SDRMBQ6BI223NFYWGYQC

Dependencies

  • [2] LX326CB7 Add hydra OpenAPI description (#750)

Change contents

  • edit in hydra-api.yaml at line 373
    [2.11063]
    [2.11063]
    delete:
    summary: Deletes a jobset designated by project and jobset id
    parameters:
    - name: project-id
    in: path
    description: name of the project the jobset belongs to
    required: true
    schema:
    type: string
    - name: jobset-id
    in: path
    description: name of the jobset to retrieve
    required: true
    schema:
    type: string
    responses:
    '200':
    description: jobset successfully deleted
    content:
    application/json:
    schema:
    type: object
    properties:
    redirect:
    type: string
    description: root of the Hydra instance
    '404':
    description: jobset couldn't be found
    content:
    application/json:
    schema:
    $ref: '#/components/schemas/Error'