Show / Hide Table of Contents

Class CopyVolumeBackupDetails

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

Properties

DestinationRegion

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

The name of the destination region.
Example: us-ashburn-1

Remarks

Required

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

KmsKeyId

Declaration
[JsonProperty(PropertyName = "kmsKeyId")]
public string KmsKeyId { get; set; }
Property Value
Type Description
string

The OCID of the Vault service key in the destination region which will be the master encryption key for the copied volume backup. If you do not specify this attribute the volume backup will be encrypted with the Oracle-provided encryption key when it is copied to the destination region.

For more information about the Vault service and encryption keys, see Overview of Vault service and Using Keys.

In this article
Back to top