diff options
Diffstat (limited to 'templates/swagger/v1_json.tmpl')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 90a76643dd..b8f81bb8f7 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -7834,6 +7834,47 @@ "$ref": "#/responses/notFound" } } + }, + "delete": { + "tags": [ + "repository" + ], + "summary": "Delete a release tag", + "operationId": "repoDeleteReleaseTag", + "parameters": [ + { + "type": "string", + "description": "owner of the repo", + "name": "owner", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "name of the repo", + "name": "repo", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "name of the tag to delete", + "name": "tag", + "in": "path", + "required": true + } + ], + "responses": { + "204": { + "$ref": "#/responses/empty" + }, + "404": { + "$ref": "#/responses/notFound" + }, + "409": { + "$ref": "#/responses/conflict" + } + } } }, "/repos/{owner}/{repo}/releases/{id}": { @@ -16249,6 +16290,9 @@ "$ref": "#/definitions/WatchInfo" } }, + "conflict": { + "description": "APIConflict is a conflict empty response" + }, "empty": { "description": "APIEmpty is an empty response" }, |