Show / Hide Table of Contents

Class DelegatedResourceAccessRequestAuditLogReport

The audit log report details.

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

Properties

AuditReportStatus

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

Status of the audit report

Remarks

Required

ProcessTree

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

The process tree data

Report

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

Audit log report.

TimeReportGenerated

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

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

In this article
Back to top