clusters_streaming_jobs
Creates, updates, deletes, gets or lists a clusters_streaming_jobs
resource.
Overview
Name | clusters_streaming_jobs |
Type | Resource |
Id | azure.stream_analytics.clusters_streaming_jobs |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource ID of the streaming job. |
jobState | string | The current execution state of the streaming job. |
streamingUnits | integer | The number of streaming units that are used by the streaming job. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | clusterName, resourceGroupName, subscriptionId | Lists all of the streaming jobs in the given cluster. |
SELECT
examples
Lists all of the streaming jobs in the given cluster.
SELECT
id,
jobState,
streamingUnits
FROM azure.stream_analytics.clusters_streaming_jobs
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';