Show / Hide Table of Contents

Class FindingAnalyticsDimensions

The scope of analytics data.

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

Properties

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Each finding in security assessment has an associated key (think of key as a finding's name). For a given finding, the key will be the same across targets. The user can use these keys to filter the findings.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FindingAnalyticsDimensions.SeverityEnum? Severity { get; set; }
Property Value
Type Description
FindingAnalyticsDimensions.SeverityEnum?

The severity (risk level) of the finding.

TargetId

Declaration
[JsonProperty(PropertyName = "targetId")]
public string TargetId { get; set; }
Property Value
Type Description
string

The OCID of the target database.

Title

Declaration
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

The short title of the finding.

TopFindingCategory

Declaration
[JsonProperty(PropertyName = "topFindingCategory")]
public string TopFindingCategory { get; set; }
Property Value
Type Description
string

The category of the top finding.

TopFindingStatus

Declaration
[JsonProperty(PropertyName = "topFindingStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FindingAnalyticsDimensions.TopFindingStatusEnum? TopFindingStatus { get; set; }
Property Value
Type Description
FindingAnalyticsDimensions.TopFindingStatusEnum?

The status of the top finding. All findings will have "severity" to indicate the risk level, but only top findings will have "status". Possible status: Pass / Risk (Low, Medium, High)/ Evaluate / Advisory / Deferred Instead of having "Low, Medium, High" in severity, "Risk" will include these three situations in status.

In this article
Back to top