/// <summary> /// Restarts a server. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group that contains the resource. You can obtain /// this value from the Azure Resource Manager API or the portal. /// </param> /// <param name='serverName'> /// The name of the server. /// </param> public static void BeginRestart(this IServersOperations operations, string resourceGroupName, string serverName) { operations.BeginRestartAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); }
/// <summary> /// Restarts a server. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. /// </param> /// <param name='serverName'> /// The name of the server. /// </param> /// <param name='parameters'> /// The parameters for restarting a server. /// </param> public static void BeginRestart(this IServersOperations operations, string resourceGroupName, string serverName, RestartParameter parameters = default(RestartParameter)) { operations.BeginRestartAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); }