Megosztás a következőn keresztül:


RolloutsOperationsExtensions.Restart Method

Definition

Restarts a failed rollout and optionally skips all succeeded steps.

public static Microsoft.Azure.Management.DeploymentManager.Models.Rollout Restart (this Microsoft.Azure.Management.DeploymentManager.IRolloutsOperations operations, string resourceGroupName, string rolloutName, bool? skipSucceeded = default);
static member Restart : Microsoft.Azure.Management.DeploymentManager.IRolloutsOperations * string * string * Nullable<bool> -> Microsoft.Azure.Management.DeploymentManager.Models.Rollout
<Extension()>
Public Function Restart (operations As IRolloutsOperations, resourceGroupName As String, rolloutName As String, Optional skipSucceeded As Nullable(Of Boolean) = Nothing) As Rollout

Parameters

operations
IRolloutsOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group. The name is case insensitive.

rolloutName
String

The rollout name.

skipSucceeded
Nullable<Boolean>

If true, will skip all succeeded steps so far in the rollout. If false, will execute the entire rollout again regardless of the current state of individual resources. Defaults to false if not specified.

Returns

Remarks

Only failed rollouts can be restarted.

Applies to