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
- vw_virtual_machine_extension_images
- virtual_machine_extension_images
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
compute_role | text | field from the properties object |
handler_schema | text | field from the properties object |
location | text | Resource location |
operating_system | text | field from the properties object |
publisherName | text | field from the properties object |
subscriptionId | text | field from the properties object |
supports_multiple_extensions | text | field from the properties object |
tags | text | Resource tags |
type | text | Resource type |
version | text | field from the properties object |
vm_scale_set_enabled | text | field from the properties object |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, publisherName, subscriptionId, type, version | Gets a virtual machine extension image. |
SELECT
examples
Gets a virtual machine extension image.
- vw_virtual_machine_extension_images
- virtual_machine_extension_images
SELECT
id,
name,
compute_role,
handler_schema,
location,
operating_system,
publisherName,
subscriptionId,
supports_multiple_extensions,
tags,
type,
version,
vm_scale_set_enabled
FROM azure.compute.vw_virtual_machine_extension_images
WHERE location = '{{ location }}'
AND publisherName = '{{ publisherName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND type = '{{ type }}'
AND version = '{{ version }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.compute.virtual_machine_extension_images
WHERE location = '{{ location }}'
AND publisherName = '{{ publisherName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND type = '{{ type }}'
AND version = '{{ version }}';