PowerBIOutputDataSource 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
PowerBIOutputDataSource() |
Initializes a new instance of the PowerBIOutputDataSource class. |
PowerBIOutputDataSource(String, String, String, String, String, String, String, String) |
Initializes a new instance of the PowerBIOutputDataSource class. |
PowerBIOutputDataSource()
Initializes a new instance of the PowerBIOutputDataSource class.
public PowerBIOutputDataSource ();
Public Sub New ()
Applies to
PowerBIOutputDataSource(String, String, String, String, String, String, String, String)
Initializes a new instance of the PowerBIOutputDataSource class.
public PowerBIOutputDataSource (string refreshToken = default, string tokenUserPrincipalName = default, string tokenUserDisplayName = default, string dataset = default, string table = default, string groupId = default, string groupName = default, string authenticationMode = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.PowerBIOutputDataSource : string * string * string * string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.PowerBIOutputDataSource
Public Sub New (Optional refreshToken As String = Nothing, Optional tokenUserPrincipalName As String = Nothing, Optional tokenUserDisplayName As String = Nothing, Optional dataset As String = Nothing, Optional table As String = Nothing, Optional groupId As String = Nothing, Optional groupName 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.
- dataset
- String
The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- table
- String
The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- groupId
- String
The ID of the Power BI group.
- groupName
- String
The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- authenticationMode
- String
Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'