Show / Hide Table of Contents

Class RuleFinding

The summary of the Optimizer Statistics Advisor findings and recommendations.

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

Properties

Details

Declaration
[Required(ErrorMessage = "Details is required.")]
[JsonProperty(PropertyName = "details")]
public List<FindingSchemaOrOperation> Details { get; set; }
Property Value
Type Description
List<FindingSchemaOrOperation>

The details of the schema or operation.

Remarks

Required

Message

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

A high-level overview of the findings of the Optimizer Statistics Advisor.

Remarks

Required

Recommendations

Declaration
[Required(ErrorMessage = "Recommendations is required.")]
[JsonProperty(PropertyName = "recommendations")]
public List<Recommendation> Recommendations { get; set; }
Property Value
Type Description
List<Recommendation>

The list of recommendations.

Remarks

Required

In this article
Back to top