vw_services
Creates, updates, deletes, gets or lists a vw_services
resource.
Overview
Name | vw_services |
Type | View |
Id | azure.support.vw_services |
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,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.resourceTypes') as "resource_types",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
serviceName
FROM azure.support.services
WHERE serviceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.resourceTypes') as "resource_types",
json_extract_path_text(properties, '$.metadata') as "metadata",
serviceName
FROM azure.support.services
WHERE serviceName = 'replace-me';