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
The following fields are returned by SELECT
queries:
- list
Successfully listed the streaming jobs in the specified cluster.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID of the streaming job. |
jobState | string | The current execution state of the streaming job. |
streamingUnits | integer (int32) | The number of streaming units that are used by the streaming job. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , clusterName | Lists all of the streaming jobs in the given cluster. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the cluster. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Lists all of the streaming jobs in the given cluster.
SELECT
id,
jobState,
streamingUnits
FROM azure.stream_analytics.clusters_streaming_jobs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
;