Super Backup: delete
Please take into consideration - the system will reieve the deletion request with small delay (usually maximum 1 minute) - after the deletion you can’t create a new backup for the same cloud for 1 minute
Request
HTTP request
DELETE /super-backup/v1/c/<cloudId> HTTP/1.1
Parameters
Paramete name | Value | Description |
---|---|---|
Path parameters | ||
cloudId | String | The cloud ID you want to delete from the Super Backup service. |
Request Body
This method does not support request body.
Response
This method does not contain request body.
Response HTTP status code
HTTP status code | Description |
---|---|
204 | Super backup sucessfully deleted from cloud |
404 | Super backup does not exist on cloud |
For more information about HTTP codes, click here.
Rate limit
Detailed information for cloud rate limitation is available on Shardimage developers.
SDK
use shardimage\shardimagephp\auth\Client;
$client = new Client([
'apiKey' => '<apiKey>',
'apiSecret' => '<apiSecret>',
'imageSecret' => '<imageSecret>',
]);
$result = $client->getSuperBackupService()->delete('<cloudId>');