Show / Hide Table of Contents

Class ReplicationConfig

Defines the configuration that enables cross-region secret replication.

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.VaultService.Models
Assembly: OCI.DotNetSDK.Vault.dll
Syntax
public class ReplicationConfig

Properties

IsWriteForwardEnabled

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

(Optional) A Boolean value to enable forwarding of write requests from replicated secrets to the source secrets. The default value of false disables this option.

ReplicationTargets

Declaration
[Required(ErrorMessage = "ReplicationTargets is required.")]
[JsonProperty(PropertyName = "replicationTargets")]
public List<ReplicationTarget> ReplicationTargets { get; set; }
Property Value
Type Description
List<ReplicationTarget>

List of the secret replication targets. By default, a maximum of 3 targets is allowed. To configure more than 3 targets, an override is required.

Remarks

Required

In this article
Back to top