/// <summary>
 /// Set the specified route for the provided table in this subscription.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Network.IRouteOperations.
 /// </param>
 /// <param name='routeTableName'>
 /// Required. The name of the route table where the provided route will
 /// be set.
 /// </param>
 /// <param name='routeName'>
 /// Required. The name of the route that will be set on the provided
 /// route table.
 /// </param>
 /// <param name='parameters'>
 /// Required. The parameters necessary to create a new route table.
 /// </param>
 /// <returns>
 /// A standard service response including an HTTP status code and
 /// request ID.
 /// </returns>
 public static Task <AzureOperationResponse> BeginSetRouteAsync(this IRouteOperations operations, string routeTableName, string routeName, SetRouteParameters parameters)
 {
     return(operations.BeginSetRouteAsync(routeTableName, routeName, parameters, CancellationToken.None));
 }