BlobOutputDataSourceResponse

data class BlobOutputDataSourceResponse(val authenticationMode: String? = null, val blobPathPrefix: String? = null, val container: String? = null, val dateFormat: String? = null, val pathPattern: String? = null, val storageAccounts: List<StorageAccountResponse>? = null, val timeFormat: String? = null, val type: String)

Describes a blob output data source.

Constructors

Link copied to clipboard
constructor(authenticationMode: String? = null, blobPathPrefix: String? = null, container: String? = null, dateFormat: String? = null, pathPattern: String? = null, storageAccounts: List<StorageAccountResponse>? = null, timeFormat: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Authentication Mode.

Link copied to clipboard
val blobPathPrefix: String? = null

Blob path prefix.

Link copied to clipboard
val container: String? = null

The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.

Link copied to clipboard
val dateFormat: String? = null

The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.

Link copied to clipboard
val pathPattern: String? = null

The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.

Link copied to clipboard

A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.

Link copied to clipboard
val timeFormat: String? = null

The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

Link copied to clipboard

Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests. Expected value is 'Microsoft.Storage/Blob'.