Reputation: 274
I need a rest api which will list out all the images available with azure market place with its Location,publisher and SKU.
Upvotes: 1
Views: 135
Reputation: 28224
Here are available Azure REST API for Virtual Machine Images. You can find an image in 3 steps referring to Navigate the images:
- List the image publishers.
- For a given publisher, list their offers.
- For a given offer, list their SKUs.
Then, for a selected SKU, get a list of all virtual machine image versions for the specified location, publisher, offer, and SKU to deploy.
List Offers
Gets a list of virtual machine image offers for the specified location and publisher.
List Publishers
Gets a list of virtual machine image publishers for the specified Azure location.
List Skus
Gets a list of virtual machine image SKUs for the specified location, publisher, and offer.
Upvotes: 2
Reputation: 222582
You need to use Azure Stack Admin API
Especially to get the list of images , you need Gallery Items - List
Upvotes: 0