Show / Hide Table of Contents

Class UpdateDrPlanGroupDetails

The details for updating a group in a DR plan.

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

Properties

DisplayName

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

The display name of the group.
Example: My_GROUP_3 - EBS Start

Id

Declaration
[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

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

Steps

Declaration
[JsonProperty(PropertyName = "steps")]
public List<UpdateDrPlanStepDetails> Steps { get; set; }
Property Value
Type Description
List<UpdateDrPlanStepDetails>

The list of steps in this group.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public DrPlanGroupType? Type { get; set; }
Property Value
Type Description
DrPlanGroupType?

The group type.
Example: BUILT_IN

In this article
Back to top