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.access_keys.delete(
access_key="access_key",
storage_id=0,
)
This response has no body data.
S3-Compatible Storage
Delete access key
Deletes an access key from an S3-compatible storage.
DELETE
/
storage
/
v4
/
object_storages
/
{storage_id}
/
access_keys
/
{access_key}
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.access_keys.delete(
access_key="access_key",
storage_id=0,
)