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": true
}
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": [
"in eu qui"
],
"new": "deserunt pariatur irure",
"old": "velit"
},
{
"result": true,
"parents": [
"officia"
],
"new": "tempor dolor",
"old": "fugiat incididunt occaecat aliquip nostrud"
},
{
"result": true,
"parents": [
"minim est elit",
"qui laborum officia",
"laborum ea deserunt in",
"cupidatat irure"
],
"new": "consequat in",
"old": "cupidatat sunt magna dolor Ut"
},
{
"result": false,
"parents": [
"quis esse mollit ut",
"incididunt id eiusmod in"
],
"new": "fugiat adipisicing amet in dolor",
"old": "eiusmod cupidatat"
}
]
}
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"
}
}
}
}
}
}