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.cdn.logs_uploader.configs.delete(
0,
)
Logs uploader
Delete config
Delete the logs uploader config from the system permanently.
Notes:
Irreversibility: This action is irreversible. Once deleted, the logs uploader config cannot be recovered.
DELETE
/
cdn
/
logs_uploader
/
configs
/
{id}
Python
Copy
Ask AI
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.cdn.logs_uploader.configs.delete(
0,
)