TransformationResponse

data class TransformationResponse(val etag: String, val id: String, val name: String? = null, val query: String? = null, val streamingUnits: Int? = null, val type: String, val validStreamingUnits: List<Int>? = null)

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

Constructors

Link copied to clipboard
constructor(etag: String, id: String, name: String? = null, query: String? = null, streamingUnits: Int? = null, type: String, validStreamingUnits: List<Int>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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.

Link copied to clipboard
val id: String

Resource Id

Link copied to clipboard
val name: String? = null

Resource name

Link copied to clipboard
val query: String? = null

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.

Link copied to clipboard
val streamingUnits: Int? = null

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

Link copied to clipboard

Resource type

Link copied to clipboard

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