Show / Hide Table of Contents

Class AddmDbFindingAggregation

Summarizes a specific ADDM finding

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

Properties

CategoryDisplayName

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

Category display name

Remarks

Required

CategoryName

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

Category name

Remarks

Required

FindingId

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

Unique finding id

Remarks

Required

FrequencyCount

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

Number of occurrences for this finding

Remarks

Required

Id

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

The OCID of the Database insight.

Remarks

Required

ImpactAvgActiveSessions

Declaration
[JsonProperty(PropertyName = "impactAvgActiveSessions")]
public double ImpactAvgActiveSessions { get; set; }
Property Value
Type Description
double

Impact in terms of average active sessions

ImpactMaxPercent

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

Maximum impact in terms of percentage of total activity

Remarks

Required

ImpactOverallPercent

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

Overall impact in terms of percentage of total activity

Remarks

Required

Message

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

Finding message

Remarks

Required

Name

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

Finding name

Remarks

Required

RecommendationCount

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

Number of recommendations for this finding

Remarks

Required

In this article
Back to top