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

SuspiciousDomainFindingDetail

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

A detailed object for a suspicious Domain finding.

interface SuspiciousDomainFindingDetail {
domain?: string;
matchScore?: number;
severity?:
| "SEVERITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
}

§Properties

§

The DNS details of the suspicious domain.

§
domain?: string
[src]

Required. The suspicious domain name.

§

The GTI details of the suspicious domain.

§
matchScore?: number
[src]

Required. Reference to the match score of the finding. This is a float value between 0 and 1 calculated by the matching engine.

§
severity?: "SEVERITY_UNSPECIFIED" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL"
[src]

Required. The severity of the finding. This indicates the potential impact of the threat.

§

The whois details of the suspicious domain.