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

Finding

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

A ‘stateless’ and a point in time event that a check produced a result of interest.

interface Finding {
aiSummary?: string;
alert?: string;
asset?: string;
readonly audit?: Audit;
configurations?: string[];
detail?: FindingDetail;
displayName?: string;
issue?: string;
name?: string;
provider?: string;
readonly relevanceAnalysis?: RelevanceAnalysis;
readonly reoccurrenceTimes?: Date[];
severity?: number;
readonly severityAnalysis?: SeverityAnalysis;
}

§Properties

§
aiSummary?: string
[src]

Optional. AI summary of the finding.

§
alert?: string
[src]

Optional. Name of the alert that this finding is bound to.

§
asset?: string
[src]

Optional. Optional - asset name if known. Format: vaults/{vault}/assets/{asset}

§
readonly audit?: Audit
[src]

Output only. Audit data about the finding.

§
configurations?: string[]
[src]

Optional. Configuration names that are bound to this finding.

§

Required. Holder of the domain specific details of the finding.

§
displayName?: string
[src]

Required. A short descriptive title for the finding <= 250 chars. EX: "Actor 'baddy' offering $1000 for credentials of 'goodguy'".

§
issue?: string
[src]

Optional. Optional - name of the issue that this finding is bound to. Format: vaults/{vault}/issues/{issue}

§
name?: string
[src]

Identifier. Server generated name for the finding (leave clear during creation). Format: vaults/{vault}/findings/{finding}

§
provider?: string
[src]

Required. Logical source of this finding (name of the sub-engine).

§
readonly relevanceAnalysis?: RelevanceAnalysis
[src]

Output only. High-Precision Relevance Analysis verdict for the finding.

§
readonly reoccurrenceTimes?: Date[]
[src]

Output only. When identical finding (same labels and same details) has re-occurred.

§
severity?: number
[src]

Optional. Deprecated: Use the severity_analysis field instead. Base severity score from the finding source.

§
readonly severityAnalysis?: SeverityAnalysis
[src]

Output only. High-Precision Severity Analysis verdict for the finding.