Show / Hide Table of Contents

Class DrPlanExecutionSuccessfulStepStatusCounts

A summary of steps that completed successfully during a DR plan execution.

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

Properties

Succeeded

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

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

Remarks

Required

TotalSuccessful

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

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

Remarks

Required

In this article
Back to top