Show / Hide Table of Contents

Class DownloadMaskingReportDetails

Details to download a masking report.

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

Properties

ReportFormat

Declaration
[Required(ErrorMessage = "ReportFormat is required.")]
[JsonProperty(PropertyName = "reportFormat")]
[JsonConverter(typeof(StringEnumConverter))]
public DownloadMaskingReportDetails.ReportFormatEnum? ReportFormat { get; set; }
Property Value
Type Description
DownloadMaskingReportDetails.ReportFormatEnum?

Format of the report.

Remarks

Required

ReportId

Declaration
[Required(ErrorMessage = "ReportId is required.")]
[JsonProperty(PropertyName = "reportId")]
public string ReportId { get; set; }
Property Value
Type Description
string

The OCID of the masking report to be downloaded.

Remarks

Required

In this article
Back to top