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": false,
"parents": [
"est ullamco quis",
"ipsum nisi proident sunt",
"nulla sit elit proident",
"proident eu",
"fugiat"
],
"new": "quis aliqua mollit magna",
"old": "esse velit eu eiusmod"
},
{
"result": true,
"parents": [
"voluptate Excepteur",
"in irure nostrud ex",
"dolor est",
"in nostrud ea",
"velit do dolore minim"
],
"new": "non consequat enim",
"old": "fugiat"
},
{
"result": true,
"parents": [
"elit ex",
"adipisicing fugiat",
"laborum pariatur irure",
"et",
"esse exercitation"
],
"new": "nostrud labore aliqua Duis qui",
"old": "in id"
},
{
"result": false,
"parents": [
"ex sunt ut aute qui",
"ex"
],
"new": "sed laborum sunt aliquip ullamco",
"old": "Lorem officia"
}
]
}
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"
}
}
}
}
}
}