CockroachDB · Schema

EnableLogExportRequest

Request body for enabling log export.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
type string Type of log export destination. Accepted values are AWS_CLOUDWATCH and GCP_CLOUD_LOGGING.
log_name string Name for the log stream or log group.
groups array Channel groups to export.
View JSON Schema on GitHub

JSON Schema

cockroachdb-enablelogexportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnableLogExportRequest",
  "title": "EnableLogExportRequest",
  "type": "object",
  "description": "Request body for enabling log export.",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of log export destination. Accepted values are AWS_CLOUDWATCH and GCP_CLOUD_LOGGING.",
      "enum": [
        "AWS_CLOUDWATCH",
        "GCP_CLOUD_LOGGING"
      ]
    },
    "log_name": {
      "type": "string",
      "description": "Name for the log stream or log group."
    },
    "groups": {
      "type": "array",
      "description": "Channel groups to export.",
      "items": {
        "type": "object"
      }
    }
  }
}