Show / Hide Table of Contents

Class ChangeRetentionDetails

Details for the audit retention months to be modified.

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

Properties

IsOverrideGlobalRetentionSetting

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

Indicates whether audit retention settings like online and offline months set at the target level override both the global settings and the target group level audit retention settings.

OfflineMonths

Declaration
[JsonProperty(PropertyName = "offlineMonths")]
public int? OfflineMonths { get; set; }
Property Value
Type Description
int?

Number of months the audit records will be stored offline in the offline archive. Minimum: 0; Maximum: 72 months. If you have a requirement to store the audit data even longer in the offline archive, please contact the Oracle Support.

OnlineMonths

Declaration
[JsonProperty(PropertyName = "onlineMonths")]
public int? OnlineMonths { get; set; }
Property Value
Type Description
int?

Number of months the audit records will be stored online in the audit repository for immediate reporting and analysis. Minimum: 1; Maximum: 12 months

In this article
Back to top