vw_app_attach_packages
Creates, updates, deletes, gets or lists a vw_app_attach_packages
resource.
Overview
Name | vw_app_attach_packages |
Type | View |
Id | azure.desktop_virtualization.vw_app_attach_packages |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.image') as "image",
JSON_EXTRACT(properties, '$.hostPoolReferences') as "host_pool_references",
JSON_EXTRACT(properties, '$.keyVaultURL') as "key_vault_url",
JSON_EXTRACT(properties, '$.failHealthCheckOnStagingFailure') as "fail_health_check_on_staging_failure",
JSON_EXTRACT(properties, '$.packageOwnerName') as "package_owner_name",
JSON_EXTRACT(properties, '$.packageLookbackUrl') as "package_lookback_url",
JSON_EXTRACT(properties, '$.customData') as "custom_data",
subscriptionId,
resourceGroupName,
appAttachPackageName
FROM azure.desktop_virtualization.app_attach_packages
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.image') as "image",
json_extract_path_text(properties, '$.hostPoolReferences') as "host_pool_references",
json_extract_path_text(properties, '$.keyVaultURL') as "key_vault_url",
json_extract_path_text(properties, '$.failHealthCheckOnStagingFailure') as "fail_health_check_on_staging_failure",
json_extract_path_text(properties, '$.packageOwnerName') as "package_owner_name",
json_extract_path_text(properties, '$.packageLookbackUrl') as "package_lookback_url",
json_extract_path_text(properties, '$.customData') as "custom_data",
subscriptionId,
resourceGroupName,
appAttachPackageName
FROM azure.desktop_virtualization.app_attach_packages
WHERE subscriptionId = 'replace-me';