Azure.Batch 3.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Azure.Batch --version 3.0.0
NuGet\Install-Package Azure.Batch -Version 3.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Azure.Batch" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Azure.Batch --version 3.0.0
#r "nuget: Azure.Batch, 3.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Azure.Batch as a Cake Addin
#addin nuget:?package=Azure.Batch&version=3.0.0

// Install Azure.Batch as a Cake Tool
#tool nuget:?package=Azure.Batch&version=3.0.0

This client library provides access to the Microsoft Azure Batch services.

Visit our home page for more detail - https://azure.microsoft.com/services/batch/.

For technical overview, see https://azure.microsoft.com/documentation/articles/batch-technical-overview/.

API reference can be found at https://go.microsoft.com/fwlink/?LinkId=717949.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Azure.Batch:

Package Downloads
Prb.HomeImageProcessing

Package Description

Triodor.Utils.AzureBatch

Package Description

RHE.ArStudio

AccuRender Studio Binaries for Development

KuboEstudio.AzureBatch

Wrapper to interact with the Azure Batch Account.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

Features:
- Added new TaskStateMonitor overloads which can now take a CancellationToken parameter and throw (instead of returning a bool).  The old signatures still exist.
- Added CancellationToken parameter to async methods.
- Added new interceptor for setting request timeouts.
- CloudJob has a new method AddTask which takes a collection of tasks and uses the bulk submission REST API.

Breaking and Default Behavior Changes:
- Renamed TaskSchedulingError to SchedulingError to match the REST API.
- ObjectModel no longer throws UnauthorizedAccessException, instead it throws InvalidOperation for cases where that operation isn’t allowed and PropertyAccessException for authorization failures.
- Changed default option for ListFiles calls to be recursive = null (instead of recursive = false).
- Rename incorrectly named BatchErrorCodeStrings from “JobReleaseTaskNotRunOnTVM” and “JobPreparationTaskNotRunOnTVM” to JobReleaseTaskNotRunOnNode and JobPreparationTaskNotRunOnNode.

Bug fixes:
- Fixed issue where CloudPool.Commit() could throw a NullReferenceException in some cases if given a bad CertificateReference.
- Fix issue where date-time values in the header were not identified as UTC
- JobPreparationTask.ResourceFiles type is now IList instead of IEnumerable.