vw_clusters
Creates, updates, deletes, gets or lists a vw_clusters
resource.
Overview
Name | vw_clusters |
Type | View |
Id | azure.stream_analytics.vw_clusters |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
sku as sku,
etag as etag,
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
JSON_EXTRACT(properties, '$.clusterId') as "cluster_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.capacityAllocated') as "capacity_allocated",
JSON_EXTRACT(properties, '$.capacityAssigned') as "capacity_assigned",
subscriptionId,
resourceGroupName,
clusterName
FROM azure.stream_analytics.clusters
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
etag as etag,
json_extract_path_text(properties, '$.createdDate') as "created_date",
json_extract_path_text(properties, '$.clusterId') as "cluster_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.capacityAllocated') as "capacity_allocated",
json_extract_path_text(properties, '$.capacityAssigned') as "capacity_assigned",
subscriptionId,
resourceGroupName,
clusterName
FROM azure.stream_analytics.clusters
WHERE subscriptionId = 'replace-me';