Share via


BlobOutputDataSource Constructors

Definition

Overloads

BlobOutputDataSource()

Initializes a new instance of the BlobOutputDataSource class.

BlobOutputDataSource(IList<StorageAccount>, String, String, String, String, String)

Initializes a new instance of the BlobOutputDataSource class.

BlobOutputDataSource()

Initializes a new instance of the BlobOutputDataSource class.

public BlobOutputDataSource ();
Public Sub New ()

Applies to

BlobOutputDataSource(IList<StorageAccount>, String, String, String, String, String)

Initializes a new instance of the BlobOutputDataSource class.

public BlobOutputDataSource (System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> storageAccounts = default, string container = default, string pathPattern = default, string dateFormat = default, string timeFormat = default, string authenticationMode = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.BlobOutputDataSource : System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> * string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.BlobOutputDataSource
Public Sub New (Optional storageAccounts As IList(Of StorageAccount) = Nothing, Optional container As String = Nothing, Optional pathPattern As String = Nothing, Optional dateFormat As String = Nothing, Optional timeFormat As String = Nothing, Optional authenticationMode As String = Nothing)

Parameters

storageAccounts
IList<StorageAccount>

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

container
String

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.

pathPattern
String

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.

dateFormat
String

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

timeFormat
String

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

authenticationMode
String

Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'

Applies to