Show / Hide Table of Contents

Class ReplicationConfig

Replication configuration that is applicable on database systems with the PRIMARY_DB_SYSTEM role.
This configuration does not have any effect on database systems with other roles.

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

Properties

IsRpoEnforced

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

Specifies if Recovery point objective (RPO) enforcement is enabled on the database system.

Remarks

Required

RpoInSeconds

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

Specifies the Recovery point objective (RPO) in seconds that will be enforced, if the isRpoEnforced flag is true.

Remarks

Required

In this article
Back to top