Show / Hide Table of Contents

Class VmClusterUpdateHistoryEntrySummary

The record of a maintenance update action performed on a specified VM cluster. Applies to Exadata Cloud@Customer instances only.

Inheritance
object
VmClusterUpdateHistoryEntrySummary
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 VmClusterUpdateHistoryEntrySummary

Properties

Id

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

The OCID of the maintenance update history entry.

Remarks

Required

LifecycleDetails

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

Descriptive text providing additional details about the lifecycle state.

LifecycleState

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

The current lifecycle state of the maintenance update operation.

Remarks

Required

TimeCompleted

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

The date and time when the maintenance update 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 maintenance update action started.

Remarks

Required

UpdateAction

Declaration
[JsonProperty(PropertyName = "updateAction")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmClusterUpdateHistoryEntrySummary.UpdateActionEnum? UpdateAction { get; set; }
Property Value
Type Description
VmClusterUpdateHistoryEntrySummary.UpdateActionEnum?

The update action performed using this maintenance update.

UpdateId

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

The OCID of the maintenance update.

Remarks

Required

UpdateType

Declaration
[Required(ErrorMessage = "UpdateType is required.")]
[JsonProperty(PropertyName = "updateType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmClusterUpdateHistoryEntrySummary.UpdateTypeEnum? UpdateType { get; set; }
Property Value
Type Description
VmClusterUpdateHistoryEntrySummary.UpdateTypeEnum?

The type of VM cluster maintenance update.

Remarks

Required

In this article
Back to top