Show / Hide Table of Contents

Class IgnoreDrPlanExecutionDetails

The details for ignoring a failed group or step.

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

Properties

GroupId

Declaration
[Required(ErrorMessage = "GroupId is required.")]
[JsonProperty(PropertyName = "groupId")]
public string GroupId { get; set; }
Property Value
Type Description
string

The unique id of the group to ignore as a whole, or the group containing the step to ignore.
Example: sgid1.group..uniqueID

Remarks

Required

StepId

Declaration
[JsonProperty(PropertyName = "stepId")]
public string StepId { get; set; }
Property Value
Type Description
string

The unique id of the step to ignore (optional). Only needed when ignoring a step.
Example: sgid1.step..uniqueID

In this article
Back to top