AllowlistCustomAlertRule type

A custom alert rule that checks if a value (depends on the custom alert type) is allowed.

type AllowlistCustomAlertRule = ListCustomAlertRule & {
  allowlistValues: string[]
  ruleType:
    | "AllowlistCustomAlertRule"
    | "ConnectionToIpNotAllowed"
    | "ConnectionFromIpNotAllowed"
    | "LocalUserNotAllowed"
    | "ProcessNotAllowed"
}