JerryZ
JerryZ

Reputation: 5

Azure API: How to get Azure Public images

I will use public image to create VM, but i cant get public images list form Azure API, So how to get Azure public images , which url we can use?

Upvotes: 0

Views: 320

Answers (1)

Nancy Xiong
Nancy Xiong

Reputation: 28224

You can use this URL to get a list of all virtual machine image versions for the specified location, publisher, offer, and SKU.

GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions?api-version=2017-12-01

References: Virtual Machine Images - List

Upvotes: 1

Related Questions