Summary
Get redundant rules in a Rule Template
Description
Get a list of the redundant rules in a Rule Template.
Route
GET /policy-manager/rule-templates/:id/redundantRules
Roles
admin
other
readonly
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
id |
string |
yes |
id of the ruleTemplate to check |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
policyAnalysisFindings |
object |
Properties of the ip string |
Copied to Clipboard
[
{
"rule": {
"id": "eiusmod ex aliquip deserunt aliqua",
"sourceNetwork": "dolor enim elit",
"destinationNetwork": "ut voluptate ex"
},
"conflictType": "in sunt cillum",
"conflictingRule": {
"id": "Excepteur",
"sourceNetwork": "veniam elit irure pariatur",
"destinationNetwork": "esse"
}
}
]
Copied to Clipboard
{
"title": "policyAnalysisFindings",
"type": "array",
"items": {
"type": "object",
"properties": {
"rule": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"sourceNetwork": {
"type": "string"
},
"destinationNetwork": {
"type": "string"
}
}
},
"conflictType": {
"type": "string",
"example": "REDUNDANT"
},
"conflictingRule": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"sourceNetwork": {
"type": "string"
},
"destinationNetwork": {
"type": "string"
}
}
}
}
}
}