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": "mollit laboris",
"sourceNetwork": "dolor",
"destinationNetwork": "elit est"
},
"conflictType": "non",
"conflictingRule": {
"id": "mollit",
"sourceNetwork": "culpa",
"destinationNetwork": "tempor ullamco"
}
},
{
"rule": {
"id": "deserunt irure magna",
"sourceNetwork": "fugiat ipsum est",
"destinationNetwork": "Duis dolore minim veniam in"
},
"conflictType": "nulla",
"conflictingRule": {
"id": "sit",
"sourceNetwork": "do culpa cupidatat voluptate ea",
"destinationNetwork": "qui"
}
},
{
"rule": {
"id": "id eu",
"sourceNetwork": "nulla sint",
"destinationNetwork": "minim nostrud"
},
"conflictType": "anim dolor",
"conflictingRule": {
"id": "et officia",
"sourceNetwork": "est",
"destinationNetwork": "sunt ut officia deserunt"
}
},
{
"rule": {
"id": "esse cillum sed dolor nisi",
"sourceNetwork": "ad",
"destinationNetwork": "cillum in magna"
},
"conflictType": "esse",
"conflictingRule": {
"id": "elit nulla velit ex",
"sourceNetwork": "elit anim ut cupidatat ut",
"destinationNetwork": "do est id aliqua aliquip"
}
}
]
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"
}
}
}
}
}
}