List Rule Analysis Settings

List Rule Analysis Settings
List firewall rule analysis settings.

Returns the list of settings for firewall rule analysis activities on local managers.

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

Use the parameters to list the firewall rule analysis settings.

FirewallRuleAnalysisSettingsListRequest of type(s) application/json
Optional
This request body class requires all of the following: InlineFirewallRuleAnalysisSettingsListRequest0
{
    "site_ids": [
        "string"
    ],
    "offset": 0,
    "page_size": 0,
    "sort_ascending": false,
    "sort_by": "string"
}
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns FirewallRuleAnalysisSettingsListResult of type(s) application/json
{
    "offset": 0,
    "number_of_results": 0,
    "total_result_count": 0,
    "total_pages": 0,
    "sort_ascending": false,
    "sort_by": "string",
    "rule_analysis_settings": [
        {
            "_create_user": "string",
            "_create_time": 0,
            "_last_modified_user": "string",
            "_last_modified_time": 0,
            "_revision": 0,
            "_resource_type": "string",
            "_system_owned": false,
            "id": "string",
            "display_name": "string",
            "description": "string",
            "site_ids": [
                "string"
            ],
            "auto_rule_analysis_configuration": {
                "enabled": false,
                "frequency": "string",
                "schedule": {
                    "date": "2024-11-10T00:00:00.000Z",
                    "hour": 0,
                    "minute": 0
                }
            },
            "anomalies_to_skip": [
                "string"
            ]
        }
    ]
}

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 '{}' https://{api_host}/firewall/rule-analysis/settings