Show / Hide Table of Contents

Class PatchHistorySummary

Patch history of this cluster.

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

Properties

LifecycleState

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

The status of this patch.

Remarks

Required

PatchType

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

The type of current patch history. DP - Data Plane patch(This history type is internal available only) ODH - Oracle Distribution of Hadoop update OS - Operating System update BDS - Big Data Service update

Remarks

Required

TimeUpdated

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

The time when the patch history was last updated.

Remarks

Required

Version

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

The version of the patch.

Remarks

Required

In this article
Back to top