Show / Hide Table of Contents

Class SectionStatistics

Statistics showing the number of findings with a particular risk level for each category.

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

Properties

AuditingFindingsCount

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

The number of findings in the Auditing category.

AuthorizationControlFindingsCount

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

The number of findings in the Authorization Control category.

DataEncryptionFindingsCount

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

The number of findings in the Data Encryption category.

DbConfigurationFindingsCount

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

The number of findings in the Database Configuration category.

FineGrainedAccessControlFindingsCount

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

The number of findings in the Fine-Grained Access Control category.

PrivilegesAndRolesFindingsCount

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

The number of findings in the Privileges and Roles category.

TargetsCount

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

The number of targets that contributed to the counts at this risk level.

UserAccountsFindingsCount

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

The number of findings in the User Accounts category.

In this article
Back to top