Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/schemas/pipelines/runs/RunState.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ allOf:
description: The current state of the pipeline run.
type: string
enum:
- queued
- queued
- acquiring
- running
- complete
- deleting
- cancelled
- deleted
- "$ref": "../../State.yml"
- "$ref": "../../State.yml"
13 changes: 13 additions & 0 deletions platform/paths/infrastructure/external-volumes/external-volume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,19 @@ delete:
required: true
schema:
type: string
requestBody:
description: Parameters for deleting a external volume.
content:
application/json:
schema:
type: object
properties:
options:
type: object
properties:
source_device:
description: If source device is set to true, this will delete the underlying source device.
type: boolean
responses:
202:
description: Returns a job descriptor.
Expand Down
2 changes: 1 addition & 1 deletion platform/paths/infrastructure/servers/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ delete:
type: object
properties:
force:
description: If force is set to true, this will force delete the hub, even if there are servers running on it.
description: If force is set to true, this will force delete the server, even if there are instances running on it.
type: boolean
responses:
200:
Expand Down