Show / Hide Table of Contents

Class UpdateAutomaticDrConfigurationDetails

The details for updating an Automatic DR configuration.

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

Properties

DefaultFailoverDrPlanId

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

The unique id of a Failover DR Plan.
Example: ocid1.drplan.oc1..uniqueID

DefaultSwitchoverDrPlanId

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

The unique id of a Switchover DR Plan.
Example: ocid1.drplan.oc1..uniqueID

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
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The display name of the Automatic DR configuration being updated.
Example: Automatic DR Configuration

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"}

Members

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

A list of members for Automatic DR configuration.

In this article
Back to top