Update Rule Analysis Ignored Rules

Update Rule Analysis Ignored Rules
Update the list of firewall rules to be ignored from firewall rule analysis activities.

This will update and overwrite the list of firewall rules to ignore from rule analysis activities.

Request
URI
POST
https://{api_host}/firewall/rule-analysis/settings/ignored-rules/action/update
COPY
Request Body

Request to update the ignored rules list for firewall rule analysis activities.

UpdateIgnoredRulesRequest of type(s) application/json
Required

Show optional properties

{
    "rule_ids": [
        {}
    ]
}
{
    "site_id": "string",
    "rule_ids": [
        0
    ]
}
string
site_id
Optional

Local manager identifier to update rule analysis ignored rules on.

array of integer
rule_ids
Required

List of firewall rule Ids. This is the unique system generated rule_id like "1001", "1002", etc.

Authentication
This operation uses the following authentication methods.
Responses
204

No content response for firewall rule analysis ignored rules update.

Operation doesn't return any data structure

default

Error

Returns Error of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required

Message describing the error.


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"rule_ids":["integer"]}' https://{api_host}/firewall/rule-analysis/settings/ignored-rules/action/update