BlobOutputDataSource Class

Describes a blob output data source.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.mgmt.streamanalytics.models._models_py3.OutputDataSource
BlobOutputDataSource

Constructor

BlobOutputDataSource(*, storage_accounts: Optional[List[azure.mgmt.streamanalytics.models._models_py3.StorageAccount]] = None, container: Optional[str] = None, path_pattern: Optional[str] = None, date_format: Optional[str] = None, time_format: Optional[str] = None, authentication_mode: Optional[Union[str, azure.mgmt.streamanalytics.models._stream_analytics_management_client_enums.AuthenticationMode]] = None, **kwargs)

Parameters

type
str
Required

Required. Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests.Constant filled by server.

storage_accounts
list[<xref:stream_analytics_management_client.models.StorageAccount>]
Required

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

container
str
Required

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.

path_pattern
str
Required

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.

date_format
str
Required

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

time_format
str
Required

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

authentication_mode
str or <xref:stream_analytics_management_client.models.AuthenticationMode>
Required

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