AzureDataLakeStoreOutputDataSource Class

Describes an Azure Data Lake Store output data source.

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

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

Constructor

AzureDataLakeStoreOutputDataSource(*, refresh_token: Optional[str] = None, token_user_principal_name: Optional[str] = None, token_user_display_name: Optional[str] = None, account_name: Optional[str] = None, tenant_id: Optional[str] = None, file_path_prefix: 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.

refresh_token
str
Required

A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.

token_user_principal_name
str
Required

The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

token_user_display_name
str
Required

The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

account_name
str
Required

The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.

tenant_id
str
Required

The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.

file_path_prefix
str
Required

The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.

date_format
str
Required

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

time_format
str
Required

The time format. Wherever {time} appears in filePathPrefix, 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".