Class DrPlanExecutionFailedStepStatusCounts
A summary of steps that failed during a DR plan execution, including failed and timed out steps.
Inherited Members
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class DrPlanExecutionFailedStepStatusCounts
Properties
Failed
Declaration
[Required(ErrorMessage = "Failed is required.")]
[JsonProperty(PropertyName = "failed")]
public int? Failed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The total number of failed steps in a DR plan execution. |
Remarks
Required
TimedOut
Declaration
[Required(ErrorMessage = "TimedOut is required.")]
[JsonProperty(PropertyName = "timedOut")]
public int? TimedOut { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The total number of steps that timed out during a DR plan execution. |
Remarks
Required
TotalFailed
Declaration
[Required(ErrorMessage = "TotalFailed is required.")]
[JsonProperty(PropertyName = "totalFailed")]
public int? TotalFailed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The total number of steps that failed during a DR plan execution. |
Remarks
Required