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

PatchJobInstanceDetails

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

Patch details for a VM instance. For more information about reviewing VM instance details, see Listing all VM instance details for a specific patch job.

interface PatchJobInstanceDetails {
attemptCount?: bigint;
failureReason?: string;
instanceSystemId?: string;
name?: string;
state?:
| "PATCH_STATE_UNSPECIFIED"
| "PENDING"
| "INACTIVE"
| "NOTIFIED"
| "STARTED"
| "DOWNLOADING_PATCHES"
| "APPLYING_PATCHES"
| "REBOOTING"
| "SUCCEEDED"
| "SUCCEEDED_REBOOT_REQUIRED"
| "FAILED"
| "ACKED"
| "TIMED_OUT"
| "RUNNING_PRE_PATCH_STEP"
| "RUNNING_POST_PATCH_STEP"
| "NO_AGENT_DETECTED";
}

§Properties

§
attemptCount?: bigint
[src]

The number of times the agent that the agent attempts to apply the patch.

§
failureReason?: string
[src]

If the patch fails, this field provides the reason.

§
instanceSystemId?: string
[src]

The unique identifier for the instance. This identifier is defined by the server.

§
name?: string
[src]

The instance name in the form projects/*\/zones/*\/instances/*

§
state?: "PATCH_STATE_UNSPECIFIED" | "PENDING" | "INACTIVE" | "NOTIFIED" | "STARTED" | "DOWNLOADING_PATCHES" | "APPLYING_PATCHES" | "REBOOTING" | "SUCCEEDED" | "SUCCEEDED_REBOOT_REQUIRED" | "FAILED" | "ACKED" | "TIMED_OUT" | "RUNNING_PRE_PATCH_STEP" | "RUNNING_POST_PATCH_STEP" | "NO_AGENT_DETECTED"
[src]

Current state of instance patch.