你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

StepGroup 构造函数

定义

重载

StepGroup()

初始化 StepGroup 类的新实例。

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

初始化 StepGroup 类的新实例。

StepGroup()

初始化 StepGroup 类的新实例。

public StepGroup ();
Public Sub New ()

适用于

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

初始化 StepGroup 类的新实例。

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)

参数

name
String

步骤组的名称。

deploymentTargetId
String

要部署的服务单位的资源 ID。 服务单元应来自 targetServiceTopologyId 中引用的服务拓扑

dependsOnStepGroups
IList<String>

此步骤组所依赖的步骤组名称列表。

preDeploymentSteps
IList<PrePostStep>

部署目标之前要运行的步骤列表。

postDeploymentSteps
IList<PrePostStep>

部署目标后要运行的步骤列表。

适用于