Show / Hide Table of Contents

Class RetryDrPlanExecutionDetails

The details for retrying a failed group or step.

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

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 retry as a whole, or the group containing the step being retried.
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 retry (optional). Only needed when retrying a step.
Example: sgid1.step..uniqueID

In this article
Back to top