from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
client.cloud.quotas.requests.create(
description="Scale up mysql cluster",
requested_limits={},
)
Create a request to change current quotas.
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
client.cloud.quotas.requests.create(
description="Scale up mysql cluster",
requested_limits={},
)
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Created
Was this page helpful?