Overdrive
Last updated
Last updated
This method allows to delete an Overdrive instance.
This method is asynchronous (status code 202
) and you'll have to wait for async action to be completed by checking its status.
DELETE /storage/overdrive/123
id, example: 123
OK
Code of action performed
Status label of action
Human readable message of status
This method allows to update an Overdrive instance.
Structure of payload is generic and describes :
operation
you want to be performedoptions
data relative to the operation performed - see details - optional.Below are different operations currently implemented.
Start Overdrive instance
Use the start
operation to start an Overdrive instance.
Starts overdrive instance.
This method is synchronous (status code 202
).
Example :
PATCH /storage/overdrive/1234
{
"operation": "start"
}
Stop Overdrive instance
Use the stop
operation to stop the nodes of the Overdrive instance and the instance itself.
This operation cannot be undone afterwards.
This method is synchronous (status code 202
).
PATCH /storage/overdrive/1234
{
"operation":"stop"
}
id, example: 123
OK
Code of action performed