/// <summary>
 /// Gets the next page of Virtual Machines. NextLink is obtained by
 /// making a ListAll() callwhich fetches the first page of Virtual
 /// Machines and a link to fetch the next page.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.Compute.IVirtualMachineOperations.
 /// </param>
 /// <param name='nextLink'>
 /// Required. NextLink from the previous successful call to
 /// ListVirtualMachines operation.
 /// </param>
 /// <returns>
 /// The List Virtual Machine operation response.
 /// </returns>
 public static Task <VirtualMachineListResponse> ListNextAsync(this IVirtualMachineOperations operations, string nextLink)
 {
     return(operations.ListNextAsync(nextLink, CancellationToken.None));
 }