Show / Hide Table of Contents

Class PatchHistoryEntrySummary

The record of a patch action on a specified target.

Inheritance
object
PatchHistoryEntrySummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class PatchHistoryEntrySummary

Properties

Action

Declaration
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchHistoryEntrySummary.ActionEnum? Action { get; set; }
Property Value
Type Description
PatchHistoryEntrySummary.ActionEnum?

The action being performed or was completed.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the patch history entry.

Remarks

Required

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
string

A descriptive text associated with the lifecycleState. Typically contains additional displayable text.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchHistoryEntrySummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
PatchHistoryEntrySummary.LifecycleStateEnum?

The current state of the action.

Remarks

Required

PatchId

Declaration
[Required(ErrorMessage = "PatchId is required.")]
[JsonProperty(PropertyName = "patchId")]
public string PatchId { get; set; }
Property Value
Type Description
string

The OCID of the patch.

Remarks

Required

PatchType

Declaration
[JsonProperty(PropertyName = "patchType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchHistoryEntrySummary.PatchTypeEnum? PatchType { get; set; }
Property Value
Type Description
PatchHistoryEntrySummary.PatchTypeEnum?

The type of Patch operation.

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The date and time when the patch action completed

TimeStarted

Declaration
[Required(ErrorMessage = "TimeStarted is required.")]
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The date and time when the patch action started.

Remarks

Required

In this article
Back to top