import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.storage.sftp_storages.delete(
0,
)
This response has no body data.
SFTP Storage
Delete SFTP storage
Deletes an SFTP storage instance. This operation cannot be undone.
DELETE
/
storage
/
v4
/
sftp_storages
/
{storage_id}
Python
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.storage.sftp_storages.delete(
0,
)