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

ExecutePatchJobRequest

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

A request message to initiate patching across Compute Engine instances.

interface ExecutePatchJobRequest {
description?: string;
displayName?: string;
dryRun?: boolean;
duration?: number;
instanceFilter?: PatchInstanceFilter;
patchConfig?: PatchConfig;
rollout?: PatchRollout;
}

§Properties

§
description?: string
[src]

Description of the patch job. Length of the description is limited to 1024 characters.

§
displayName?: string
[src]

Display name for this patch job. This does not have to be unique.

§
dryRun?: boolean
[src]

If this patch is a dry-run only, instances are contacted but will do nothing.

§
duration?: number
[src]

Duration of the patch job. After the duration ends, the patch job times out.

§
instanceFilter?: PatchInstanceFilter
[src]

Required. Instances to patch, either explicitly or filtered by some criteria such as zone or labels.

§
patchConfig?: PatchConfig
[src]

Patch configuration being applied. If omitted, instances are patched using the default configurations.

§

Rollout strategy of the patch job.