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
jopemachine and lablup-octodog committed Feb 3, 2025
1 parent c5b7d67 commit 447962b
Showing 1 changed file with 136 additions and 0 deletions.
136 changes: 136 additions & 0 deletions docs/manager/rest-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -8216,6 +8216,142 @@
"description": "\n**Preconditions:**\n* Admin privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
}
},
"/group/registry-quota": {
"post": {
"operationId": "group.create_registry_quota",
"tags": [
"group"
],
"responses": {
"200": {
"description": "Successful response"
}
},
"security": [
{
"TokenAuth": []
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"group_id": {
"type": "string"
},
"quota": {
"type": "integer"
}
},
"required": [
"group_id",
"quota"
]
},
"examples": {}
}
}
},
"parameters": [],
"description": "\n**Preconditions:**\n* Superadmin privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
},
"get": {
"operationId": "group.read_registry_quota",
"tags": [
"group"
],
"responses": {
"200": {
"description": "Successful response"
}
},
"security": [
{
"TokenAuth": []
}
],
"parameters": [
{
"name": "group_id",
"schema": {
"type": "string"
},
"required": true,
"in": "query"
}
],
"description": "\n**Preconditions:**\n* Superadmin privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
},
"patch": {
"operationId": "group.update_registry_quota",
"tags": [
"group"
],
"responses": {
"200": {
"description": "Successful response"
}
},
"security": [
{
"TokenAuth": []
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"group_id": {
"type": "string"
},
"quota": {
"type": "integer"
}
},
"required": [
"group_id",
"quota"
]
},
"examples": {}
}
}
},
"parameters": [],
"description": "\n**Preconditions:**\n* Superadmin privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
},
"delete": {
"operationId": "group.delete_registry_quota",
"tags": [
"group"
],
"responses": {
"200": {
"description": "Successful response"
}
},
"security": [
{
"TokenAuth": []
}
],
"parameters": [
{
"name": "group_id",
"schema": {
"type": "string"
},
"required": true,
"in": "query"
}
],
"description": "\n**Preconditions:**\n* Superadmin privilege required.\n* Manager status required: one of FROZEN, RUNNING\n"
}
},
"/group-config/dotfiles": {
"post": {
"operationId": "group-config.create",
Expand Down

0 comments on commit 447962b

Please sign in to comment.