Show / Hide Table of Contents

Class ManagedSoftwareUpdateDetails

The database registered for Oracle Managed Database Software Updates.

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

Properties

IsEnrolled

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

If true, database is registered for Oracle Managed Database Software Updates otherwise database is not registered for Oracle Managed Database Software Updates

Remarks

Required

MaintenanceDetails

Declaration
[JsonProperty(PropertyName = "maintenanceDetails")]
public ManagedSoftwareUpdateMaintenanceDetails MaintenanceDetails { get; set; }
Property Value
Type Description
ManagedSoftwareUpdateMaintenanceDetails

PreferenceDetails

Declaration
[JsonProperty(PropertyName = "preferenceDetails")]
public ManagedSoftwareUpdatePreferenceDetails PreferenceDetails { get; set; }
Property Value
Type Description
ManagedSoftwareUpdatePreferenceDetails
In this article
Back to top