vw_location_by_host_names
Creates, updates, deletes, gets or lists a vw_location_by_host_names
resource.
Overview
Name | vw_location_by_host_names |
Type | View |
Id | azure_extras.intune.vw_location_by_host_names |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.hostName') as "host_name"
FROM azure_extras.intune.location_by_host_names
;
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.hostName') as "host_name"
FROM azure_extras.intune.location_by_host_names
;