iam_request_ip

Client IP restrictions.

APIs.ioEngineeringPlatform

Properties

Name Type Description
in object
not_in object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-iam-request-ip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/iam_request_ip",
  "title": "iam_request_ip",
  "description": "Client IP restrictions.",
  "example": {
    "in": [
      "123.123.123.0/24",
      "2606:4700::/32"
    ],
    "not_in": [
      "123.123.123.100/24",
      "2606:4700:4700::/48"
    ]
  },
  "properties": {
    "in": {
      "$ref": "#/components/schemas/iam_cidr_list"
    },
    "not_in": {
      "$ref": "#/components/schemas/iam_cidr_list"
    }
  },
  "type": "object"
}