StepGroup Constructors

Definition

Overloads

StepGroup()

Initializes a new instance of the StepGroup class.

StepGroup(String, String, IList<String>, IList<PrePostStep>, IList<PrePostStep>)

Initializes a new instance of the StepGroup class.

StepGroup()

Initializes a new instance of the StepGroup class.

public StepGroup ();
Public Sub New ()

Applies to

StepGroup(String, String, IList<String>, IList<PrePostStep>, IList<PrePostStep>)

Initializes a new instance of the StepGroup class.

public StepGroup (string name, string deploymentTargetId, System.Collections.Generic.IList<string> dependsOnStepGroups = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.PrePostStep> preDeploymentSteps = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.PrePostStep> postDeploymentSteps = default);
new Microsoft.Azure.Management.DeploymentManager.Models.StepGroup : string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.PrePostStep> * System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.PrePostStep> -> Microsoft.Azure.Management.DeploymentManager.Models.StepGroup
Public Sub New (name As String, deploymentTargetId As String, Optional dependsOnStepGroups As IList(Of String) = Nothing, Optional preDeploymentSteps As IList(Of PrePostStep) = Nothing, Optional postDeploymentSteps As IList(Of PrePostStep) = Nothing)

Parameters

name
String

The name of the step group.

deploymentTargetId
String

The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId

dependsOnStepGroups
IList<String>

The list of step group names on which this step group depends on.

preDeploymentSteps
IList<PrePostStep>

The list of steps to be run before deploying the target.

postDeploymentSteps
IList<PrePostStep>

The list of steps to be run after deploying the target.

Applies to