Python
from gcore import Gcore client = Gcore( api_key="My API Key", ) task_id_list = client.cloud.databases.postgres.clusters.delete( cluster_name="cluster_name", project_id=0, region_id=0, ) print(task_id_list.tasks)
{ "tasks": [ "d478ae29-dedc-4869-82f0-96104425f565" ] }
Delete a PostgreSQL cluster and all its associated resources.
Was this page helpful?