CockroachDB · Schema

CMEKClusterInfo

Customer-managed encryption key configuration for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
cluster_id string ID of the cluster this CMEK configuration applies to.
status string Current CMEK operational status.
spec object
View JSON Schema on GitHub

JSON Schema

cockroachdb-cmekclusterinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CMEKClusterInfo",
  "title": "CMEKClusterInfo",
  "type": "object",
  "description": "Customer-managed encryption key configuration for a cluster.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "ID of the cluster this CMEK configuration applies to."
    },
    "status": {
      "type": "string",
      "description": "Current CMEK operational status."
    },
    "spec": {
      "$ref": "#/components/schemas/CMEKClusterSpecification"
    }
  }
}