Show / Hide Table of Contents

Class CreateDrPlanExecutionDetails

The details for creating a DR plan execution.

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

Properties

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 DR plan execution.
Example: Execution - EBS Switchover PHX to IAD

ExecutionOptions

Declaration
[Required(ErrorMessage = "ExecutionOptions is required.")]
[JsonProperty(PropertyName = "executionOptions")]
public DrPlanExecutionOptionDetails ExecutionOptions { get; set; }
Property Value
Type Description
DrPlanExecutionOptionDetails
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"}

PlanId

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

The OCID of the DR plan.
Example: ocid1.drplan.oc1..uniqueID

Remarks

Required

In this article
Back to top