Show / Hide Table of Contents

Class DrPlanExecutionWarningStepStatusCounts

A summary of steps that encountered warnings during a DR plan execution.

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

Properties

TotalWarnings

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

The total number of steps that encountered warnings in a DR plan execution.

Remarks

Required

WarningsIgnored

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

The total number of steps with warnings that were ignored during a DR plan execution.

Remarks

Required

In this article
Back to top