/// <summary> /// Deletes an application package record and the binary file. /// </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 package to delete. /// </param> /// <returns> /// A standard service response including an HTTP status code and /// request ID. /// </returns> public static Task <AzureOperationResponse> DeleteApplicationPackageAsync(this IApplicationOperations operations, string resourceGroupName, string accountName, string applicationId, string version) { return(operations.DeleteApplicationPackageAsync(resourceGroupName, accountName, applicationId, version, CancellationToken.None)); }