Skip to content

Commit 87959bd

Browse files
committed
updates OAS
1 parent 48fe8da commit 87959bd

File tree

1 file changed

+72
-21
lines changed
  • services/web/server/src/simcore_service_webserver/api/v0

1 file changed

+72
-21
lines changed

services/web/server/src/simcore_service_webserver/api/v0/openapi.yaml

Lines changed: 72 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5474,7 +5474,7 @@ paths:
54745474
'404':
54755475
description: Not such a folder
54765476
'409':
5477-
description: One or more projects is in use and cannot be trashed
5477+
description: One or more projects are in use and cannot be trashed
54785478
'503':
54795479
description: Trash service error
54805480
/v0/folders/{folder_id}:untrash:
@@ -5496,6 +5496,57 @@ paths:
54965496
responses:
54975497
'204':
54985498
description: Successful Response
5499+
/v0/workspace/{workspace_id}:trash:
5500+
post:
5501+
tags:
5502+
- trash
5503+
- workspaces
5504+
summary: Trash Workspace
5505+
operationId: trash_workspace
5506+
parameters:
5507+
- required: true
5508+
schema:
5509+
title: Workspace Id
5510+
exclusiveMinimum: true
5511+
type: integer
5512+
minimum: 0
5513+
name: workspace_id
5514+
in: path
5515+
- required: false
5516+
schema:
5517+
title: Force
5518+
type: boolean
5519+
default: false
5520+
name: force
5521+
in: query
5522+
responses:
5523+
'204':
5524+
description: Successful Response
5525+
'404':
5526+
description: Not such a workspace
5527+
'409':
5528+
description: One or more projects are in use and cannot be trashed
5529+
'503':
5530+
description: Trash service error
5531+
/v0/workspace/{workspace_id}:untrash:
5532+
post:
5533+
tags:
5534+
- trash
5535+
- workspaces
5536+
summary: Untrash Workspace
5537+
operationId: untrash_workspace
5538+
parameters:
5539+
- required: true
5540+
schema:
5541+
title: Workspace Id
5542+
exclusiveMinimum: true
5543+
type: integer
5544+
minimum: 0
5545+
name: workspace_id
5546+
in: path
5547+
responses:
5548+
'204':
5549+
description: Successful Response
54995550
/v0/repos/projects:
55005551
get:
55015552
tags:
@@ -5843,7 +5894,7 @@ paths:
58435894
content:
58445895
application/json:
58455896
schema:
5846-
$ref: '#/components/schemas/_WorkspacesGroupsBodyParams'
5897+
$ref: '#/components/schemas/WorkspacesGroupsBodyParams'
58475898
required: true
58485899
responses:
58495900
'200':
@@ -5879,7 +5930,7 @@ paths:
58795930
content:
58805931
application/json:
58815932
schema:
5882-
$ref: '#/components/schemas/_WorkspacesGroupsBodyParams'
5933+
$ref: '#/components/schemas/WorkspacesGroupsBodyParams'
58835934
required: true
58845935
responses:
58855936
'201':
@@ -13192,6 +13243,24 @@ components:
1319213243
title: Modified
1319313244
type: string
1319413245
format: date-time
13246+
WorkspacesGroupsBodyParams:
13247+
title: WorkspacesGroupsBodyParams
13248+
required:
13249+
- read
13250+
- write
13251+
- delete
13252+
type: object
13253+
properties:
13254+
read:
13255+
title: Read
13256+
type: boolean
13257+
write:
13258+
title: Write
13259+
type: boolean
13260+
delete:
13261+
title: Delete
13262+
type: boolean
13263+
additionalProperties: false
1319513264
_ComputationStarted:
1319613265
title: _ComputationStarted
1319713266
required:
@@ -13304,24 +13373,6 @@ components:
1330413373
title: Delete
1330513374
type: boolean
1330613375
additionalProperties: false
13307-
_WorkspacesGroupsBodyParams:
13308-
title: _WorkspacesGroupsBodyParams
13309-
required:
13310-
- read
13311-
- write
13312-
- delete
13313-
type: object
13314-
properties:
13315-
read:
13316-
title: Read
13317-
type: boolean
13318-
write:
13319-
title: Write
13320-
type: boolean
13321-
delete:
13322-
title: Delete
13323-
type: boolean
13324-
additionalProperties: false
1332513376
models_library__access_rights__AccessRights:
1332613377
title: AccessRights
1332713378
required:

0 commit comments

Comments
 (0)