Show / Hide Table of Contents

Class DrPlanExecutionFailedStepStatusCounts

A summary of steps that failed during a DR plan execution, including failed and timed out steps.

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

In this article
Back to top