Dandy
Dandy

Reputation: 1481

Locate complete and accurate Azure REST API 'apiVersion' strings?

I'm trying to check the existence of resources throughout my subscription, but it seems like 50% of the resources expect a different apiVersion to the others.

I find it weird that Azure isn't consistent across the board with their apiVersions, but does anyone have or know of a list of the resource providers "api versions" that are current accurate and up to date?

Upvotes: 1

Views: 126

Answers (1)

Ed Elliott
Ed Elliott

Reputation: 6856

The only truely reliable place I have found is the arm schemas in github:

https://github.com/Azure/azure-resource-manager-schemas

I clone the repo then do a findstr or similar to find whatever the latest folder is.

Ed

Upvotes: 1

Related Questions