Show / Hide Table of Contents

Class DrPlanExecutionRemainingStepStatusCounts

A summary of remaining steps in a DR plan execution, including queued, paused, and in-progress steps.

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

Properties

InProgress

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

The total number of steps in progress during a DR plan execution.

Remarks

Required

Paused

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

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

Remarks

Required

Queued

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

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

Remarks

Required

TotalRemaining

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

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

Remarks

Required

In this article
Back to top