/** * Data Safe API * APIs for using Oracle Data Safe. * OpenAPI spec version: 20181201 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * 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. * */ export interface SecurityAssessmentStatistics { /** * The total number of targets in this security assessment. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "targetsCount"?: number; "highRisk"?: model.SectionStatistics; "mediumRisk"?: model.SectionStatistics; "lowRisk"?: model.SectionStatistics; "advisory"?: model.SectionStatistics; "evaluate"?: model.SectionStatistics; "pass"?: model.SectionStatistics; "deferred"?: model.SectionStatistics; } export declare namespace SecurityAssessmentStatistics { function getJsonObj(obj: SecurityAssessmentStatistics): object; function getDeserializedJsonObj(obj: SecurityAssessmentStatistics): object; }