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.fastedge.kv_stores.delete(
0,
)
{
"error": "<string>"
}
Edge Storage
Delete a store
Permanently delete an edge storage store and all its data.
This action cannot be undone; all keys and values will be lost.
DELETE
/
fastedge
/
v1
/
kv
/
{store_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.fastedge.kv_stores.delete(
0,
)