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": "dolor qui",
"sourceNetwork": "ipsum ex fugiat",
"destinationNetwork": "dolor sint ex Ut nulla"
},
"conflictType": "Duis elit anim",
"conflictingRule": {
"id": "mollit",
"sourceNetwork": "reprehenderit pariatur enim qui dolor",
"destinationNetwork": "Lorem Duis in quis"
}
},
{
"rule": {
"id": "velit anim fugiat",
"sourceNetwork": "eiusmod aute ut",
"destinationNetwork": "aliqua occaecat voluptate Ut"
},
"conflictType": "amet incididunt Duis",
"conflictingRule": {
"id": "dolor",
"sourceNetwork": "exercitation Ut dolor",
"destinationNetwork": "occaecat dolor"
}
},
{
"rule": {
"id": "Lorem do officia ad",
"sourceNetwork": "ullamco",
"destinationNetwork": "eiusmod"
},
"conflictType": "qui amet veniam",
"conflictingRule": {
"id": "minim commodo",
"sourceNetwork": "elit",
"destinationNetwork": "dolore non"
}
}
]
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"
}
}
}
}
}
}