CockroachDB · Schema

EditEgressRuleRequest

Request body for updating an egress rule.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string New name for the egress rule.
destination string New destination FQDN or CIDR for the rule.
ports array Updated list of destination ports.
View JSON Schema on GitHub

JSON Schema

cockroachdb-editegressrulerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EditEgressRuleRequest",
  "title": "EditEgressRuleRequest",
  "type": "object",
  "description": "Request body for updating an egress rule.",
  "properties": {
    "name": {
      "type": "string",
      "description": "New name for the egress rule."
    },
    "destination": {
      "type": "string",
      "description": "New destination FQDN or CIDR for the rule."
    },
    "ports": {
      "type": "array",
      "description": "Updated list of destination ports.",
      "items": {
        "type": "integer"
      }
    }
  }
}