CockroachDB · Schema

ListPrivateEndpointConnectionsResponse

List of private endpoint connections for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
connections array Array of private endpoint connection objects.
View JSON Schema on GitHub

JSON Schema

cockroachdb-listprivateendpointconnectionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListPrivateEndpointConnectionsResponse",
  "title": "ListPrivateEndpointConnectionsResponse",
  "type": "object",
  "description": "List of private endpoint connections for a cluster.",
  "properties": {
    "connections": {
      "type": "array",
      "description": "Array of private endpoint connection objects.",
      "items": {
        "$ref": "#/components/schemas/PrivateEndpointConnection"
      }
    }
  }
}