Show / Hide Table of Contents

Class PatchDeployment

Patch deployments are configurations that individual patch jobs use to complete a patch. These configurations include instance filter, package repository settings, and a schedule. For more information about creating and managing patch deployments, see Scheduling patch jobs.

Inheritance
System.Object
PatchDeployment
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 PatchDeployment : IDirectResponseSchema

Properties

CreateTime

Output only. Time the patch deployment was created. Timestamp is in RFC3339 text format.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

Description

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

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

Duration

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

Declaration
[JsonProperty("duration")]
public virtual object Duration { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

InstanceFilter

Required. VM instances to patch.

Declaration
[JsonProperty("instanceFilter")]
public virtual PatchInstanceFilter InstanceFilter { get; set; }
Property Value
Type Description
PatchInstanceFilter

LastExecuteTime

Output only. The last time a patch job was started by this deployment. Timestamp is in RFC3339 text format.

Declaration
[JsonProperty("lastExecuteTime")]
public virtual object LastExecuteTime { get; set; }
Property Value
Type Description
System.Object

Name

Unique name for the patch deployment resource in a project. The patch deployment name is in the form: projects/{project_id}/patchDeployments/{patch_deployment_id}. This field is ignored when you create a new patch deployment.

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

OneTimeSchedule

Required. Schedule a one-time execution.

Declaration
[JsonProperty("oneTimeSchedule")]
public virtual OneTimeSchedule OneTimeSchedule { get; set; }
Property Value
Type Description
OneTimeSchedule

PatchConfig

Optional. Patch configuration that is applied.

Declaration
[JsonProperty("patchConfig")]
public virtual PatchConfig PatchConfig { get; set; }
Property Value
Type Description
PatchConfig

RecurringSchedule

Required. Schedule recurring executions.

Declaration
[JsonProperty("recurringSchedule")]
public virtual RecurringSchedule RecurringSchedule { get; set; }
Property Value
Type Description
RecurringSchedule

Rollout

Optional. Rollout strategy of the patch job.

Declaration
[JsonProperty("rollout")]
public virtual PatchRollout Rollout { get; set; }
Property Value
Type Description
PatchRollout

State

Output only. Current state of the patch deployment.

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

UpdateTime

Output only. Time the patch deployment was last updated. Timestamp is in RFC3339 text format.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

Implements

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