RolloutOperationInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RolloutOperationInfo() |
Initializes a new instance of the RolloutOperationInfo class. |
RolloutOperationInfo(Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, CloudErrorBody) |
Initializes a new instance of the RolloutOperationInfo class. |
RolloutOperationInfo()
Initializes a new instance of the RolloutOperationInfo class.
public RolloutOperationInfo ();
Public Sub New ()
Applies to
RolloutOperationInfo(Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, CloudErrorBody)
Initializes a new instance of the RolloutOperationInfo class.
public RolloutOperationInfo (int? retryAttempt = default, bool? skipSucceededOnRetry = default, DateTime? startTime = default, DateTime? endTime = default, Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody error = default);
new Microsoft.Azure.Management.DeploymentManager.Models.RolloutOperationInfo : Nullable<int> * Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.DeploymentManager.Models.CloudErrorBody -> Microsoft.Azure.Management.DeploymentManager.Models.RolloutOperationInfo
Public Sub New (Optional retryAttempt As Nullable(Of Integer) = Nothing, Optional skipSucceededOnRetry As Nullable(Of Boolean) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional error As CloudErrorBody = Nothing)
Parameters
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.
True, if all steps that succeeded on the previous run/attempt were chosen to be skipped in this retry attempt. False, otherwise.
The start time of the rollout in UTC. This property will not be set if the rollout has not completed yet.
- error
- CloudErrorBody
The detailed error information for any failure.
Applies to
Azure SDK for .NET