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.object_storages.delete(
0,
)
This response has no body data.
S3-Compatible Storage
Delete S3-compatible storage
Deletes an S3-compatible storage instance. This operation cannot be undone.
DELETE
/
storage
/
v4
/
object_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.object_storages.delete(
0,
)