0

I am designing an application to connect to Azure Batch and run some compute intense jobs on demand for our users. When you create the pool you can specify the OS family and Version of VMs but what I am wondering is can you change this after the pool has been created?

So if I want to reconfigure and change to a different OS family/version, can I do so without destroying my existing pool or is the only way to close the pool and open a new one?

Nuri Tasdemir
  • 9,720
  • 3
  • 42
  • 67
NZJames
  • 4,963
  • 15
  • 50
  • 100

1 Answers1

1

No, for these types of issues I typically go to the REST API to review functionality. The REST API typically provides the most complete functionality of the any of the available APIs.

For Azure Batch you have the following operations available:

Only the "Upgrade the operating system..." link provides the ability to change the OS, and it is limited to newer versions of the same OS family.

tripdubroot
  • 1,143
  • 5
  • 13