Show / Hide Table of Contents

Class DrPlanStepExecution

The details of a step execution in a DR plan execution.

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

Properties

DisplayName

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

The display name of the step execution.
Example: DATABASE_SWITCHOVER

Remarks

Required

ExecutionDurationInSec

Declaration
[JsonProperty(PropertyName = "executionDurationInSec")]
public int? ExecutionDurationInSec { get; set; }
Property Value
Type Description
int?

The total duration in seconds taken to complete the step execution.
Example: 35

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 which this step belongs. Must not be modified by user.
Example: sgid1.group..uniqueID

Remarks

Required

LogLocation

Declaration
[Required(ErrorMessage = "LogLocation is required.")]
[JsonProperty(PropertyName = "logLocation")]
public ObjectStorageLogLocation LogLocation { get; set; }
Property Value
Type Description
ObjectStorageLogLocation
Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DrPlanStepExecutionStatus? Status { get; set; }
Property Value
Type Description
DrPlanStepExecutionStatus?

The status of the step execution.

Remarks

Required

StatusDetails

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

Additional details on the step execution status.
Example: This step failed to complete due to a timeout

StepId

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

The unique id of the step. Must not be modified by user.
Example: sgid1.step..uniqueID

Remarks

Required

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The time when execution ended. An RFC3339 formatted datetime string.
Example: 2019-03-29T09:36:42Z

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The time when step execution began. An RFC3339 formatted datetime string.
Example: 2019-03-29T09:36:42Z

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DrPlanStepType? Type { get; set; }
Property Value
Type Description
DrPlanStepType?

The step type.

Remarks

Required

TypeDisplayName

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

The display name of the DR Plan step type.
Example: Database Switchover

Remarks

Required

In this article
Back to top