CockroachDB · Schema

ListEgressRulesResponse

Paginated list of egress rules for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
rules array Array of egress rule objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listegressrulesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListEgressRulesResponse",
  "title": "ListEgressRulesResponse",
  "type": "object",
  "description": "Paginated list of egress rules for a cluster.",
  "properties": {
    "rules": {
      "type": "array",
      "description": "Array of egress rule objects.",
      "items": {
        "$ref": "#/components/schemas/EgressRule"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}