Show / Hide Table of Contents

Class ExadbVmClusterUpdateHistoryEntrySummary

The record of an maintenance update action on a specified Exadata VM cluster on Exascale Infrastructure.

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

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 ExadbVmClusterUpdateHistoryEntrySummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ExadbVmClusterUpdateHistoryEntrySummary.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 ExadbVmClusterUpdateHistoryEntrySummary.UpdateActionEnum? UpdateAction { get; set; }
Property Value
Type Description
ExadbVmClusterUpdateHistoryEntrySummary.UpdateActionEnum?

The update action.

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 ExadbVmClusterUpdateHistoryEntrySummary.UpdateTypeEnum? UpdateType { get; set; }
Property Value
Type Description
ExadbVmClusterUpdateHistoryEntrySummary.UpdateTypeEnum?

The type of cloud VM cluster maintenance update.

Remarks

Required

Version

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

The version of the maintenance update package.

In this article
Back to top