Show / Hide Table of Contents

Class AdvisorRule

The details of the Optimizer Statistics Advisor rule.

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

Properties

Description

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

The description of the rule.

Remarks

Required

Findings

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

The list of findings for the rule.

Remarks

Required

Name

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

The name of the rule.

Remarks

Required

In this article
Back to top