An IPv6 address configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
target object The configuration target. You must set the target to `ip6` when specifying an IPv6 address in the rule.
value string The IPv6 address to match.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-ipv6-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_ipv6_configuration",
  "title": "An IPv6 address configuration.",
  "properties": {
    "target": {
      "description": "The configuration target. You must set the target to `ip6` when specifying an IPv6 address in the rule.",
      "enum": [
        "ip6"
      ],
      "example": "ip6"
    },
    "value": {
      "description": "The IPv6 address to match.",
      "example": "2001:DB8:100::CF",
      "type": "string"
    }
  }
}