schemas.urn:jsonschema:io:gravitee:policy:IPFilteringPolicyConfiguration.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravitee-policy-ipfiltering Show documentation
Show all versions of gravitee-policy-ipfiltering Show documentation
The IPFiltering Gravitee Policy allows you to define an ip blacklist/whitelist filter.
You can use IPv4 and CIDR notation.
{
"type" : "object",
"id" : "urn:jsonschema:io:gravitee:policy:IPFilteringPolicyConfiguration",
"properties" : {
"matchAllFromXForwardedFor" : {
"title" : "Use X-Forwarded-For header",
"type" : "boolean"
},
"whitelistIps" : {
"title" : "IPs Whitelist (CIDR allowed)",
"type" : "array",
"items" : {
"title" : "IP or CIDR",
"type" : "string"
}
},
"blacklistIps" : {
"title" : "IPs Blacklist (CIDR allowed)",
"type" : "array",
"items" : {
"title" : "IP or CIDR",
"type" : "string"
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy