Skip to main content

gallery_images

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

Overview

Namegallery_images
TypeResource
Idazure.dev_test_labs.gallery_images

Fields

NameDatatypeDescription
idstringThe identifier of the resource.
namestringThe name of the resource.
locationstringThe location of the resource.
propertiesobjectProperties of a gallery image.
tagsobjectThe tags of the resource.
typestringThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlabName, resourceGroupName, subscriptionIdList gallery images in a given lab.

SELECT examples

List gallery images in a given lab.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.dev_test_labs.gallery_images
WHERE labName = '{{ labName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';