Skip to main content

vw_transformations

Creates, updates, deletes, gets or lists a vw_transformations resource.

Overview

Namevw_transformations
TypeView
Idazure.stream_analytics.vw_transformations

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.streamingUnits') as "streaming_units",
JSON_EXTRACT(properties, '$.validStreamingUnits') as "valid_streaming_units",
JSON_EXTRACT(properties, '$.query') as "query",
JSON_EXTRACT(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
jobName,
transformationName
FROM azure.stream_analytics.transformations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobName = 'replace-me' AND transformationName = 'replace-me';