Skip to content

Commit

Permalink
chore: update api schema dump
Browse files Browse the repository at this point in the history
Co-authored-by: octodog <[email protected]>
  • Loading branch information
nowgnuesLee and lablup-octodog committed Feb 12, 2025
1 parent 926d0ce commit f952376
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions docs/manager/rest-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2626,6 +2626,67 @@
"description": "\n**Preconditions:**\n* User privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
}
},
"/folders/{name}/download": {
"post": {
"operationId": "folders.download",
"tags": [
"folders"
],
"responses": {
"200": {
"description": "Successful response"
}
},
"security": [
{
"TokenAuth": []
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"files": {
"type": "array",
"items": {
"type": "string"
}
},
"zip_name": {
"type": "string"
},
"format": {
"type": "string",
"enum": [
"zip"
]
}
},
"required": [
"files",
"zip_name",
"format"
]
},
"examples": {}
}
}
},
"parameters": [
{
"name": "name",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"description": "\n**Preconditions:**\n* User privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
}
},
"/folders/{name}/move-file": {
"post": {
"operationId": "folders.move_file",
Expand Down

0 comments on commit f952376

Please sign in to comment.