CockroachDB · Schema

AddPrivateEndpointConnectionRequest

Request body for adding a private endpoint connection.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
endpoint_id string Cloud provider endpoint identifier to connect.
View JSON Schema on GitHub

JSON Schema

cockroachdb-addprivateendpointconnectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddPrivateEndpointConnectionRequest",
  "title": "AddPrivateEndpointConnectionRequest",
  "type": "object",
  "description": "Request body for adding a private endpoint connection.",
  "required": [
    "endpoint_id"
  ],
  "properties": {
    "endpoint_id": {
      "type": "string",
      "description": "Cloud provider endpoint identifier to connect."
    }
  }
}