Show / Hide Table of Contents

Class UpdateDrPlanStepDetails

The details for updating a DR plan step.

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

Properties

DisplayName

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

The display name of the step in a group.
Example: My_STEP_3A - EBS Start - STAGE A

ErrorMode

Declaration
[JsonProperty(PropertyName = "errorMode")]
[JsonConverter(typeof(StringEnumConverter))]
public DrPlanStepErrorMode? ErrorMode { get; set; }
Property Value
Type Description
DrPlanStepErrorMode?

The error mode for this step. The default error mode for the step is STOP_ON_ERROR.

Id

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

The unique id of the step.
Example: sgid1.step..uniqueID

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

A flag indicating whether this step should be enabled for execution. The default value for the isEnabled flag is true.
Example: true

Timeout

Declaration
[JsonProperty(PropertyName = "timeout")]
public int? Timeout { get; set; }
Property Value
Type Description
int?

The timeout in seconds for executing this step. When creating a new step, if no timeout is specified, the default timeout is set to 3600 seconds.
Example: 600

UserDefinedStep

Declaration
[JsonProperty(PropertyName = "userDefinedStep")]
public UpdateDrPlanUserDefinedStepDetails UserDefinedStep { get; set; }
Property Value
Type Description
UpdateDrPlanUserDefinedStepDetails
In this article
Back to top