ArmDeploymentManagerModelFactory.RolloutOperationInfo Method

Definition

Initializes a new instance of RolloutOperationInfo.

public static Azure.ResourceManager.DeploymentManager.Models.RolloutOperationInfo RolloutOperationInfo (int? retryAttempt = default, bool? skipSucceededOnRetry = default, DateTimeOffset? startOn = default, DateTimeOffset? endOn = default, Azure.ResponseError error = default);
static member RolloutOperationInfo : Nullable<int> * Nullable<bool> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * Azure.ResponseError -> Azure.ResourceManager.DeploymentManager.Models.RolloutOperationInfo
Public Shared Function RolloutOperationInfo (Optional retryAttempt As Nullable(Of Integer) = Nothing, Optional skipSucceededOnRetry As Nullable(Of Boolean) = Nothing, Optional startOn As Nullable(Of DateTimeOffset) = Nothing, Optional endOn As Nullable(Of DateTimeOffset) = Nothing, Optional error As ResponseError = Nothing) As RolloutOperationInfo

Parameters

retryAttempt
Nullable<Int32>

The ordinal count of the number of retry attempts on a rollout. 0 if no retries of the rollout have been performed. If the rollout is updated with a PUT, this count is reset to 0.

skipSucceededOnRetry
Nullable<Boolean>

True, if all steps that succeeded on the previous run/attempt were chosen to be skipped in this retry attempt. False, otherwise.

startOn
Nullable<DateTimeOffset>

The start time of the rollout in UTC.

endOn
Nullable<DateTimeOffset>

The start time of the rollout in UTC. This property will not be set if the rollout has not completed yet.

error
ResponseError

The detailed error information for any failure.

Returns

A new RolloutOperationInfo instance for mocking.

Applies to