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

WindowsUpdate

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

Windows Update represents the metadata about the update for the Windows operating system. The fields in this message come from the Windows Update API documented at https://docs.microsoft.com/en-us/windows/win32/api/wuapi/nn-wuapi-iupdate.

interface WindowsUpdate {
categories?: Category[];
description?: string;
identity?: Identity;
kbArticleIds?: string[];
lastPublishedTimestamp?: Date;
supportUrl?: string;
title?: string;
}

§Properties

§
categories?: Category[]
[src]

The list of categories to which the update belongs.

§
description?: string
[src]

The localized description of the update.

§
identity?: Identity
[src]

Required - The unique identifier for the update.

§
kbArticleIds?: string[]
[src]

The Microsoft Knowledge Base article IDs that are associated with the update.

§
lastPublishedTimestamp?: Date
[src]

The last published timestamp of the update.

§
supportUrl?: string
[src]

The hyperlink to the support information for the update.

§
title?: string
[src]

The localized title of the update.