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

UpgradeOccurrence

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

An Upgrade Occurrence represents that a specific resource_url could install a specific upgrade. This presence is supplied via local sources (i.e. it is present in the mirror and the running system has noticed its availability). For Windows, both distribution and windows_update contain information for the Windows update.

interface UpgradeOccurrence {
distribution?: UpgradeDistribution;
package?: string;
parsedVersion?: Version;
windowsUpdate?: WindowsUpdate;
}

§Properties

§

Metadata about the upgrade for available for the specific operating system for the resource_url. This allows efficient filtering, as well as making it easier to use the occurrence.

§
package?: string
[src]

Required for non-Windows OS. The package this Upgrade is for.

§
parsedVersion?: Version
[src]

Required for non-Windows OS. The version of the package in a machine + human readable form.

§
windowsUpdate?: WindowsUpdate
[src]

Required for Windows OS. Represents the metadata about the Windows update.