Postgres Clusters
Fork Cluster to New Cluster
Fork a ready Managed Postgres cluster into a new cluster that inherits the source's settings. The source cluster is left unchanged, and the fork is provisioned asynchronously.
post/postgres/{postgres_cluster_id}/fork
Path parameters
postgres_cluster_idstring required
Managed Postgres Cluster ID
Request body
Response
New cluster provisioned from the fork
Example response
{
"data": {
"cpu_kind": "shared",
"cpus": 2,
"disk_size_gb": 10,
"memory_mb": 1024,
"pg_major_version": "17",
"plan": "basic",
"region": "iad",
"replicas": 1,
"status": "ready"
}
}