CockroachDB · Schema

BackupConfiguration

Backup configuration settings for a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
cluster_id string Cluster ID the configuration applies to.
frequency_minutes integer How often backups are taken, in minutes.
retention_days integer Number of days backups are retained.
View JSON Schema on GitHub

JSON Schema

cockroachdb-backupconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackupConfiguration",
  "title": "BackupConfiguration",
  "type": "object",
  "description": "Backup configuration settings for a CockroachDB cluster.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "Cluster ID the configuration applies to."
    },
    "frequency_minutes": {
      "type": "integer",
      "description": "How often backups are taken, in minutes."
    },
    "retention_days": {
      "type": "integer",
      "description": "Number of days backups are retained."
    }
  }
}