Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TechnologyWatchListAlertThreshold

import type { TechnologyWatchListAlertThreshold } from "https://googleapis.deno.dev/v1/threatintelligence:v1beta.ts";

TechnologyWatchListAlertThreshold contains the thresholds for alerting.

interface TechnologyWatchListAlertThreshold {
cvssScoreMinimum?: number;
epssScoreMinimum?: number;
exploitationStates?:
| "EXPLOITATION_STATE_UNSPECIFIED"
| "EXPLOITATION_STATE_NO_KNOWN"
| "EXPLOITATION_STATE_REPORTED"
| "EXPLOITATION_STATE_SUSPECTED"
| "EXPLOITATION_STATE_CONFIRMED"
| "EXPLOITATION_STATE_WIDESPREAD"[];
priorityMinimum?:
| "PRIORITY_UNSPECIFIED"
| "P0"
| "P1"
| "P2"
| "P3"
| "P4";
}

§Properties

§
cvssScoreMinimum?: number
[src]

Optional. The minimum cvss V3 score for the alert. Ex: 7.0. Valid range is [0.0, 10.0].

§
epssScoreMinimum?: number
[src]

Optional. The minimum epss score for the alert. Ex: 0.8. Valid range is [0.0, 1.0].

§
exploitationStates?: "EXPLOITATION_STATE_UNSPECIFIED" | "EXPLOITATION_STATE_NO_KNOWN" | "EXPLOITATION_STATE_REPORTED" | "EXPLOITATION_STATE_SUSPECTED" | "EXPLOITATION_STATE_CONFIRMED" | "EXPLOITATION_STATE_WIDESPREAD"[]
[src]

Optional. The exploitation states of the alert.

§
priorityMinimum?: "PRIORITY_UNSPECIFIED" | "P0" | "P1" | "P2" | "P3" | "P4"
[src]

Optional. The minimum priority for the alert.