vw_functions
Creates, updates, deletes, gets or lists a vw_functions
resource.
Overview
Name | vw_functions |
Type | View |
Id | azure.stream_analytics.vw_functions |
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, '$.type') as "type",
JSON_EXTRACT(properties, '$.etag') as "etag",
JSON_EXTRACT(properties, '$.properties') as "properties",
subscriptionId,
resourceGroupName,
jobName,
functionName
FROM azure.stream_analytics.functions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.etag') as "etag",
json_extract_path_text(properties, '$.properties') as "properties",
subscriptionId,
resourceGroupName,
jobName,
functionName
FROM azure.stream_analytics.functions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobName = 'replace-me';