Show / Hide Table of Contents

Class CreateVaultAndEncryptionKeyDetails

Create properties for a customer-managed vault and encryption key in the destination region. The customer-managed encryption key in this will be used to encrypt the resource or containing resources after they move to the destination region.

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

Properties

EncryptionKeyId

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

The OCID of the customer-managed encryption key in the destination region vault.
Example: ocid1.key.oc1..uniqueID

Remarks

Required

VaultId

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

The OCID of the destination region vault for the customer-managed encryption key.
Example: ocid1.vault.oc1..uniqueID

Remarks

Required

In this article
Back to top