RuleFinding¶
- 
class oci.database_management.models.RuleFinding(**kwargs)¶
- Bases: - object- The summary of the Optimizer Statistics Advisor findings and recommendations. - Methods - __init__(**kwargs)- Initializes a new RuleFinding object with values from keyword arguments. - Attributes - details- [Required] Gets the details of this RuleFinding. - message- [Required] Gets the message of this RuleFinding. - recommendations- [Required] Gets the recommendations of this RuleFinding. - 
__init__(**kwargs)¶
- Initializes a new RuleFinding object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - message (str) – The value to assign to the message property of this RuleFinding.
- details (list[oci.database_management.models.FindingSchemaOrOperation]) – The value to assign to the details property of this RuleFinding.
- recommendations (list[oci.database_management.models.Recommendation]) – The value to assign to the recommendations property of this RuleFinding.
 
 - 
details¶
- [Required] Gets the details of this RuleFinding. The details of the schema or operation. - Returns: - The details of this RuleFinding. - Return type: - list[oci.database_management.models.FindingSchemaOrOperation] 
 - 
message¶
- [Required] Gets the message of this RuleFinding. A high-level overview of the findings of the Optimizer Statistics Advisor. - Returns: - The message of this RuleFinding. - Return type: - str 
 - 
recommendations¶
- [Required] Gets the recommendations of this RuleFinding. The list of recommendations. - Returns: - The recommendations of this RuleFinding. - Return type: - list[oci.database_management.models.Recommendation] 
 
-