Cassiano
Cassiano

Reputation: 195

Azure Batch - Upgrade to the latest API version

I have some jobs running under an Azure Batch and I received a warning saying I must upgrade the API verion. Where should I do that?

The current version I'm using will be removed on 10/31/2020

Bath API version Warning

Edit: I accessed my batch and then the Job Schedules: Job Schedules

These are the properties of one of those jobs: enter image description here

Should I configure the api-version here?

Upvotes: 0

Views: 489

Answers (1)

fpark
fpark

Reputation: 2369

Most likely, you are utilizing Batch through an SDK, Azure CLI, Powershell, or Batch Explorer. Each of these ultimately call the Batch service through a REST API which is versioned. You need to ensure that you are not using a deprecated version of such SDKs or tooling.

Please see this article for more information for associated SDK versions for deprecated REST API versions.

Upvotes: 1

Related Questions