The streamingjobs/transformations resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.StreamAnalytics/streamingjobs/transformations resource, add the following JSON to your template.
{
"type": "Microsoft.StreamAnalytics/streamingjobs/transformations",
"apiVersion": "2021-10-01-preview",
"name": "string",
"properties": {
"query": "string",
"streamingUnits": "int",
"validStreamingUnits": [ "int" ]
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.StreamAnalytics/streamingjobs/transformations' |
apiVersion | The resource api version | '2021-10-01-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) Character limit: 3-63 Valid characters: Alphanumerics, hyphens, and underscores. |
properties | The properties that are associated with a transformation. Required on PUT (CreateOrReplace) requests. | TransformationProperties |
Name | Description | Value |
---|---|---|
query | Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests. |
string |
streamingUnits | Specifies the number of streaming units that the streaming job uses. | int |
validStreamingUnits | Specifies the valid streaming units a streaming job can scale to. | int[] |