Show / Hide Table of Contents

Class ExadataLiveImageVersionDetails

Details about the most recent live image version applied on the VM Cluster, if any. If a full OS update was applied, the fields would be blank.

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

Properties

HasPendingUpdates

Declaration
[JsonProperty(PropertyName = "hasPendingUpdates")]
public bool? HasPendingUpdates { get; set; }
Property Value
Type Description
bool?

Indicates whether OS updates that require node reboot are pending after the previous online update was applied.

TimeReleased

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

The release date and time for the applied Live Exadata Image OS version.

UpdateMode

Declaration
[JsonProperty(PropertyName = "updateMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataLiveImageVersionDetails.UpdateModeEnum? UpdateMode { get; set; }
Property Value
Type Description
ExadataLiveImageVersionDetails.UpdateModeEnum?

The OS live update mode performed most recently on the VM Cluster.

Version

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

Live Exadata Image Version of the Guest OS Update applied.

In this article
Back to top