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

RolloutStep 构造函数

定义

重载

RolloutStep()

初始化 RolloutStep 类的新实例。

RolloutStep(String, String, String, StepOperationInfo, IList<ResourceOperation>, IList<Message>)

初始化 RolloutStep 类的新实例。

RolloutStep()

初始化 RolloutStep 类的新实例。

public RolloutStep ();
Public Sub New ()

适用于

RolloutStep(String, String, String, StepOperationInfo, IList<ResourceOperation>, IList<Message>)

初始化 RolloutStep 类的新实例。

public RolloutStep (string name, string status = default, string stepGroup = default, Microsoft.Azure.Management.DeploymentManager.Models.StepOperationInfo operationInfo = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.ResourceOperation> resourceOperations = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.Message> messages = default);
new Microsoft.Azure.Management.DeploymentManager.Models.RolloutStep : string * string * string * Microsoft.Azure.Management.DeploymentManager.Models.StepOperationInfo * System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.ResourceOperation> * System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.Message> -> Microsoft.Azure.Management.DeploymentManager.Models.RolloutStep
Public Sub New (name As String, Optional status As String = Nothing, Optional stepGroup As String = Nothing, Optional operationInfo As StepOperationInfo = Nothing, Optional resourceOperations As IList(Of ResourceOperation) = Nothing, Optional messages As IList(Of Message) = Nothing)

参数

name
String

步骤的名称。

status
String

步骤的当前状态。

stepGroup
String

当前步骤所属的步骤组。

operationInfo
StepOperationInfo

特定操作执行的详细信息。

resourceOperations
IList<ResourceOperation>

对 Azure 资源执行的资源操作集(如果有)。

messages
IList<Message>

推出期间的补充信息性消息。

适用于