Show / Hide Table of Contents

Class DrPlanGroup

Details of a group in a DR plan.

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

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.
Example: DATABASE_SWITCHOVER

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { 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

IsPauseEnabled

Declaration
[JsonProperty(PropertyName = "isPauseEnabled")]
public bool? IsPauseEnabled { get; set; }
Property Value
Type Description
bool?

A flag indicating whether this group should be enabled for execution. This flag is only applicable to the USER_DEFINED_PAUSE group. The flag should be null for the remaining group types.
Example: true

RefreshStatus

Declaration
[JsonProperty(PropertyName = "refreshStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DrPlanGroupRefreshStatus? RefreshStatus { get; set; }
Property Value
Type Description
DrPlanGroupRefreshStatus?

The DR plan group refresh status.
Example: GROUP_MODIFIED

Steps

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

The list of steps in the group.

Remarks

Required

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