Show / Hide Table of Contents

Class CreateDrProtectionGroupDetails

The details for creating a DR protection group.

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

Properties

Association

Declaration
[JsonProperty(PropertyName = "association")]
public AssociateDrProtectionGroupDetails Association { get; set; }
Property Value
Type Description
AssociateDrProtectionGroupDetails

CompartmentId

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

The OCID of the compartment in which to create the DR protection group.
Example: ocid1.compartment.oc1..uniqueID

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

The display name of the DR protection group.
Example: EBS PHX Group

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
Example: {"Department": "Finance"}

LogLocation

Declaration
[Required(ErrorMessage = "LogLocation is required.")]
[JsonProperty(PropertyName = "logLocation")]
public CreateObjectStorageLogLocationDetails LogLocation { get; set; }
Property Value
Type Description
CreateObjectStorageLogLocationDetails
Remarks

Required

Members

Declaration
[JsonProperty(PropertyName = "members")]
public List<CreateDrProtectionGroupMemberDetails> Members { get; set; }
Property Value
Type Description
List<CreateDrProtectionGroupMemberDetails>

A list of DR protection group members.

In this article
Back to top