Condividi tramite


RolloutStep Constructors

Definition

Overloads

RolloutStep()

Initializes a new instance of the RolloutStep class.

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

Initializes a new instance of the RolloutStep class.

RolloutStep()

Initializes a new instance of the RolloutStep class.

public RolloutStep ();
Public Sub New ()

Applies to

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

Initializes a new instance of the RolloutStep class.

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)

Parameters

name
String

Name of the step.

status
String

Current state of the step.

stepGroup
String

The step group the current step is part of.

operationInfo
StepOperationInfo

Detailed information of specific action execution.

resourceOperations
IList<ResourceOperation>

Set of resource operations that were performed, if any, on an Azure resource.

messages
IList<Message>

Supplementary informative messages during rollout.

Applies to