Package version:

A transformation object, containing all information associated with the named transformation. All transformations are contained under a streaming job.

interface Transformation {
    etag?: string;
    id?: string;
    name?: string;
    query?: string;
    streamingUnits?: number;
    type?: string;
    validStreamingUnits?: number[];
}

Hierarchy (view full)

Properties

etag?: string

The current entity tag for the transformation. This is an opaque string. You can use it to detect whether the resource has changed between requests. You can also use it in the If-Match or If-None-Match headers for write operations for optimistic concurrency. NOTE: This property will not be serialized. It can only be populated by the server.

id?: string

Resource Id NOTE: This property will not be serialized. It can only be populated by the server.

name?: string

Resource name

query?: string

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.

streamingUnits?: number

Specifies the number of streaming units that the streaming job uses.

type?: string

Resource type NOTE: This property will not be serialized. It can only be populated by the server.

validStreamingUnits?: number[]

Specifies the valid streaming units a streaming job can scale to.

Generated using TypeDoc