Show / Hide Table of Contents

Class IormPlan

The IORM plan from an Exadata storage server.

Inheritance
object
IormPlan
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class IormPlan

Properties

DbPlan

Declaration
[JsonProperty(PropertyName = "dbPlan")]
public DatabasePlan DbPlan { get; set; }
Property Value
Type Description
DatabasePlan

PlanObjective

Declaration
[Required(ErrorMessage = "PlanObjective is required.")]
[JsonProperty(PropertyName = "planObjective")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IormPlanObjectiveEnum? PlanObjective { get; set; }
Property Value
Type Description
IormPlanObjectiveEnum?

The objective of the IORM plan.

Remarks

Required

PlanStatus

Declaration
[Required(ErrorMessage = "PlanStatus is required.")]
[JsonProperty(PropertyName = "planStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IormPlanStatusEnum? PlanStatus { get; set; }
Property Value
Type Description
IormPlanStatusEnum?

The status of the IORM plan.

Remarks

Required

In this article
Back to top