Skip to main content

vw_msix_packages

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

Overview

Namevw_msix_packages
TypeView
Idazure.desktop_virtualization.vw_msix_packages

Fields

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

SQL Definition

SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.imagePath') as "image_path",
JSON_EXTRACT(properties, '$.packageName') as "package_name",
JSON_EXTRACT(properties, '$.packageFamilyName') as "package_family_name",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.packageRelativePath') as "package_relative_path",
JSON_EXTRACT(properties, '$.isRegularRegistration') as "is_regular_registration",
JSON_EXTRACT(properties, '$.isActive') as "is_active",
JSON_EXTRACT(properties, '$.packageDependencies') as "package_dependencies",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.lastUpdated') as "last_updated",
JSON_EXTRACT(properties, '$.packageApplications') as "package_applications",
subscriptionId,
resourceGroupName,
hostPoolName,
msixPackageFullName
FROM azure.desktop_virtualization.msix_packages
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hostPoolName = 'replace-me';