Show / Hide Table of Contents

Class SecurityAssessmentStatistics

Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment.
The categories include Auditing, Authorization Control, Data Encryption, Database Configuration, Fine-Grained Access Control, Privileges and Roles, and User Accounts. The risk levels include High Risk, Medium Risk, Low Risk, Advisory, Evaluate, and Pass.

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

Properties

Advisory

Declaration
[JsonProperty(PropertyName = "advisory")]
public SectionStatistics Advisory { get; set; }
Property Value
Type Description
SectionStatistics

Deferred

Declaration
[JsonProperty(PropertyName = "deferred")]
public SectionStatistics Deferred { get; set; }
Property Value
Type Description
SectionStatistics

Evaluate

Declaration
[JsonProperty(PropertyName = "evaluate")]
public SectionStatistics Evaluate { get; set; }
Property Value
Type Description
SectionStatistics

HighRisk

Declaration
[JsonProperty(PropertyName = "highRisk")]
public SectionStatistics HighRisk { get; set; }
Property Value
Type Description
SectionStatistics

LowRisk

Declaration
[JsonProperty(PropertyName = "lowRisk")]
public SectionStatistics LowRisk { get; set; }
Property Value
Type Description
SectionStatistics

MediumRisk

Declaration
[JsonProperty(PropertyName = "mediumRisk")]
public SectionStatistics MediumRisk { get; set; }
Property Value
Type Description
SectionStatistics

Pass

Declaration
[JsonProperty(PropertyName = "pass")]
public SectionStatistics Pass { get; set; }
Property Value
Type Description
SectionStatistics

TargetsCount

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

The total number of targets in this security assessment.

In this article
Back to top