Couchbase · Schema
Pools
Cluster pool information
AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR
Properties
| Name | Type | Description |
|---|---|---|
| isAdminCreds | boolean | Whether admin credentials are being used |
| isROAdminCreds | boolean | Whether read-only admin credentials are being used |
| isEnterprise | boolean | Whether this is an Enterprise Edition cluster |
| implementationVersion | string | The version of the Couchbase Server implementation |
| uuid | string | The unique identifier for the cluster |
| pools | array | List of available pools |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Pools",
"title": "Pools",
"type": "object",
"description": "Cluster pool information",
"properties": {
"isAdminCreds": {
"type": "boolean",
"description": "Whether admin credentials are being used"
},
"isROAdminCreds": {
"type": "boolean",
"description": "Whether read-only admin credentials are being used"
},
"isEnterprise": {
"type": "boolean",
"description": "Whether this is an Enterprise Edition cluster"
},
"implementationVersion": {
"type": "string",
"description": "The version of the Couchbase Server implementation"
},
"uuid": {
"type": "string",
"description": "The unique identifier for the cluster"
},
"pools": {
"type": "array",
"description": "List of available pools",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Pool name"
},
"uri": {
"type": "string",
"description": "URI to access pool details"
},
"streamingUri": {
"type": "string",
"description": "URI for streaming pool updates"
}
}
}
}
}
}