Share via


RecoveryPlanGroup Constructors

Definition

Overloads

RecoveryPlanGroup()

Initializes a new instance of the RecoveryPlanGroup class.

RecoveryPlanGroup(String, IList<RecoveryPlanProtectedItem>, IList<RecoveryPlanAction>, IList<RecoveryPlanAction>)

Initializes a new instance of the RecoveryPlanGroup class.

RecoveryPlanGroup()

Initializes a new instance of the RecoveryPlanGroup class.

public RecoveryPlanGroup ();
Public Sub New ()

Applies to

RecoveryPlanGroup(String, IList<RecoveryPlanProtectedItem>, IList<RecoveryPlanAction>, IList<RecoveryPlanAction>)

Initializes a new instance of the RecoveryPlanGroup class.

public RecoveryPlanGroup (string groupType, System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanProtectedItem> replicationProtectedItems = default, System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction> startGroupActions = default, System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction> endGroupActions = default);
new Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanGroup : string * System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanProtectedItem> * System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction> * System.Collections.Generic.IList<Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction> -> Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanGroup
Public Sub New (groupType As String, Optional replicationProtectedItems As IList(Of RecoveryPlanProtectedItem) = Nothing, Optional startGroupActions As IList(Of RecoveryPlanAction) = Nothing, Optional endGroupActions As IList(Of RecoveryPlanAction) = Nothing)

Parameters

groupType
String

The group type. Possible values include: 'Shutdown', 'Boot', 'Failover'

replicationProtectedItems
IList<RecoveryPlanProtectedItem>

The list of protected items.

startGroupActions
IList<RecoveryPlanAction>

The start group actions.

endGroupActions
IList<RecoveryPlanAction>

The end group actions.

Applies to