Class UpdateDrPlanStepDetails
The details for updating a DR plan step.
Inherited Members
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.
|
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 |
Id
Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The unique id of the step.
|
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 |
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 |
UserDefinedStep
Declaration
[JsonProperty(PropertyName = "userDefinedStep")]
public UpdateDrPlanUserDefinedStepDetails UserDefinedStep { get; set; }
Property Value
Type | Description |
---|---|
UpdateDrPlanUserDefinedStepDetails |