Class DrPlanGroup
Details of a group in a DR plan.
Inherited Members
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.
|
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.
|
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 |
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.
|
Remarks
Required