Show / Hide Table of Contents

Class FindingAnalyticsSummary

The summary of information about the analytics data of findings or top findings. It includes details such as metric name, findinKey, title (topFindingCategory for top finding), severity (topFindingStatus for top finding) and targetId.

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

Properties

Count

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

The total count for the aggregation metric.

Remarks

Required

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public FindingAnalyticsDimensions Dimensions { get; set; }
Property Value
Type Description
FindingAnalyticsDimensions

MetricName

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

The name of the aggregation metric.

Remarks

Required

In this article
Back to top