Show / Hide Table of Contents

Class BlockVolumeReplicaInfo

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

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

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 block volume replica.
Example: Uocm:PHX-AD-1

Remarks

Required

BlockVolumeReplicaId

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

The block 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