vw_vm_extensions
Creates, updates, deletes, gets or lists a vw_vm_extensions
resource.
Overview
Name | vw_vm_extensions |
Type | View |
Id | azure_stack.compute_admin.vw_vm_extensions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.vmOsType') as "vm_os_type",
json_extract_path_text(properties, '$.publisher') as "publisher",
json_extract_path_text(properties, '$.computeRole') as "compute_role",
json_extract_path_text(properties, '$.vmScaleSetEnabled') as "vm_scale_set_enabled",
json_extract_path_text(properties, '$.supportMultipleExtensions') as "support_multiple_extensions",
json_extract_path_text(properties, '$.isSystemExtension') as "is_system_extension",
json_extract_path_text(properties, '$.sourceBlob') as "source_blob",
json_extract_path_text(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';