Class ReplicationConfig
Defines the configuration that enables cross-region secret replication.
Inherited Members
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