ScyllaDB · Schema

FirewallRule

Represents a firewall rule (CIDR allowlist entry) for a ScyllaDB Cloud cluster.

DatabaseNoSQLCassandra CompatibleDynamoDB CompatibleDistributed DatabaseReal-TimeVector SearchCloud Database

Properties

Name Type Description
clusterId integer ID of the cluster
id integer ID of the firewall allowed rule
address string CIDR notation
View JSON Schema on GitHub

JSON Schema

scylladb-firewall-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.cloud.scylladb.com/schemas/firewall-rule.json",
  "title": "FirewallRule",
  "description": "Represents a firewall rule (CIDR allowlist entry) for a ScyllaDB Cloud cluster.",
  "type": "object",
  "properties": {
    "clusterId": {
      "type": "integer",
      "description": "ID of the cluster"
    },
    "id": {
      "type": "integer",
      "description": "ID of the firewall allowed rule"
    },
    "address": {
      "type": "string",
      "description": "CIDR notation",
      "example": "192.0.2.0/24"
    }
  },
  "required": []
}