AzureDataLakeStoreOutputDataSource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AzureDataLakeStoreOutputDataSource() |
Initializes a new instance of the AzureDataLakeStoreOutputDataSource class. |
AzureDataLakeStoreOutputDataSource(String, String, String, String, String, String, String, String, String) |
Initializes a new instance of the AzureDataLakeStoreOutputDataSource class. |
AzureDataLakeStoreOutputDataSource()
Initializes a new instance of the AzureDataLakeStoreOutputDataSource class.
public AzureDataLakeStoreOutputDataSource ();
Public Sub New ()
Applies to
AzureDataLakeStoreOutputDataSource(String, String, String, String, String, String, String, String, String)
Initializes a new instance of the AzureDataLakeStoreOutputDataSource class.
public AzureDataLakeStoreOutputDataSource (string refreshToken = default, string tokenUserPrincipalName = default, string tokenUserDisplayName = default, string accountName = default, string tenantId = default, string filePathPrefix = default, string dateFormat = default, string timeFormat = default, string authenticationMode = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureDataLakeStoreOutputDataSource : string * string * string * string * string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureDataLakeStoreOutputDataSource
Public Sub New (Optional refreshToken As String = Nothing, Optional tokenUserPrincipalName As String = Nothing, Optional tokenUserDisplayName As String = Nothing, Optional accountName As String = Nothing, Optional tenantId As String = Nothing, Optional filePathPrefix As String = Nothing, Optional dateFormat As String = Nothing, Optional timeFormat As String = Nothing, Optional authenticationMode As String = Nothing)
Parameters
- refreshToken
- String
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.
- tokenUserPrincipalName
- String
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.
- tokenUserDisplayName
- String
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.
- accountName
- String
The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- tenantId
- String
The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- filePathPrefix
- String
The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- dateFormat
- String
The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- timeFormat
- String
The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- authenticationMode
- String
Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'
Applies to
Azure SDK for .NET