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
The following fields are returned by SELECT
queries:
- list
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 | The properties of the resource. |
tags | object | The tags of the resource. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , labName | $expand , $filter , $top , $orderby , api-version | List gallery images in a given lab. |
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.
Name | Datatype | Description |
---|---|---|
labName | string | The name of the lab. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The subscription ID. |
$expand | string | Specify the $expand query. Example: 'properties($select=author)' |
$filter | string | The filter to apply to the operation. Example: '$filter=contains(name,'myName') |
$orderby | string | The ordering expression for the results, using OData notation. Example: '$orderby=name desc' |
$top | integer (int32) | The maximum number of resources to return from the operation. Example: '$top=10' |
api-version | string | Client API version. |
SELECT
examples
- list
List gallery images in a given lab.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.dev_test_labs.gallery_images
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND labName = '{{ labName }}' -- required
AND $expand = '{{ $expand }}'
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $orderby = '{{ $orderby }}'
AND api-version = '{{ api-version }}'
;