Show / Hide Table of Contents

Class DrPlanExecutionStepStatusCounts

A categorized summary of step execution statuses and their corresponding counts.

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

Properties

FailedSteps

Declaration
[Required(ErrorMessage = "FailedSteps is required.")]
[JsonProperty(PropertyName = "failedSteps")]
public DrPlanExecutionFailedStepStatusCounts FailedSteps { get; set; }
Property Value
Type Description
DrPlanExecutionFailedStepStatusCounts
Remarks

Required

RemainingSteps

Declaration
[Required(ErrorMessage = "RemainingSteps is required.")]
[JsonProperty(PropertyName = "remainingSteps")]
public DrPlanExecutionRemainingStepStatusCounts RemainingSteps { get; set; }
Property Value
Type Description
DrPlanExecutionRemainingStepStatusCounts
Remarks

Required

SkippedSteps

Declaration
[Required(ErrorMessage = "SkippedSteps is required.")]
[JsonProperty(PropertyName = "skippedSteps")]
public DrPlanExecutionSkippedStepStatusCounts SkippedSteps { get; set; }
Property Value
Type Description
DrPlanExecutionSkippedStepStatusCounts
Remarks

Required

SuccessfulSteps

Declaration
[Required(ErrorMessage = "SuccessfulSteps is required.")]
[JsonProperty(PropertyName = "successfulSteps")]
public DrPlanExecutionSuccessfulStepStatusCounts SuccessfulSteps { get; set; }
Property Value
Type Description
DrPlanExecutionSuccessfulStepStatusCounts
Remarks

Required

TotalSteps

Declaration
[Required(ErrorMessage = "TotalSteps is required.")]
[JsonProperty(PropertyName = "totalSteps")]
public int? TotalSteps { get; set; }
Property Value
Type Description
int?

The total number of steps in a DR plan execution.

Remarks

Required

WarningSteps

Declaration
[Required(ErrorMessage = "WarningSteps is required.")]
[JsonProperty(PropertyName = "warningSteps")]
public DrPlanExecutionWarningStepStatusCounts WarningSteps { get; set; }
Property Value
Type Description
DrPlanExecutionWarningStepStatusCounts
Remarks

Required

In this article
Back to top