v1
latestOpenAPI 3.0.22026-08-062794201004.1 KBClusters
Create Cluster
Creates a new Couchbase Capella provisioned cluster.
In order to access this endpoint, the provided API key must have at least one of the following roles:
- Organization Owner
- Project Owner
- Project Manager
To learn more, see Organization, Project, and Database Access Overview.
post/v4/organizations/{organizationId}/projects/{projectId}/clusters
Request body
Example request
{
"name": "Test Cluster",
"description": "Description of the cluster",
"configurationType": "multiNode",
"cloudProvider": {
"type": "aws",
"region": "us-east-1",
"cidr": "10.1.30.0/23"
},
"couchbaseServer": {
"version": "7.1"
},
"serviceGroups": [
{
"node": {
"compute": {
"cpu": 4,
"ram": 16
},
"disk": {
"type": "gp3",
"storage": 50,
"iops": 3000
}
},
"numOfNodes": 3,
"services": [
"data"
]
}
],
"availability": {
"type": "single"
},
"support": {
"plan": "basic",
"timezone": "ET"
},
"zones": [
"use1-az1"
],
"cmekId": "ffffffff-aaaa-1414-eeee-000000000000",
"enablePrivateDNSResolution": true
}Response
Successfully created a cluster.
Example response
{
"id": "ffffffff-aaaa-1414-eeee-000000000000"
}