Show / Hide Table of Contents

Class DownloadSecurityAssessmentReportDetails

The details used to download a security assessment report.

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

Properties

Format

Declaration
[Required(ErrorMessage = "Format is required.")]
[JsonProperty(PropertyName = "format")]
[JsonConverter(typeof(StringEnumConverter))]
public DownloadSecurityAssessmentReportDetails.FormatEnum? Format { get; set; }
Property Value
Type Description
DownloadSecurityAssessmentReportDetails.FormatEnum?

Format of the Security Assessment report.

Remarks

Required

IsSingleReport

Declaration
[JsonProperty(PropertyName = "isSingleReport")]
public bool? IsSingleReport { get; set; }
Property Value
Type Description
bool?

Optional flag controlling the output format of a target group report:

  • true: Return a single consolidated report file for the entire target group.
  • false/null (default): Return 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 isSingleReport is set to true for an individual target (targetType TARGET_DATABASE), the request will return an error.
  • If isSingleReport is null or false for an individual target, the value is ignored and the selected output format for the assessment type is returned.
In this article
Back to top