Show / Hide Table of Contents

Class ModifySnapshotSettingsDetails

Details to modify the AWR snapshot settings for a database.

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

Properties

Interval

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

The interval time in minutes. Acceptable values are 0, 10 to 527040 (inclusive), and null.

Retention

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

The retention time in minutes. Acceptable values are 0, 1440 to 52596000 (inclusive), and null.

In this article
Back to top