/// <summary>
 /// Gets information about the specified application.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.Batch.IApplicationOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The name of the resource group that contains the Batch
 /// account.
 /// </param>
 /// <param name='accountName'>
 /// Required. The name of the Batch account.
 /// </param>
 /// <param name='applicationId'>
 /// Required. The id of the application.
 /// </param>
 /// <returns>
 /// Response to an ApplicationOperations.GetApplication request.
 /// </returns>
 public static Task <GetApplicationResponse> GetApplicationAsync(this IApplicationOperations operations, string resourceGroupName, string accountName, string applicationId)
 {
     return(operations.GetApplicationAsync(resourceGroupName, accountName, applicationId, CancellationToken.None));
 }