Show / Hide Table of Contents

    Class StepOperationInfo

    Detailed information of a specific step run.

    Inheritance
    Object
    StepOperationInfo
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.DeploymentManager.dll
    Syntax
    public class StepOperationInfo

    Constructors

    StepOperationInfo()

    Initializes a new instance of the StepOperationInfo class.

    Declaration
    public StepOperationInfo ();

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

    Initializes a new instance of the StepOperationInfo class.

    Declaration
    public StepOperationInfo (string deploymentName = null, string correlationId = null, Nullable<DateTime> startTime = null, Nullable<DateTime> endTime = null, Nullable<DateTime> lastUpdatedTime = null, Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody error = null);
    Parameters
    String deploymentName

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

    String correlationId

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

    Nullable<DateTime> startTime

    Start time of the action in UTC.

    Nullable<DateTime> endTime

    End time of the action in UTC.

    Nullable<DateTime> lastUpdatedTime

    Last time in UTC this operation was updated.

    CloudErrorBody error

    The errors, if any, for the action.

    Properties

    CorrelationId

    Gets unique identifier to track the request for ARM-based resources.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="correlationId")]
    public string CorrelationId { get; }
    Property Value
    String

    DeploymentName

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

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="deploymentName")]
    public string DeploymentName { get; }
    Property Value
    String

    EndTime

    Gets end time of the action in UTC.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="endTime")]
    public Nullable<DateTime> EndTime { get; }
    Property Value
    Nullable<DateTime>

    Error

    Gets or sets the errors, if any, for the action.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="error")]
    public Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody Error { get; set; }
    Property Value
    CloudErrorBody

    LastUpdatedTime

    Gets last time in UTC this operation was updated.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="lastUpdatedTime")]
    public Nullable<DateTime> LastUpdatedTime { get; }
    Property Value
    Nullable<DateTime>

    StartTime

    Gets start time of the action in UTC.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="startTime")]
    public Nullable<DateTime> StartTime { get; }
    Property Value
    Nullable<DateTime>

    Back to top Azure SDK for Net