Skip to main content

vw_updates

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

Overview

Namevw_updates
TypeView
Idazure_stack.azure_stack_hci.vw_updates

Fields

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

SQL Definition

SELECT
location as location,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.installedDate') as "installed_date",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.prerequisites') as "prerequisites",
JSON_EXTRACT(properties, '$.componentVersions') as "component_versions",
JSON_EXTRACT(properties, '$.rebootRequired') as "reboot_required",
JSON_EXTRACT(properties, '$.healthState') as "health_state",
JSON_EXTRACT(properties, '$.healthCheckResult') as "health_check_result",
JSON_EXTRACT(properties, '$.healthCheckDate') as "health_check_date",
JSON_EXTRACT(properties, '$.packagePath') as "package_path",
JSON_EXTRACT(properties, '$.packageSizeInMb') as "package_size_in_mb",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.releaseLink') as "release_link",
JSON_EXTRACT(properties, '$.availabilityType') as "availability_type",
JSON_EXTRACT(properties, '$.packageType') as "package_type",
JSON_EXTRACT(properties, '$.additionalProperties') as "additional_properties",
JSON_EXTRACT(properties, '$.updateStateProperties') as "update_state_properties",
subscriptionId,
resourceGroupName,
clusterName,
updateName
FROM azure_stack.azure_stack_hci.updates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND clusterName = 'replace-me';