Summary
Auto Fix
Description
Patch device configuration automatically from compliance report
Route
No Northbound API Available
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
complianceReportId |
string |
yes |
- |
removeDisallowedConfig |
boolean |
yes |
- |
Copied to Clipboard
{
"complianceReportId": "5c35355dbebaa82eaf8113f0",
"removeDisallowedConfig": false
}
Copied to Clipboard
{
"type": "object",
"properties": {
"complianceReportId": {
"title": "complianceReportId",
"$ref": "common#/definitions/mongoObjectId"
},
"removeDisallowedConfig": {
"title": "removeDisallowedConfig",
"type": "boolean"
}
},
"required": [
"complianceReportId",
"removeDisallowedConfig"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
remediationResult |
object |
- |
Copied to Clipboard
{
"response": [
{
"result": true,
"parents": [
"et dolor",
"in dolore minim tempor",
"officia mollit laboris",
"id eu"
],
"new": "commodo consectetur",
"old": "aute id anim sed pariatur"
},
{
"result": true,
"parents": [
"minim",
"dolore",
"Excepteur mollit dolor cillum ut",
"ex velit",
"labore consectetur quis cupidatat mollit"
],
"new": "minim consequat sint",
"old": "ut eiusmod"
},
{
"result": true,
"parents": [
"anim",
"Excepteur",
"esse dolore cillum ex",
"ex consectetur esse voluptate reprehenderit"
],
"new": "consectetur quis veniam",
"old": "id reprehenderit commodo aliquip"
},
{
"result": false,
"parents": [
"dolor ex sed occaecat",
"ut laborum deserunt",
"dolore",
"culpa"
],
"new": "reprehenderit qui dolore",
"old": "amet culpa reprehenderit"
}
]
}
Copied to Clipboard
{
"title": "remediationResult",
"type": "object",
"properties": {
"response": {
"type": "array",
"items": {
"type": "object",
"properties": {
"result": {
"type": "boolean"
},
"parents": {
"type": "array",
"items": {
"type": "string"
}
},
"new": {
"type": "string"
},
"old": {
"type": "string"
}
}
}
}
}
}