Type to search...

Firewall: delete

As the deletion process, it will remove the firewall from every connected cloud.

Please take into consideration, the firewall deletion will have delayed effect on image hosting.

Request

HTTP request

DELETE /firewall/v1/<firewallId> HTTP/1.1

Parameters

Paramete name Value Description
Path parameters
firewallId String ID of firewall

Request Body

This method does not support request body.

Response

This method does not contain response body.

Response HTTP status code

HTTP status code Description
204 Successfully deleted firewall
404 Firewall does not exist

For more information about HTTP codes, click here.

Rate limit

Detailed information for access token rate limitation is available on Shardimage developers.

SDK

use shardimage\shardimagephp\auth\Client;
 
$client = new Client([
    'apiKey' => '<apiKey>',
    'apiSecret' => '<apiSecret>',
    'imageSecret' => '<imageSecret>',
]);
 
$result = $client->getFirewallService()->delete('<firewallId>');
 
Table of contents