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

UpgradeDistribution

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

The Upgrade Distribution represents metadata about the Upgrade for each operating system (CPE). Some distributions have additional metadata around updates, classifying them into various categories and severities.

interface UpgradeDistribution {
classification?: string;
cpeUri?: string;
cve?: string[];
severity?: string;
}

§Properties

§
classification?: string
[src]

The operating system classification of this Upgrade, as specified by the upstream operating system upgrade feed. For Windows the classification is one of the category_ids listed at https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ff357803(v=vs.85)

§
cpeUri?: string
[src]

Required - The specific operating system this metadata applies to. See https://cpe.mitre.org/specification/.

§
cve?: string[]
[src]

The cve tied to this Upgrade.

§
severity?: string
[src]

The severity as specified by the upstream operating system.