Show / Hide Table of Contents

Class MaintenanceRunHistorySummary

Details of a maintenance run history.

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

Properties

CurrentExecutionWindow

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

The OCID of the current execution window.

DbServersHistoryDetails

Declaration
[JsonProperty(PropertyName = "dbServersHistoryDetails")]
public List<DbServerHistorySummary> DbServersHistoryDetails { get; set; }
Property Value
Type Description
List<DbServerHistorySummary>

List of database server history details.

GranularMaintenanceHistory

Declaration
[JsonProperty(PropertyName = "granularMaintenanceHistory")]
public List<GranularMaintenanceHistoryDetails> GranularMaintenanceHistory { get; set; }
Property Value
Type Description
List<GranularMaintenanceHistoryDetails>

The list of granular maintenance history details.

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 run history.

Remarks

Required

MaintenanceRunDetails

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