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

PatchConfig

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

Patch configuration specifications. Contains details on how to apply the patch(es) to a VM instance.

interface PatchConfig {
migInstancesAllowed?: boolean;
postStep?: ExecStep;
preStep?: ExecStep;
rebootConfig?:
| "REBOOT_CONFIG_UNSPECIFIED"
| "DEFAULT"
| "ALWAYS"
| "NEVER";
windowsUpdate?: WindowsUpdateSettings;
zypper?: ZypperSettings;
}

§Properties

§

Apt update settings. Use this setting to override the default apt patch rules.

§

Goo update settings. Use this setting to override the default goo patch rules.

§
migInstancesAllowed?: boolean
[src]

Allows the patch job to run on Managed instance groups (MIGs).

§
postStep?: ExecStep
[src]

The ExecStep to run after the patch update.

§
preStep?: ExecStep
[src]

The ExecStep to run before the patch update.

§
rebootConfig?: "REBOOT_CONFIG_UNSPECIFIED" | "DEFAULT" | "ALWAYS" | "NEVER"
[src]

Post-patch reboot settings.

§

Windows update settings. Use this override the default windows patch rules.

§

Yum update settings. Use this setting to override the default yum patch rules.

§

Zypper update settings. Use this setting to override the default zypper patch rules.