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.cloud.quotas.notification_threshold.delete(
3,
)
Quotas
Delete quota notification threshold
Delete a client’s quota notification threshold. After deletion, the default threshold of 80% will be used.
DELETE
/
cloud
/
v2
/
client_quotas
/
{client_id}
/
notification_threshold
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.cloud.quotas.notification_threshold.delete(
3,
)