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

WindowsUpdateSettings

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

Windows patching is performed using the Windows Update Agent.

interface WindowsUpdateSettings {
classifications?:
| "CLASSIFICATION_UNSPECIFIED"
| "CRITICAL"
| "SECURITY"
| "DEFINITION"
| "DRIVER"
| "FEATURE_PACK"
| "SERVICE_PACK"
| "TOOL"
| "UPDATE_ROLLUP"
| "UPDATE"[];
excludes?: string[];
exclusivePatches?: string[];
}

§Properties

§
classifications?: "CLASSIFICATION_UNSPECIFIED" | "CRITICAL" | "SECURITY" | "DEFINITION" | "DRIVER" | "FEATURE_PACK" | "SERVICE_PACK" | "TOOL" | "UPDATE_ROLLUP" | "UPDATE"[]
[src]

Only apply updates of these windows update classifications. If empty, all updates are applied.

§
excludes?: string[]
[src]

List of KBs to exclude from update.

§
exclusivePatches?: string[]
[src]

An exclusive list of kbs to be updated. These are the only patches that will be updated. This field must not be used with other patch configurations.