Show / Hide Table of Contents

Class VolumeGroupReplicaInfo

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

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

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

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.

VolumeGroupReplicaId

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

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

Remarks

Required

In this article
Back to top