Show / Hide Table of Contents

Class BackupPolicy

Backup policy as optionally used for Opensearch cluster.

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

Properties

FrequencyInHours

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

Specifies how often backup should be performed

IsEnabled

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

Specifies if automatic backups are enabled.

RetentionInDays

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

Specifies how long backup copy should remain on Storage in days

In this article
Back to top