gallery_images
Creates, updates, deletes, gets or lists a gallery_images
resource.
Overview
Name | gallery_images |
Type | Resource |
Id | azure.dev_test_labs.gallery_images |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The identifier of the resource. |
name | string | The name of the resource. |
location | string | The location of the resource. |
properties | object | Properties of a gallery image. |
tags | object | The tags of the resource. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | labName, resourceGroupName, subscriptionId | List 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 }}';