Condividi tramite


StepOperationInfo Constructors

Definition

Overloads

StepOperationInfo()

Initializes a new instance of the StepOperationInfo class.

StepOperationInfo(String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, CloudErrorBody)

Initializes a new instance of the StepOperationInfo class.

StepOperationInfo()

Initializes a new instance of the StepOperationInfo class.

public StepOperationInfo ();
Public Sub New ()

Applies to

StepOperationInfo(String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, CloudErrorBody)

Initializes a new instance of the StepOperationInfo class.

public StepOperationInfo (string deploymentName = default, string correlationId = default, DateTime? startTime = default, DateTime? endTime = default, DateTime? lastUpdatedTime = default, Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody error = default);
new Microsoft.Azure.Management.DeploymentManager.Models.StepOperationInfo : string * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody -> Microsoft.Azure.Management.DeploymentManager.Models.StepOperationInfo
Public Sub New (Optional deploymentName As String = Nothing, Optional correlationId As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional lastUpdatedTime As Nullable(Of DateTime) = Nothing, Optional error As CloudErrorBody = Nothing)

Parameters

deploymentName
String

The name of the ARM deployment initiated as part of the step.

correlationId
String

Unique identifier to track the request for ARM-based resources.

startTime
Nullable<DateTime>

Start time of the action in UTC.

endTime
Nullable<DateTime>

End time of the action in UTC.

lastUpdatedTime
Nullable<DateTime>

Last time in UTC this operation was updated.

error
CloudErrorBody

The errors, if any, for the action.

Applies to