An ASN configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
target object The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule.
value string The AS number to match.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-asn-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_asn_configuration",
  "title": "An ASN configuration.",
  "properties": {
    "target": {
      "description": "The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule.",
      "enum": [
        "asn"
      ],
      "example": "asn"
    },
    "value": {
      "description": "The AS number to match.",
      "example": "AS12345",
      "type": "string"
    }
  }
}