Enum usiem::components::common::SiemTaskType[][src]

#[non_exhaustive]
pub enum SiemTaskType {
    EXECUTE_ENDPOINT_SCRIPT(Cow<'static, str>, BTreeMap<Cow<'static, str>, Cow<'static, str>>),
    LOG_QUERY(StringBTreeMap<Cow<'static, str>, Cow<'static, str>>),
    REMEDIATE_EMAILS(BTreeMap<Cow<'static, str>, Cow<'static, str>>),
    REPORT_ABUSE(BTreeMap<Cow<'static, str>, Cow<'static, str>>),
    UPDATE_GEOIP,
    OTHER(Cow<'static, str>, BTreeMap<Cow<'static, str>, Cow<'static, str>>),
}

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
EXECUTE_ENDPOINT_SCRIPT(Cow<'static, str>, BTreeMap<Cow<'static, str>, Cow<'static, str>>)

Script name and Script parameters

Tuple Fields of EXECUTE_ENDPOINT_SCRIPT

0: Cow<'static, str>1: BTreeMap<Cow<'static, str>, Cow<'static, str>>
LOG_QUERY(StringBTreeMap<Cow<'static, str>, Cow<'static, str>>)

Log query and log parameters

Tuple Fields of LOG_QUERY

0: String1: BTreeMap<Cow<'static, str>, Cow<'static, str>>
REMEDIATE_EMAILS(BTreeMap<Cow<'static, str>, Cow<'static, str>>)

Remediate a list of emails. List of parameters

Tuple Fields of REMEDIATE_EMAILS

0: BTreeMap<Cow<'static, str>, Cow<'static, str>>
REPORT_ABUSE(BTreeMap<Cow<'static, str>, Cow<'static, str>>)

Report IP, email to abuse mail. Needed provider name and parameters

Tuple Fields of REPORT_ABUSE

0: BTreeMap<Cow<'static, str>, Cow<'static, str>>
UPDATE_GEOIP
OTHER(Cow<'static, str>, BTreeMap<Cow<'static, str>, Cow<'static, str>>)

Task name, Map<ParamName, Description>

Tuple Fields of OTHER

0: Cow<'static, str>1: BTreeMap<Cow<'static, str>, Cow<'static, str>>

Trait Implementations

Formats the value using the given formatter. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.