/// <summary>
 /// Gets information about the specified application package.
 /// </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>
 /// <param name='version'>
 /// Required. The version of the application.
 /// </param>
 /// <returns>
 /// Response to an ApplicationOperations.GetApplicationPackage request.
 /// </returns>
 public static Task <GetApplicationPackageResponse> GetApplicationPackageAsync(this IApplicationOperations operations, string resourceGroupName, string accountName, string applicationId, string version)
 {
     return(operations.GetApplicationPackageAsync(resourceGroupName, accountName, applicationId, version, CancellationToken.None));
 }