Client IP restrictions.
{ "$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" }