Show / Hide Table of Contents

Class CreateSourceVolumeToDestinationEncryptionKeyMappingDetails

Create source volume ID to destination customer managed vault and encryption key ID mapping for a volume group.

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

Properties

DestinationEncryptionKey

Declaration
[Required(ErrorMessage = "DestinationEncryptionKey is required.")]
[JsonProperty(PropertyName = "destinationEncryptionKey")]
public CreateVaultAndEncryptionKeyDetails DestinationEncryptionKey { get; set; }
Property Value
Type Description
CreateVaultAndEncryptionKeyDetails
Remarks

Required

SourceVolumeId

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

The OCID of the source boot volume or block volume.
Example: ocid1.volume.oc1..uniqueID

Remarks

Required

In this article
Back to top