vw_msix_packages
Creates, updates, deletes, gets or lists a vw_msix_packages
resource.
Overview
Name | vw_msix_packages |
Type | View |
Id | azure.desktop_virtualization.vw_msix_packages |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.imagePath') as "image_path",
json_extract_path_text(properties, '$.packageName') as "package_name",
json_extract_path_text(properties, '$.packageFamilyName') as "package_family_name",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.packageRelativePath') as "package_relative_path",
json_extract_path_text(properties, '$.isRegularRegistration') as "is_regular_registration",
json_extract_path_text(properties, '$.isActive') as "is_active",
json_extract_path_text(properties, '$.packageDependencies') as "package_dependencies",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.lastUpdated') as "last_updated",
json_extract_path_text(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';