Microsoft.StreamAnalytics streamingjobs/transformations

Bicep resource definition

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.

Resource format

To create a Microsoft.StreamAnalytics/streamingjobs/transformations resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.StreamAnalytics/streamingjobs/transformations@2021-10-01-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    query: 'string'
    streamingUnits: int
    validStreamingUnits: [
      int
    ]
  }
}

Property values

streamingjobs/transformations

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)

Character limit: 3-63

Valid characters:
Alphanumerics, hyphens, and underscores.
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: streamingjobs
properties The properties that are associated with a transformation. Required on PUT (CreateOrReplace) requests. TransformationProperties

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[]

ARM template resource definition

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.

Resource format

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" ]
  }
}

Property values

streamingjobs/transformations

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

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[]

Terraform (AzAPI provider) resource definition

The streamingjobs/transformations resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.StreamAnalytics/streamingjobs/transformations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StreamAnalytics/streamingjobs/transformations@2021-10-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      query = "string"
      streamingUnits = int
      validStreamingUnits = [
        int
      ]
    }
  })
}

Property values

streamingjobs/transformations

Name Description Value
type The resource type "Microsoft.StreamAnalytics/streamingjobs/transformations@2021-10-01-preview"
name The resource name string (required)

Character limit: 3-63

Valid characters:
Alphanumerics, hyphens, and underscores.
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: streamingjobs
properties The properties that are associated with a transformation. Required on PUT (CreateOrReplace) requests. TransformationProperties

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[]