Show / Hide Table of Contents

Class BootVolumeReplicaInfo

Information about the boot volume replica in the destination availability domain.

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

Properties

AvailabilityDomain

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

The availability domain of the boot volume replica.
Example: Uocm:PHX-AD-1

Remarks

Required

BootVolumeReplicaId

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

The boot volume replica's Oracle ID (OCID).

Remarks

Required

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[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.

Remarks

Required

KmsKeyId

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

The OCID of the Vault service key to assign as the master encryption key for the block volume replica, see Overview of Vault service and Using Keys.

In this article
Back to top