CockroachDB · Schema

MaintenanceWindow

Defines the time window during which CockroachDB Cloud may perform automatic maintenance and version upgrade operations on a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
day_of_week integer Day of the week for maintenance. 0=Sunday, 6=Saturday.
start_hour integer Hour of day (UTC) when the maintenance window begins.
View JSON Schema on GitHub

JSON Schema

cockroachdb-maintenancewindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MaintenanceWindow",
  "title": "MaintenanceWindow",
  "type": "object",
  "description": "Defines the time window during which CockroachDB Cloud may perform automatic maintenance and version upgrade operations on a cluster.",
  "properties": {
    "day_of_week": {
      "type": "integer",
      "description": "Day of the week for maintenance. 0=Sunday, 6=Saturday.",
      "minimum": 0,
      "maximum": 6
    },
    "start_hour": {
      "type": "integer",
      "description": "Hour of day (UTC) when the maintenance window begins.",
      "minimum": 0,
      "maximum": 23
    }
  }
}