Show / Hide Table of Contents

Class ManagedSoftwareUpdateMaintenanceDetails

Provides details about actual Oracle Managed Database Software Updates scheduled time and version.

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

Properties

TimeOfLastReadinessCheck

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

The date and time of the last readiness check.

TimeOfStatusUpdate

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

The date and time of when the status was updated.

TimeScheduled

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

The date and time of the database was scheduled for update.

Remarks

Required

UpdateMode

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

Oracle Managed Database Software update method, either "ROLLING" or "NONROLLING"

UpdateReadinessStatus

Declaration
[JsonProperty(PropertyName = "updateReadinessStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ManagedSoftwareUpdateMaintenanceDetails.UpdateReadinessStatusEnum? UpdateReadinessStatus { get; set; }
Property Value
Type Description
ManagedSoftwareUpdateMaintenanceDetails.UpdateReadinessStatusEnum?

The managed software update readiness status

UpdateReadinessStatusDetails

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

This field will contain actual cause of update readiness state.

Version

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

The version of the database was scheduled for update.

Remarks

Required

In this article
Back to top