virtual_machine_extension_images
Creates, updates, deletes, gets or lists a virtual_machine_extension_images
resource.
Overview
Name | virtual_machine_extension_images |
Type | Resource |
Id | azure.compute.virtual_machine_extension_images |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
location | string | Resource location |
properties | object | Describes the properties of a Virtual Machine Extension Image. |
tags | object | Resource tags |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | location , publisherName , type , version , subscriptionId | Gets a virtual machine extension image. |
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 |
---|---|---|
location | string | The name of a supported Azure region. |
publisherName | string | |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
type | string | |
version | string |
SELECT
examples
- get
Gets a virtual machine extension image.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.compute.virtual_machine_extension_images
WHERE location = '{{ location }}' -- required
AND publisherName = '{{ publisherName }}' -- required
AND type = '{{ type }}' -- required
AND version = '{{ version }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;