From 7c92ccb1160a5f9e1383f7785015e0183a777cc8 Mon Sep 17 00:00:00 2001 From: archeoss Date: Fri, 1 Dec 2023 16:45:05 +0000 Subject: [PATCH] Autogenerate API --- api/openapi.yaml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/api/openapi.yaml b/api/openapi.yaml index 58242cd0..aa3f3973 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -240,6 +240,65 @@ paths: description: Node Not Found security: - api_key: [] + /api/v1/vdisks/list: + get: + tags: + - services::api + summary: Returns simple list of all known vdisks + description: |- + Returns simple list of all known vdisks + + # Errors + + This function will return an error if a call to the primary node will fail + operationId: get_vdisks_list + responses: + '200': + description: Simple Node List + content: + application/json: + schema: + type: array + items: + $ref: '#/components/schemas/dto.VDisk' + '401': + description: Unauthorized + security: + - api_key: [] + /api/v1/vdisks/{vdisk_id}: + get: + tags: + - services::api + summary: Returns vdisk inforamtion by their id + description: |- + Returns vdisk inforamtion by their id + + # Errors + + This function will return an error if a call to the main node will fail or vdisk with + specified id not found + operationId: get_vdisk_info + parameters: + - name: vdisk_id + in: path + required: true + schema: + type: integer + format: int64 + minimum: 0 + responses: + '200': + description: VDisk Inforamtion + content: + application/json: + schema: + $ref: '#/components/schemas/VDisk' + '401': + description: Unauthorized + '404': + description: VDisk not found + security: + - api_key: [] components: schemas: BobConnectionData: