An IP address range configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
target object The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule.
value string The IP address range to match. You can only use prefix lengths `/16` and `/24`.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-schemas-cidr-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_schemas-cidr_configuration",
  "title": "An IP address range configuration.",
  "properties": {
    "target": {
      "description": "The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule.",
      "enum": [
        "ip_range"
      ],
      "example": "ip_range"
    },
    "value": {
      "description": "The IP address range to match. You can only use prefix lengths `/16` and `/24`.",
      "example": "198.51.100.4/16",
      "type": "string"
    }
  }
}