Skip to main content

vw_updates

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

Overview

Namevw_updates
TypeView
Idazure_stack.update_admin.vw_updates

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,
tags as tags,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.oemVersion') as "oem_version",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.availabilityType') as "availability_type",
JSON_EXTRACT(properties, '$.releaseLink') as "release_link",
JSON_EXTRACT(properties, '$.packagePath') as "package_path",
JSON_EXTRACT(properties, '$.packageSizeInMb') as "package_size_in_mb",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.packageType') as "package_type",
JSON_EXTRACT(properties, '$.updatePrerequisites') as "update_prerequisites",
JSON_EXTRACT(properties, '$.updateStateProperties') as "update_state_properties",
JSON_EXTRACT(properties, '$.additionalProperties') as "additional_properties",
JSON_EXTRACT(properties, '$.kbLink') as "kb_link",
JSON_EXTRACT(properties, '$.minVersionRequired') as "min_version_required",
JSON_EXTRACT(properties, '$.minOemVersionRequired') as "min_oem_version_required",
JSON_EXTRACT(properties, '$.installedDate') as "installed_date",
subscriptionId,
resourceGroupName,
updateLocation,
updateName
FROM azure_stack.update_admin.updates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND updateLocation = 'replace-me';