Skip to main content

images

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

Overview

Nameimages
TypeResource
Idazure.dev_center.images

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
propertiesobjectImage properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, devCenterName, galleryName, imageNameGets a gallery image.
list_by_galleryselectsubscriptionId, resourceGroupName, devCenterName, galleryName$topLists images for a gallery.
get_by_projectselectsubscriptionId, resourceGroupName, projectName, imageNameGets an image.
list_by_dev_centerselectsubscriptionId, resourceGroupName, devCenterName$topLists images for a devcenter.
list_by_projectselectsubscriptionId, resourceGroupName, projectNameLists images for a project.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
devCenterNamestringThe name of the devcenter.
galleryNamestringThe name of the gallery.
imageNamestringThe name of the image.
projectNamestringThe name of the project.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
$topinteger (int32)The maximum number of resources to return from the operation. Example: '$top=10'.

SELECT examples

Gets a gallery image.

SELECT
properties
FROM azure.dev_center.images
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND devCenterName = '{{ devCenterName }}' -- required
AND galleryName = '{{ galleryName }}' -- required
AND imageName = '{{ imageName }}' -- required
;