Show / Hide Table of Contents

Class AssociateDrProtectionGroupDetails

The details for associating a DR protection group with a peer DR protection group.

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

Properties

PeerId

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

The OCID of the peer DR protection group.
Example: ocid1.drprotectiongroup.oc1..uniqueID

PeerRegion

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

The region of the peer DR protection group.
Example: us-ashburn-1

Role

Declaration
[Required(ErrorMessage = "Role is required.")]
[JsonProperty(PropertyName = "role")]
[JsonConverter(typeof(StringEnumConverter))]
public DrProtectionGroupRole? Role { get; set; }
Property Value
Type Description
DrProtectionGroupRole?

The role of the DR protection group.
Example: STANDBY

Remarks

Required

In this article
Back to top