Show / Hide Table of Contents

Class UpdateReplicationConfigDetails

Details of the replication configuration that is applicable when database system gets the PRIMARY_DB_SYSTEM role.
This configuration does not have any effect on database systems with other roles.

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

Properties

IsRpoEnforced

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

Specify if Recovery point objective (RPO) enforcement needs to be enabled on the database system.

RpoInSeconds

Declaration
[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.

In this article
Back to top