Show / Hide Table of Contents

Class DrPlanGroupExecution

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

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

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 group 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 group execution.
Example: 120

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

Remarks

Required

Status

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

The status of the group execution.

Remarks

Required

StatusDetails

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

Additional details on the group execution status.
Example: A total of [3] steps failed in the group

StepExecutions

Declaration
[Required(ErrorMessage = "StepExecutions is required.")]
[JsonProperty(PropertyName = "stepExecutions")]
public List<DrPlanStepExecution> StepExecutions { get; set; }
Property Value
Type Description
List<DrPlanStepExecution>

A list of step executions in the group.

Remarks

Required

TimeEnded

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

The time when group 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 group 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 DrPlanGroupType? Type { get; set; }
Property Value
Type Description
DrPlanGroupType?

The group type.
Example: BUILT_IN

Remarks

Required

In this article
Back to top