Skip to main content

vw_vm_extensions

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

Overview

Namevw_vm_extensions
TypeView
Idazure_stack.compute_admin.vw_vm_extensions

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.vmOsType') as "vm_os_type",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.computeRole') as "compute_role",
JSON_EXTRACT(properties, '$.vmScaleSetEnabled') as "vm_scale_set_enabled",
JSON_EXTRACT(properties, '$.supportMultipleExtensions') as "support_multiple_extensions",
JSON_EXTRACT(properties, '$.isSystemExtension') as "is_system_extension",
JSON_EXTRACT(properties, '$.sourceBlob') as "source_blob",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
location,
publisher,
type,
version
FROM azure_stack.compute_admin.vm_extensions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';