Era.Common.DataDefinition.Logs.MuteThreatLog

Description

A data container used to describe the threat to mute.

Properties

Name JsonSchemaType Description
CSN integer The primary identifier of a threat that is to be muted of a specified frontend product.
autoResolved boolean True If logs are autoresolved
fromServer boolean False/True If logs come from GUI / If logs is generated when threat-resolving is produced from EnterpriseInspector
frontendThreats_product integer The product identifier for which to mute a threat with a specified CSN. Can be one of the following: 25769803781 (Antivirus) or 25769803782 (Firewall)
mute boolean True/False to specify if to mute or unmute a threat.
muteGroup boolean True If logs are in the same aggregation group
userUuid string Uuid of the user, who (un)resolved threat

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.NetworkMessage.ConsoleApi.Logs.RpcMuteThreatRequest

JsonSchema

{
    "title": "Era.Common.DataDefinition.Logs.MuteThreatLog",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Logs.MuteThreatLog"
    ],
    "properties": {
        "Era.Common.DataDefinition.Logs.MuteThreatLog": {
            "$ref": "#/definitions/MuteThreatLog"
        }
    },
    "definitions": {
        "MuteThreatLog": {
            "additionalProperties": false,
            "required": [
                "CSN",
                "frontendThreats_product",
                "mute"
            ],
            "type": "object",
            "properties": {
                "CSN": {
                    "type": "integer"
                },
                "autoResolved": {
                    "type": "boolean"
                },
                "fromServer": {
                    "type": "boolean"
                },
                "frontendThreats_product": {
                    "type": "integer"
                },
                "mute": {
                    "type": "boolean"
                },
                "muteGroup": {
                    "type": "boolean"
                },
                "userUuid": {
                    "type": "string"
                }
            }
        }
    }
}