naspinski
naspinski

Reputation: 34689

How do I see/browse a list of versions/properties/etc of azure Resources?

Azure APIs are constantly changing and it is extremely hard to follow - while the documentation is perpetually behind. They recently published a very useful tool at https://resources.azure.com but that only shows the version they want to you see at the time?

Does anyone know a way I can simply browse the API, or a simple list of versions I can look at. It is beyond frustrating to try and dig through the documentation as you never know with version it even references. Any help would be greatly appreciated.

Upvotes: 1

Views: 306

Answers (1)

juvchan
juvchan

Reputation: 6245

The official and the most complete Azure Resource Manager (ARM) resources schemas, api versions and properties are available at the GitHub link below.

Azure Resource Manager Schemas - GitHub

Alternatively, you can also browse to Azure Quickstart templated to search for the resources you want to provision and refer to the latest templates available for what should be the api version and properties to be used.

Upvotes: 1

Related Questions