BlobStreamInputDataSourceResponse

data class BlobStreamInputDataSourceResponse(val container: String? = null, val dateFormat: String? = null, val pathPattern: String? = null, val sourcePartitionCount: Int? = null, val storageAccounts: List<StorageAccountResponse>? = null, val timeFormat: String? = null, val type: String)

Describes a blob input data source that contains stream data.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

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

The partition count of the blob input data source. Range 1 - 1024.

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 input data source containing stream data. Required on PUT (CreateOrReplace) requests. Expected value is 'Microsoft.Storage/Blob'.