Show / Hide Table of Contents

Class CryptoAssessmentFindingAnalyticsSummary

Aggregated finding details with number of affected targets.

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

Properties

Category

Declaration
[Required(ErrorMessage = "Category is required.")]
[JsonProperty(PropertyName = "category")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CryptoAssessmentFindingAnalyticsSummary.CategoryEnum? Category { get; set; }
Property Value
Type Description
CryptoAssessmentFindingAnalyticsSummary.CategoryEnum?

Category key to which the finding belongs.

Remarks

Required

FindingKey

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

Unique key of the finding.

Remarks

Required

Priority

Declaration
[JsonProperty(PropertyName = "priority")]
public int? Priority { get; set; }
Property Value
Type Description
int?

Numeric priority of the finding. 1 is CRITICAL, 2 is HIGH, 3 is MEDIUM, and 4 is LOW.

Severity

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

Text severity derived from priority using the static mapping 1=CRITICAL, 2=HIGH, 3=MEDIUM, 4=LOW.

ShortRemediation

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

Short remediation for the finding.

ShortSummary

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

Short summary of the finding.

TargetCount

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

Number of targets impacted by this finding in the queried scope.

Remarks

Required

Title

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

Display title of the finding.

Remarks

Required

In this article
Back to top