Show / Hide Table of Contents

Class DrPlanExecutionSkippedStepStatusCounts

A summary of steps that were skipped during a DR plan execution, including disabled, failed but ignored, timed out but ignored, and canceled steps.

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

Properties

Canceled

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

The total number of canceled steps in a DR plan execution.

Remarks

Required

Disabled

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

The total number of disabled steps in a DR plan execution.

Remarks

Required

FailedIgnored

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

The total number of steps that failed but were ignored during a DR plan execution.

Remarks

Required

TimedOutIgnored

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

The total number of steps that timed out but were ignored during a DR plan execution.

Remarks

Required

TotalSkipped

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

The total number of steps that were skipped during a DR plan execution.

Remarks

Required

In this article
Back to top