/** * 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. */ /** * The details used to generate a new security assessment report. */ export interface GenerateSecurityAssessmentReportDetails { /** * Format of the Security Assessment report. */ "format": GenerateSecurityAssessmentReportDetails.Format; /** * Optional flag controlling the output format of a target group report: * - true: Generate a single consolidated report file for the entire target group. * - false: Generate a ZIP archive containing one file per target in the group. *

Important: * - This flag is only applicable when the security assessment OCID refers to a target group assessment (targetType TARGET_DATABASE_GROUP). * - If {@code isSingleReport} is set to true for an individual target (targetType TARGET_DATABASE), the request will return an error. * - If {@code isSingleReport} is null or false for an individual target, the value is ignored and the selected output format for the assessment type is generated. * */ "isSingleReport"?: boolean; } export declare namespace GenerateSecurityAssessmentReportDetails { enum Format { Pdf = "PDF", Xls = "XLS", Stigxls = "STIGXLS" } function getJsonObj(obj: GenerateSecurityAssessmentReportDetails): object; function getDeserializedJsonObj(obj: GenerateSecurityAssessmentReportDetails): object; }