Skip to main content

images

Creates, updates, deletes, gets or lists a images resource.

Overview

Nameimages
TypeResource
Idazure.dev_center.images

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
devCenterNametextfield from the properties object
galleryNametextfield from the properties object
hibernate_supporttextfield from the properties object
imageNametextfield from the properties object
offertextfield from the properties object
projectNametextfield from the properties object
provisioning_statetextfield from the properties object
publishertextfield from the properties object
recommended_machine_configurationtextfield from the properties object
resourceGroupNametextfield from the properties object
skutextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTdevCenterName, galleryName, imageName, resourceGroupName, subscriptionIdGets a gallery image.
get_by_projectSELECTimageName, projectName, resourceGroupName, subscriptionIdGets an image.
list_by_dev_centerSELECTdevCenterName, resourceGroupName, subscriptionIdLists images for a devcenter.
list_by_gallerySELECTdevCenterName, galleryName, resourceGroupName, subscriptionIdLists images for a gallery.
list_by_projectSELECTprojectName, resourceGroupName, subscriptionIdLists images for a project.

SELECT examples

Lists images for a project.

SELECT
description,
devCenterName,
galleryName,
hibernate_support,
imageName,
offer,
projectName,
provisioning_state,
publisher,
recommended_machine_configuration,
resourceGroupName,
sku,
subscriptionId
FROM azure.dev_center.vw_images
WHERE projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';