Azure.Batch 2.0.1

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 2.0.1
NuGet\Install-Package Azure.Batch -Version 2.0.1
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="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Azure.Batch --version 2.0.1
#r "nuget: Azure.Batch, 2.0.1"
#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=2.0.1

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

This client library enables working with 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://msdn.microsoft.com/library/azure/dn820177.aspx.

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

7/29/2015 2.0.1

Release Notes: Minor breaking changes and bug fixes

Azure.Batch.dll is now correctly strong named signed

Changes impacting the Microsoft.Azure.Batch namespace
* Renamed some properties to more closely match the REST API (for example, CloudTask.TaskConstraints became CloudTask.Constraints), or to adhere with C# naming guidelines (for example UserCPUTime became UserCpuTime).
* Added new properties Timeout and CancellationToken to BatchRequest to give more fine grained control over the life-cycle of a request.
* Changed properties on top level objects (CloudTask, CloudPool, CloudJobSchedule, etc) which were value types to be nullable.  This is to cater for $select removing those properties, or the server choosing not to return them.
* Improved /// comments on various public signatures
* Renamed SetClientRequestId to ClientRequestIdProvider in keeping with the naming scheme for BatchClient behaviors.
* Fixed a bug where built in RetryPolicies (LinearRetry/ExponentialRetry) would retry on validation errors thrown by a lower level of the client itself (before a request was ever issued to the service).

Changes impacting the Microsoft.Azure.Batch.Protocol.Models namespace
* PoolLifetimeOption is inconsistent with nullable and required attribute (Xing can you expand on this or sync up with me so we can reword?)
* Removed nullable from some properties which had redundant nullability
* The certificateReference/metadata are required (non-null) in update pool properties operation
* Default server and client timeout should be much smaller
* Make all first layer value type properties of ComputeNode to be nullable
* Change some property names to more closely match C# naming guidelines