CockroachDB · Schema

ServerlessClusterConfig

Configuration specific to CockroachDB Serverless clusters.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
spend_limit integer Monthly spend limit in US cents. 0 means no limit.
routing_id string Unique routing identifier for the serverless cluster.
usage_limits object Usage-based limits for request units and storage.
View JSON Schema on GitHub

JSON Schema

cockroachdb-serverlessclusterconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerlessClusterConfig",
  "title": "ServerlessClusterConfig",
  "type": "object",
  "description": "Configuration specific to CockroachDB Serverless clusters.",
  "properties": {
    "spend_limit": {
      "type": "integer",
      "description": "Monthly spend limit in US cents. 0 means no limit."
    },
    "routing_id": {
      "type": "string",
      "description": "Unique routing identifier for the serverless cluster."
    },
    "usage_limits": {
      "type": "object",
      "description": "Usage-based limits for request units and storage."
    }
  }
}