Roushan
Roushan

Reputation: 274

Is there any rest API or SDK from microsoft Azure which will give me list of all images on azure galary?

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

Answers (2)

Nancy Xiong
Nancy Xiong

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:

  1. List the image publishers.
  2. For a given publisher, list their offers.
  3. 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

Related Questions