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

FixableTotalByDigest

import type { FixableTotalByDigest } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

Per resource and severity counts of fixable and total vulnerabilities.

interface FixableTotalByDigest {
fixableCount?: bigint;
resourceUri?: string;
severity?:
| "SEVERITY_UNSPECIFIED"
| "MINIMAL"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
totalCount?: bigint;
}

§Properties

§
fixableCount?: bigint
[src]

The number of fixable vulnerabilities associated with this resource.

§
resourceUri?: string
[src]

The affected resource.

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

The severity for this count. SEVERITY_UNSPECIFIED indicates total across all severities.

§
totalCount?: bigint
[src]

The total number of vulnerabilities associated with this resource.