WebSiteSlotResource.RestartSlot Method

Definition

Description for Restarts an app (or deployment slot, if specified).

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/restart
  • Operation Id: WebApps_RestartSlot
  • Default Api Version: 2021-02-01
  • Resource: WebSiteSlotResource
public virtual Azure.Response RestartSlot (bool? softRestart = default, bool? synchronous = default, System.Threading.CancellationToken cancellationToken = default);
abstract member RestartSlot : Nullable<bool> * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response
override this.RestartSlot : Nullable<bool> * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function RestartSlot (Optional softRestart As Nullable(Of Boolean) = Nothing, Optional synchronous As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

softRestart
Nullable<Boolean>

Specify true to apply the configuration settings and restarts the app only if necessary. By default, the API always restarts and reprovisions the app.

synchronous
Nullable<Boolean>

Specify true to block until the app is restarted. By default, it is set to false, and the API responds immediately (asynchronous).

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to