An IP address configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
target object The configuration target. You must set the target to `ip` when specifying an IP address in the rule.
value string The IP address to match. This address will be compared to the IP address of incoming requests.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-ip-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_ip_configuration",
  "title": "An IP address configuration.",
  "properties": {
    "target": {
      "description": "The configuration target. You must set the target to `ip` when specifying an IP address in the rule.",
      "enum": [
        "ip"
      ],
      "example": "ip"
    },
    "value": {
      "description": "The IP address to match. This address will be compared to the IP address of incoming requests.",
      "example": "198.51.100.4",
      "type": "string"
    }
  }
}