Show / Hide Table of Contents

Class StartAuditTrailDetails

The details used to start an audit trail.

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

Properties

AuditCollectionStartTime

Declaration
[Required(ErrorMessage = "AuditCollectionStartTime is required.")]
[JsonProperty(PropertyName = "auditCollectionStartTime")]
public DateTime? AuditCollectionStartTime { get; set; }
Property Value
Type Description
DateTime?

The date from which the audit trail must start collecting data, in the format defined by RFC3339.

Remarks

Required

IsAutoPurgeEnabled

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

Indicates if auto purge is enabled on the target database, which helps delete audit data in the target database every seven days so that the database's audit trail does not become too large.

In this article
Back to top