Show / Hide Table of Contents

Class PatchJobInstanceDetails

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.

Inheritance
System.Object
PatchJobInstanceDetails
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class PatchJobInstanceDetails : IDirectResponseSchema

Properties

AttemptCount

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

Declaration
[JsonProperty("attemptCount")]
public virtual long? AttemptCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FailureReason

If the patch fails, this field provides the reason.

Declaration
[JsonProperty("failureReason")]
public virtual string FailureReason { get; set; }
Property Value
Type Description
System.String

InstanceSystemId

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

Declaration
[JsonProperty("instanceSystemId")]
public virtual string InstanceSystemId { get; set; }
Property Value
Type Description
System.String

Name

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

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

State

Current state of instance patch.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top