Show / Hide Table of Contents

Class ReplicationTarget

Details for the target that the source secret will be replicated to.

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

Properties

TargetKeyId

Declaration
[Required(ErrorMessage = "TargetKeyId is required.")]
[JsonProperty(PropertyName = "targetKeyId")]
public string TargetKeyId { get; set; }
Property Value
Type Description
string

The OCID of the target region KMS key.

Remarks

Required

TargetRegion

Declaration
[Required(ErrorMessage = "TargetRegion is required.")]
[JsonProperty(PropertyName = "targetRegion")]
public string TargetRegion { get; set; }
Property Value
Type Description
string

The name of the target's region.

Remarks

Required

TargetVaultId

Declaration
[Required(ErrorMessage = "TargetVaultId is required.")]
[JsonProperty(PropertyName = "targetVaultId")]
public string TargetVaultId { get; set; }
Property Value
Type Description
string

The OCID of the target region's Vault.

Remarks

Required

In this article
Back to top