CockroachDB · Schema

UpdateBackupConfigurationSpec

Specification for updating backup configuration.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
frequency_minutes integer New backup frequency in minutes.
retention_days integer New retention period in days.
View JSON Schema on GitHub

JSON Schema

cockroachdb-updatebackupconfigurationspec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateBackupConfigurationSpec",
  "title": "UpdateBackupConfigurationSpec",
  "type": "object",
  "description": "Specification for updating backup configuration.",
  "properties": {
    "frequency_minutes": {
      "type": "integer",
      "description": "New backup frequency in minutes."
    },
    "retention_days": {
      "type": "integer",
      "description": "New retention period in days."
    }
  }
}