Show / Hide Table of Contents

Class AuditLogReport

The auditLog report details.

Inheritance
object
AuditLogReport
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OperatoraccesscontrolService.Models
Assembly: OCI.DotNetSDK.Operatoraccesscontrol.dll
Syntax
public class AuditLogReport

Properties

AuditReportStatus

Declaration
[Required(ErrorMessage = "AuditReportStatus is required.")]
[JsonProperty(PropertyName = "auditReportStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AuditReportStatus? AuditReportStatus { get; set; }
Property Value
Type Description
AuditReportStatus?

auditReportStatus for the accessRequestId

Remarks

Required

ProcessTree

Declaration
[JsonProperty(PropertyName = "processTree")]
public string ProcessTree { get; set; }
Property Value
Type Description
string

Contains the process tree data

Report

Declaration
[JsonProperty(PropertyName = "report")]
public string Report { get; set; }
Property Value
Type Description
string

Contains the report data.

TimeOfReportGeneration

Declaration
[JsonProperty(PropertyName = "timeOfReportGeneration")]
public DateTime? TimeOfReportGeneration { get; set; }
Property Value
Type Description
DateTime?

Time when the audit report was generated RFC 3339 timestamp format.Example: '2020-05-22T21:10:29.600Z'

In this article
Back to top